styles.css 144 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:894px;
  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. #u156848_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u156848 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u156848 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u156848_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u156849_div {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:375px;
  55. height:40px;
  56. background:inherit;
  57. background-color:rgba(255, 255, 255, 1);
  58. box-sizing:border-box;
  59. border-width:1px;
  60. border-style:solid;
  61. border-color:rgba(215, 215, 215, 1);
  62. border-left:0px;
  63. border-top:0px;
  64. border-right:0px;
  65. border-radius:0px;
  66. border-bottom-right-radius:0px;
  67. border-bottom-left-radius:0px;
  68. -moz-box-shadow:none;
  69. -webkit-box-shadow:none;
  70. box-shadow:none;
  71. }
  72. #u156849 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u156849 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u156849_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u156850 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u156851_div {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:88px;
  108. height:32px;
  109. background:inherit;
  110. background-color:rgba(255, 255, 255, 1);
  111. box-sizing:border-box;
  112. border-width:1px;
  113. border-style:solid;
  114. border-color:rgba(242, 242, 242, 1);
  115. border-radius:33px;
  116. -moz-box-shadow:none;
  117. -webkit-box-shadow:none;
  118. box-shadow:none;
  119. }
  120. #u156851 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u156851 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u156851_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u156852 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u156853_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u156853 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u156853 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u156853_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u156854_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u156854 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u156854 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u156854_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u156855 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u156856_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u156856 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u156856 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u156856_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u156857_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u156857 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u156857 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u156857_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u156858_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u156858 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u156858 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u156858_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u156859_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u156859 {
  317. border-width:0px;
  318. position:absolute;
  319. left:347px;
  320. top:87px;
  321. width:18px;
  322. height:1px;
  323. display:flex;
  324. -webkit-transform:rotate(90deg);
  325. -moz-transform:rotate(90deg);
  326. -ms-transform:rotate(90deg);
  327. transform:rotate(90deg);
  328. }
  329. #u156859 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u156859_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u156860_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u156860 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u156860 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u156860_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u156861_div {
  373. border-width:0px;
  374. position:absolute;
  375. left:0px;
  376. top:0px;
  377. width:375px;
  378. height:50px;
  379. background:inherit;
  380. background-color:rgba(255, 255, 255, 1);
  381. box-sizing:border-box;
  382. border-width:1px;
  383. border-style:solid;
  384. border-color:rgba(242, 242, 242, 1);
  385. border-radius:26px;
  386. border-top-left-radius:0px;
  387. border-top-right-radius:0px;
  388. -moz-box-shadow:none;
  389. -webkit-box-shadow:none;
  390. box-shadow:none;
  391. }
  392. #u156861 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u156861 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u156861_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u156862 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u156863_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u156863 {
  431. border-width:0px;
  432. position:absolute;
  433. left:69px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u156863 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u156863_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u156864_div {
  453. border-width:0px;
  454. position:absolute;
  455. left:0px;
  456. top:0px;
  457. width:25px;
  458. height:17px;
  459. background:inherit;
  460. background-color:rgba(255, 255, 255, 0);
  461. border:none;
  462. border-radius:0px;
  463. -moz-box-shadow:none;
  464. -webkit-box-shadow:none;
  465. box-shadow:none;
  466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  467. font-weight:400;
  468. font-style:normal;
  469. font-size:12px;
  470. }
  471. #u156864 {
  472. border-width:0px;
  473. position:absolute;
  474. left:69px;
  475. top:817px;
  476. width:25px;
  477. height:17px;
  478. display:flex;
  479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  480. font-weight:400;
  481. font-style:normal;
  482. font-size:12px;
  483. }
  484. #u156864 .text {
  485. position:absolute;
  486. align-self:flex-start;
  487. padding:0px 0px 0px 0px;
  488. box-sizing:border-box;
  489. width:100%;
  490. }
  491. #u156864_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u156865 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u156866_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u156866 {
  513. border-width:0px;
  514. position:absolute;
  515. left:339px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u156866 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u156866_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u156867_div {
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:25px;
  540. height:17px;
  541. background:inherit;
  542. background-color:rgba(255, 255, 255, 0);
  543. border:none;
  544. border-radius:0px;
  545. -moz-box-shadow:none;
  546. -webkit-box-shadow:none;
  547. box-shadow:none;
  548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  549. font-weight:400;
  550. font-style:normal;
  551. font-size:12px;
  552. }
  553. #u156867 {
  554. border-width:0px;
  555. position:absolute;
  556. left:339px;
  557. top:819px;
  558. width:25px;
  559. height:17px;
  560. display:flex;
  561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  562. font-weight:400;
  563. font-style:normal;
  564. font-size:12px;
  565. }
  566. #u156867 .text {
  567. position:absolute;
  568. align-self:flex-start;
  569. padding:0px 0px 0px 0px;
  570. box-sizing:border-box;
  571. width:100%;
  572. }
  573. #u156867_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u156868_div {
  579. border-width:0px;
  580. position:absolute;
  581. left:0px;
  582. top:0px;
  583. width:375px;
  584. height:681px;
  585. background:inherit;
  586. background-color:rgba(242, 242, 242, 0.462745098039216);
  587. border:none;
  588. border-radius:0px;
  589. -moz-box-shadow:none;
  590. -webkit-box-shadow:none;
  591. box-shadow:none;
  592. }
  593. #u156868 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u156868 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u156868_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u156869 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u156870_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u156870 {
  632. border-width:0px;
  633. position:absolute;
  634. left:251px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u156870 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u156870_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u156871_div {
  654. border-width:0px;
  655. position:absolute;
  656. left:0px;
  657. top:0px;
  658. width:37px;
  659. height:17px;
  660. background:inherit;
  661. background-color:rgba(255, 255, 255, 0);
  662. border:none;
  663. border-radius:0px;
  664. -moz-box-shadow:none;
  665. -webkit-box-shadow:none;
  666. box-shadow:none;
  667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  668. font-weight:400;
  669. font-style:normal;
  670. font-size:12px;
  671. }
  672. #u156871 {
  673. border-width:0px;
  674. position:absolute;
  675. left:245px;
  676. top:817px;
  677. width:37px;
  678. height:17px;
  679. display:flex;
  680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:12px;
  684. }
  685. #u156871 .text {
  686. position:absolute;
  687. align-self:flex-start;
  688. padding:0px 0px 0px 0px;
  689. box-sizing:border-box;
  690. width:100%;
  691. }
  692. #u156871_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u156872 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u156873_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u156873 {
  714. border-width:0px;
  715. position:absolute;
  716. left:157px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u156873 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u156873_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u156874_div {
  736. border-width:0px;
  737. position:absolute;
  738. left:0px;
  739. top:0px;
  740. width:37px;
  741. height:17px;
  742. background:inherit;
  743. background-color:rgba(255, 255, 255, 0);
  744. border:none;
  745. border-radius:0px;
  746. -moz-box-shadow:none;
  747. -webkit-box-shadow:none;
  748. box-shadow:none;
  749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  750. font-weight:400;
  751. font-style:normal;
  752. font-size:12px;
  753. }
  754. #u156874 {
  755. border-width:0px;
  756. position:absolute;
  757. left:151px;
  758. top:817px;
  759. width:37px;
  760. height:17px;
  761. display:flex;
  762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  763. font-weight:400;
  764. font-style:normal;
  765. font-size:12px;
  766. }
  767. #u156874 .text {
  768. position:absolute;
  769. align-self:flex-start;
  770. padding:0px 0px 0px 0px;
  771. box-sizing:border-box;
  772. width:100%;
  773. }
  774. #u156874_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u156875_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:1603px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 1);
  788. box-sizing:border-box;
  789. border-width:1px;
  790. border-style:solid;
  791. border-color:rgba(242, 242, 242, 1);
  792. border-radius:26px;
  793. border-top-left-radius:0px;
  794. border-top-right-radius:0px;
  795. -moz-box-shadow:none;
  796. -webkit-box-shadow:none;
  797. box-shadow:none;
  798. }
  799. #u156875 {
  800. border-width:0px;
  801. position:absolute;
  802. left:29px;
  803. top:105px;
  804. width:375px;
  805. height:1603px;
  806. display:flex;
  807. }
  808. #u156875 .text {
  809. position:absolute;
  810. align-self:center;
  811. padding:2px 2px 2px 2px;
  812. box-sizing:border-box;
  813. width:100%;
  814. }
  815. #u156875_text {
  816. border-width:0px;
  817. word-wrap:break-word;
  818. text-transform:none;
  819. visibility:hidden;
  820. }
  821. #u156876_div {
  822. border-width:0px;
  823. position:absolute;
  824. left:0px;
  825. top:0px;
  826. width:109px;
  827. height:25px;
  828. background:inherit;
  829. background-color:rgba(255, 255, 255, 0);
  830. border:none;
  831. border-radius:0px;
  832. -moz-box-shadow:none;
  833. -webkit-box-shadow:none;
  834. box-shadow:none;
  835. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  836. font-weight:500;
  837. font-style:normal;
  838. font-size:18px;
  839. }
  840. #u156876 {
  841. border-width:0px;
  842. position:absolute;
  843. left:66px;
  844. top:74px;
  845. width:109px;
  846. height:25px;
  847. display:flex;
  848. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  849. font-weight:500;
  850. font-style:normal;
  851. font-size:18px;
  852. }
  853. #u156876 .text {
  854. position:absolute;
  855. align-self:flex-start;
  856. padding:0px 0px 0px 0px;
  857. box-sizing:border-box;
  858. width:100%;
  859. }
  860. #u156876_text {
  861. border-width:0px;
  862. white-space:nowrap;
  863. text-transform:none;
  864. }
  865. #u156877 {
  866. border-width:0px;
  867. position:absolute;
  868. left:0px;
  869. top:0px;
  870. width:0px;
  871. height:0px;
  872. }
  873. #u156878_img {
  874. border-width:0px;
  875. position:absolute;
  876. left:0px;
  877. top:0px;
  878. width:375px;
  879. height:126px;
  880. }
  881. #u156878 {
  882. border-width:0px;
  883. position:absolute;
  884. left:29px;
  885. top:145px;
  886. width:375px;
  887. height:126px;
  888. display:flex;
  889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  890. font-weight:400;
  891. font-style:normal;
  892. }
  893. #u156878 .text {
  894. position:absolute;
  895. align-self:center;
  896. padding:2px 2px 2px 2px;
  897. box-sizing:border-box;
  898. width:100%;
  899. }
  900. #u156878_text {
  901. border-width:0px;
  902. word-wrap:break-word;
  903. text-transform:none;
  904. }
  905. #u156879 {
  906. border-width:0px;
  907. position:absolute;
  908. left:0px;
  909. top:0px;
  910. width:0px;
  911. height:0px;
  912. }
  913. #u156880_img {
  914. border-width:0px;
  915. position:absolute;
  916. left:0px;
  917. top:0px;
  918. width:10px;
  919. height:10px;
  920. }
  921. #u156880 {
  922. border-width:0px;
  923. position:absolute;
  924. left:191px;
  925. top:252px;
  926. width:10px;
  927. height:10px;
  928. display:flex;
  929. }
  930. #u156880 .text {
  931. position:absolute;
  932. align-self:center;
  933. padding:2px 2px 2px 2px;
  934. box-sizing:border-box;
  935. width:100%;
  936. }
  937. #u156880_text {
  938. border-width:0px;
  939. word-wrap:break-word;
  940. text-transform:none;
  941. visibility:hidden;
  942. }
  943. #u156881_img {
  944. border-width:0px;
  945. position:absolute;
  946. left:0px;
  947. top:0px;
  948. width:10px;
  949. height:10px;
  950. }
  951. #u156881 {
  952. border-width:0px;
  953. position:absolute;
  954. left:210px;
  955. top:252px;
  956. width:10px;
  957. height:10px;
  958. display:flex;
  959. }
  960. #u156881 .text {
  961. position:absolute;
  962. align-self:center;
  963. padding:2px 2px 2px 2px;
  964. box-sizing:border-box;
  965. width:100%;
  966. }
  967. #u156881_text {
  968. border-width:0px;
  969. word-wrap:break-word;
  970. text-transform:none;
  971. visibility:hidden;
  972. }
  973. #u156882_img {
  974. border-width:0px;
  975. position:absolute;
  976. left:0px;
  977. top:0px;
  978. width:10px;
  979. height:10px;
  980. }
  981. #u156882 {
  982. border-width:0px;
  983. position:absolute;
  984. left:229px;
  985. top:252px;
  986. width:10px;
  987. height:10px;
  988. display:flex;
  989. }
  990. #u156882 .text {
  991. position:absolute;
  992. align-self:center;
  993. padding:2px 2px 2px 2px;
  994. box-sizing:border-box;
  995. width:100%;
  996. }
  997. #u156882_text {
  998. border-width:0px;
  999. word-wrap:break-word;
  1000. text-transform:none;
  1001. visibility:hidden;
  1002. }
  1003. #u156883 {
  1004. border-width:0px;
  1005. position:absolute;
  1006. left:0px;
  1007. top:0px;
  1008. width:0px;
  1009. height:0px;
  1010. }
  1011. #u156884_div {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:355px;
  1017. height:100px;
  1018. background:inherit;
  1019. background-color:rgba(51, 51, 51, 1);
  1020. border:none;
  1021. border-radius:4px;
  1022. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1023. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1024. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1025. }
  1026. #u156884 {
  1027. border-width:0px;
  1028. position:absolute;
  1029. left:39px;
  1030. top:280px;
  1031. width:355px;
  1032. height:100px;
  1033. display:flex;
  1034. }
  1035. #u156884 .text {
  1036. position:absolute;
  1037. align-self:center;
  1038. padding:2px 2px 2px 2px;
  1039. box-sizing:border-box;
  1040. width:100%;
  1041. }
  1042. #u156884_text {
  1043. border-width:0px;
  1044. word-wrap:break-word;
  1045. text-transform:none;
  1046. visibility:hidden;
  1047. }
  1048. #u156885_div {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:0px;
  1052. top:0px;
  1053. width:255px;
  1054. height:17px;
  1055. background:inherit;
  1056. background-color:rgba(255, 255, 255, 0);
  1057. border:none;
  1058. border-radius:0px;
  1059. -moz-box-shadow:none;
  1060. -webkit-box-shadow:none;
  1061. box-shadow:none;
  1062. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1063. font-weight:500;
  1064. font-style:normal;
  1065. font-size:12px;
  1066. color:#FFFFFF;
  1067. }
  1068. #u156885 {
  1069. border-width:0px;
  1070. position:absolute;
  1071. left:122px;
  1072. top:291px;
  1073. width:255px;
  1074. height:17px;
  1075. display:flex;
  1076. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1077. font-weight:500;
  1078. font-style:normal;
  1079. font-size:12px;
  1080. color:#FFFFFF;
  1081. }
  1082. #u156885 .text {
  1083. position:absolute;
  1084. align-self:flex-start;
  1085. padding:0px 0px 0px 0px;
  1086. box-sizing:border-box;
  1087. width:100%;
  1088. }
  1089. #u156885_text {
  1090. border-width:0px;
  1091. white-space:nowrap;
  1092. text-transform:none;
  1093. }
  1094. #u156886_div {
  1095. border-width:0px;
  1096. position:absolute;
  1097. left:0px;
  1098. top:0px;
  1099. width:49px;
  1100. height:66px;
  1101. background:inherit;
  1102. background-color:rgba(255, 255, 255, 0);
  1103. border:none;
  1104. border-radius:0px;
  1105. -moz-box-shadow:none;
  1106. -webkit-box-shadow:none;
  1107. box-shadow:none;
  1108. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1109. font-weight:500;
  1110. font-style:normal;
  1111. font-size:24px;
  1112. color:#FFFFFF;
  1113. }
  1114. #u156886 {
  1115. border-width:0px;
  1116. position:absolute;
  1117. left:55px;
  1118. top:295px;
  1119. width:49px;
  1120. height:66px;
  1121. display:flex;
  1122. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1123. font-weight:500;
  1124. font-style:normal;
  1125. font-size:24px;
  1126. color:#FFFFFF;
  1127. }
  1128. #u156886 .text {
  1129. position:absolute;
  1130. align-self:flex-start;
  1131. padding:0px 0px 0px 0px;
  1132. box-sizing:border-box;
  1133. width:100%;
  1134. }
  1135. #u156886_text {
  1136. border-width:0px;
  1137. white-space:nowrap;
  1138. text-transform:none;
  1139. }
  1140. #u156887_div {
  1141. border-width:0px;
  1142. position:absolute;
  1143. left:0px;
  1144. top:0px;
  1145. width:253px;
  1146. height:17px;
  1147. background:inherit;
  1148. background-color:rgba(255, 255, 255, 0);
  1149. border:none;
  1150. border-radius:0px;
  1151. -moz-box-shadow:none;
  1152. -webkit-box-shadow:none;
  1153. box-shadow:none;
  1154. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1155. font-weight:500;
  1156. font-style:normal;
  1157. font-size:12px;
  1158. color:#FFFFFF;
  1159. }
  1160. #u156887 {
  1161. border-width:0px;
  1162. position:absolute;
  1163. left:122px;
  1164. top:318px;
  1165. width:253px;
  1166. height:17px;
  1167. display:flex;
  1168. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1169. font-weight:500;
  1170. font-style:normal;
  1171. font-size:12px;
  1172. color:#FFFFFF;
  1173. }
  1174. #u156887 .text {
  1175. position:absolute;
  1176. align-self:flex-start;
  1177. padding:0px 0px 0px 0px;
  1178. box-sizing:border-box;
  1179. width:100%;
  1180. }
  1181. #u156887_text {
  1182. border-width:0px;
  1183. white-space:nowrap;
  1184. text-transform:none;
  1185. }
  1186. #u156888_div {
  1187. border-width:0px;
  1188. position:absolute;
  1189. left:0px;
  1190. top:0px;
  1191. width:253px;
  1192. height:17px;
  1193. background:inherit;
  1194. background-color:rgba(255, 255, 255, 0);
  1195. border:none;
  1196. border-radius:0px;
  1197. -moz-box-shadow:none;
  1198. -webkit-box-shadow:none;
  1199. box-shadow:none;
  1200. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1201. font-weight:500;
  1202. font-style:normal;
  1203. font-size:12px;
  1204. color:#FFFFFF;
  1205. }
  1206. #u156888 {
  1207. border-width:0px;
  1208. position:absolute;
  1209. left:122px;
  1210. top:345px;
  1211. width:253px;
  1212. height:17px;
  1213. display:flex;
  1214. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1215. font-weight:500;
  1216. font-style:normal;
  1217. font-size:12px;
  1218. color:#FFFFFF;
  1219. }
  1220. #u156888 .text {
  1221. position:absolute;
  1222. align-self:flex-start;
  1223. padding:0px 0px 0px 0px;
  1224. box-sizing:border-box;
  1225. width:100%;
  1226. }
  1227. #u156888_text {
  1228. border-width:0px;
  1229. white-space:nowrap;
  1230. text-transform:none;
  1231. }
  1232. #u156889_div {
  1233. border-width:0px;
  1234. position:absolute;
  1235. left:0px;
  1236. top:0px;
  1237. width:375px;
  1238. height:230px;
  1239. background:inherit;
  1240. background-color:rgba(255, 255, 255, 1);
  1241. box-sizing:border-box;
  1242. border-width:1px;
  1243. border-style:solid;
  1244. border-color:rgba(242, 242, 242, 1);
  1245. border-left:0px;
  1246. border-top:0px;
  1247. border-right:0px;
  1248. border-radius:0px;
  1249. border-bottom-right-radius:0px;
  1250. border-bottom-left-radius:0px;
  1251. -moz-box-shadow:none;
  1252. -webkit-box-shadow:none;
  1253. box-shadow:none;
  1254. }
  1255. #u156889 {
  1256. border-width:0px;
  1257. position:absolute;
  1258. left:29px;
  1259. top:391px;
  1260. width:375px;
  1261. height:230px;
  1262. display:flex;
  1263. }
  1264. #u156889 .text {
  1265. position:absolute;
  1266. align-self:center;
  1267. padding:2px 2px 2px 2px;
  1268. box-sizing:border-box;
  1269. width:100%;
  1270. }
  1271. #u156889_text {
  1272. border-width:0px;
  1273. word-wrap:break-word;
  1274. text-transform:none;
  1275. visibility:hidden;
  1276. }
  1277. #u156890 {
  1278. border-width:0px;
  1279. position:absolute;
  1280. left:0px;
  1281. top:0px;
  1282. width:0px;
  1283. height:0px;
  1284. }
  1285. #u156891_div {
  1286. border-width:0px;
  1287. position:absolute;
  1288. left:0px;
  1289. top:0px;
  1290. width:30px;
  1291. height:30px;
  1292. background:inherit;
  1293. background-color:rgba(255, 255, 255, 1);
  1294. box-sizing:border-box;
  1295. border-width:1px;
  1296. border-style:solid;
  1297. border-color:rgba(121, 121, 121, 1);
  1298. border-radius:4px;
  1299. -moz-box-shadow:none;
  1300. -webkit-box-shadow:none;
  1301. box-shadow:none;
  1302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1303. font-weight:400;
  1304. font-style:normal;
  1305. font-size:8px;
  1306. }
  1307. #u156891 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:147px;
  1311. top:411px;
  1312. width:30px;
  1313. height:30px;
  1314. display:flex;
  1315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1316. font-weight:400;
  1317. font-style:normal;
  1318. font-size:8px;
  1319. }
  1320. #u156891 .text {
  1321. position:absolute;
  1322. align-self:center;
  1323. padding:2px 2px 2px 2px;
  1324. box-sizing:border-box;
  1325. width:100%;
  1326. }
  1327. #u156891_text {
  1328. border-width:0px;
  1329. word-wrap:break-word;
  1330. text-transform:none;
  1331. }
  1332. #u156892_div {
  1333. border-width:0px;
  1334. position:absolute;
  1335. left:0px;
  1336. top:0px;
  1337. width:49px;
  1338. height:17px;
  1339. background:inherit;
  1340. background-color:rgba(255, 255, 255, 0);
  1341. border:none;
  1342. border-radius:0px;
  1343. -moz-box-shadow:none;
  1344. -webkit-box-shadow:none;
  1345. box-shadow:none;
  1346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1347. font-weight:400;
  1348. font-style:normal;
  1349. font-size:12px;
  1350. }
  1351. #u156892 {
  1352. border-width:0px;
  1353. position:absolute;
  1354. left:138px;
  1355. top:446px;
  1356. width:49px;
  1357. height:17px;
  1358. display:flex;
  1359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1360. font-weight:400;
  1361. font-style:normal;
  1362. font-size:12px;
  1363. }
  1364. #u156892 .text {
  1365. position:absolute;
  1366. align-self:flex-start;
  1367. padding:0px 0px 0px 0px;
  1368. box-sizing:border-box;
  1369. width:100%;
  1370. }
  1371. #u156892_text {
  1372. border-width:0px;
  1373. white-space:nowrap;
  1374. text-transform:none;
  1375. }
  1376. #u156893 {
  1377. border-width:0px;
  1378. position:absolute;
  1379. left:0px;
  1380. top:0px;
  1381. width:0px;
  1382. height:0px;
  1383. }
  1384. #u156894_div {
  1385. border-width:0px;
  1386. position:absolute;
  1387. left:0px;
  1388. top:0px;
  1389. width:30px;
  1390. height:30px;
  1391. background:inherit;
  1392. background-color:rgba(255, 255, 255, 1);
  1393. box-sizing:border-box;
  1394. border-width:1px;
  1395. border-style:solid;
  1396. border-color:rgba(121, 121, 121, 1);
  1397. border-radius:4px;
  1398. -moz-box-shadow:none;
  1399. -webkit-box-shadow:none;
  1400. box-shadow:none;
  1401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1402. font-weight:400;
  1403. font-style:normal;
  1404. font-size:8px;
  1405. }
  1406. #u156894 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:59px;
  1410. top:411px;
  1411. width:30px;
  1412. height:30px;
  1413. display:flex;
  1414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1415. font-weight:400;
  1416. font-style:normal;
  1417. font-size:8px;
  1418. }
  1419. #u156894 .text {
  1420. position:absolute;
  1421. align-self:center;
  1422. padding:2px 2px 2px 2px;
  1423. box-sizing:border-box;
  1424. width:100%;
  1425. }
  1426. #u156894_text {
  1427. border-width:0px;
  1428. word-wrap:break-word;
  1429. text-transform:none;
  1430. }
  1431. #u156895_div {
  1432. border-width:0px;
  1433. position:absolute;
  1434. left:0px;
  1435. top:0px;
  1436. width:49px;
  1437. height:17px;
  1438. background:inherit;
  1439. background-color:rgba(255, 255, 255, 0);
  1440. border:none;
  1441. border-radius:0px;
  1442. -moz-box-shadow:none;
  1443. -webkit-box-shadow:none;
  1444. box-shadow:none;
  1445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1446. font-weight:400;
  1447. font-style:normal;
  1448. font-size:12px;
  1449. }
  1450. #u156895 {
  1451. border-width:0px;
  1452. position:absolute;
  1453. left:49px;
  1454. top:445px;
  1455. width:49px;
  1456. height:17px;
  1457. display:flex;
  1458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1459. font-weight:400;
  1460. font-style:normal;
  1461. font-size:12px;
  1462. }
  1463. #u156895 .text {
  1464. position:absolute;
  1465. align-self:flex-start;
  1466. padding:0px 0px 0px 0px;
  1467. box-sizing:border-box;
  1468. width:100%;
  1469. }
  1470. #u156895_text {
  1471. border-width:0px;
  1472. white-space:nowrap;
  1473. text-transform:none;
  1474. }
  1475. #u156896 {
  1476. border-width:0px;
  1477. position:absolute;
  1478. left:0px;
  1479. top:0px;
  1480. width:0px;
  1481. height:0px;
  1482. }
  1483. #u156897_div {
  1484. border-width:0px;
  1485. position:absolute;
  1486. left:0px;
  1487. top:0px;
  1488. width:30px;
  1489. height:30px;
  1490. background:inherit;
  1491. background-color:rgba(255, 255, 255, 1);
  1492. box-sizing:border-box;
  1493. border-width:1px;
  1494. border-style:solid;
  1495. border-color:rgba(121, 121, 121, 1);
  1496. border-radius:4px;
  1497. -moz-box-shadow:none;
  1498. -webkit-box-shadow:none;
  1499. box-shadow:none;
  1500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1501. font-weight:400;
  1502. font-style:normal;
  1503. font-size:8px;
  1504. }
  1505. #u156897 {
  1506. border-width:0px;
  1507. position:absolute;
  1508. left:325px;
  1509. top:482px;
  1510. width:30px;
  1511. height:30px;
  1512. display:flex;
  1513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1514. font-weight:400;
  1515. font-style:normal;
  1516. font-size:8px;
  1517. }
  1518. #u156897 .text {
  1519. position:absolute;
  1520. align-self:center;
  1521. padding:2px 2px 2px 2px;
  1522. box-sizing:border-box;
  1523. width:100%;
  1524. }
  1525. #u156897_text {
  1526. border-width:0px;
  1527. word-wrap:break-word;
  1528. text-transform:none;
  1529. }
  1530. #u156898_div {
  1531. border-width:0px;
  1532. position:absolute;
  1533. left:0px;
  1534. top:0px;
  1535. width:49px;
  1536. height:17px;
  1537. background:inherit;
  1538. background-color:rgba(255, 255, 255, 0);
  1539. border:none;
  1540. border-radius:0px;
  1541. -moz-box-shadow:none;
  1542. -webkit-box-shadow:none;
  1543. box-shadow:none;
  1544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1545. font-weight:400;
  1546. font-style:normal;
  1547. font-size:12px;
  1548. }
  1549. #u156898 {
  1550. border-width:0px;
  1551. position:absolute;
  1552. left:316px;
  1553. top:517px;
  1554. width:49px;
  1555. height:17px;
  1556. display:flex;
  1557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1558. font-weight:400;
  1559. font-style:normal;
  1560. font-size:12px;
  1561. }
  1562. #u156898 .text {
  1563. position:absolute;
  1564. align-self:flex-start;
  1565. padding:0px 0px 0px 0px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u156898_text {
  1570. border-width:0px;
  1571. white-space:nowrap;
  1572. text-transform:none;
  1573. }
  1574. #u156899 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:0px;
  1578. top:0px;
  1579. width:0px;
  1580. height:0px;
  1581. }
  1582. #u156900_div {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:0px;
  1586. top:0px;
  1587. width:30px;
  1588. height:30px;
  1589. background:inherit;
  1590. background-color:rgba(255, 255, 255, 1);
  1591. box-sizing:border-box;
  1592. border-width:1px;
  1593. border-style:solid;
  1594. border-color:rgba(121, 121, 121, 1);
  1595. border-radius:4px;
  1596. -moz-box-shadow:none;
  1597. -webkit-box-shadow:none;
  1598. box-shadow:none;
  1599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1600. font-weight:400;
  1601. font-style:normal;
  1602. font-size:8px;
  1603. }
  1604. #u156900 {
  1605. border-width:0px;
  1606. position:absolute;
  1607. left:237px;
  1608. top:412px;
  1609. width:30px;
  1610. height:30px;
  1611. display:flex;
  1612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1613. font-weight:400;
  1614. font-style:normal;
  1615. font-size:8px;
  1616. }
  1617. #u156900 .text {
  1618. position:absolute;
  1619. align-self:center;
  1620. padding:2px 2px 2px 2px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u156900_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. }
  1629. #u156901_div {
  1630. border-width:0px;
  1631. position:absolute;
  1632. left:0px;
  1633. top:0px;
  1634. width:49px;
  1635. height:17px;
  1636. background:inherit;
  1637. background-color:rgba(255, 255, 255, 0);
  1638. border:none;
  1639. border-radius:0px;
  1640. -moz-box-shadow:none;
  1641. -webkit-box-shadow:none;
  1642. box-shadow:none;
  1643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1644. font-weight:400;
  1645. font-style:normal;
  1646. font-size:12px;
  1647. }
  1648. #u156901 {
  1649. border-width:0px;
  1650. position:absolute;
  1651. left:227px;
  1652. top:446px;
  1653. width:49px;
  1654. height:17px;
  1655. display:flex;
  1656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1657. font-weight:400;
  1658. font-style:normal;
  1659. font-size:12px;
  1660. }
  1661. #u156901 .text {
  1662. position:absolute;
  1663. align-self:flex-start;
  1664. padding:0px 0px 0px 0px;
  1665. box-sizing:border-box;
  1666. width:100%;
  1667. }
  1668. #u156901_text {
  1669. border-width:0px;
  1670. white-space:nowrap;
  1671. text-transform:none;
  1672. }
  1673. #u156902 {
  1674. border-width:0px;
  1675. position:absolute;
  1676. left:0px;
  1677. top:0px;
  1678. width:0px;
  1679. height:0px;
  1680. }
  1681. #u156903_div {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:0px;
  1685. top:0px;
  1686. width:375px;
  1687. height:213px;
  1688. background:inherit;
  1689. background-color:rgba(255, 255, 255, 1);
  1690. box-sizing:border-box;
  1691. border-width:1px;
  1692. border-style:solid;
  1693. border-color:rgba(242, 242, 242, 1);
  1694. border-left:0px;
  1695. border-top:0px;
  1696. border-right:0px;
  1697. border-radius:0px;
  1698. border-bottom-right-radius:0px;
  1699. border-bottom-left-radius:0px;
  1700. -moz-box-shadow:none;
  1701. -webkit-box-shadow:none;
  1702. box-shadow:none;
  1703. }
  1704. #u156903 {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:29px;
  1708. top:631px;
  1709. width:375px;
  1710. height:213px;
  1711. display:flex;
  1712. }
  1713. #u156903 .text {
  1714. position:absolute;
  1715. align-self:center;
  1716. padding:2px 2px 2px 2px;
  1717. box-sizing:border-box;
  1718. width:100%;
  1719. }
  1720. #u156903_text {
  1721. border-width:0px;
  1722. word-wrap:break-word;
  1723. text-transform:none;
  1724. visibility:hidden;
  1725. }
  1726. #u156904_div {
  1727. border-width:0px;
  1728. position:absolute;
  1729. left:0px;
  1730. top:0px;
  1731. width:57px;
  1732. height:20px;
  1733. background:inherit;
  1734. background-color:rgba(255, 255, 255, 0);
  1735. border:none;
  1736. border-radius:0px;
  1737. -moz-box-shadow:none;
  1738. -webkit-box-shadow:none;
  1739. box-shadow:none;
  1740. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1741. font-weight:500;
  1742. font-style:normal;
  1743. }
  1744. #u156904 {
  1745. border-width:0px;
  1746. position:absolute;
  1747. left:39px;
  1748. top:646px;
  1749. width:57px;
  1750. height:20px;
  1751. display:flex;
  1752. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1753. font-weight:500;
  1754. font-style:normal;
  1755. }
  1756. #u156904 .text {
  1757. position:absolute;
  1758. align-self:flex-start;
  1759. padding:0px 0px 0px 0px;
  1760. box-sizing:border-box;
  1761. width:100%;
  1762. }
  1763. #u156904_text {
  1764. border-width:0px;
  1765. white-space:nowrap;
  1766. text-transform:none;
  1767. }
  1768. #u156905_div {
  1769. border-width:0px;
  1770. position:absolute;
  1771. left:0px;
  1772. top:0px;
  1773. width:355px;
  1774. height:70px;
  1775. background:inherit;
  1776. background-color:rgba(51, 51, 51, 1);
  1777. border:none;
  1778. border-radius:4px;
  1779. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1780. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1781. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1782. }
  1783. #u156905 {
  1784. border-width:0px;
  1785. position:absolute;
  1786. left:39px;
  1787. top:675px;
  1788. width:355px;
  1789. height:70px;
  1790. display:flex;
  1791. }
  1792. #u156905 .text {
  1793. position:absolute;
  1794. align-self:center;
  1795. padding:2px 2px 2px 2px;
  1796. box-sizing:border-box;
  1797. width:100%;
  1798. }
  1799. #u156905_text {
  1800. border-width:0px;
  1801. word-wrap:break-word;
  1802. text-transform:none;
  1803. visibility:hidden;
  1804. }
  1805. #u156906_img {
  1806. border-width:0px;
  1807. position:absolute;
  1808. left:0px;
  1809. top:0px;
  1810. width:29px;
  1811. height:29px;
  1812. }
  1813. #u156906 {
  1814. border-width:0px;
  1815. position:absolute;
  1816. left:49px;
  1817. top:689px;
  1818. width:29px;
  1819. height:29px;
  1820. display:flex;
  1821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1822. font-weight:400;
  1823. font-style:normal;
  1824. font-size:14px;
  1825. }
  1826. #u156906 .text {
  1827. position:absolute;
  1828. align-self:center;
  1829. padding:2px 2px 2px 2px;
  1830. box-sizing:border-box;
  1831. width:100%;
  1832. }
  1833. #u156906_text {
  1834. border-width:0px;
  1835. word-wrap:break-word;
  1836. text-transform:none;
  1837. }
  1838. #u156907_div {
  1839. border-width:0px;
  1840. position:absolute;
  1841. left:0px;
  1842. top:0px;
  1843. width:73px;
  1844. height:25px;
  1845. background:inherit;
  1846. background-color:rgba(255, 255, 255, 0);
  1847. border:none;
  1848. border-radius:0px;
  1849. -moz-box-shadow:none;
  1850. -webkit-box-shadow:none;
  1851. box-shadow:none;
  1852. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1853. font-weight:500;
  1854. font-style:normal;
  1855. font-size:18px;
  1856. color:#FFFFFF;
  1857. }
  1858. #u156907 {
  1859. border-width:0px;
  1860. position:absolute;
  1861. left:92px;
  1862. top:691px;
  1863. width:73px;
  1864. height:25px;
  1865. display:flex;
  1866. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1867. font-weight:500;
  1868. font-style:normal;
  1869. font-size:18px;
  1870. color:#FFFFFF;
  1871. }
  1872. #u156907 .text {
  1873. position:absolute;
  1874. align-self:flex-start;
  1875. padding:0px 0px 0px 0px;
  1876. box-sizing:border-box;
  1877. width:100%;
  1878. }
  1879. #u156907_text {
  1880. border-width:0px;
  1881. white-space:nowrap;
  1882. text-transform:none;
  1883. }
  1884. #u156908_img {
  1885. border-width:0px;
  1886. position:absolute;
  1887. left:0px;
  1888. top:0px;
  1889. width:20px;
  1890. height:20px;
  1891. }
  1892. #u156908 {
  1893. border-width:0px;
  1894. position:absolute;
  1895. left:356px;
  1896. top:704px;
  1897. width:20px;
  1898. height:20px;
  1899. display:flex;
  1900. }
  1901. #u156908 .text {
  1902. position:absolute;
  1903. align-self:center;
  1904. padding:2px 2px 2px 2px;
  1905. box-sizing:border-box;
  1906. width:100%;
  1907. }
  1908. #u156908_text {
  1909. border-width:0px;
  1910. word-wrap:break-word;
  1911. text-transform:none;
  1912. visibility:hidden;
  1913. }
  1914. #u156909_div {
  1915. border-width:0px;
  1916. position:absolute;
  1917. left:0px;
  1918. top:0px;
  1919. width:189px;
  1920. height:17px;
  1921. background:inherit;
  1922. background-color:rgba(255, 255, 255, 0);
  1923. border:none;
  1924. border-radius:0px;
  1925. -moz-box-shadow:none;
  1926. -webkit-box-shadow:none;
  1927. box-shadow:none;
  1928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1929. font-weight:400;
  1930. font-style:normal;
  1931. font-size:12px;
  1932. color:#FFFFFF;
  1933. }
  1934. #u156909 {
  1935. border-width:0px;
  1936. position:absolute;
  1937. left:92px;
  1938. top:716px;
  1939. width:189px;
  1940. height:17px;
  1941. display:flex;
  1942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1943. font-weight:400;
  1944. font-style:normal;
  1945. font-size:12px;
  1946. color:#FFFFFF;
  1947. }
  1948. #u156909 .text {
  1949. position:absolute;
  1950. align-self:flex-start;
  1951. padding:0px 0px 0px 0px;
  1952. box-sizing:border-box;
  1953. width:100%;
  1954. }
  1955. #u156909_text {
  1956. border-width:0px;
  1957. white-space:nowrap;
  1958. text-transform:none;
  1959. }
  1960. #u156910 {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:0px;
  1964. top:0px;
  1965. width:0px;
  1966. height:0px;
  1967. }
  1968. #u156911_div {
  1969. border-width:0px;
  1970. position:absolute;
  1971. left:0px;
  1972. top:0px;
  1973. width:170px;
  1974. height:70px;
  1975. background:inherit;
  1976. background-color:rgba(51, 51, 51, 1);
  1977. border:none;
  1978. border-radius:4px;
  1979. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1980. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1981. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1982. }
  1983. #u156911 {
  1984. border-width:0px;
  1985. position:absolute;
  1986. left:39px;
  1987. top:755px;
  1988. width:170px;
  1989. height:70px;
  1990. display:flex;
  1991. }
  1992. #u156911 .text {
  1993. position:absolute;
  1994. align-self:center;
  1995. padding:2px 2px 2px 2px;
  1996. box-sizing:border-box;
  1997. width:100%;
  1998. }
  1999. #u156911_text {
  2000. border-width:0px;
  2001. word-wrap:break-word;
  2002. text-transform:none;
  2003. visibility:hidden;
  2004. }
  2005. #u156912_img {
  2006. border-width:0px;
  2007. position:absolute;
  2008. left:0px;
  2009. top:0px;
  2010. width:29px;
  2011. height:29px;
  2012. }
  2013. #u156912 {
  2014. border-width:0px;
  2015. position:absolute;
  2016. left:49px;
  2017. top:769px;
  2018. width:29px;
  2019. height:29px;
  2020. display:flex;
  2021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2022. font-weight:400;
  2023. font-style:normal;
  2024. font-size:14px;
  2025. }
  2026. #u156912 .text {
  2027. position:absolute;
  2028. align-self:center;
  2029. padding:2px 2px 2px 2px;
  2030. box-sizing:border-box;
  2031. width:100%;
  2032. }
  2033. #u156912_text {
  2034. border-width:0px;
  2035. word-wrap:break-word;
  2036. text-transform:none;
  2037. }
  2038. #u156913_div {
  2039. border-width:0px;
  2040. position:absolute;
  2041. left:0px;
  2042. top:0px;
  2043. width:73px;
  2044. height:25px;
  2045. background:inherit;
  2046. background-color:rgba(255, 255, 255, 0);
  2047. border:none;
  2048. border-radius:0px;
  2049. -moz-box-shadow:none;
  2050. -webkit-box-shadow:none;
  2051. box-shadow:none;
  2052. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2053. font-weight:500;
  2054. font-style:normal;
  2055. font-size:18px;
  2056. color:#FFFFFF;
  2057. }
  2058. #u156913 {
  2059. border-width:0px;
  2060. position:absolute;
  2061. left:92px;
  2062. top:771px;
  2063. width:73px;
  2064. height:25px;
  2065. display:flex;
  2066. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2067. font-weight:500;
  2068. font-style:normal;
  2069. font-size:18px;
  2070. color:#FFFFFF;
  2071. }
  2072. #u156913 .text {
  2073. position:absolute;
  2074. align-self:flex-start;
  2075. padding:0px 0px 0px 0px;
  2076. box-sizing:border-box;
  2077. width:100%;
  2078. }
  2079. #u156913_text {
  2080. border-width:0px;
  2081. white-space:nowrap;
  2082. text-transform:none;
  2083. }
  2084. #u156914_div {
  2085. border-width:0px;
  2086. position:absolute;
  2087. left:0px;
  2088. top:0px;
  2089. width:97px;
  2090. height:17px;
  2091. background:inherit;
  2092. background-color:rgba(255, 255, 255, 0);
  2093. border:none;
  2094. border-radius:0px;
  2095. -moz-box-shadow:none;
  2096. -webkit-box-shadow:none;
  2097. box-shadow:none;
  2098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2099. font-weight:400;
  2100. font-style:normal;
  2101. font-size:12px;
  2102. color:#FFFFFF;
  2103. }
  2104. #u156914 {
  2105. border-width:0px;
  2106. position:absolute;
  2107. left:92px;
  2108. top:796px;
  2109. width:97px;
  2110. height:17px;
  2111. display:flex;
  2112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2113. font-weight:400;
  2114. font-style:normal;
  2115. font-size:12px;
  2116. color:#FFFFFF;
  2117. }
  2118. #u156914 .text {
  2119. position:absolute;
  2120. align-self:flex-start;
  2121. padding:0px 0px 0px 0px;
  2122. box-sizing:border-box;
  2123. width:100%;
  2124. }
  2125. #u156914_text {
  2126. border-width:0px;
  2127. white-space:nowrap;
  2128. text-transform:none;
  2129. }
  2130. #u156915 {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:0px;
  2134. top:0px;
  2135. width:0px;
  2136. height:0px;
  2137. }
  2138. #u156916_div {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:0px;
  2142. top:0px;
  2143. width:170px;
  2144. height:70px;
  2145. background:inherit;
  2146. background-color:rgba(51, 51, 51, 1);
  2147. border:none;
  2148. border-radius:4px;
  2149. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2150. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2151. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2152. }
  2153. #u156916 {
  2154. border-width:0px;
  2155. position:absolute;
  2156. left:224px;
  2157. top:755px;
  2158. width:170px;
  2159. height:70px;
  2160. display:flex;
  2161. }
  2162. #u156916 .text {
  2163. position:absolute;
  2164. align-self:center;
  2165. padding:2px 2px 2px 2px;
  2166. box-sizing:border-box;
  2167. width:100%;
  2168. }
  2169. #u156916_text {
  2170. border-width:0px;
  2171. word-wrap:break-word;
  2172. text-transform:none;
  2173. visibility:hidden;
  2174. }
  2175. #u156917_img {
  2176. border-width:0px;
  2177. position:absolute;
  2178. left:0px;
  2179. top:0px;
  2180. width:29px;
  2181. height:29px;
  2182. }
  2183. #u156917 {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:234px;
  2187. top:769px;
  2188. width:29px;
  2189. height:29px;
  2190. display:flex;
  2191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2192. font-weight:400;
  2193. font-style:normal;
  2194. font-size:14px;
  2195. }
  2196. #u156917 .text {
  2197. position:absolute;
  2198. align-self:center;
  2199. padding:2px 2px 2px 2px;
  2200. box-sizing:border-box;
  2201. width:100%;
  2202. }
  2203. #u156917_text {
  2204. border-width:0px;
  2205. word-wrap:break-word;
  2206. text-transform:none;
  2207. }
  2208. #u156918_div {
  2209. border-width:0px;
  2210. position:absolute;
  2211. left:0px;
  2212. top:0px;
  2213. width:73px;
  2214. height:25px;
  2215. background:inherit;
  2216. background-color:rgba(255, 255, 255, 0);
  2217. border:none;
  2218. border-radius:0px;
  2219. -moz-box-shadow:none;
  2220. -webkit-box-shadow:none;
  2221. box-shadow:none;
  2222. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2223. font-weight:500;
  2224. font-style:normal;
  2225. font-size:18px;
  2226. color:#FFFFFF;
  2227. }
  2228. #u156918 {
  2229. border-width:0px;
  2230. position:absolute;
  2231. left:277px;
  2232. top:771px;
  2233. width:73px;
  2234. height:25px;
  2235. display:flex;
  2236. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2237. font-weight:500;
  2238. font-style:normal;
  2239. font-size:18px;
  2240. color:#FFFFFF;
  2241. }
  2242. #u156918 .text {
  2243. position:absolute;
  2244. align-self:flex-start;
  2245. padding:0px 0px 0px 0px;
  2246. box-sizing:border-box;
  2247. width:100%;
  2248. }
  2249. #u156918_text {
  2250. border-width:0px;
  2251. white-space:nowrap;
  2252. text-transform:none;
  2253. }
  2254. #u156919_div {
  2255. border-width:0px;
  2256. position:absolute;
  2257. left:0px;
  2258. top:0px;
  2259. width:97px;
  2260. height:17px;
  2261. background:inherit;
  2262. background-color:rgba(255, 255, 255, 0);
  2263. border:none;
  2264. border-radius:0px;
  2265. -moz-box-shadow:none;
  2266. -webkit-box-shadow:none;
  2267. box-shadow:none;
  2268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2269. font-weight:400;
  2270. font-style:normal;
  2271. font-size:12px;
  2272. color:#FFFFFF;
  2273. }
  2274. #u156919 {
  2275. border-width:0px;
  2276. position:absolute;
  2277. left:277px;
  2278. top:796px;
  2279. width:97px;
  2280. height:17px;
  2281. display:flex;
  2282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2283. font-weight:400;
  2284. font-style:normal;
  2285. font-size:12px;
  2286. color:#FFFFFF;
  2287. }
  2288. #u156919 .text {
  2289. position:absolute;
  2290. align-self:flex-start;
  2291. padding:0px 0px 0px 0px;
  2292. box-sizing:border-box;
  2293. width:100%;
  2294. }
  2295. #u156919_text {
  2296. border-width:0px;
  2297. white-space:nowrap;
  2298. text-transform:none;
  2299. }
  2300. #u156920_img {
  2301. border-width:0px;
  2302. position:absolute;
  2303. left:0px;
  2304. top:0px;
  2305. width:13px;
  2306. height:19px;
  2307. }
  2308. #u156920 {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:44px;
  2312. top:77px;
  2313. width:13px;
  2314. height:19px;
  2315. display:flex;
  2316. }
  2317. #u156920 .text {
  2318. position:absolute;
  2319. align-self:center;
  2320. padding:2px 2px 2px 2px;
  2321. box-sizing:border-box;
  2322. width:100%;
  2323. }
  2324. #u156920_text {
  2325. border-width:0px;
  2326. word-wrap:break-word;
  2327. text-transform:none;
  2328. visibility:hidden;
  2329. }
  2330. #u156921 {
  2331. border-width:0px;
  2332. position:absolute;
  2333. left:0px;
  2334. top:0px;
  2335. width:0px;
  2336. height:0px;
  2337. }
  2338. #u156922_div {
  2339. border-width:0px;
  2340. position:absolute;
  2341. left:0px;
  2342. top:0px;
  2343. width:30px;
  2344. height:30px;
  2345. background:inherit;
  2346. background-color:rgba(255, 255, 255, 1);
  2347. box-sizing:border-box;
  2348. border-width:1px;
  2349. border-style:solid;
  2350. border-color:rgba(121, 121, 121, 1);
  2351. border-radius:4px;
  2352. -moz-box-shadow:none;
  2353. -webkit-box-shadow:none;
  2354. box-shadow:none;
  2355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2356. font-weight:400;
  2357. font-style:normal;
  2358. font-size:8px;
  2359. }
  2360. #u156922 {
  2361. border-width:0px;
  2362. position:absolute;
  2363. left:237px;
  2364. top:553px;
  2365. width:30px;
  2366. height:30px;
  2367. display:flex;
  2368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2369. font-weight:400;
  2370. font-style:normal;
  2371. font-size:8px;
  2372. }
  2373. #u156922 .text {
  2374. position:absolute;
  2375. align-self:center;
  2376. padding:2px 2px 2px 2px;
  2377. box-sizing:border-box;
  2378. width:100%;
  2379. }
  2380. #u156922_text {
  2381. border-width:0px;
  2382. word-wrap:break-word;
  2383. text-transform:none;
  2384. }
  2385. #u156923_div {
  2386. border-width:0px;
  2387. position:absolute;
  2388. left:0px;
  2389. top:0px;
  2390. width:49px;
  2391. height:17px;
  2392. background:inherit;
  2393. background-color:rgba(255, 255, 255, 0);
  2394. border:none;
  2395. border-radius:0px;
  2396. -moz-box-shadow:none;
  2397. -webkit-box-shadow:none;
  2398. box-shadow:none;
  2399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2400. font-weight:400;
  2401. font-style:normal;
  2402. font-size:12px;
  2403. }
  2404. #u156923 {
  2405. border-width:0px;
  2406. position:absolute;
  2407. left:227px;
  2408. top:587px;
  2409. width:49px;
  2410. height:17px;
  2411. display:flex;
  2412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2413. font-weight:400;
  2414. font-style:normal;
  2415. font-size:12px;
  2416. }
  2417. #u156923 .text {
  2418. position:absolute;
  2419. align-self:flex-start;
  2420. padding:0px 0px 0px 0px;
  2421. box-sizing:border-box;
  2422. width:100%;
  2423. }
  2424. #u156923_text {
  2425. border-width:0px;
  2426. white-space:nowrap;
  2427. text-transform:none;
  2428. }
  2429. #u156924_div {
  2430. border-width:0px;
  2431. position:absolute;
  2432. left:0px;
  2433. top:0px;
  2434. width:57px;
  2435. height:20px;
  2436. background:inherit;
  2437. background-color:rgba(255, 255, 255, 0);
  2438. border:none;
  2439. border-radius:0px;
  2440. -moz-box-shadow:none;
  2441. -webkit-box-shadow:none;
  2442. box-shadow:none;
  2443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2444. font-weight:400;
  2445. font-style:normal;
  2446. }
  2447. #u156924 {
  2448. border-width:0px;
  2449. position:absolute;
  2450. left:44px;
  2451. top:115px;
  2452. width:57px;
  2453. height:20px;
  2454. display:flex;
  2455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2456. font-weight:400;
  2457. font-style:normal;
  2458. }
  2459. #u156924 .text {
  2460. position:absolute;
  2461. align-self:flex-start;
  2462. padding:0px 0px 0px 0px;
  2463. box-sizing:border-box;
  2464. width:100%;
  2465. }
  2466. #u156924_text {
  2467. border-width:0px;
  2468. white-space:nowrap;
  2469. text-transform:none;
  2470. }
  2471. #u156925_div {
  2472. border-width:0px;
  2473. position:absolute;
  2474. left:0px;
  2475. top:0px;
  2476. width:29px;
  2477. height:37px;
  2478. background:inherit;
  2479. background-color:rgba(255, 255, 255, 0);
  2480. border:none;
  2481. border-radius:0px;
  2482. -moz-box-shadow:none;
  2483. -webkit-box-shadow:none;
  2484. box-shadow:none;
  2485. font-family:'AppleColorEmoji', 'Apple Color Emoji', sans-serif;
  2486. font-weight:400;
  2487. font-style:normal;
  2488. font-size:28px;
  2489. }
  2490. #u156925 {
  2491. border-width:0px;
  2492. position:absolute;
  2493. left:367px;
  2494. top:105px;
  2495. width:29px;
  2496. height:37px;
  2497. display:flex;
  2498. font-family:'AppleColorEmoji', 'Apple Color Emoji', sans-serif;
  2499. font-weight:400;
  2500. font-style:normal;
  2501. font-size:28px;
  2502. }
  2503. #u156925 .text {
  2504. position:absolute;
  2505. align-self:flex-start;
  2506. padding:0px 0px 0px 0px;
  2507. box-sizing:border-box;
  2508. width:100%;
  2509. }
  2510. #u156925_text {
  2511. border-width:0px;
  2512. white-space:nowrap;
  2513. text-transform:none;
  2514. }
  2515. #u156926 {
  2516. border-width:0px;
  2517. position:absolute;
  2518. left:0px;
  2519. top:0px;
  2520. width:0px;
  2521. height:0px;
  2522. }
  2523. #u156927_div {
  2524. border-width:0px;
  2525. position:absolute;
  2526. left:0px;
  2527. top:0px;
  2528. width:30px;
  2529. height:30px;
  2530. background:inherit;
  2531. background-color:rgba(255, 255, 255, 1);
  2532. box-sizing:border-box;
  2533. border-width:1px;
  2534. border-style:solid;
  2535. border-color:rgba(121, 121, 121, 1);
  2536. border-radius:4px;
  2537. -moz-box-shadow:none;
  2538. -webkit-box-shadow:none;
  2539. box-shadow:none;
  2540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2541. font-weight:400;
  2542. font-style:normal;
  2543. font-size:8px;
  2544. }
  2545. #u156927 {
  2546. border-width:0px;
  2547. position:absolute;
  2548. left:325px;
  2549. top:411px;
  2550. width:30px;
  2551. height:30px;
  2552. display:flex;
  2553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2554. font-weight:400;
  2555. font-style:normal;
  2556. font-size:8px;
  2557. }
  2558. #u156927 .text {
  2559. position:absolute;
  2560. align-self:center;
  2561. padding:2px 2px 2px 2px;
  2562. box-sizing:border-box;
  2563. width:100%;
  2564. }
  2565. #u156927_text {
  2566. border-width:0px;
  2567. word-wrap:break-word;
  2568. text-transform:none;
  2569. }
  2570. #u156928_div {
  2571. border-width:0px;
  2572. position:absolute;
  2573. left:0px;
  2574. top:0px;
  2575. width:37px;
  2576. height:17px;
  2577. background:inherit;
  2578. background-color:rgba(255, 255, 255, 0);
  2579. border:none;
  2580. border-radius:0px;
  2581. -moz-box-shadow:none;
  2582. -webkit-box-shadow:none;
  2583. box-shadow:none;
  2584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2585. font-weight:400;
  2586. font-style:normal;
  2587. font-size:12px;
  2588. }
  2589. #u156928 {
  2590. border-width:0px;
  2591. position:absolute;
  2592. left:322px;
  2593. top:446px;
  2594. width:37px;
  2595. height:17px;
  2596. display:flex;
  2597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2598. font-weight:400;
  2599. font-style:normal;
  2600. font-size:12px;
  2601. }
  2602. #u156928 .text {
  2603. position:absolute;
  2604. align-self:flex-start;
  2605. padding:0px 0px 0px 0px;
  2606. box-sizing:border-box;
  2607. width:100%;
  2608. }
  2609. #u156928_text {
  2610. border-width:0px;
  2611. white-space:nowrap;
  2612. text-transform:none;
  2613. }
  2614. #u156929 {
  2615. border-width:0px;
  2616. position:absolute;
  2617. left:0px;
  2618. top:0px;
  2619. width:0px;
  2620. height:0px;
  2621. }
  2622. #u156930_div {
  2623. border-width:0px;
  2624. position:absolute;
  2625. left:0px;
  2626. top:0px;
  2627. width:30px;
  2628. height:30px;
  2629. background:inherit;
  2630. background-color:rgba(255, 255, 255, 1);
  2631. box-sizing:border-box;
  2632. border-width:1px;
  2633. border-style:solid;
  2634. border-color:rgba(121, 121, 121, 1);
  2635. border-radius:4px;
  2636. -moz-box-shadow:none;
  2637. -webkit-box-shadow:none;
  2638. box-shadow:none;
  2639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2640. font-weight:400;
  2641. font-style:normal;
  2642. font-size:8px;
  2643. }
  2644. #u156930 {
  2645. border-width:0px;
  2646. position:absolute;
  2647. left:58px;
  2648. top:482px;
  2649. width:30px;
  2650. height:30px;
  2651. display:flex;
  2652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2653. font-weight:400;
  2654. font-style:normal;
  2655. font-size:8px;
  2656. }
  2657. #u156930 .text {
  2658. position:absolute;
  2659. align-self:center;
  2660. padding:2px 2px 2px 2px;
  2661. box-sizing:border-box;
  2662. width:100%;
  2663. }
  2664. #u156930_text {
  2665. border-width:0px;
  2666. word-wrap:break-word;
  2667. text-transform:none;
  2668. }
  2669. #u156931_div {
  2670. border-width:0px;
  2671. position:absolute;
  2672. left:0px;
  2673. top:0px;
  2674. width:49px;
  2675. height:17px;
  2676. background:inherit;
  2677. background-color:rgba(255, 255, 255, 0);
  2678. border:none;
  2679. border-radius:0px;
  2680. -moz-box-shadow:none;
  2681. -webkit-box-shadow:none;
  2682. box-shadow:none;
  2683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2684. font-weight:400;
  2685. font-style:normal;
  2686. font-size:12px;
  2687. }
  2688. #u156931 {
  2689. border-width:0px;
  2690. position:absolute;
  2691. left:49px;
  2692. top:517px;
  2693. width:49px;
  2694. height:17px;
  2695. display:flex;
  2696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2697. font-weight:400;
  2698. font-style:normal;
  2699. font-size:12px;
  2700. }
  2701. #u156931 .text {
  2702. position:absolute;
  2703. align-self:flex-start;
  2704. padding:0px 0px 0px 0px;
  2705. box-sizing:border-box;
  2706. width:100%;
  2707. }
  2708. #u156931_text {
  2709. border-width:0px;
  2710. white-space:nowrap;
  2711. text-transform:none;
  2712. }
  2713. #u156932 {
  2714. border-width:0px;
  2715. position:absolute;
  2716. left:0px;
  2717. top:0px;
  2718. width:0px;
  2719. height:0px;
  2720. }
  2721. #u156933_div {
  2722. border-width:0px;
  2723. position:absolute;
  2724. left:0px;
  2725. top:0px;
  2726. width:30px;
  2727. height:30px;
  2728. background:inherit;
  2729. background-color:rgba(255, 255, 255, 1);
  2730. box-sizing:border-box;
  2731. border-width:1px;
  2732. border-style:solid;
  2733. border-color:rgba(121, 121, 121, 1);
  2734. border-radius:4px;
  2735. -moz-box-shadow:none;
  2736. -webkit-box-shadow:none;
  2737. box-shadow:none;
  2738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2739. font-weight:400;
  2740. font-style:normal;
  2741. font-size:8px;
  2742. }
  2743. #u156933 {
  2744. border-width:0px;
  2745. position:absolute;
  2746. left:326px;
  2747. top:553px;
  2748. width:30px;
  2749. height:30px;
  2750. display:flex;
  2751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2752. font-weight:400;
  2753. font-style:normal;
  2754. font-size:8px;
  2755. }
  2756. #u156933 .text {
  2757. position:absolute;
  2758. align-self:center;
  2759. padding:2px 2px 2px 2px;
  2760. box-sizing:border-box;
  2761. width:100%;
  2762. }
  2763. #u156933_text {
  2764. border-width:0px;
  2765. word-wrap:break-word;
  2766. text-transform:none;
  2767. }
  2768. #u156934_div {
  2769. border-width:0px;
  2770. position:absolute;
  2771. left:0px;
  2772. top:0px;
  2773. width:49px;
  2774. height:17px;
  2775. background:inherit;
  2776. background-color:rgba(255, 255, 255, 0);
  2777. border:none;
  2778. border-radius:0px;
  2779. -moz-box-shadow:none;
  2780. -webkit-box-shadow:none;
  2781. box-shadow:none;
  2782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2783. font-weight:400;
  2784. font-style:normal;
  2785. font-size:12px;
  2786. }
  2787. #u156934 {
  2788. border-width:0px;
  2789. position:absolute;
  2790. left:316px;
  2791. top:587px;
  2792. width:49px;
  2793. height:17px;
  2794. display:flex;
  2795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2796. font-weight:400;
  2797. font-style:normal;
  2798. font-size:12px;
  2799. }
  2800. #u156934 .text {
  2801. position:absolute;
  2802. align-self:flex-start;
  2803. padding:0px 0px 0px 0px;
  2804. box-sizing:border-box;
  2805. width:100%;
  2806. }
  2807. #u156934_text {
  2808. border-width:0px;
  2809. white-space:nowrap;
  2810. text-transform:none;
  2811. }
  2812. #u156935 {
  2813. border-width:0px;
  2814. position:absolute;
  2815. left:0px;
  2816. top:0px;
  2817. width:0px;
  2818. height:0px;
  2819. }
  2820. #u156936_div {
  2821. border-width:0px;
  2822. position:absolute;
  2823. left:0px;
  2824. top:0px;
  2825. width:30px;
  2826. height:30px;
  2827. background:inherit;
  2828. background-color:rgba(255, 255, 255, 1);
  2829. box-sizing:border-box;
  2830. border-width:1px;
  2831. border-style:solid;
  2832. border-color:rgba(121, 121, 121, 1);
  2833. border-radius:4px;
  2834. -moz-box-shadow:none;
  2835. -webkit-box-shadow:none;
  2836. box-shadow:none;
  2837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2838. font-weight:400;
  2839. font-style:normal;
  2840. font-size:8px;
  2841. }
  2842. #u156936 {
  2843. border-width:0px;
  2844. position:absolute;
  2845. left:58px;
  2846. top:554px;
  2847. width:30px;
  2848. height:30px;
  2849. display:flex;
  2850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2851. font-weight:400;
  2852. font-style:normal;
  2853. font-size:8px;
  2854. }
  2855. #u156936 .text {
  2856. position:absolute;
  2857. align-self:center;
  2858. padding:2px 2px 2px 2px;
  2859. box-sizing:border-box;
  2860. width:100%;
  2861. }
  2862. #u156936_text {
  2863. border-width:0px;
  2864. word-wrap:break-word;
  2865. text-transform:none;
  2866. }
  2867. #u156937_div {
  2868. border-width:0px;
  2869. position:absolute;
  2870. left:0px;
  2871. top:0px;
  2872. width:49px;
  2873. height:17px;
  2874. background:inherit;
  2875. background-color:rgba(255, 255, 255, 0);
  2876. border:none;
  2877. border-radius:0px;
  2878. -moz-box-shadow:none;
  2879. -webkit-box-shadow:none;
  2880. box-shadow:none;
  2881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2882. font-weight:400;
  2883. font-style:normal;
  2884. font-size:12px;
  2885. }
  2886. #u156937 {
  2887. border-width:0px;
  2888. position:absolute;
  2889. left:49px;
  2890. top:589px;
  2891. width:49px;
  2892. height:17px;
  2893. display:flex;
  2894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2895. font-weight:400;
  2896. font-style:normal;
  2897. font-size:12px;
  2898. }
  2899. #u156937 .text {
  2900. position:absolute;
  2901. align-self:flex-start;
  2902. padding:0px 0px 0px 0px;
  2903. box-sizing:border-box;
  2904. width:100%;
  2905. }
  2906. #u156937_text {
  2907. border-width:0px;
  2908. white-space:nowrap;
  2909. text-transform:none;
  2910. }
  2911. #u156938 {
  2912. border-width:0px;
  2913. position:absolute;
  2914. left:0px;
  2915. top:0px;
  2916. width:0px;
  2917. height:0px;
  2918. }
  2919. #u156939_div {
  2920. border-width:0px;
  2921. position:absolute;
  2922. left:0px;
  2923. top:0px;
  2924. width:30px;
  2925. height:30px;
  2926. background:inherit;
  2927. background-color:rgba(255, 255, 255, 1);
  2928. box-sizing:border-box;
  2929. border-width:1px;
  2930. border-style:solid;
  2931. border-color:rgba(121, 121, 121, 1);
  2932. border-radius:4px;
  2933. -moz-box-shadow:none;
  2934. -webkit-box-shadow:none;
  2935. box-shadow:none;
  2936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2937. font-weight:400;
  2938. font-style:normal;
  2939. font-size:8px;
  2940. }
  2941. #u156939 {
  2942. border-width:0px;
  2943. position:absolute;
  2944. left:147px;
  2945. top:554px;
  2946. width:30px;
  2947. height:30px;
  2948. display:flex;
  2949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2950. font-weight:400;
  2951. font-style:normal;
  2952. font-size:8px;
  2953. }
  2954. #u156939 .text {
  2955. position:absolute;
  2956. align-self:center;
  2957. padding:2px 2px 2px 2px;
  2958. box-sizing:border-box;
  2959. width:100%;
  2960. }
  2961. #u156939_text {
  2962. border-width:0px;
  2963. word-wrap:break-word;
  2964. text-transform:none;
  2965. }
  2966. #u156940_div {
  2967. border-width:0px;
  2968. position:absolute;
  2969. left:0px;
  2970. top:0px;
  2971. width:49px;
  2972. height:17px;
  2973. background:inherit;
  2974. background-color:rgba(255, 255, 255, 0);
  2975. border:none;
  2976. border-radius:0px;
  2977. -moz-box-shadow:none;
  2978. -webkit-box-shadow:none;
  2979. box-shadow:none;
  2980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2981. font-weight:400;
  2982. font-style:normal;
  2983. font-size:12px;
  2984. }
  2985. #u156940 {
  2986. border-width:0px;
  2987. position:absolute;
  2988. left:138px;
  2989. top:589px;
  2990. width:49px;
  2991. height:17px;
  2992. display:flex;
  2993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2994. font-weight:400;
  2995. font-style:normal;
  2996. font-size:12px;
  2997. }
  2998. #u156940 .text {
  2999. position:absolute;
  3000. align-self:flex-start;
  3001. padding:0px 0px 0px 0px;
  3002. box-sizing:border-box;
  3003. width:100%;
  3004. }
  3005. #u156940_text {
  3006. border-width:0px;
  3007. white-space:nowrap;
  3008. text-transform:none;
  3009. }
  3010. #u156941_img {
  3011. border-width:0px;
  3012. position:absolute;
  3013. left:0px;
  3014. top:0px;
  3015. width:375px;
  3016. height:798px;
  3017. }
  3018. #u156941 {
  3019. border-width:0px;
  3020. position:absolute;
  3021. left:29px;
  3022. top:844px;
  3023. width:375px;
  3024. height:798px;
  3025. display:flex;
  3026. }
  3027. #u156941 .text {
  3028. position:absolute;
  3029. align-self:center;
  3030. padding:2px 2px 2px 2px;
  3031. box-sizing:border-box;
  3032. width:100%;
  3033. }
  3034. #u156941_text {
  3035. border-width:0px;
  3036. word-wrap:break-word;
  3037. text-transform:none;
  3038. visibility:hidden;
  3039. }
  3040. #u156942 {
  3041. border-width:0px;
  3042. position:absolute;
  3043. left:0px;
  3044. top:0px;
  3045. width:0px;
  3046. height:0px;
  3047. }
  3048. #u156943_div {
  3049. border-width:0px;
  3050. position:absolute;
  3051. left:0px;
  3052. top:0px;
  3053. width:375px;
  3054. height:50px;
  3055. background:inherit;
  3056. background-color:rgba(255, 255, 255, 1);
  3057. box-sizing:border-box;
  3058. border-width:1px;
  3059. border-style:solid;
  3060. border-color:rgba(242, 242, 242, 1);
  3061. border-radius:26px;
  3062. border-top-left-radius:0px;
  3063. border-top-right-radius:0px;
  3064. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3065. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3066. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3067. }
  3068. #u156943 {
  3069. border-width:0px;
  3070. position:absolute;
  3071. left:29px;
  3072. top:1649px;
  3073. width:375px;
  3074. height:50px;
  3075. display:flex;
  3076. }
  3077. #u156943 .text {
  3078. position:absolute;
  3079. align-self:center;
  3080. padding:2px 2px 2px 2px;
  3081. box-sizing:border-box;
  3082. width:100%;
  3083. }
  3084. #u156943_text {
  3085. border-width:0px;
  3086. word-wrap:break-word;
  3087. text-transform:none;
  3088. visibility:hidden;
  3089. }
  3090. #u156944 {
  3091. border-width:0px;
  3092. position:absolute;
  3093. left:0px;
  3094. top:0px;
  3095. width:0px;
  3096. height:0px;
  3097. }
  3098. #u156945_div {
  3099. border-width:0px;
  3100. position:absolute;
  3101. left:0px;
  3102. top:0px;
  3103. width:77px;
  3104. height:50px;
  3105. background:inherit;
  3106. background-color:rgba(255, 255, 255, 1);
  3107. border:none;
  3108. border-radius:0px;
  3109. border-top-left-radius:0px;
  3110. border-top-right-radius:0px;
  3111. -moz-box-shadow:none;
  3112. -webkit-box-shadow:none;
  3113. box-shadow:none;
  3114. }
  3115. #u156945 {
  3116. border-width:0px;
  3117. position:absolute;
  3118. left:178px;
  3119. top:1649px;
  3120. width:77px;
  3121. height:50px;
  3122. display:flex;
  3123. }
  3124. #u156945 .text {
  3125. position:absolute;
  3126. align-self:center;
  3127. padding:2px 2px 2px 2px;
  3128. box-sizing:border-box;
  3129. width:100%;
  3130. }
  3131. #u156945_text {
  3132. border-width:0px;
  3133. word-wrap:break-word;
  3134. text-transform:none;
  3135. visibility:hidden;
  3136. }
  3137. #u156946 {
  3138. border-width:0px;
  3139. position:absolute;
  3140. left:0px;
  3141. top:0px;
  3142. width:0px;
  3143. height:0px;
  3144. }
  3145. #u156947_img {
  3146. border-width:0px;
  3147. position:absolute;
  3148. left:0px;
  3149. top:0px;
  3150. width:38px;
  3151. height:38px;
  3152. }
  3153. #u156947 {
  3154. border-width:0px;
  3155. position:absolute;
  3156. left:198px;
  3157. top:1639px;
  3158. width:38px;
  3159. height:38px;
  3160. display:flex;
  3161. font-size:12px;
  3162. color:#FFFFFF;
  3163. }
  3164. #u156947 .text {
  3165. position:absolute;
  3166. align-self:center;
  3167. padding:2px 2px 2px 2px;
  3168. box-sizing:border-box;
  3169. width:100%;
  3170. }
  3171. #u156947_text {
  3172. border-width:0px;
  3173. word-wrap:break-word;
  3174. text-transform:none;
  3175. }
  3176. #u156948_div {
  3177. border-width:0px;
  3178. position:absolute;
  3179. left:0px;
  3180. top:0px;
  3181. width:49px;
  3182. height:17px;
  3183. background:inherit;
  3184. background-color:rgba(255, 255, 255, 0);
  3185. border:none;
  3186. border-radius:0px;
  3187. -moz-box-shadow:none;
  3188. -webkit-box-shadow:none;
  3189. box-shadow:none;
  3190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3191. font-weight:400;
  3192. font-style:normal;
  3193. font-size:12px;
  3194. }
  3195. #u156948 {
  3196. border-width:0px;
  3197. position:absolute;
  3198. left:192px;
  3199. top:1678px;
  3200. width:49px;
  3201. height:17px;
  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. }
  3208. #u156948 .text {
  3209. position:absolute;
  3210. align-self:flex-start;
  3211. padding:0px 0px 0px 0px;
  3212. box-sizing:border-box;
  3213. width:100%;
  3214. }
  3215. #u156948_text {
  3216. border-width:0px;
  3217. white-space:nowrap;
  3218. text-transform:none;
  3219. }
  3220. #u156949 {
  3221. border-width:0px;
  3222. position:absolute;
  3223. left:0px;
  3224. top:0px;
  3225. width:0px;
  3226. height:0px;
  3227. }
  3228. #u156950_div {
  3229. border-width:0px;
  3230. position:absolute;
  3231. left:0px;
  3232. top:0px;
  3233. width:75px;
  3234. height:50px;
  3235. background:inherit;
  3236. background-color:rgba(24, 144, 255, 1);
  3237. border:none;
  3238. border-right:0px;
  3239. border-radius:26px;
  3240. border-top-left-radius:0px;
  3241. border-top-right-radius:0px;
  3242. border-bottom-right-radius:0px;
  3243. -moz-box-shadow:none;
  3244. -webkit-box-shadow:none;
  3245. box-shadow:none;
  3246. }
  3247. #u156950 {
  3248. border-width:0px;
  3249. position:absolute;
  3250. left:29px;
  3251. top:1649px;
  3252. width:75px;
  3253. height:50px;
  3254. display:flex;
  3255. }
  3256. #u156950 .text {
  3257. position:absolute;
  3258. align-self:center;
  3259. padding:2px 2px 2px 2px;
  3260. box-sizing:border-box;
  3261. width:100%;
  3262. }
  3263. #u156950_text {
  3264. border-width:0px;
  3265. word-wrap:break-word;
  3266. text-transform:none;
  3267. visibility:hidden;
  3268. }
  3269. #u156951 {
  3270. border-width:0px;
  3271. position:absolute;
  3272. left:0px;
  3273. top:0px;
  3274. width:0px;
  3275. height:0px;
  3276. }
  3277. #u156952_img {
  3278. border-width:0px;
  3279. position:absolute;
  3280. left:0px;
  3281. top:0px;
  3282. width:24px;
  3283. height:24px;
  3284. }
  3285. #u156952 {
  3286. border-width:0px;
  3287. position:absolute;
  3288. left:54px;
  3289. top:1653px;
  3290. width:24px;
  3291. height:24px;
  3292. display:flex;
  3293. font-size:8px;
  3294. }
  3295. #u156952 .text {
  3296. position:absolute;
  3297. align-self:center;
  3298. padding:2px 2px 2px 2px;
  3299. box-sizing:border-box;
  3300. width:100%;
  3301. }
  3302. #u156952_text {
  3303. border-width:0px;
  3304. word-wrap:break-word;
  3305. text-transform:none;
  3306. }
  3307. #u156953_div {
  3308. border-width:0px;
  3309. position:absolute;
  3310. left:0px;
  3311. top:0px;
  3312. width:25px;
  3313. height:17px;
  3314. background:inherit;
  3315. background-color:rgba(255, 255, 255, 0);
  3316. border:none;
  3317. border-radius:0px;
  3318. -moz-box-shadow:none;
  3319. -webkit-box-shadow:none;
  3320. box-shadow:none;
  3321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3322. font-weight:400;
  3323. font-style:normal;
  3324. font-size:12px;
  3325. color:#FFFFFF;
  3326. }
  3327. #u156953 {
  3328. border-width:0px;
  3329. position:absolute;
  3330. left:54px;
  3331. top:1678px;
  3332. width:25px;
  3333. height:17px;
  3334. display:flex;
  3335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3336. font-weight:400;
  3337. font-style:normal;
  3338. font-size:12px;
  3339. color:#FFFFFF;
  3340. }
  3341. #u156953 .text {
  3342. position:absolute;
  3343. align-self:flex-start;
  3344. padding:0px 0px 0px 0px;
  3345. box-sizing:border-box;
  3346. width:100%;
  3347. }
  3348. #u156953_text {
  3349. border-width:0px;
  3350. white-space:nowrap;
  3351. text-transform:none;
  3352. }
  3353. #u156954 {
  3354. border-width:0px;
  3355. position:absolute;
  3356. left:0px;
  3357. top:0px;
  3358. width:0px;
  3359. height:0px;
  3360. }
  3361. #u156955_div {
  3362. border-width:0px;
  3363. position:absolute;
  3364. left:0px;
  3365. top:0px;
  3366. width:75px;
  3367. height:50px;
  3368. background:inherit;
  3369. background-color:rgba(255, 255, 255, 1);
  3370. border:none;
  3371. border-left:0px;
  3372. border-radius:26px;
  3373. border-top-left-radius:0px;
  3374. border-top-right-radius:0px;
  3375. border-bottom-left-radius:0px;
  3376. -moz-box-shadow:none;
  3377. -webkit-box-shadow:none;
  3378. box-shadow:none;
  3379. }
  3380. #u156955 {
  3381. border-width:0px;
  3382. position:absolute;
  3383. left:329px;
  3384. top:1649px;
  3385. width:75px;
  3386. height:50px;
  3387. display:flex;
  3388. }
  3389. #u156955 .text {
  3390. position:absolute;
  3391. align-self:center;
  3392. padding:2px 2px 2px 2px;
  3393. box-sizing:border-box;
  3394. width:100%;
  3395. }
  3396. #u156955_text {
  3397. border-width:0px;
  3398. word-wrap:break-word;
  3399. text-transform:none;
  3400. visibility:hidden;
  3401. }
  3402. #u156956 {
  3403. border-width:0px;
  3404. position:absolute;
  3405. left:0px;
  3406. top:0px;
  3407. width:0px;
  3408. height:0px;
  3409. }
  3410. #u156957_img {
  3411. border-width:0px;
  3412. position:absolute;
  3413. left:0px;
  3414. top:0px;
  3415. width:24px;
  3416. height:24px;
  3417. }
  3418. #u156957 {
  3419. border-width:0px;
  3420. position:absolute;
  3421. left:354px;
  3422. top:1655px;
  3423. width:24px;
  3424. height:24px;
  3425. display:flex;
  3426. font-size:8px;
  3427. }
  3428. #u156957 .text {
  3429. position:absolute;
  3430. align-self:center;
  3431. padding:2px 2px 2px 2px;
  3432. box-sizing:border-box;
  3433. width:100%;
  3434. }
  3435. #u156957_text {
  3436. border-width:0px;
  3437. word-wrap:break-word;
  3438. text-transform:none;
  3439. }
  3440. #u156958_div {
  3441. border-width:0px;
  3442. position:absolute;
  3443. left:0px;
  3444. top:0px;
  3445. width:25px;
  3446. height:17px;
  3447. background:inherit;
  3448. background-color:rgba(255, 255, 255, 0);
  3449. border:none;
  3450. border-radius:0px;
  3451. -moz-box-shadow:none;
  3452. -webkit-box-shadow:none;
  3453. box-shadow:none;
  3454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3455. font-weight:400;
  3456. font-style:normal;
  3457. font-size:12px;
  3458. }
  3459. #u156958 {
  3460. border-width:0px;
  3461. position:absolute;
  3462. left:354px;
  3463. top:1680px;
  3464. width:25px;
  3465. height:17px;
  3466. display:flex;
  3467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3468. font-weight:400;
  3469. font-style:normal;
  3470. font-size:12px;
  3471. }
  3472. #u156958 .text {
  3473. position:absolute;
  3474. align-self:flex-start;
  3475. padding:0px 0px 0px 0px;
  3476. box-sizing:border-box;
  3477. width:100%;
  3478. }
  3479. #u156958_text {
  3480. border-width:0px;
  3481. white-space:nowrap;
  3482. text-transform:none;
  3483. }
  3484. #u156959 {
  3485. border-width:0px;
  3486. position:absolute;
  3487. left:0px;
  3488. top:0px;
  3489. width:0px;
  3490. height:0px;
  3491. }
  3492. #u156960_div {
  3493. border-width:0px;
  3494. position:absolute;
  3495. left:0px;
  3496. top:0px;
  3497. width:75px;
  3498. height:50px;
  3499. background:inherit;
  3500. background-color:rgba(255, 255, 255, 1);
  3501. border:none;
  3502. border-radius:0px;
  3503. border-top-left-radius:0px;
  3504. border-top-right-radius:0px;
  3505. -moz-box-shadow:none;
  3506. -webkit-box-shadow:none;
  3507. box-shadow:none;
  3508. }
  3509. #u156960 {
  3510. border-width:0px;
  3511. position:absolute;
  3512. left:254px;
  3513. top:1649px;
  3514. width:75px;
  3515. height:50px;
  3516. display:flex;
  3517. }
  3518. #u156960 .text {
  3519. position:absolute;
  3520. align-self:center;
  3521. padding:2px 2px 2px 2px;
  3522. box-sizing:border-box;
  3523. width:100%;
  3524. }
  3525. #u156960_text {
  3526. border-width:0px;
  3527. word-wrap:break-word;
  3528. text-transform:none;
  3529. visibility:hidden;
  3530. }
  3531. #u156961 {
  3532. border-width:0px;
  3533. position:absolute;
  3534. left:0px;
  3535. top:0px;
  3536. width:0px;
  3537. height:0px;
  3538. }
  3539. #u156962_img {
  3540. border-width:0px;
  3541. position:absolute;
  3542. left:0px;
  3543. top:0px;
  3544. width:24px;
  3545. height:24px;
  3546. }
  3547. #u156962 {
  3548. border-width:0px;
  3549. position:absolute;
  3550. left:279px;
  3551. top:1653px;
  3552. width:24px;
  3553. height:24px;
  3554. display:flex;
  3555. font-size:8px;
  3556. }
  3557. #u156962 .text {
  3558. position:absolute;
  3559. align-self:center;
  3560. padding:2px 2px 2px 2px;
  3561. box-sizing:border-box;
  3562. width:100%;
  3563. }
  3564. #u156962_text {
  3565. border-width:0px;
  3566. word-wrap:break-word;
  3567. text-transform:none;
  3568. }
  3569. #u156963_div {
  3570. border-width:0px;
  3571. position:absolute;
  3572. left:0px;
  3573. top:0px;
  3574. width:25px;
  3575. height:17px;
  3576. background:inherit;
  3577. background-color:rgba(255, 255, 255, 0);
  3578. border:none;
  3579. border-radius:0px;
  3580. -moz-box-shadow:none;
  3581. -webkit-box-shadow:none;
  3582. box-shadow:none;
  3583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3584. font-weight:400;
  3585. font-style:normal;
  3586. font-size:12px;
  3587. }
  3588. #u156963 {
  3589. border-width:0px;
  3590. position:absolute;
  3591. left:279px;
  3592. top:1678px;
  3593. width:25px;
  3594. height:17px;
  3595. display:flex;
  3596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3597. font-weight:400;
  3598. font-style:normal;
  3599. font-size:12px;
  3600. }
  3601. #u156963 .text {
  3602. position:absolute;
  3603. align-self:flex-start;
  3604. padding:0px 0px 0px 0px;
  3605. box-sizing:border-box;
  3606. width:100%;
  3607. }
  3608. #u156963_text {
  3609. border-width:0px;
  3610. white-space:nowrap;
  3611. text-transform:none;
  3612. }
  3613. #u156964 {
  3614. border-width:0px;
  3615. position:absolute;
  3616. left:0px;
  3617. top:0px;
  3618. width:0px;
  3619. height:0px;
  3620. }
  3621. #u156965_div {
  3622. border-width:0px;
  3623. position:absolute;
  3624. left:0px;
  3625. top:0px;
  3626. width:75px;
  3627. height:50px;
  3628. background:inherit;
  3629. background-color:rgba(255, 255, 255, 1);
  3630. border:none;
  3631. border-radius:0px;
  3632. border-top-left-radius:0px;
  3633. border-top-right-radius:0px;
  3634. -moz-box-shadow:none;
  3635. -webkit-box-shadow:none;
  3636. box-shadow:none;
  3637. }
  3638. #u156965 {
  3639. border-width:0px;
  3640. position:absolute;
  3641. left:104px;
  3642. top:1649px;
  3643. width:75px;
  3644. height:50px;
  3645. display:flex;
  3646. }
  3647. #u156965 .text {
  3648. position:absolute;
  3649. align-self:center;
  3650. padding:2px 2px 2px 2px;
  3651. box-sizing:border-box;
  3652. width:100%;
  3653. }
  3654. #u156965_text {
  3655. border-width:0px;
  3656. word-wrap:break-word;
  3657. text-transform:none;
  3658. visibility:hidden;
  3659. }
  3660. #u156966 {
  3661. border-width:0px;
  3662. position:absolute;
  3663. left:0px;
  3664. top:0px;
  3665. width:0px;
  3666. height:0px;
  3667. }
  3668. #u156967_img {
  3669. border-width:0px;
  3670. position:absolute;
  3671. left:0px;
  3672. top:0px;
  3673. width:24px;
  3674. height:24px;
  3675. }
  3676. #u156967 {
  3677. border-width:0px;
  3678. position:absolute;
  3679. left:129px;
  3680. top:1653px;
  3681. width:24px;
  3682. height:24px;
  3683. display:flex;
  3684. font-size:8px;
  3685. }
  3686. #u156967 .text {
  3687. position:absolute;
  3688. align-self:center;
  3689. padding:2px 2px 2px 2px;
  3690. box-sizing:border-box;
  3691. width:100%;
  3692. }
  3693. #u156967_text {
  3694. border-width:0px;
  3695. word-wrap:break-word;
  3696. text-transform:none;
  3697. }
  3698. #u156968_div {
  3699. border-width:0px;
  3700. position:absolute;
  3701. left:0px;
  3702. top:0px;
  3703. width:37px;
  3704. height:17px;
  3705. background:inherit;
  3706. background-color:rgba(255, 255, 255, 0);
  3707. border:none;
  3708. border-radius:0px;
  3709. -moz-box-shadow:none;
  3710. -webkit-box-shadow:none;
  3711. box-shadow:none;
  3712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3713. font-weight:400;
  3714. font-style:normal;
  3715. font-size:12px;
  3716. }
  3717. #u156968 {
  3718. border-width:0px;
  3719. position:absolute;
  3720. left:123px;
  3721. top:1678px;
  3722. width:37px;
  3723. height:17px;
  3724. display:flex;
  3725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3726. font-weight:400;
  3727. font-style:normal;
  3728. font-size:12px;
  3729. }
  3730. #u156968 .text {
  3731. position:absolute;
  3732. align-self:flex-start;
  3733. padding:0px 0px 0px 0px;
  3734. box-sizing:border-box;
  3735. width:100%;
  3736. }
  3737. #u156968_text {
  3738. border-width:0px;
  3739. white-space:nowrap;
  3740. text-transform:none;
  3741. }
  3742. #u156969 {
  3743. border-width:0px;
  3744. position:absolute;
  3745. left:0px;
  3746. top:0px;
  3747. width:0px;
  3748. height:0px;
  3749. }
  3750. #u156970_div {
  3751. border-width:0px;
  3752. position:absolute;
  3753. left:0px;
  3754. top:0px;
  3755. width:30px;
  3756. height:30px;
  3757. background:inherit;
  3758. background-color:rgba(255, 255, 255, 1);
  3759. box-sizing:border-box;
  3760. border-width:1px;
  3761. border-style:solid;
  3762. border-color:rgba(121, 121, 121, 1);
  3763. border-radius:4px;
  3764. -moz-box-shadow:none;
  3765. -webkit-box-shadow:none;
  3766. box-shadow:none;
  3767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3768. font-weight:400;
  3769. font-style:normal;
  3770. font-size:8px;
  3771. }
  3772. #u156970 {
  3773. border-width:0px;
  3774. position:absolute;
  3775. left:147px;
  3776. top:482px;
  3777. width:30px;
  3778. height:30px;
  3779. display:flex;
  3780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3781. font-weight:400;
  3782. font-style:normal;
  3783. font-size:8px;
  3784. }
  3785. #u156970 .text {
  3786. position:absolute;
  3787. align-self:center;
  3788. padding:2px 2px 2px 2px;
  3789. box-sizing:border-box;
  3790. width:100%;
  3791. }
  3792. #u156970_text {
  3793. border-width:0px;
  3794. word-wrap:break-word;
  3795. text-transform:none;
  3796. }
  3797. #u156971_div {
  3798. border-width:0px;
  3799. position:absolute;
  3800. left:0px;
  3801. top:0px;
  3802. width:49px;
  3803. height:17px;
  3804. background:inherit;
  3805. background-color:rgba(255, 255, 255, 0);
  3806. border:none;
  3807. border-radius:0px;
  3808. -moz-box-shadow:none;
  3809. -webkit-box-shadow:none;
  3810. box-shadow:none;
  3811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3812. font-weight:400;
  3813. font-style:normal;
  3814. font-size:12px;
  3815. }
  3816. #u156971 {
  3817. border-width:0px;
  3818. position:absolute;
  3819. left:138px;
  3820. top:517px;
  3821. width:49px;
  3822. height:17px;
  3823. display:flex;
  3824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3825. font-weight:400;
  3826. font-style:normal;
  3827. font-size:12px;
  3828. }
  3829. #u156971 .text {
  3830. position:absolute;
  3831. align-self:flex-start;
  3832. padding:0px 0px 0px 0px;
  3833. box-sizing:border-box;
  3834. width:100%;
  3835. }
  3836. #u156971_text {
  3837. border-width:0px;
  3838. white-space:nowrap;
  3839. text-transform:none;
  3840. }
  3841. #u156973_img {
  3842. border-width:0px;
  3843. position:absolute;
  3844. left:0px;
  3845. top:0px;
  3846. width:433px;
  3847. height:865px;
  3848. }
  3849. #u156973 {
  3850. border-width:0px;
  3851. position:absolute;
  3852. left:461px;
  3853. top:0px;
  3854. width:433px;
  3855. height:865px;
  3856. display:flex;
  3857. }
  3858. #u156973 .text {
  3859. position:absolute;
  3860. align-self:center;
  3861. padding:2px 2px 2px 2px;
  3862. box-sizing:border-box;
  3863. width:100%;
  3864. }
  3865. #u156973_text {
  3866. border-width:0px;
  3867. word-wrap:break-word;
  3868. text-transform:none;
  3869. visibility:hidden;
  3870. }
  3871. #u156974_div {
  3872. border-width:0px;
  3873. position:absolute;
  3874. left:0px;
  3875. top:0px;
  3876. width:375px;
  3877. height:40px;
  3878. background:inherit;
  3879. background-color:rgba(255, 255, 255, 1);
  3880. box-sizing:border-box;
  3881. border-width:1px;
  3882. border-style:solid;
  3883. border-color:rgba(215, 215, 215, 1);
  3884. border-left:0px;
  3885. border-top:0px;
  3886. border-right:0px;
  3887. border-radius:0px;
  3888. border-bottom-right-radius:0px;
  3889. border-bottom-left-radius:0px;
  3890. -moz-box-shadow:none;
  3891. -webkit-box-shadow:none;
  3892. box-shadow:none;
  3893. }
  3894. #u156974 {
  3895. border-width:0px;
  3896. position:absolute;
  3897. left:490px;
  3898. top:67px;
  3899. width:375px;
  3900. height:40px;
  3901. display:flex;
  3902. }
  3903. #u156974 .text {
  3904. position:absolute;
  3905. align-self:center;
  3906. padding:2px 2px 2px 2px;
  3907. box-sizing:border-box;
  3908. width:100%;
  3909. }
  3910. #u156974_text {
  3911. border-width:0px;
  3912. word-wrap:break-word;
  3913. text-transform:none;
  3914. visibility:hidden;
  3915. }
  3916. #u156975 {
  3917. border-width:0px;
  3918. position:absolute;
  3919. left:0px;
  3920. top:0px;
  3921. width:0px;
  3922. height:0px;
  3923. }
  3924. #u156976_div {
  3925. border-width:0px;
  3926. position:absolute;
  3927. left:0px;
  3928. top:0px;
  3929. width:88px;
  3930. height:32px;
  3931. background:inherit;
  3932. background-color:rgba(255, 255, 255, 1);
  3933. box-sizing:border-box;
  3934. border-width:1px;
  3935. border-style:solid;
  3936. border-color:rgba(242, 242, 242, 1);
  3937. border-radius:33px;
  3938. -moz-box-shadow:none;
  3939. -webkit-box-shadow:none;
  3940. box-shadow:none;
  3941. }
  3942. #u156976 {
  3943. border-width:0px;
  3944. position:absolute;
  3945. left:770px;
  3946. top:71px;
  3947. width:88px;
  3948. height:32px;
  3949. display:flex;
  3950. }
  3951. #u156976 .text {
  3952. position:absolute;
  3953. align-self:center;
  3954. padding:2px 2px 2px 2px;
  3955. box-sizing:border-box;
  3956. width:100%;
  3957. }
  3958. #u156976_text {
  3959. border-width:0px;
  3960. word-wrap:break-word;
  3961. text-transform:none;
  3962. visibility:hidden;
  3963. }
  3964. #u156977 {
  3965. border-width:0px;
  3966. position:absolute;
  3967. left:0px;
  3968. top:0px;
  3969. width:0px;
  3970. height:0px;
  3971. }
  3972. #u156978_img {
  3973. border-width:0px;
  3974. position:absolute;
  3975. left:0px;
  3976. top:0px;
  3977. width:18px;
  3978. height:18px;
  3979. }
  3980. #u156978 {
  3981. border-width:0px;
  3982. position:absolute;
  3983. left:833px;
  3984. top:78px;
  3985. width:18px;
  3986. height:18px;
  3987. display:flex;
  3988. }
  3989. #u156978 .text {
  3990. position:absolute;
  3991. align-self:center;
  3992. padding:2px 2px 2px 2px;
  3993. box-sizing:border-box;
  3994. width:100%;
  3995. }
  3996. #u156978_text {
  3997. border-width:0px;
  3998. word-wrap:break-word;
  3999. text-transform:none;
  4000. visibility:hidden;
  4001. }
  4002. #u156979_img {
  4003. border-width:0px;
  4004. position:absolute;
  4005. left:0px;
  4006. top:0px;
  4007. width:6px;
  4008. height:6px;
  4009. }
  4010. #u156979 {
  4011. border-width:0px;
  4012. position:absolute;
  4013. left:839px;
  4014. top:84px;
  4015. width:6px;
  4016. height:6px;
  4017. display:flex;
  4018. }
  4019. #u156979 .text {
  4020. position:absolute;
  4021. align-self:center;
  4022. padding:2px 2px 2px 2px;
  4023. box-sizing:border-box;
  4024. width:100%;
  4025. }
  4026. #u156979_text {
  4027. border-width:0px;
  4028. word-wrap:break-word;
  4029. text-transform:none;
  4030. visibility:hidden;
  4031. }
  4032. #u156980 {
  4033. border-width:0px;
  4034. position:absolute;
  4035. left:0px;
  4036. top:0px;
  4037. width:0px;
  4038. height:0px;
  4039. }
  4040. #u156981_img {
  4041. border-width:0px;
  4042. position:absolute;
  4043. left:0px;
  4044. top:0px;
  4045. width:5px;
  4046. height:5px;
  4047. }
  4048. #u156981 {
  4049. border-width:0px;
  4050. position:absolute;
  4051. left:784px;
  4052. top:85px;
  4053. width:5px;
  4054. height:5px;
  4055. display:flex;
  4056. }
  4057. #u156981 .text {
  4058. position:absolute;
  4059. align-self:center;
  4060. padding:2px 2px 2px 2px;
  4061. box-sizing:border-box;
  4062. width:100%;
  4063. }
  4064. #u156981_text {
  4065. border-width:0px;
  4066. word-wrap:break-word;
  4067. text-transform:none;
  4068. visibility:hidden;
  4069. }
  4070. #u156982_img {
  4071. border-width:0px;
  4072. position:absolute;
  4073. left:0px;
  4074. top:0px;
  4075. width:5px;
  4076. height:5px;
  4077. }
  4078. #u156982 {
  4079. border-width:0px;
  4080. position:absolute;
  4081. left:800px;
  4082. top:85px;
  4083. width:5px;
  4084. height:5px;
  4085. display:flex;
  4086. }
  4087. #u156982 .text {
  4088. position:absolute;
  4089. align-self:center;
  4090. padding:2px 2px 2px 2px;
  4091. box-sizing:border-box;
  4092. width:100%;
  4093. }
  4094. #u156982_text {
  4095. border-width:0px;
  4096. word-wrap:break-word;
  4097. text-transform:none;
  4098. visibility:hidden;
  4099. }
  4100. #u156983_img {
  4101. border-width:0px;
  4102. position:absolute;
  4103. left:0px;
  4104. top:0px;
  4105. width:7px;
  4106. height:7px;
  4107. }
  4108. #u156983 {
  4109. border-width:0px;
  4110. position:absolute;
  4111. left:791px;
  4112. top:84px;
  4113. width:7px;
  4114. height:7px;
  4115. display:flex;
  4116. }
  4117. #u156983 .text {
  4118. position:absolute;
  4119. align-self:center;
  4120. padding:2px 2px 2px 2px;
  4121. box-sizing:border-box;
  4122. width:100%;
  4123. }
  4124. #u156983_text {
  4125. border-width:0px;
  4126. word-wrap:break-word;
  4127. text-transform:none;
  4128. visibility:hidden;
  4129. }
  4130. #u156984_img {
  4131. border-width:0px;
  4132. position:absolute;
  4133. left:0px;
  4134. top:0px;
  4135. width:19px;
  4136. height:2px;
  4137. }
  4138. #u156984 {
  4139. border-width:0px;
  4140. position:absolute;
  4141. left:808px;
  4142. top:87px;
  4143. width:18px;
  4144. height:1px;
  4145. display:flex;
  4146. -webkit-transform:rotate(90deg);
  4147. -moz-transform:rotate(90deg);
  4148. -ms-transform:rotate(90deg);
  4149. transform:rotate(90deg);
  4150. }
  4151. #u156984 .text {
  4152. position:absolute;
  4153. align-self:center;
  4154. padding:2px 2px 2px 2px;
  4155. box-sizing:border-box;
  4156. width:100%;
  4157. }
  4158. #u156984_text {
  4159. border-width:0px;
  4160. word-wrap:break-word;
  4161. text-transform:none;
  4162. visibility:hidden;
  4163. }
  4164. #u156985_img {
  4165. border-width:0px;
  4166. position:absolute;
  4167. left:0px;
  4168. top:0px;
  4169. width:375px;
  4170. height:44px;
  4171. }
  4172. #u156985 {
  4173. border-width:0px;
  4174. position:absolute;
  4175. left:490px;
  4176. top:24px;
  4177. width:375px;
  4178. height:44px;
  4179. display:flex;
  4180. }
  4181. #u156985 .text {
  4182. position:absolute;
  4183. align-self:center;
  4184. padding:2px 2px 2px 2px;
  4185. box-sizing:border-box;
  4186. width:100%;
  4187. }
  4188. #u156985_text {
  4189. border-width:0px;
  4190. word-wrap:break-word;
  4191. text-transform:none;
  4192. visibility:hidden;
  4193. }
  4194. #u156986_div {
  4195. border-width:0px;
  4196. position:absolute;
  4197. left:0px;
  4198. top:0px;
  4199. width:375px;
  4200. height:50px;
  4201. background:inherit;
  4202. background-color:rgba(255, 255, 255, 1);
  4203. box-sizing:border-box;
  4204. border-width:1px;
  4205. border-style:solid;
  4206. border-color:rgba(242, 242, 242, 1);
  4207. border-radius:26px;
  4208. border-top-left-radius:0px;
  4209. border-top-right-radius:0px;
  4210. -moz-box-shadow:none;
  4211. -webkit-box-shadow:none;
  4212. box-shadow:none;
  4213. }
  4214. #u156986 {
  4215. border-width:0px;
  4216. position:absolute;
  4217. left:490px;
  4218. top:788px;
  4219. width:375px;
  4220. height:50px;
  4221. display:flex;
  4222. }
  4223. #u156986 .text {
  4224. position:absolute;
  4225. align-self:center;
  4226. padding:2px 2px 2px 2px;
  4227. box-sizing:border-box;
  4228. width:100%;
  4229. }
  4230. #u156986_text {
  4231. border-width:0px;
  4232. word-wrap:break-word;
  4233. text-transform:none;
  4234. visibility:hidden;
  4235. }
  4236. #u156987 {
  4237. border-width:0px;
  4238. position:absolute;
  4239. left:0px;
  4240. top:0px;
  4241. width:0px;
  4242. height:0px;
  4243. }
  4244. #u156988_img {
  4245. border-width:0px;
  4246. position:absolute;
  4247. left:0px;
  4248. top:0px;
  4249. width:24px;
  4250. height:24px;
  4251. }
  4252. #u156988 {
  4253. border-width:0px;
  4254. position:absolute;
  4255. left:530px;
  4256. top:792px;
  4257. width:24px;
  4258. height:24px;
  4259. display:flex;
  4260. font-size:8px;
  4261. }
  4262. #u156988 .text {
  4263. position:absolute;
  4264. align-self:center;
  4265. padding:2px 2px 2px 2px;
  4266. box-sizing:border-box;
  4267. width:100%;
  4268. }
  4269. #u156988_text {
  4270. border-width:0px;
  4271. word-wrap:break-word;
  4272. text-transform:none;
  4273. }
  4274. #u156989_div {
  4275. border-width:0px;
  4276. position:absolute;
  4277. left:0px;
  4278. top:0px;
  4279. width:25px;
  4280. height:17px;
  4281. background:inherit;
  4282. background-color:rgba(255, 255, 255, 0);
  4283. border:none;
  4284. border-radius:0px;
  4285. -moz-box-shadow:none;
  4286. -webkit-box-shadow:none;
  4287. box-shadow:none;
  4288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4289. font-weight:400;
  4290. font-style:normal;
  4291. font-size:12px;
  4292. }
  4293. #u156989 {
  4294. border-width:0px;
  4295. position:absolute;
  4296. left:530px;
  4297. top:817px;
  4298. width:25px;
  4299. height:17px;
  4300. display:flex;
  4301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4302. font-weight:400;
  4303. font-style:normal;
  4304. font-size:12px;
  4305. }
  4306. #u156989 .text {
  4307. position:absolute;
  4308. align-self:flex-start;
  4309. padding:0px 0px 0px 0px;
  4310. box-sizing:border-box;
  4311. width:100%;
  4312. }
  4313. #u156989_text {
  4314. border-width:0px;
  4315. white-space:nowrap;
  4316. text-transform:none;
  4317. }
  4318. #u156990 {
  4319. border-width:0px;
  4320. position:absolute;
  4321. left:0px;
  4322. top:0px;
  4323. width:0px;
  4324. height:0px;
  4325. }
  4326. #u156991_img {
  4327. border-width:0px;
  4328. position:absolute;
  4329. left:0px;
  4330. top:0px;
  4331. width:24px;
  4332. height:24px;
  4333. }
  4334. #u156991 {
  4335. border-width:0px;
  4336. position:absolute;
  4337. left:800px;
  4338. top:794px;
  4339. width:24px;
  4340. height:24px;
  4341. display:flex;
  4342. font-size:8px;
  4343. }
  4344. #u156991 .text {
  4345. position:absolute;
  4346. align-self:center;
  4347. padding:2px 2px 2px 2px;
  4348. box-sizing:border-box;
  4349. width:100%;
  4350. }
  4351. #u156991_text {
  4352. border-width:0px;
  4353. word-wrap:break-word;
  4354. text-transform:none;
  4355. }
  4356. #u156992_div {
  4357. border-width:0px;
  4358. position:absolute;
  4359. left:0px;
  4360. top:0px;
  4361. width:25px;
  4362. height:17px;
  4363. background:inherit;
  4364. background-color:rgba(255, 255, 255, 0);
  4365. border:none;
  4366. border-radius:0px;
  4367. -moz-box-shadow:none;
  4368. -webkit-box-shadow:none;
  4369. box-shadow:none;
  4370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4371. font-weight:400;
  4372. font-style:normal;
  4373. font-size:12px;
  4374. }
  4375. #u156992 {
  4376. border-width:0px;
  4377. position:absolute;
  4378. left:800px;
  4379. top:819px;
  4380. width:25px;
  4381. height:17px;
  4382. display:flex;
  4383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4384. font-weight:400;
  4385. font-style:normal;
  4386. font-size:12px;
  4387. }
  4388. #u156992 .text {
  4389. position:absolute;
  4390. align-self:flex-start;
  4391. padding:0px 0px 0px 0px;
  4392. box-sizing:border-box;
  4393. width:100%;
  4394. }
  4395. #u156992_text {
  4396. border-width:0px;
  4397. white-space:nowrap;
  4398. text-transform:none;
  4399. }
  4400. #u156993_div {
  4401. border-width:0px;
  4402. position:absolute;
  4403. left:0px;
  4404. top:0px;
  4405. width:375px;
  4406. height:681px;
  4407. background:inherit;
  4408. background-color:rgba(242, 242, 242, 0.462745098039216);
  4409. border:none;
  4410. border-radius:0px;
  4411. -moz-box-shadow:none;
  4412. -webkit-box-shadow:none;
  4413. box-shadow:none;
  4414. }
  4415. #u156993 {
  4416. border-width:0px;
  4417. position:absolute;
  4418. left:490px;
  4419. top:107px;
  4420. width:375px;
  4421. height:681px;
  4422. display:flex;
  4423. }
  4424. #u156993 .text {
  4425. position:absolute;
  4426. align-self:center;
  4427. padding:2px 2px 2px 2px;
  4428. box-sizing:border-box;
  4429. width:100%;
  4430. }
  4431. #u156993_text {
  4432. border-width:0px;
  4433. word-wrap:break-word;
  4434. text-transform:none;
  4435. visibility:hidden;
  4436. }
  4437. #u156994 {
  4438. border-width:0px;
  4439. position:absolute;
  4440. left:0px;
  4441. top:0px;
  4442. width:0px;
  4443. height:0px;
  4444. }
  4445. #u156995_img {
  4446. border-width:0px;
  4447. position:absolute;
  4448. left:0px;
  4449. top:0px;
  4450. width:24px;
  4451. height:24px;
  4452. }
  4453. #u156995 {
  4454. border-width:0px;
  4455. position:absolute;
  4456. left:712px;
  4457. top:792px;
  4458. width:24px;
  4459. height:24px;
  4460. display:flex;
  4461. font-size:8px;
  4462. }
  4463. #u156995 .text {
  4464. position:absolute;
  4465. align-self:center;
  4466. padding:2px 2px 2px 2px;
  4467. box-sizing:border-box;
  4468. width:100%;
  4469. }
  4470. #u156995_text {
  4471. border-width:0px;
  4472. word-wrap:break-word;
  4473. text-transform:none;
  4474. }
  4475. #u156996_div {
  4476. border-width:0px;
  4477. position:absolute;
  4478. left:0px;
  4479. top:0px;
  4480. width:37px;
  4481. height:17px;
  4482. background:inherit;
  4483. background-color:rgba(255, 255, 255, 0);
  4484. border:none;
  4485. border-radius:0px;
  4486. -moz-box-shadow:none;
  4487. -webkit-box-shadow:none;
  4488. box-shadow:none;
  4489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4490. font-weight:400;
  4491. font-style:normal;
  4492. font-size:12px;
  4493. }
  4494. #u156996 {
  4495. border-width:0px;
  4496. position:absolute;
  4497. left:706px;
  4498. top:817px;
  4499. width:37px;
  4500. height:17px;
  4501. display:flex;
  4502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4503. font-weight:400;
  4504. font-style:normal;
  4505. font-size:12px;
  4506. }
  4507. #u156996 .text {
  4508. position:absolute;
  4509. align-self:flex-start;
  4510. padding:0px 0px 0px 0px;
  4511. box-sizing:border-box;
  4512. width:100%;
  4513. }
  4514. #u156996_text {
  4515. border-width:0px;
  4516. white-space:nowrap;
  4517. text-transform:none;
  4518. }
  4519. #u156997 {
  4520. border-width:0px;
  4521. position:absolute;
  4522. left:0px;
  4523. top:0px;
  4524. width:0px;
  4525. height:0px;
  4526. }
  4527. #u156998_img {
  4528. border-width:0px;
  4529. position:absolute;
  4530. left:0px;
  4531. top:0px;
  4532. width:24px;
  4533. height:24px;
  4534. }
  4535. #u156998 {
  4536. border-width:0px;
  4537. position:absolute;
  4538. left:618px;
  4539. top:792px;
  4540. width:24px;
  4541. height:24px;
  4542. display:flex;
  4543. font-size:8px;
  4544. }
  4545. #u156998 .text {
  4546. position:absolute;
  4547. align-self:center;
  4548. padding:2px 2px 2px 2px;
  4549. box-sizing:border-box;
  4550. width:100%;
  4551. }
  4552. #u156998_text {
  4553. border-width:0px;
  4554. word-wrap:break-word;
  4555. text-transform:none;
  4556. }
  4557. #u156999_div {
  4558. border-width:0px;
  4559. position:absolute;
  4560. left:0px;
  4561. top:0px;
  4562. width:37px;
  4563. height:17px;
  4564. background:inherit;
  4565. background-color:rgba(255, 255, 255, 0);
  4566. border:none;
  4567. border-radius:0px;
  4568. -moz-box-shadow:none;
  4569. -webkit-box-shadow:none;
  4570. box-shadow:none;
  4571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4572. font-weight:400;
  4573. font-style:normal;
  4574. font-size:12px;
  4575. }
  4576. #u156999 {
  4577. border-width:0px;
  4578. position:absolute;
  4579. left:612px;
  4580. top:817px;
  4581. width:37px;
  4582. height:17px;
  4583. display:flex;
  4584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4585. font-weight:400;
  4586. font-style:normal;
  4587. font-size:12px;
  4588. }
  4589. #u156999 .text {
  4590. position:absolute;
  4591. align-self:flex-start;
  4592. padding:0px 0px 0px 0px;
  4593. box-sizing:border-box;
  4594. width:100%;
  4595. }
  4596. #u156999_text {
  4597. border-width:0px;
  4598. white-space:nowrap;
  4599. text-transform:none;
  4600. }
  4601. #u157000_div {
  4602. border-width:0px;
  4603. position:absolute;
  4604. left:0px;
  4605. top:0px;
  4606. width:375px;
  4607. height:853px;
  4608. background:inherit;
  4609. background-color:rgba(255, 255, 255, 1);
  4610. box-sizing:border-box;
  4611. border-width:1px;
  4612. border-style:solid;
  4613. border-color:rgba(242, 242, 242, 1);
  4614. border-radius:26px;
  4615. border-top-left-radius:0px;
  4616. border-top-right-radius:0px;
  4617. -moz-box-shadow:none;
  4618. -webkit-box-shadow:none;
  4619. box-shadow:none;
  4620. }
  4621. #u157000 {
  4622. border-width:0px;
  4623. position:absolute;
  4624. left:490px;
  4625. top:66px;
  4626. width:375px;
  4627. height:853px;
  4628. display:flex;
  4629. }
  4630. #u157000 .text {
  4631. position:absolute;
  4632. align-self:center;
  4633. padding:2px 2px 2px 2px;
  4634. box-sizing:border-box;
  4635. width:100%;
  4636. }
  4637. #u157000_text {
  4638. border-width:0px;
  4639. word-wrap:break-word;
  4640. text-transform:none;
  4641. visibility:hidden;
  4642. }
  4643. #u157001 {
  4644. border-width:0px;
  4645. position:absolute;
  4646. left:0px;
  4647. top:0px;
  4648. width:0px;
  4649. height:0px;
  4650. }
  4651. #u157002_div {
  4652. border-width:0px;
  4653. position:absolute;
  4654. left:0px;
  4655. top:0px;
  4656. width:88px;
  4657. height:32px;
  4658. background:inherit;
  4659. background-color:rgba(255, 255, 255, 1);
  4660. box-sizing:border-box;
  4661. border-width:1px;
  4662. border-style:solid;
  4663. border-color:rgba(242, 242, 242, 1);
  4664. border-radius:33px;
  4665. -moz-box-shadow:none;
  4666. -webkit-box-shadow:none;
  4667. box-shadow:none;
  4668. }
  4669. #u157002 {
  4670. border-width:0px;
  4671. position:absolute;
  4672. left:767px;
  4673. top:69px;
  4674. width:88px;
  4675. height:32px;
  4676. display:flex;
  4677. }
  4678. #u157002 .text {
  4679. position:absolute;
  4680. align-self:center;
  4681. padding:2px 2px 2px 2px;
  4682. box-sizing:border-box;
  4683. width:100%;
  4684. }
  4685. #u157002_text {
  4686. border-width:0px;
  4687. word-wrap:break-word;
  4688. text-transform:none;
  4689. visibility:hidden;
  4690. }
  4691. #u157003 {
  4692. border-width:0px;
  4693. position:absolute;
  4694. left:0px;
  4695. top:0px;
  4696. width:0px;
  4697. height:0px;
  4698. }
  4699. #u157004_img {
  4700. border-width:0px;
  4701. position:absolute;
  4702. left:0px;
  4703. top:0px;
  4704. width:18px;
  4705. height:18px;
  4706. }
  4707. #u157004 {
  4708. border-width:0px;
  4709. position:absolute;
  4710. left:830px;
  4711. top:76px;
  4712. width:18px;
  4713. height:18px;
  4714. display:flex;
  4715. }
  4716. #u157004 .text {
  4717. position:absolute;
  4718. align-self:center;
  4719. padding:2px 2px 2px 2px;
  4720. box-sizing:border-box;
  4721. width:100%;
  4722. }
  4723. #u157004_text {
  4724. border-width:0px;
  4725. word-wrap:break-word;
  4726. text-transform:none;
  4727. visibility:hidden;
  4728. }
  4729. #u157005_img {
  4730. border-width:0px;
  4731. position:absolute;
  4732. left:0px;
  4733. top:0px;
  4734. width:6px;
  4735. height:6px;
  4736. }
  4737. #u157005 {
  4738. border-width:0px;
  4739. position:absolute;
  4740. left:836px;
  4741. top:82px;
  4742. width:6px;
  4743. height:6px;
  4744. display:flex;
  4745. }
  4746. #u157005 .text {
  4747. position:absolute;
  4748. align-self:center;
  4749. padding:2px 2px 2px 2px;
  4750. box-sizing:border-box;
  4751. width:100%;
  4752. }
  4753. #u157005_text {
  4754. border-width:0px;
  4755. word-wrap:break-word;
  4756. text-transform:none;
  4757. visibility:hidden;
  4758. }
  4759. #u157006 {
  4760. border-width:0px;
  4761. position:absolute;
  4762. left:0px;
  4763. top:0px;
  4764. width:0px;
  4765. height:0px;
  4766. }
  4767. #u157007_img {
  4768. border-width:0px;
  4769. position:absolute;
  4770. left:0px;
  4771. top:0px;
  4772. width:5px;
  4773. height:5px;
  4774. }
  4775. #u157007 {
  4776. border-width:0px;
  4777. position:absolute;
  4778. left:781px;
  4779. top:83px;
  4780. width:5px;
  4781. height:5px;
  4782. display:flex;
  4783. }
  4784. #u157007 .text {
  4785. position:absolute;
  4786. align-self:center;
  4787. padding:2px 2px 2px 2px;
  4788. box-sizing:border-box;
  4789. width:100%;
  4790. }
  4791. #u157007_text {
  4792. border-width:0px;
  4793. word-wrap:break-word;
  4794. text-transform:none;
  4795. visibility:hidden;
  4796. }
  4797. #u157008_img {
  4798. border-width:0px;
  4799. position:absolute;
  4800. left:0px;
  4801. top:0px;
  4802. width:5px;
  4803. height:5px;
  4804. }
  4805. #u157008 {
  4806. border-width:0px;
  4807. position:absolute;
  4808. left:797px;
  4809. top:83px;
  4810. width:5px;
  4811. height:5px;
  4812. display:flex;
  4813. }
  4814. #u157008 .text {
  4815. position:absolute;
  4816. align-self:center;
  4817. padding:2px 2px 2px 2px;
  4818. box-sizing:border-box;
  4819. width:100%;
  4820. }
  4821. #u157008_text {
  4822. border-width:0px;
  4823. word-wrap:break-word;
  4824. text-transform:none;
  4825. visibility:hidden;
  4826. }
  4827. #u157009_img {
  4828. border-width:0px;
  4829. position:absolute;
  4830. left:0px;
  4831. top:0px;
  4832. width:7px;
  4833. height:7px;
  4834. }
  4835. #u157009 {
  4836. border-width:0px;
  4837. position:absolute;
  4838. left:788px;
  4839. top:82px;
  4840. width:7px;
  4841. height:7px;
  4842. display:flex;
  4843. }
  4844. #u157009 .text {
  4845. position:absolute;
  4846. align-self:center;
  4847. padding:2px 2px 2px 2px;
  4848. box-sizing:border-box;
  4849. width:100%;
  4850. }
  4851. #u157009_text {
  4852. border-width:0px;
  4853. word-wrap:break-word;
  4854. text-transform:none;
  4855. visibility:hidden;
  4856. }
  4857. #u157010_img {
  4858. border-width:0px;
  4859. position:absolute;
  4860. left:0px;
  4861. top:0px;
  4862. width:19px;
  4863. height:2px;
  4864. }
  4865. #u157010 {
  4866. border-width:0px;
  4867. position:absolute;
  4868. left:805px;
  4869. top:85px;
  4870. width:18px;
  4871. height:1px;
  4872. display:flex;
  4873. -webkit-transform:rotate(90deg);
  4874. -moz-transform:rotate(90deg);
  4875. -ms-transform:rotate(90deg);
  4876. transform:rotate(90deg);
  4877. }
  4878. #u157010 .text {
  4879. position:absolute;
  4880. align-self:center;
  4881. padding:2px 2px 2px 2px;
  4882. box-sizing:border-box;
  4883. width:100%;
  4884. }
  4885. #u157010_text {
  4886. border-width:0px;
  4887. word-wrap:break-word;
  4888. text-transform:none;
  4889. visibility:hidden;
  4890. }
  4891. #u157011 {
  4892. border-width:0px;
  4893. position:absolute;
  4894. left:0px;
  4895. top:0px;
  4896. width:0px;
  4897. height:0px;
  4898. }
  4899. #u157012_div {
  4900. border-width:0px;
  4901. position:absolute;
  4902. left:0px;
  4903. top:0px;
  4904. width:12px;
  4905. height:12px;
  4906. background:inherit;
  4907. background-color:rgba(255, 255, 255, 0);
  4908. box-sizing:border-box;
  4909. border-width:2px;
  4910. border-style:solid;
  4911. border-color:rgba(51, 51, 51, 1);
  4912. border-right:0px;
  4913. border-bottom:0px;
  4914. border-radius:0px;
  4915. border-top-right-radius:0px;
  4916. border-bottom-left-radius:0px;
  4917. -moz-box-shadow:none;
  4918. -webkit-box-shadow:none;
  4919. box-shadow:none;
  4920. }
  4921. #u157012 {
  4922. border-width:0px;
  4923. position:absolute;
  4924. left:506px;
  4925. top:79px;
  4926. width:12px;
  4927. height:12px;
  4928. display:flex;
  4929. -webkit-transform:rotate(315deg);
  4930. -moz-transform:rotate(315deg);
  4931. -ms-transform:rotate(315deg);
  4932. transform:rotate(315deg);
  4933. }
  4934. #u157012 .text {
  4935. position:absolute;
  4936. align-self:center;
  4937. padding:2px 2px 2px 2px;
  4938. box-sizing:border-box;
  4939. width:100%;
  4940. }
  4941. #u157012_text {
  4942. border-width:0px;
  4943. word-wrap:break-word;
  4944. text-transform:none;
  4945. visibility:hidden;
  4946. }
  4947. #u157013_div {
  4948. border-width:0px;
  4949. position:absolute;
  4950. left:0px;
  4951. top:0px;
  4952. width:57px;
  4953. height:20px;
  4954. background:inherit;
  4955. background-color:rgba(255, 255, 255, 0);
  4956. border:none;
  4957. border-radius:0px;
  4958. -moz-box-shadow:none;
  4959. -webkit-box-shadow:none;
  4960. box-shadow:none;
  4961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4962. font-weight:400;
  4963. font-style:normal;
  4964. }
  4965. #u157013 {
  4966. border-width:0px;
  4967. position:absolute;
  4968. left:523px;
  4969. top:75px;
  4970. width:57px;
  4971. height:20px;
  4972. display:flex;
  4973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4974. font-weight:400;
  4975. font-style:normal;
  4976. }
  4977. #u157013 .text {
  4978. position:absolute;
  4979. align-self:flex-start;
  4980. padding:0px 0px 0px 0px;
  4981. box-sizing:border-box;
  4982. width:100%;
  4983. }
  4984. #u157013_text {
  4985. border-width:0px;
  4986. white-space:nowrap;
  4987. text-transform:none;
  4988. }
  4989. #u157014_div {
  4990. border-width:0px;
  4991. position:absolute;
  4992. left:0px;
  4993. top:0px;
  4994. width:67px;
  4995. height:20px;
  4996. background:inherit;
  4997. background-color:rgba(255, 255, 255, 0);
  4998. box-sizing:border-box;
  4999. border-width:3px;
  5000. border-style:solid;
  5001. border-color:rgba(121, 121, 121, 1);
  5002. border-top:0px;
  5003. border-right:0px;
  5004. border-bottom:0px;
  5005. border-radius:0px;
  5006. border-top-left-radius:0px;
  5007. border-bottom-left-radius:0px;
  5008. -moz-box-shadow:none;
  5009. -webkit-box-shadow:none;
  5010. box-shadow:none;
  5011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5012. font-weight:400;
  5013. font-style:normal;
  5014. }
  5015. #u157014 {
  5016. border-width:0px;
  5017. position:absolute;
  5018. left:513px;
  5019. top:185px;
  5020. width:67px;
  5021. height:20px;
  5022. display:flex;
  5023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5024. font-weight:400;
  5025. font-style:normal;
  5026. }
  5027. #u157014 .text {
  5028. position:absolute;
  5029. align-self:flex-start;
  5030. padding:0px 0px 0px 10px;
  5031. box-sizing:border-box;
  5032. width:100%;
  5033. }
  5034. #u157014_text {
  5035. border-width:0px;
  5036. white-space:nowrap;
  5037. text-transform:none;
  5038. }
  5039. #u157015 {
  5040. border-width:0px;
  5041. position:absolute;
  5042. left:0px;
  5043. top:0px;
  5044. width:0px;
  5045. height:0px;
  5046. }
  5047. #u157016_div {
  5048. border-width:0px;
  5049. position:absolute;
  5050. left:0px;
  5051. top:0px;
  5052. width:49px;
  5053. height:17px;
  5054. background:inherit;
  5055. background-color:rgba(255, 255, 255, 0);
  5056. border:none;
  5057. border-radius:0px;
  5058. -moz-box-shadow:none;
  5059. -webkit-box-shadow:none;
  5060. box-shadow:none;
  5061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5062. font-weight:400;
  5063. font-style:normal;
  5064. font-size:12px;
  5065. }
  5066. #u157016 {
  5067. border-width:0px;
  5068. position:absolute;
  5069. left:612px;
  5070. top:250px;
  5071. width:49px;
  5072. height:17px;
  5073. display:flex;
  5074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5075. font-weight:400;
  5076. font-style:normal;
  5077. font-size:12px;
  5078. }
  5079. #u157016 .text {
  5080. position:absolute;
  5081. align-self:flex-start;
  5082. padding:0px 0px 0px 0px;
  5083. box-sizing:border-box;
  5084. width:100%;
  5085. }
  5086. #u157016_text {
  5087. border-width:0px;
  5088. white-space:nowrap;
  5089. text-transform:none;
  5090. }
  5091. #u157017_div {
  5092. border-width:0px;
  5093. position:absolute;
  5094. left:0px;
  5095. top:0px;
  5096. width:30px;
  5097. height:30px;
  5098. background:inherit;
  5099. background-color:rgba(24, 144, 255, 1);
  5100. border:none;
  5101. border-radius:4px;
  5102. -moz-box-shadow:none;
  5103. -webkit-box-shadow:none;
  5104. box-shadow:none;
  5105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5106. font-weight:400;
  5107. font-style:normal;
  5108. font-size:8px;
  5109. color:#FFFFFF;
  5110. }
  5111. #u157017 {
  5112. border-width:0px;
  5113. position:absolute;
  5114. left:621px;
  5115. top:211px;
  5116. width:30px;
  5117. height:30px;
  5118. display:flex;
  5119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5120. font-weight:400;
  5121. font-style:normal;
  5122. font-size:8px;
  5123. color:#FFFFFF;
  5124. }
  5125. #u157017 .text {
  5126. position:absolute;
  5127. align-self:center;
  5128. padding:2px 2px 2px 2px;
  5129. box-sizing:border-box;
  5130. width:100%;
  5131. }
  5132. #u157017_text {
  5133. border-width:0px;
  5134. word-wrap:break-word;
  5135. text-transform:none;
  5136. }
  5137. #u157018 {
  5138. border-width:0px;
  5139. position:absolute;
  5140. left:0px;
  5141. top:0px;
  5142. width:0px;
  5143. height:0px;
  5144. }
  5145. #u157019_div {
  5146. border-width:0px;
  5147. position:absolute;
  5148. left:0px;
  5149. top:0px;
  5150. width:49px;
  5151. height:17px;
  5152. background:inherit;
  5153. background-color:rgba(255, 255, 255, 0);
  5154. border:none;
  5155. border-radius:0px;
  5156. -moz-box-shadow:none;
  5157. -webkit-box-shadow:none;
  5158. box-shadow:none;
  5159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5160. font-weight:400;
  5161. font-style:normal;
  5162. font-size:12px;
  5163. }
  5164. #u157019 {
  5165. border-width:0px;
  5166. position:absolute;
  5167. left:523px;
  5168. top:249px;
  5169. width:49px;
  5170. height:17px;
  5171. display:flex;
  5172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5173. font-weight:400;
  5174. font-style:normal;
  5175. font-size:12px;
  5176. }
  5177. #u157019 .text {
  5178. position:absolute;
  5179. align-self:flex-start;
  5180. padding:0px 0px 0px 0px;
  5181. box-sizing:border-box;
  5182. width:100%;
  5183. }
  5184. #u157019_text {
  5185. border-width:0px;
  5186. white-space:nowrap;
  5187. text-transform:none;
  5188. }
  5189. #u157020_div {
  5190. border-width:0px;
  5191. position:absolute;
  5192. left:0px;
  5193. top:0px;
  5194. width:30px;
  5195. height:30px;
  5196. background:inherit;
  5197. background-color:rgba(24, 144, 255, 1);
  5198. border:none;
  5199. border-radius:4px;
  5200. -moz-box-shadow:none;
  5201. -webkit-box-shadow:none;
  5202. box-shadow:none;
  5203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5204. font-weight:400;
  5205. font-style:normal;
  5206. font-size:8px;
  5207. color:#FFFFFF;
  5208. }
  5209. #u157020 {
  5210. border-width:0px;
  5211. position:absolute;
  5212. left:531px;
  5213. top:211px;
  5214. width:30px;
  5215. height:30px;
  5216. display:flex;
  5217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5218. font-weight:400;
  5219. font-style:normal;
  5220. font-size:8px;
  5221. color:#FFFFFF;
  5222. }
  5223. #u157020 .text {
  5224. position:absolute;
  5225. align-self:center;
  5226. padding:2px 2px 2px 2px;
  5227. box-sizing:border-box;
  5228. width:100%;
  5229. }
  5230. #u157020_text {
  5231. border-width:0px;
  5232. word-wrap:break-word;
  5233. text-transform:none;
  5234. }
  5235. #u157021 {
  5236. border-width:0px;
  5237. position:absolute;
  5238. left:0px;
  5239. top:0px;
  5240. width:0px;
  5241. height:0px;
  5242. }
  5243. #u157022_div {
  5244. border-width:0px;
  5245. position:absolute;
  5246. left:0px;
  5247. top:0px;
  5248. width:49px;
  5249. height:17px;
  5250. background:inherit;
  5251. background-color:rgba(255, 255, 255, 0);
  5252. border:none;
  5253. border-radius:0px;
  5254. -moz-box-shadow:none;
  5255. -webkit-box-shadow:none;
  5256. box-shadow:none;
  5257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5258. font-weight:400;
  5259. font-style:normal;
  5260. font-size:12px;
  5261. }
  5262. #u157022 {
  5263. border-width:0px;
  5264. position:absolute;
  5265. left:701px;
  5266. top:250px;
  5267. width:49px;
  5268. height:17px;
  5269. display:flex;
  5270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5271. font-weight:400;
  5272. font-style:normal;
  5273. font-size:12px;
  5274. }
  5275. #u157022 .text {
  5276. position:absolute;
  5277. align-self:flex-start;
  5278. padding:0px 0px 0px 0px;
  5279. box-sizing:border-box;
  5280. width:100%;
  5281. }
  5282. #u157022_text {
  5283. border-width:0px;
  5284. white-space:nowrap;
  5285. text-transform:none;
  5286. }
  5287. #u157023_div {
  5288. border-width:0px;
  5289. position:absolute;
  5290. left:0px;
  5291. top:0px;
  5292. width:30px;
  5293. height:30px;
  5294. background:inherit;
  5295. background-color:rgba(24, 144, 255, 1);
  5296. border:none;
  5297. border-radius:4px;
  5298. -moz-box-shadow:none;
  5299. -webkit-box-shadow:none;
  5300. box-shadow:none;
  5301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5302. font-weight:400;
  5303. font-style:normal;
  5304. font-size:8px;
  5305. color:#FFFFFF;
  5306. }
  5307. #u157023 {
  5308. border-width:0px;
  5309. position:absolute;
  5310. left:710px;
  5311. top:211px;
  5312. width:30px;
  5313. height:30px;
  5314. display:flex;
  5315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5316. font-weight:400;
  5317. font-style:normal;
  5318. font-size:8px;
  5319. color:#FFFFFF;
  5320. }
  5321. #u157023 .text {
  5322. position:absolute;
  5323. align-self:center;
  5324. padding:2px 2px 2px 2px;
  5325. box-sizing:border-box;
  5326. width:100%;
  5327. }
  5328. #u157023_text {
  5329. border-width:0px;
  5330. word-wrap:break-word;
  5331. text-transform:none;
  5332. }
  5333. #u157024_div {
  5334. border-width:0px;
  5335. position:absolute;
  5336. left:0px;
  5337. top:0px;
  5338. width:67px;
  5339. height:20px;
  5340. background:inherit;
  5341. background-color:rgba(255, 255, 255, 0);
  5342. box-sizing:border-box;
  5343. border-width:3px;
  5344. border-style:solid;
  5345. border-color:rgba(121, 121, 121, 1);
  5346. border-top:0px;
  5347. border-right:0px;
  5348. border-bottom:0px;
  5349. border-radius:0px;
  5350. border-top-left-radius:0px;
  5351. border-bottom-left-radius:0px;
  5352. -moz-box-shadow:none;
  5353. -webkit-box-shadow:none;
  5354. box-shadow:none;
  5355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5356. font-weight:400;
  5357. font-style:normal;
  5358. }
  5359. #u157024 {
  5360. border-width:0px;
  5361. position:absolute;
  5362. left:513px;
  5363. top:296px;
  5364. width:67px;
  5365. height:20px;
  5366. display:flex;
  5367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5368. font-weight:400;
  5369. font-style:normal;
  5370. }
  5371. #u157024 .text {
  5372. position:absolute;
  5373. align-self:flex-start;
  5374. padding:0px 0px 0px 10px;
  5375. box-sizing:border-box;
  5376. width:100%;
  5377. }
  5378. #u157024_text {
  5379. border-width:0px;
  5380. white-space:nowrap;
  5381. text-transform:none;
  5382. }
  5383. #u157025 {
  5384. border-width:0px;
  5385. position:absolute;
  5386. left:0px;
  5387. top:0px;
  5388. width:0px;
  5389. height:0px;
  5390. }
  5391. #u157026_div {
  5392. border-width:0px;
  5393. position:absolute;
  5394. left:0px;
  5395. top:0px;
  5396. width:49px;
  5397. height:17px;
  5398. background:inherit;
  5399. background-color:rgba(255, 255, 255, 0);
  5400. border:none;
  5401. border-radius:0px;
  5402. -moz-box-shadow:none;
  5403. -webkit-box-shadow:none;
  5404. box-shadow:none;
  5405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5406. font-weight:400;
  5407. font-style:normal;
  5408. font-size:12px;
  5409. }
  5410. #u157026 {
  5411. border-width:0px;
  5412. position:absolute;
  5413. left:701px;
  5414. top:360px;
  5415. width:49px;
  5416. height:17px;
  5417. display:flex;
  5418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5419. font-weight:400;
  5420. font-style:normal;
  5421. font-size:12px;
  5422. }
  5423. #u157026 .text {
  5424. position:absolute;
  5425. align-self:flex-start;
  5426. padding:0px 0px 0px 0px;
  5427. box-sizing:border-box;
  5428. width:100%;
  5429. }
  5430. #u157026_text {
  5431. border-width:0px;
  5432. white-space:nowrap;
  5433. text-transform:none;
  5434. }
  5435. #u157027_div {
  5436. border-width:0px;
  5437. position:absolute;
  5438. left:0px;
  5439. top:0px;
  5440. width:30px;
  5441. height:30px;
  5442. background:inherit;
  5443. background-color:rgba(24, 144, 255, 1);
  5444. border:none;
  5445. border-radius:4px;
  5446. -moz-box-shadow:none;
  5447. -webkit-box-shadow:none;
  5448. box-shadow:none;
  5449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5450. font-weight:400;
  5451. font-style:normal;
  5452. font-size:8px;
  5453. color:#FFFFFF;
  5454. }
  5455. #u157027 {
  5456. border-width:0px;
  5457. position:absolute;
  5458. left:710px;
  5459. top:326px;
  5460. width:30px;
  5461. height:30px;
  5462. display:flex;
  5463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5464. font-weight:400;
  5465. font-style:normal;
  5466. font-size:8px;
  5467. color:#FFFFFF;
  5468. }
  5469. #u157027 .text {
  5470. position:absolute;
  5471. align-self:center;
  5472. padding:2px 2px 2px 2px;
  5473. box-sizing:border-box;
  5474. width:100%;
  5475. }
  5476. #u157027_text {
  5477. border-width:0px;
  5478. word-wrap:break-word;
  5479. text-transform:none;
  5480. }
  5481. #u157028 {
  5482. border-width:0px;
  5483. position:absolute;
  5484. left:0px;
  5485. top:0px;
  5486. width:0px;
  5487. height:0px;
  5488. }
  5489. #u157029_div {
  5490. border-width:0px;
  5491. position:absolute;
  5492. left:0px;
  5493. top:0px;
  5494. width:49px;
  5495. height:17px;
  5496. background:inherit;
  5497. background-color:rgba(255, 255, 255, 0);
  5498. border:none;
  5499. border-radius:0px;
  5500. -moz-box-shadow:none;
  5501. -webkit-box-shadow:none;
  5502. box-shadow:none;
  5503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5504. font-weight:400;
  5505. font-style:normal;
  5506. font-size:12px;
  5507. }
  5508. #u157029 {
  5509. border-width:0px;
  5510. position:absolute;
  5511. left:612px;
  5512. top:361px;
  5513. width:49px;
  5514. height:17px;
  5515. display:flex;
  5516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5517. font-weight:400;
  5518. font-style:normal;
  5519. font-size:12px;
  5520. }
  5521. #u157029 .text {
  5522. position:absolute;
  5523. align-self:flex-start;
  5524. padding:0px 0px 0px 0px;
  5525. box-sizing:border-box;
  5526. width:100%;
  5527. }
  5528. #u157029_text {
  5529. border-width:0px;
  5530. white-space:nowrap;
  5531. text-transform:none;
  5532. }
  5533. #u157030_div {
  5534. border-width:0px;
  5535. position:absolute;
  5536. left:0px;
  5537. top:0px;
  5538. width:30px;
  5539. height:30px;
  5540. background:inherit;
  5541. background-color:rgba(24, 144, 255, 1);
  5542. border:none;
  5543. border-radius:4px;
  5544. -moz-box-shadow:none;
  5545. -webkit-box-shadow:none;
  5546. box-shadow:none;
  5547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5548. font-weight:400;
  5549. font-style:normal;
  5550. font-size:8px;
  5551. color:#FFFFFF;
  5552. }
  5553. #u157030 {
  5554. border-width:0px;
  5555. position:absolute;
  5556. left:621px;
  5557. top:326px;
  5558. width:30px;
  5559. height:30px;
  5560. display:flex;
  5561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5562. font-weight:400;
  5563. font-style:normal;
  5564. font-size:8px;
  5565. color:#FFFFFF;
  5566. }
  5567. #u157030 .text {
  5568. position:absolute;
  5569. align-self:center;
  5570. padding:2px 2px 2px 2px;
  5571. box-sizing:border-box;
  5572. width:100%;
  5573. }
  5574. #u157030_text {
  5575. border-width:0px;
  5576. word-wrap:break-word;
  5577. text-transform:none;
  5578. }
  5579. #u157031 {
  5580. border-width:0px;
  5581. position:absolute;
  5582. left:0px;
  5583. top:0px;
  5584. width:0px;
  5585. height:0px;
  5586. }
  5587. #u157032_div {
  5588. border-width:0px;
  5589. position:absolute;
  5590. left:0px;
  5591. top:0px;
  5592. width:49px;
  5593. height:17px;
  5594. background:inherit;
  5595. background-color:rgba(255, 255, 255, 0);
  5596. border:none;
  5597. border-radius:0px;
  5598. -moz-box-shadow:none;
  5599. -webkit-box-shadow:none;
  5600. box-shadow:none;
  5601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5602. font-weight:400;
  5603. font-style:normal;
  5604. font-size:12px;
  5605. }
  5606. #u157032 {
  5607. border-width:0px;
  5608. position:absolute;
  5609. left:523px;
  5610. top:360px;
  5611. width:49px;
  5612. height:17px;
  5613. display:flex;
  5614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5615. font-weight:400;
  5616. font-style:normal;
  5617. font-size:12px;
  5618. }
  5619. #u157032 .text {
  5620. position:absolute;
  5621. align-self:flex-start;
  5622. padding:0px 0px 0px 0px;
  5623. box-sizing:border-box;
  5624. width:100%;
  5625. }
  5626. #u157032_text {
  5627. border-width:0px;
  5628. white-space:nowrap;
  5629. text-transform:none;
  5630. }
  5631. #u157033_div {
  5632. border-width:0px;
  5633. position:absolute;
  5634. left:0px;
  5635. top:0px;
  5636. width:30px;
  5637. height:30px;
  5638. background:inherit;
  5639. background-color:rgba(24, 144, 255, 1);
  5640. border:none;
  5641. border-radius:4px;
  5642. -moz-box-shadow:none;
  5643. -webkit-box-shadow:none;
  5644. box-shadow:none;
  5645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5646. font-weight:400;
  5647. font-style:normal;
  5648. font-size:8px;
  5649. color:#FFFFFF;
  5650. }
  5651. #u157033 {
  5652. border-width:0px;
  5653. position:absolute;
  5654. left:532px;
  5655. top:326px;
  5656. width:30px;
  5657. height:30px;
  5658. display:flex;
  5659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5660. font-weight:400;
  5661. font-style:normal;
  5662. font-size:8px;
  5663. color:#FFFFFF;
  5664. }
  5665. #u157033 .text {
  5666. position:absolute;
  5667. align-self:center;
  5668. padding:2px 2px 2px 2px;
  5669. box-sizing:border-box;
  5670. width:100%;
  5671. }
  5672. #u157033_text {
  5673. border-width:0px;
  5674. word-wrap:break-word;
  5675. text-transform:none;
  5676. }
  5677. #u157034 {
  5678. border-width:0px;
  5679. position:absolute;
  5680. left:0px;
  5681. top:0px;
  5682. width:0px;
  5683. height:0px;
  5684. }
  5685. #u157035_div {
  5686. border-width:0px;
  5687. position:absolute;
  5688. left:0px;
  5689. top:0px;
  5690. width:49px;
  5691. height:17px;
  5692. background:inherit;
  5693. background-color:rgba(255, 255, 255, 0);
  5694. border:none;
  5695. border-radius:0px;
  5696. -moz-box-shadow:none;
  5697. -webkit-box-shadow:none;
  5698. box-shadow:none;
  5699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5700. font-weight:400;
  5701. font-style:normal;
  5702. font-size:12px;
  5703. }
  5704. #u157035 {
  5705. border-width:0px;
  5706. position:absolute;
  5707. left:790px;
  5708. top:360px;
  5709. width:49px;
  5710. height:17px;
  5711. display:flex;
  5712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5713. font-weight:400;
  5714. font-style:normal;
  5715. font-size:12px;
  5716. }
  5717. #u157035 .text {
  5718. position:absolute;
  5719. align-self:flex-start;
  5720. padding:0px 0px 0px 0px;
  5721. box-sizing:border-box;
  5722. width:100%;
  5723. }
  5724. #u157035_text {
  5725. border-width:0px;
  5726. white-space:nowrap;
  5727. text-transform:none;
  5728. }
  5729. #u157036_div {
  5730. border-width:0px;
  5731. position:absolute;
  5732. left:0px;
  5733. top:0px;
  5734. width:30px;
  5735. height:30px;
  5736. background:inherit;
  5737. background-color:rgba(24, 144, 255, 1);
  5738. border:none;
  5739. border-radius:4px;
  5740. -moz-box-shadow:none;
  5741. -webkit-box-shadow:none;
  5742. box-shadow:none;
  5743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5744. font-weight:400;
  5745. font-style:normal;
  5746. font-size:8px;
  5747. color:#FFFFFF;
  5748. }
  5749. #u157036 {
  5750. border-width:0px;
  5751. position:absolute;
  5752. left:799px;
  5753. top:326px;
  5754. width:30px;
  5755. height:30px;
  5756. display:flex;
  5757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5758. font-weight:400;
  5759. font-style:normal;
  5760. font-size:8px;
  5761. color:#FFFFFF;
  5762. }
  5763. #u157036 .text {
  5764. position:absolute;
  5765. align-self:center;
  5766. padding:2px 2px 2px 2px;
  5767. box-sizing:border-box;
  5768. width:100%;
  5769. }
  5770. #u157036_text {
  5771. border-width:0px;
  5772. word-wrap:break-word;
  5773. text-transform:none;
  5774. }
  5775. #u157037 {
  5776. border-width:0px;
  5777. position:absolute;
  5778. left:0px;
  5779. top:0px;
  5780. width:0px;
  5781. height:0px;
  5782. }
  5783. #u157038_div {
  5784. border-width:0px;
  5785. position:absolute;
  5786. left:0px;
  5787. top:0px;
  5788. width:49px;
  5789. height:17px;
  5790. background:inherit;
  5791. background-color:rgba(255, 255, 255, 0);
  5792. border:none;
  5793. border-radius:0px;
  5794. -moz-box-shadow:none;
  5795. -webkit-box-shadow:none;
  5796. box-shadow:none;
  5797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5798. font-weight:400;
  5799. font-style:normal;
  5800. font-size:12px;
  5801. }
  5802. #u157038 {
  5803. border-width:0px;
  5804. position:absolute;
  5805. left:523px;
  5806. top:422px;
  5807. width:49px;
  5808. height:17px;
  5809. display:flex;
  5810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5811. font-weight:400;
  5812. font-style:normal;
  5813. font-size:12px;
  5814. }
  5815. #u157038 .text {
  5816. position:absolute;
  5817. align-self:flex-start;
  5818. padding:0px 0px 0px 0px;
  5819. box-sizing:border-box;
  5820. width:100%;
  5821. }
  5822. #u157038_text {
  5823. border-width:0px;
  5824. white-space:nowrap;
  5825. text-transform:none;
  5826. }
  5827. #u157039_div {
  5828. border-width:0px;
  5829. position:absolute;
  5830. left:0px;
  5831. top:0px;
  5832. width:30px;
  5833. height:30px;
  5834. background:inherit;
  5835. background-color:rgba(24, 144, 255, 1);
  5836. border:none;
  5837. border-radius:4px;
  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:8px;
  5845. color:#FFFFFF;
  5846. }
  5847. #u157039 {
  5848. border-width:0px;
  5849. position:absolute;
  5850. left:532px;
  5851. top:387px;
  5852. width:30px;
  5853. height:30px;
  5854. display:flex;
  5855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5856. font-weight:400;
  5857. font-style:normal;
  5858. font-size:8px;
  5859. color:#FFFFFF;
  5860. }
  5861. #u157039 .text {
  5862. position:absolute;
  5863. align-self:center;
  5864. padding:2px 2px 2px 2px;
  5865. box-sizing:border-box;
  5866. width:100%;
  5867. }
  5868. #u157039_text {
  5869. border-width:0px;
  5870. word-wrap:break-word;
  5871. text-transform:none;
  5872. }
  5873. #u157040 {
  5874. border-width:0px;
  5875. position:absolute;
  5876. left:0px;
  5877. top:0px;
  5878. width:0px;
  5879. height:0px;
  5880. }
  5881. #u157041_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. }
  5900. #u157041 {
  5901. border-width:0px;
  5902. position:absolute;
  5903. left:612px;
  5904. top:422px;
  5905. width:49px;
  5906. height:17px;
  5907. display:flex;
  5908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5909. font-weight:400;
  5910. font-style:normal;
  5911. font-size:12px;
  5912. }
  5913. #u157041 .text {
  5914. position:absolute;
  5915. align-self:flex-start;
  5916. padding:0px 0px 0px 0px;
  5917. box-sizing:border-box;
  5918. width:100%;
  5919. }
  5920. #u157041_text {
  5921. border-width:0px;
  5922. white-space:nowrap;
  5923. text-transform:none;
  5924. }
  5925. #u157042_div {
  5926. border-width:0px;
  5927. position:absolute;
  5928. left:0px;
  5929. top:0px;
  5930. width:30px;
  5931. height:30px;
  5932. background:inherit;
  5933. background-color:rgba(24, 144, 255, 1);
  5934. border:none;
  5935. border-radius:4px;
  5936. -moz-box-shadow:none;
  5937. -webkit-box-shadow:none;
  5938. box-shadow:none;
  5939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5940. font-weight:400;
  5941. font-style:normal;
  5942. font-size:8px;
  5943. color:#FFFFFF;
  5944. }
  5945. #u157042 {
  5946. border-width:0px;
  5947. position:absolute;
  5948. left:621px;
  5949. top:387px;
  5950. width:30px;
  5951. height:30px;
  5952. display:flex;
  5953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5954. font-weight:400;
  5955. font-style:normal;
  5956. font-size:8px;
  5957. color:#FFFFFF;
  5958. }
  5959. #u157042 .text {
  5960. position:absolute;
  5961. align-self:center;
  5962. padding:2px 2px 2px 2px;
  5963. box-sizing:border-box;
  5964. width:100%;
  5965. }
  5966. #u157042_text {
  5967. border-width:0px;
  5968. word-wrap:break-word;
  5969. text-transform:none;
  5970. }
  5971. #u157043_div {
  5972. border-width:0px;
  5973. position:absolute;
  5974. left:0px;
  5975. top:0px;
  5976. width:67px;
  5977. height:20px;
  5978. background:inherit;
  5979. background-color:rgba(255, 255, 255, 0);
  5980. box-sizing:border-box;
  5981. border-width:3px;
  5982. border-style:solid;
  5983. border-color:rgba(121, 121, 121, 1);
  5984. border-top:0px;
  5985. border-right:0px;
  5986. border-bottom:0px;
  5987. border-radius:0px;
  5988. border-top-left-radius:0px;
  5989. border-bottom-left-radius:0px;
  5990. -moz-box-shadow:none;
  5991. -webkit-box-shadow:none;
  5992. box-shadow:none;
  5993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5994. font-weight:400;
  5995. font-style:normal;
  5996. }
  5997. #u157043 {
  5998. border-width:0px;
  5999. position:absolute;
  6000. left:513px;
  6001. top:588px;
  6002. width:67px;
  6003. height:20px;
  6004. display:flex;
  6005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6006. font-weight:400;
  6007. font-style:normal;
  6008. }
  6009. #u157043 .text {
  6010. position:absolute;
  6011. align-self:flex-start;
  6012. padding:0px 0px 0px 10px;
  6013. box-sizing:border-box;
  6014. width:100%;
  6015. }
  6016. #u157043_text {
  6017. border-width:0px;
  6018. white-space:nowrap;
  6019. text-transform:none;
  6020. }
  6021. #u157044 {
  6022. border-width:0px;
  6023. position:absolute;
  6024. left:0px;
  6025. top:0px;
  6026. width:0px;
  6027. height:0px;
  6028. }
  6029. #u157045_div {
  6030. border-width:0px;
  6031. position:absolute;
  6032. left:0px;
  6033. top:0px;
  6034. width:49px;
  6035. height:17px;
  6036. background:inherit;
  6037. background-color:rgba(255, 255, 255, 0);
  6038. border:none;
  6039. border-radius:0px;
  6040. -moz-box-shadow:none;
  6041. -webkit-box-shadow:none;
  6042. box-shadow:none;
  6043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6044. font-weight:400;
  6045. font-style:normal;
  6046. font-size:12px;
  6047. }
  6048. #u157045 {
  6049. border-width:0px;
  6050. position:absolute;
  6051. left:523px;
  6052. top:653px;
  6053. width:49px;
  6054. height:17px;
  6055. display:flex;
  6056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6057. font-weight:400;
  6058. font-style:normal;
  6059. font-size:12px;
  6060. }
  6061. #u157045 .text {
  6062. position:absolute;
  6063. align-self:flex-start;
  6064. padding:0px 0px 0px 0px;
  6065. box-sizing:border-box;
  6066. width:100%;
  6067. }
  6068. #u157045_text {
  6069. border-width:0px;
  6070. white-space:nowrap;
  6071. text-transform:none;
  6072. }
  6073. #u157046_div {
  6074. border-width:0px;
  6075. position:absolute;
  6076. left:0px;
  6077. top:0px;
  6078. width:30px;
  6079. height:30px;
  6080. background:inherit;
  6081. background-color:rgba(24, 144, 255, 1);
  6082. border:none;
  6083. border-radius:4px;
  6084. -moz-box-shadow:none;
  6085. -webkit-box-shadow:none;
  6086. box-shadow:none;
  6087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6088. font-weight:400;
  6089. font-style:normal;
  6090. font-size:8px;
  6091. color:#FFFFFF;
  6092. }
  6093. #u157046 {
  6094. border-width:0px;
  6095. position:absolute;
  6096. left:532px;
  6097. top:618px;
  6098. width:30px;
  6099. height:30px;
  6100. display:flex;
  6101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6102. font-weight:400;
  6103. font-style:normal;
  6104. font-size:8px;
  6105. color:#FFFFFF;
  6106. }
  6107. #u157046 .text {
  6108. position:absolute;
  6109. align-self:center;
  6110. padding:2px 2px 2px 2px;
  6111. box-sizing:border-box;
  6112. width:100%;
  6113. }
  6114. #u157046_text {
  6115. border-width:0px;
  6116. word-wrap:break-word;
  6117. text-transform:none;
  6118. }
  6119. #u157047 {
  6120. border-width:0px;
  6121. position:absolute;
  6122. left:0px;
  6123. top:0px;
  6124. width:0px;
  6125. height:0px;
  6126. }
  6127. #u157048_div {
  6128. border-width:0px;
  6129. position:absolute;
  6130. left:0px;
  6131. top:0px;
  6132. width:30px;
  6133. height:30px;
  6134. background:inherit;
  6135. background-color:rgba(255, 255, 255, 1);
  6136. box-sizing:border-box;
  6137. border-width:1px;
  6138. border-style:solid;
  6139. border-color:rgba(121, 121, 121, 1);
  6140. border-radius:4px;
  6141. -moz-box-shadow:none;
  6142. -webkit-box-shadow:none;
  6143. box-shadow:none;
  6144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6145. font-weight:400;
  6146. font-style:normal;
  6147. font-size:8px;
  6148. }
  6149. #u157048 {
  6150. border-width:0px;
  6151. position:absolute;
  6152. left:621px;
  6153. top:618px;
  6154. width:30px;
  6155. height:30px;
  6156. display:flex;
  6157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6158. font-weight:400;
  6159. font-style:normal;
  6160. font-size:8px;
  6161. }
  6162. #u157048 .text {
  6163. position:absolute;
  6164. align-self:center;
  6165. padding:2px 2px 2px 2px;
  6166. box-sizing:border-box;
  6167. width:100%;
  6168. }
  6169. #u157048_text {
  6170. border-width:0px;
  6171. word-wrap:break-word;
  6172. text-transform:none;
  6173. }
  6174. #u157049_div {
  6175. border-width:0px;
  6176. position:absolute;
  6177. left:0px;
  6178. top:0px;
  6179. width:49px;
  6180. height:17px;
  6181. background:inherit;
  6182. background-color:rgba(255, 255, 255, 0);
  6183. border:none;
  6184. border-radius:0px;
  6185. -moz-box-shadow:none;
  6186. -webkit-box-shadow:none;
  6187. box-shadow:none;
  6188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6189. font-weight:400;
  6190. font-style:normal;
  6191. font-size:12px;
  6192. }
  6193. #u157049 {
  6194. border-width:0px;
  6195. position:absolute;
  6196. left:612px;
  6197. top:653px;
  6198. width:49px;
  6199. height:17px;
  6200. display:flex;
  6201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6202. font-weight:400;
  6203. font-style:normal;
  6204. font-size:12px;
  6205. }
  6206. #u157049 .text {
  6207. position:absolute;
  6208. align-self:flex-start;
  6209. padding:0px 0px 0px 0px;
  6210. box-sizing:border-box;
  6211. width:100%;
  6212. }
  6213. #u157049_text {
  6214. border-width:0px;
  6215. white-space:nowrap;
  6216. text-transform:none;
  6217. }
  6218. #u157050 {
  6219. border-width:0px;
  6220. position:absolute;
  6221. left:0px;
  6222. top:0px;
  6223. width:0px;
  6224. height:0px;
  6225. }
  6226. #u157051_div {
  6227. border-width:0px;
  6228. position:absolute;
  6229. left:0px;
  6230. top:0px;
  6231. width:30px;
  6232. height:30px;
  6233. background:inherit;
  6234. background-color:rgba(255, 255, 255, 1);
  6235. box-sizing:border-box;
  6236. border-width:1px;
  6237. border-style:solid;
  6238. border-color:rgba(121, 121, 121, 1);
  6239. border-radius:4px;
  6240. -moz-box-shadow:none;
  6241. -webkit-box-shadow:none;
  6242. box-shadow:none;
  6243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6244. font-weight:400;
  6245. font-style:normal;
  6246. font-size:8px;
  6247. }
  6248. #u157051 {
  6249. border-width:0px;
  6250. position:absolute;
  6251. left:710px;
  6252. top:618px;
  6253. width:30px;
  6254. height:30px;
  6255. display:flex;
  6256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6257. font-weight:400;
  6258. font-style:normal;
  6259. font-size:8px;
  6260. }
  6261. #u157051 .text {
  6262. position:absolute;
  6263. align-self:center;
  6264. padding:2px 2px 2px 2px;
  6265. box-sizing:border-box;
  6266. width:100%;
  6267. }
  6268. #u157051_text {
  6269. border-width:0px;
  6270. word-wrap:break-word;
  6271. text-transform:none;
  6272. }
  6273. #u157052_div {
  6274. border-width:0px;
  6275. position:absolute;
  6276. left:0px;
  6277. top:0px;
  6278. width:49px;
  6279. height:17px;
  6280. background:inherit;
  6281. background-color:rgba(255, 255, 255, 0);
  6282. border:none;
  6283. border-radius:0px;
  6284. -moz-box-shadow:none;
  6285. -webkit-box-shadow:none;
  6286. box-shadow:none;
  6287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6288. font-weight:400;
  6289. font-style:normal;
  6290. font-size:12px;
  6291. }
  6292. #u157052 {
  6293. border-width:0px;
  6294. position:absolute;
  6295. left:701px;
  6296. top:653px;
  6297. width:49px;
  6298. height:17px;
  6299. display:flex;
  6300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6301. font-weight:400;
  6302. font-style:normal;
  6303. font-size:12px;
  6304. }
  6305. #u157052 .text {
  6306. position:absolute;
  6307. align-self:flex-start;
  6308. padding:0px 0px 0px 0px;
  6309. box-sizing:border-box;
  6310. width:100%;
  6311. }
  6312. #u157052_text {
  6313. border-width:0px;
  6314. white-space:nowrap;
  6315. text-transform:none;
  6316. }
  6317. #u157053 {
  6318. border-width:0px;
  6319. position:absolute;
  6320. left:0px;
  6321. top:0px;
  6322. width:0px;
  6323. height:0px;
  6324. }
  6325. #u157054_div {
  6326. border-width:0px;
  6327. position:absolute;
  6328. left:0px;
  6329. top:0px;
  6330. width:49px;
  6331. height:17px;
  6332. background:inherit;
  6333. background-color:rgba(255, 255, 255, 0);
  6334. border:none;
  6335. border-radius:0px;
  6336. -moz-box-shadow:none;
  6337. -webkit-box-shadow:none;
  6338. box-shadow:none;
  6339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6340. font-weight:400;
  6341. font-style:normal;
  6342. font-size:12px;
  6343. }
  6344. #u157054 {
  6345. border-width:0px;
  6346. position:absolute;
  6347. left:790px;
  6348. top:653px;
  6349. width:49px;
  6350. height:17px;
  6351. display:flex;
  6352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6353. font-weight:400;
  6354. font-style:normal;
  6355. font-size:12px;
  6356. }
  6357. #u157054 .text {
  6358. position:absolute;
  6359. align-self:flex-start;
  6360. padding:0px 0px 0px 0px;
  6361. box-sizing:border-box;
  6362. width:100%;
  6363. }
  6364. #u157054_text {
  6365. border-width:0px;
  6366. white-space:nowrap;
  6367. text-transform:none;
  6368. }
  6369. #u157055_div {
  6370. border-width:0px;
  6371. position:absolute;
  6372. left:0px;
  6373. top:0px;
  6374. width:30px;
  6375. height:30px;
  6376. background:inherit;
  6377. background-color:rgba(24, 144, 255, 1);
  6378. border:none;
  6379. border-radius:4px;
  6380. -moz-box-shadow:none;
  6381. -webkit-box-shadow:none;
  6382. box-shadow:none;
  6383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6384. font-weight:400;
  6385. font-style:normal;
  6386. font-size:8px;
  6387. color:#FFFFFF;
  6388. }
  6389. #u157055 {
  6390. border-width:0px;
  6391. position:absolute;
  6392. left:799px;
  6393. top:618px;
  6394. width:30px;
  6395. height:30px;
  6396. display:flex;
  6397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6398. font-weight:400;
  6399. font-style:normal;
  6400. font-size:8px;
  6401. color:#FFFFFF;
  6402. }
  6403. #u157055 .text {
  6404. position:absolute;
  6405. align-self:center;
  6406. padding:2px 2px 2px 2px;
  6407. box-sizing:border-box;
  6408. width:100%;
  6409. }
  6410. #u157055_text {
  6411. border-width:0px;
  6412. word-wrap:break-word;
  6413. text-transform:none;
  6414. }
  6415. #u157056_div {
  6416. border-width:0px;
  6417. position:absolute;
  6418. left:0px;
  6419. top:0px;
  6420. width:67px;
  6421. height:20px;
  6422. background:inherit;
  6423. background-color:rgba(255, 255, 255, 0);
  6424. box-sizing:border-box;
  6425. border-width:3px;
  6426. border-style:solid;
  6427. border-color:rgba(121, 121, 121, 1);
  6428. border-top:0px;
  6429. border-right:0px;
  6430. border-bottom:0px;
  6431. border-radius:0px;
  6432. border-top-left-radius:0px;
  6433. border-bottom-left-radius:0px;
  6434. -moz-box-shadow:none;
  6435. -webkit-box-shadow:none;
  6436. box-shadow:none;
  6437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6438. font-weight:400;
  6439. font-style:normal;
  6440. }
  6441. #u157056 {
  6442. border-width:0px;
  6443. position:absolute;
  6444. left:513px;
  6445. top:700px;
  6446. width:67px;
  6447. height:20px;
  6448. display:flex;
  6449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6450. font-weight:400;
  6451. font-style:normal;
  6452. }
  6453. #u157056 .text {
  6454. position:absolute;
  6455. align-self:flex-start;
  6456. padding:0px 0px 0px 10px;
  6457. box-sizing:border-box;
  6458. width:100%;
  6459. }
  6460. #u157056_text {
  6461. border-width:0px;
  6462. white-space:nowrap;
  6463. text-transform:none;
  6464. }
  6465. #u157057 {
  6466. border-width:0px;
  6467. position:absolute;
  6468. left:0px;
  6469. top:0px;
  6470. width:0px;
  6471. height:0px;
  6472. }
  6473. #u157058_div {
  6474. border-width:0px;
  6475. position:absolute;
  6476. left:0px;
  6477. top:0px;
  6478. width:30px;
  6479. height:30px;
  6480. background:inherit;
  6481. background-color:rgba(255, 255, 255, 1);
  6482. box-sizing:border-box;
  6483. border-width:1px;
  6484. border-style:solid;
  6485. border-color:rgba(121, 121, 121, 1);
  6486. border-radius:4px;
  6487. -moz-box-shadow:none;
  6488. -webkit-box-shadow:none;
  6489. box-shadow:none;
  6490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6491. font-weight:400;
  6492. font-style:normal;
  6493. font-size:8px;
  6494. }
  6495. #u157058 {
  6496. border-width:0px;
  6497. position:absolute;
  6498. left:532px;
  6499. top:730px;
  6500. width:30px;
  6501. height:30px;
  6502. display:flex;
  6503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6504. font-weight:400;
  6505. font-style:normal;
  6506. font-size:8px;
  6507. }
  6508. #u157058 .text {
  6509. position:absolute;
  6510. align-self:center;
  6511. padding:2px 2px 2px 2px;
  6512. box-sizing:border-box;
  6513. width:100%;
  6514. }
  6515. #u157058_text {
  6516. border-width:0px;
  6517. word-wrap:break-word;
  6518. text-transform:none;
  6519. }
  6520. #u157059_div {
  6521. border-width:0px;
  6522. position:absolute;
  6523. left:0px;
  6524. top:0px;
  6525. width:49px;
  6526. height:17px;
  6527. background:inherit;
  6528. background-color:rgba(255, 255, 255, 0);
  6529. border:none;
  6530. border-radius:0px;
  6531. -moz-box-shadow:none;
  6532. -webkit-box-shadow:none;
  6533. box-shadow:none;
  6534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6535. font-weight:400;
  6536. font-style:normal;
  6537. font-size:12px;
  6538. }
  6539. #u157059 {
  6540. border-width:0px;
  6541. position:absolute;
  6542. left:523px;
  6543. top:765px;
  6544. width:49px;
  6545. height:17px;
  6546. display:flex;
  6547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6548. font-weight:400;
  6549. font-style:normal;
  6550. font-size:12px;
  6551. }
  6552. #u157059 .text {
  6553. position:absolute;
  6554. align-self:flex-start;
  6555. padding:0px 0px 0px 0px;
  6556. box-sizing:border-box;
  6557. width:100%;
  6558. }
  6559. #u157059_text {
  6560. border-width:0px;
  6561. white-space:nowrap;
  6562. text-transform:none;
  6563. }
  6564. #u157060 {
  6565. border-width:0px;
  6566. position:absolute;
  6567. left:0px;
  6568. top:0px;
  6569. width:0px;
  6570. height:0px;
  6571. }
  6572. #u157061_div {
  6573. border-width:0px;
  6574. position:absolute;
  6575. left:0px;
  6576. top:0px;
  6577. width:30px;
  6578. height:30px;
  6579. background:inherit;
  6580. background-color:rgba(255, 255, 255, 1);
  6581. box-sizing:border-box;
  6582. border-width:1px;
  6583. border-style:solid;
  6584. border-color:rgba(121, 121, 121, 1);
  6585. border-radius:4px;
  6586. -moz-box-shadow:none;
  6587. -webkit-box-shadow:none;
  6588. box-shadow:none;
  6589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6590. font-weight:400;
  6591. font-style:normal;
  6592. font-size:8px;
  6593. }
  6594. #u157061 {
  6595. border-width:0px;
  6596. position:absolute;
  6597. left:621px;
  6598. top:730px;
  6599. width:30px;
  6600. height:30px;
  6601. display:flex;
  6602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6603. font-weight:400;
  6604. font-style:normal;
  6605. font-size:8px;
  6606. }
  6607. #u157061 .text {
  6608. position:absolute;
  6609. align-self:center;
  6610. padding:2px 2px 2px 2px;
  6611. box-sizing:border-box;
  6612. width:100%;
  6613. }
  6614. #u157061_text {
  6615. border-width:0px;
  6616. word-wrap:break-word;
  6617. text-transform:none;
  6618. }
  6619. #u157062_div {
  6620. border-width:0px;
  6621. position:absolute;
  6622. left:0px;
  6623. top:0px;
  6624. width:49px;
  6625. height:17px;
  6626. background:inherit;
  6627. background-color:rgba(255, 255, 255, 0);
  6628. border:none;
  6629. border-radius:0px;
  6630. -moz-box-shadow:none;
  6631. -webkit-box-shadow:none;
  6632. box-shadow:none;
  6633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6634. font-weight:400;
  6635. font-style:normal;
  6636. font-size:12px;
  6637. }
  6638. #u157062 {
  6639. border-width:0px;
  6640. position:absolute;
  6641. left:612px;
  6642. top:765px;
  6643. width:49px;
  6644. height:17px;
  6645. display:flex;
  6646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6647. font-weight:400;
  6648. font-style:normal;
  6649. font-size:12px;
  6650. }
  6651. #u157062 .text {
  6652. position:absolute;
  6653. align-self:flex-start;
  6654. padding:0px 0px 0px 0px;
  6655. box-sizing:border-box;
  6656. width:100%;
  6657. }
  6658. #u157062_text {
  6659. border-width:0px;
  6660. white-space:nowrap;
  6661. text-transform:none;
  6662. }
  6663. #u157063 {
  6664. border-width:0px;
  6665. position:absolute;
  6666. left:0px;
  6667. top:0px;
  6668. width:0px;
  6669. height:0px;
  6670. }
  6671. #u157064_div {
  6672. border-width:0px;
  6673. position:absolute;
  6674. left:0px;
  6675. top:0px;
  6676. width:49px;
  6677. height:17px;
  6678. background:inherit;
  6679. background-color:rgba(255, 255, 255, 0);
  6680. border:none;
  6681. border-radius:0px;
  6682. -moz-box-shadow:none;
  6683. -webkit-box-shadow:none;
  6684. box-shadow:none;
  6685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6686. font-weight:400;
  6687. font-style:normal;
  6688. font-size:12px;
  6689. }
  6690. #u157064 {
  6691. border-width:0px;
  6692. position:absolute;
  6693. left:701px;
  6694. top:422px;
  6695. width:49px;
  6696. height:17px;
  6697. display:flex;
  6698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6699. font-weight:400;
  6700. font-style:normal;
  6701. font-size:12px;
  6702. }
  6703. #u157064 .text {
  6704. position:absolute;
  6705. align-self:flex-start;
  6706. padding:0px 0px 0px 0px;
  6707. box-sizing:border-box;
  6708. width:100%;
  6709. }
  6710. #u157064_text {
  6711. border-width:0px;
  6712. white-space:nowrap;
  6713. text-transform:none;
  6714. }
  6715. #u157065_div {
  6716. border-width:0px;
  6717. position:absolute;
  6718. left:0px;
  6719. top:0px;
  6720. width:30px;
  6721. height:30px;
  6722. background:inherit;
  6723. background-color:rgba(24, 144, 255, 1);
  6724. border:none;
  6725. border-radius:4px;
  6726. -moz-box-shadow:none;
  6727. -webkit-box-shadow:none;
  6728. box-shadow:none;
  6729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6730. font-weight:400;
  6731. font-style:normal;
  6732. font-size:8px;
  6733. color:#FFFFFF;
  6734. }
  6735. #u157065 {
  6736. border-width:0px;
  6737. position:absolute;
  6738. left:710px;
  6739. top:387px;
  6740. width:30px;
  6741. height:30px;
  6742. display:flex;
  6743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6744. font-weight:400;
  6745. font-style:normal;
  6746. font-size:8px;
  6747. color:#FFFFFF;
  6748. }
  6749. #u157065 .text {
  6750. position:absolute;
  6751. align-self:center;
  6752. padding:2px 2px 2px 2px;
  6753. box-sizing:border-box;
  6754. width:100%;
  6755. }
  6756. #u157065_text {
  6757. border-width:0px;
  6758. word-wrap:break-word;
  6759. text-transform:none;
  6760. }
  6761. #u157066 {
  6762. border-width:0px;
  6763. position:absolute;
  6764. left:0px;
  6765. top:0px;
  6766. width:0px;
  6767. height:0px;
  6768. }
  6769. #u157067_div {
  6770. border-width:0px;
  6771. position:absolute;
  6772. left:0px;
  6773. top:0px;
  6774. width:49px;
  6775. height:17px;
  6776. background:inherit;
  6777. background-color:rgba(255, 255, 255, 0);
  6778. border:none;
  6779. border-radius:0px;
  6780. -moz-box-shadow:none;
  6781. -webkit-box-shadow:none;
  6782. box-shadow:none;
  6783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6784. font-weight:400;
  6785. font-style:normal;
  6786. font-size:12px;
  6787. }
  6788. #u157067 {
  6789. border-width:0px;
  6790. position:absolute;
  6791. left:523px;
  6792. top:484px;
  6793. width:49px;
  6794. height:17px;
  6795. display:flex;
  6796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6797. font-weight:400;
  6798. font-style:normal;
  6799. font-size:12px;
  6800. }
  6801. #u157067 .text {
  6802. position:absolute;
  6803. align-self:flex-start;
  6804. padding:0px 0px 0px 0px;
  6805. box-sizing:border-box;
  6806. width:100%;
  6807. }
  6808. #u157067_text {
  6809. border-width:0px;
  6810. white-space:nowrap;
  6811. text-transform:none;
  6812. }
  6813. #u157068_div {
  6814. border-width:0px;
  6815. position:absolute;
  6816. left:0px;
  6817. top:0px;
  6818. width:30px;
  6819. height:30px;
  6820. background:inherit;
  6821. background-color:rgba(24, 144, 255, 1);
  6822. border:none;
  6823. border-radius:4px;
  6824. -moz-box-shadow:none;
  6825. -webkit-box-shadow:none;
  6826. box-shadow:none;
  6827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6828. font-weight:400;
  6829. font-style:normal;
  6830. font-size:8px;
  6831. color:#FFFFFF;
  6832. }
  6833. #u157068 {
  6834. border-width:0px;
  6835. position:absolute;
  6836. left:532px;
  6837. top:449px;
  6838. width:30px;
  6839. height:30px;
  6840. display:flex;
  6841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6842. font-weight:400;
  6843. font-style:normal;
  6844. font-size:8px;
  6845. color:#FFFFFF;
  6846. }
  6847. #u157068 .text {
  6848. position:absolute;
  6849. align-self:center;
  6850. padding:2px 2px 2px 2px;
  6851. box-sizing:border-box;
  6852. width:100%;
  6853. }
  6854. #u157068_text {
  6855. border-width:0px;
  6856. word-wrap:break-word;
  6857. text-transform:none;
  6858. }
  6859. #u157069 {
  6860. border-width:0px;
  6861. position:absolute;
  6862. left:0px;
  6863. top:0px;
  6864. width:0px;
  6865. height:0px;
  6866. }
  6867. #u157070_div {
  6868. border-width:0px;
  6869. position:absolute;
  6870. left:0px;
  6871. top:0px;
  6872. width:30px;
  6873. height:30px;
  6874. background:inherit;
  6875. background-color:rgba(255, 255, 255, 1);
  6876. box-sizing:border-box;
  6877. border-width:1px;
  6878. border-style:solid;
  6879. border-color:rgba(121, 121, 121, 1);
  6880. border-radius:4px;
  6881. -moz-box-shadow:none;
  6882. -webkit-box-shadow:none;
  6883. box-shadow:none;
  6884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6885. font-weight:400;
  6886. font-style:normal;
  6887. font-size:8px;
  6888. }
  6889. #u157070 {
  6890. border-width:0px;
  6891. position:absolute;
  6892. left:710px;
  6893. top:730px;
  6894. width:30px;
  6895. height:30px;
  6896. display:flex;
  6897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6898. font-weight:400;
  6899. font-style:normal;
  6900. font-size:8px;
  6901. }
  6902. #u157070 .text {
  6903. position:absolute;
  6904. align-self:center;
  6905. padding:2px 2px 2px 2px;
  6906. box-sizing:border-box;
  6907. width:100%;
  6908. }
  6909. #u157070_text {
  6910. border-width:0px;
  6911. word-wrap:break-word;
  6912. text-transform:none;
  6913. }
  6914. #u157071_div {
  6915. border-width:0px;
  6916. position:absolute;
  6917. left:0px;
  6918. top:0px;
  6919. width:49px;
  6920. height:17px;
  6921. background:inherit;
  6922. background-color:rgba(255, 255, 255, 0);
  6923. border:none;
  6924. border-radius:0px;
  6925. -moz-box-shadow:none;
  6926. -webkit-box-shadow:none;
  6927. box-shadow:none;
  6928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6929. font-weight:400;
  6930. font-style:normal;
  6931. font-size:12px;
  6932. }
  6933. #u157071 {
  6934. border-width:0px;
  6935. position:absolute;
  6936. left:701px;
  6937. top:765px;
  6938. width:49px;
  6939. height:17px;
  6940. display:flex;
  6941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6942. font-weight:400;
  6943. font-style:normal;
  6944. font-size:12px;
  6945. }
  6946. #u157071 .text {
  6947. position:absolute;
  6948. align-self:flex-start;
  6949. padding:0px 0px 0px 0px;
  6950. box-sizing:border-box;
  6951. width:100%;
  6952. }
  6953. #u157071_text {
  6954. border-width:0px;
  6955. white-space:nowrap;
  6956. text-transform:none;
  6957. }
  6958. #u157072_div {
  6959. border-width:0px;
  6960. position:absolute;
  6961. left:0px;
  6962. top:0px;
  6963. width:67px;
  6964. height:20px;
  6965. background:inherit;
  6966. background-color:rgba(255, 255, 255, 0);
  6967. box-sizing:border-box;
  6968. border-width:3px;
  6969. border-style:solid;
  6970. border-color:rgba(121, 121, 121, 1);
  6971. border-top:0px;
  6972. border-right:0px;
  6973. border-bottom:0px;
  6974. border-radius:0px;
  6975. border-top-left-radius:0px;
  6976. border-bottom-left-radius:0px;
  6977. -moz-box-shadow:none;
  6978. -webkit-box-shadow:none;
  6979. box-shadow:none;
  6980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6981. font-weight:400;
  6982. font-style:normal;
  6983. }
  6984. #u157072 {
  6985. border-width:0px;
  6986. position:absolute;
  6987. left:513px;
  6988. top:812px;
  6989. width:67px;
  6990. height:20px;
  6991. display:flex;
  6992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6993. font-weight:400;
  6994. font-style:normal;
  6995. }
  6996. #u157072 .text {
  6997. position:absolute;
  6998. align-self:flex-start;
  6999. padding:0px 0px 0px 10px;
  7000. box-sizing:border-box;
  7001. width:100%;
  7002. }
  7003. #u157072_text {
  7004. border-width:0px;
  7005. white-space:nowrap;
  7006. text-transform:none;
  7007. }
  7008. #u157073 {
  7009. border-width:0px;
  7010. position:absolute;
  7011. left:0px;
  7012. top:0px;
  7013. width:0px;
  7014. height:0px;
  7015. }
  7016. #u157074_div {
  7017. border-width:0px;
  7018. position:absolute;
  7019. left:0px;
  7020. top:0px;
  7021. width:49px;
  7022. height:17px;
  7023. background:inherit;
  7024. background-color:rgba(255, 255, 255, 0);
  7025. border:none;
  7026. border-radius:0px;
  7027. -moz-box-shadow:none;
  7028. -webkit-box-shadow:none;
  7029. box-shadow:none;
  7030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7031. font-weight:400;
  7032. font-style:normal;
  7033. font-size:12px;
  7034. }
  7035. #u157074 {
  7036. border-width:0px;
  7037. position:absolute;
  7038. left:523px;
  7039. top:877px;
  7040. width:49px;
  7041. height:17px;
  7042. display:flex;
  7043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7044. font-weight:400;
  7045. font-style:normal;
  7046. font-size:12px;
  7047. }
  7048. #u157074 .text {
  7049. position:absolute;
  7050. align-self:flex-start;
  7051. padding:0px 0px 0px 0px;
  7052. box-sizing:border-box;
  7053. width:100%;
  7054. }
  7055. #u157074_text {
  7056. border-width:0px;
  7057. white-space:nowrap;
  7058. text-transform:none;
  7059. }
  7060. #u157075_div {
  7061. border-width:0px;
  7062. position:absolute;
  7063. left:0px;
  7064. top:0px;
  7065. width:30px;
  7066. height:30px;
  7067. background:inherit;
  7068. background-color:rgba(24, 144, 255, 1);
  7069. border:none;
  7070. border-radius:4px;
  7071. -moz-box-shadow:none;
  7072. -webkit-box-shadow:none;
  7073. box-shadow:none;
  7074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7075. font-weight:400;
  7076. font-style:normal;
  7077. font-size:8px;
  7078. color:#FFFFFF;
  7079. }
  7080. #u157075 {
  7081. border-width:0px;
  7082. position:absolute;
  7083. left:532px;
  7084. top:842px;
  7085. width:30px;
  7086. height:30px;
  7087. display:flex;
  7088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7089. font-weight:400;
  7090. font-style:normal;
  7091. font-size:8px;
  7092. color:#FFFFFF;
  7093. }
  7094. #u157075 .text {
  7095. position:absolute;
  7096. align-self:center;
  7097. padding:2px 2px 2px 2px;
  7098. box-sizing:border-box;
  7099. width:100%;
  7100. }
  7101. #u157075_text {
  7102. border-width:0px;
  7103. word-wrap:break-word;
  7104. text-transform:none;
  7105. }
  7106. #u157076 {
  7107. border-width:0px;
  7108. position:absolute;
  7109. left:0px;
  7110. top:0px;
  7111. width:0px;
  7112. height:0px;
  7113. }
  7114. #u157077_div {
  7115. border-width:0px;
  7116. position:absolute;
  7117. left:0px;
  7118. top:0px;
  7119. width:49px;
  7120. height:17px;
  7121. background:inherit;
  7122. background-color:rgba(255, 255, 255, 0);
  7123. border:none;
  7124. border-radius:0px;
  7125. -moz-box-shadow:none;
  7126. -webkit-box-shadow:none;
  7127. box-shadow:none;
  7128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7129. font-weight:400;
  7130. font-style:normal;
  7131. font-size:12px;
  7132. }
  7133. #u157077 {
  7134. border-width:0px;
  7135. position:absolute;
  7136. left:612px;
  7137. top:877px;
  7138. width:49px;
  7139. height:17px;
  7140. display:flex;
  7141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7142. font-weight:400;
  7143. font-style:normal;
  7144. font-size:12px;
  7145. }
  7146. #u157077 .text {
  7147. position:absolute;
  7148. align-self:flex-start;
  7149. padding:0px 0px 0px 0px;
  7150. box-sizing:border-box;
  7151. width:100%;
  7152. }
  7153. #u157077_text {
  7154. border-width:0px;
  7155. white-space:nowrap;
  7156. text-transform:none;
  7157. }
  7158. #u157078_div {
  7159. border-width:0px;
  7160. position:absolute;
  7161. left:0px;
  7162. top:0px;
  7163. width:30px;
  7164. height:30px;
  7165. background:inherit;
  7166. background-color:rgba(24, 144, 255, 1);
  7167. border:none;
  7168. border-radius:4px;
  7169. -moz-box-shadow:none;
  7170. -webkit-box-shadow:none;
  7171. box-shadow:none;
  7172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7173. font-weight:400;
  7174. font-style:normal;
  7175. font-size:8px;
  7176. color:#FFFFFF;
  7177. }
  7178. #u157078 {
  7179. border-width:0px;
  7180. position:absolute;
  7181. left:621px;
  7182. top:842px;
  7183. width:30px;
  7184. height:30px;
  7185. display:flex;
  7186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7187. font-weight:400;
  7188. font-style:normal;
  7189. font-size:8px;
  7190. color:#FFFFFF;
  7191. }
  7192. #u157078 .text {
  7193. position:absolute;
  7194. align-self:center;
  7195. padding:2px 2px 2px 2px;
  7196. box-sizing:border-box;
  7197. width:100%;
  7198. }
  7199. #u157078_text {
  7200. border-width:0px;
  7201. word-wrap:break-word;
  7202. text-transform:none;
  7203. }
  7204. #u157079 {
  7205. border-width:0px;
  7206. position:absolute;
  7207. left:0px;
  7208. top:0px;
  7209. width:0px;
  7210. height:0px;
  7211. }
  7212. #u157080_div {
  7213. border-width:0px;
  7214. position:absolute;
  7215. left:0px;
  7216. top:0px;
  7217. width:30px;
  7218. height:30px;
  7219. background:inherit;
  7220. background-color:rgba(255, 255, 255, 1);
  7221. box-sizing:border-box;
  7222. border-width:1px;
  7223. border-style:solid;
  7224. border-color:rgba(121, 121, 121, 1);
  7225. border-radius:4px;
  7226. -moz-box-shadow:none;
  7227. -webkit-box-shadow:none;
  7228. box-shadow:none;
  7229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7230. font-weight:400;
  7231. font-style:normal;
  7232. font-size:8px;
  7233. }
  7234. #u157080 {
  7235. border-width:0px;
  7236. position:absolute;
  7237. left:532px;
  7238. top:511px;
  7239. width:30px;
  7240. height:30px;
  7241. display:flex;
  7242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7243. font-weight:400;
  7244. font-style:normal;
  7245. font-size:8px;
  7246. }
  7247. #u157080 .text {
  7248. position:absolute;
  7249. align-self:center;
  7250. padding:2px 2px 2px 2px;
  7251. box-sizing:border-box;
  7252. width:100%;
  7253. }
  7254. #u157080_text {
  7255. border-width:0px;
  7256. word-wrap:break-word;
  7257. text-transform:none;
  7258. }
  7259. #u157081_div {
  7260. border-width:0px;
  7261. position:absolute;
  7262. left:0px;
  7263. top:0px;
  7264. width:49px;
  7265. height:17px;
  7266. background:inherit;
  7267. background-color:rgba(255, 255, 255, 0);
  7268. border:none;
  7269. border-radius:0px;
  7270. -moz-box-shadow:none;
  7271. -webkit-box-shadow:none;
  7272. box-shadow:none;
  7273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7274. font-weight:400;
  7275. font-style:normal;
  7276. font-size:12px;
  7277. }
  7278. #u157081 {
  7279. border-width:0px;
  7280. position:absolute;
  7281. left:523px;
  7282. top:546px;
  7283. width:49px;
  7284. height:17px;
  7285. display:flex;
  7286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7287. font-weight:400;
  7288. font-style:normal;
  7289. font-size:12px;
  7290. }
  7291. #u157081 .text {
  7292. position:absolute;
  7293. align-self:flex-start;
  7294. padding:0px 0px 0px 0px;
  7295. box-sizing:border-box;
  7296. width:100%;
  7297. }
  7298. #u157081_text {
  7299. border-width:0px;
  7300. white-space:nowrap;
  7301. text-transform:none;
  7302. }
  7303. #u157082 {
  7304. border-width:0px;
  7305. position:absolute;
  7306. left:0px;
  7307. top:0px;
  7308. width:0px;
  7309. height:0px;
  7310. }
  7311. #u157083_div {
  7312. border-width:0px;
  7313. position:absolute;
  7314. left:0px;
  7315. top:0px;
  7316. width:30px;
  7317. height:30px;
  7318. background:inherit;
  7319. background-color:rgba(255, 255, 255, 1);
  7320. box-sizing:border-box;
  7321. border-width:1px;
  7322. border-style:solid;
  7323. border-color:rgba(121, 121, 121, 1);
  7324. border-radius:4px;
  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:8px;
  7332. }
  7333. #u157083 {
  7334. border-width:0px;
  7335. position:absolute;
  7336. left:799px;
  7337. top:730px;
  7338. width:30px;
  7339. height:30px;
  7340. display:flex;
  7341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7342. font-weight:400;
  7343. font-style:normal;
  7344. font-size:8px;
  7345. }
  7346. #u157083 .text {
  7347. position:absolute;
  7348. align-self:center;
  7349. padding:2px 2px 2px 2px;
  7350. box-sizing:border-box;
  7351. width:100%;
  7352. }
  7353. #u157083_text {
  7354. border-width:0px;
  7355. word-wrap:break-word;
  7356. text-transform:none;
  7357. }
  7358. #u157084_div {
  7359. border-width:0px;
  7360. position:absolute;
  7361. left:0px;
  7362. top:0px;
  7363. width:49px;
  7364. height:17px;
  7365. background:inherit;
  7366. background-color:rgba(255, 255, 255, 0);
  7367. border:none;
  7368. border-radius:0px;
  7369. -moz-box-shadow:none;
  7370. -webkit-box-shadow:none;
  7371. box-shadow:none;
  7372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7373. font-weight:400;
  7374. font-style:normal;
  7375. font-size:12px;
  7376. }
  7377. #u157084 {
  7378. border-width:0px;
  7379. position:absolute;
  7380. left:790px;
  7381. top:765px;
  7382. width:49px;
  7383. height:17px;
  7384. display:flex;
  7385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7386. font-weight:400;
  7387. font-style:normal;
  7388. font-size:12px;
  7389. }
  7390. #u157084 .text {
  7391. position:absolute;
  7392. align-self:flex-start;
  7393. padding:0px 0px 0px 0px;
  7394. box-sizing:border-box;
  7395. width:100%;
  7396. }
  7397. #u157084_text {
  7398. border-width:0px;
  7399. white-space:nowrap;
  7400. text-transform:none;
  7401. }
  7402. #u157085 {
  7403. border-width:0px;
  7404. position:absolute;
  7405. left:0px;
  7406. top:0px;
  7407. width:0px;
  7408. height:0px;
  7409. }
  7410. #u157086_div {
  7411. border-width:0px;
  7412. position:absolute;
  7413. left:0px;
  7414. top:0px;
  7415. width:30px;
  7416. height:30px;
  7417. background:inherit;
  7418. background-color:rgba(24, 144, 255, 1);
  7419. border:none;
  7420. border-radius:4px;
  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:8px;
  7428. color:#FFFFFF;
  7429. }
  7430. #u157086 {
  7431. border-width:0px;
  7432. position:absolute;
  7433. left:531px;
  7434. top:113px;
  7435. width:30px;
  7436. height:30px;
  7437. display:flex;
  7438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7439. font-weight:400;
  7440. font-style:normal;
  7441. font-size:8px;
  7442. color:#FFFFFF;
  7443. }
  7444. #u157086 .text {
  7445. position:absolute;
  7446. align-self:center;
  7447. padding:2px 2px 2px 2px;
  7448. box-sizing:border-box;
  7449. width:100%;
  7450. }
  7451. #u157086_text {
  7452. border-width:0px;
  7453. word-wrap:break-word;
  7454. text-transform:none;
  7455. }
  7456. #u157087_div {
  7457. border-width:0px;
  7458. position:absolute;
  7459. left:0px;
  7460. top:0px;
  7461. width:37px;
  7462. height:17px;
  7463. background:inherit;
  7464. background-color:rgba(255, 255, 255, 0);
  7465. border:none;
  7466. border-radius:0px;
  7467. -moz-box-shadow:none;
  7468. -webkit-box-shadow:none;
  7469. box-shadow:none;
  7470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7471. font-weight:400;
  7472. font-style:normal;
  7473. font-size:12px;
  7474. }
  7475. #u157087 {
  7476. border-width:0px;
  7477. position:absolute;
  7478. left:528px;
  7479. top:148px;
  7480. width:37px;
  7481. height:17px;
  7482. display:flex;
  7483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7484. font-weight:400;
  7485. font-style:normal;
  7486. font-size:12px;
  7487. }
  7488. #u157087 .text {
  7489. position:absolute;
  7490. align-self:flex-start;
  7491. padding:0px 0px 0px 0px;
  7492. box-sizing:border-box;
  7493. width:100%;
  7494. }
  7495. #u157087_text {
  7496. border-width:0px;
  7497. white-space:nowrap;
  7498. text-transform:none;
  7499. }
  7500. #u157088 {
  7501. border-width:0px;
  7502. position:absolute;
  7503. left:0px;
  7504. top:0px;
  7505. width:0px;
  7506. height:0px;
  7507. }
  7508. #u157089_div {
  7509. border-width:0px;
  7510. position:absolute;
  7511. left:0px;
  7512. top:0px;
  7513. width:30px;
  7514. height:30px;
  7515. background:inherit;
  7516. background-color:rgba(255, 255, 255, 1);
  7517. box-sizing:border-box;
  7518. border-width:1px;
  7519. border-style:solid;
  7520. border-color:rgba(121, 121, 121, 1);
  7521. border-radius:4px;
  7522. -moz-box-shadow:none;
  7523. -webkit-box-shadow:none;
  7524. box-shadow:none;
  7525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7526. font-weight:400;
  7527. font-style:normal;
  7528. font-size:8px;
  7529. }
  7530. #u157089 {
  7531. border-width:0px;
  7532. position:absolute;
  7533. left:236px;
  7534. top:482px;
  7535. width:30px;
  7536. height:30px;
  7537. display:flex;
  7538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7539. font-weight:400;
  7540. font-style:normal;
  7541. font-size:8px;
  7542. }
  7543. #u157089 .text {
  7544. position:absolute;
  7545. align-self:center;
  7546. padding:2px 2px 2px 2px;
  7547. box-sizing:border-box;
  7548. width:100%;
  7549. }
  7550. #u157089_text {
  7551. border-width:0px;
  7552. word-wrap:break-word;
  7553. text-transform:none;
  7554. }
  7555. #u157090_div {
  7556. border-width:0px;
  7557. position:absolute;
  7558. left:0px;
  7559. top:0px;
  7560. width:49px;
  7561. height:17px;
  7562. background:inherit;
  7563. background-color:rgba(255, 255, 255, 0);
  7564. border:none;
  7565. border-radius:0px;
  7566. -moz-box-shadow:none;
  7567. -webkit-box-shadow:none;
  7568. box-shadow:none;
  7569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7570. font-weight:400;
  7571. font-style:normal;
  7572. font-size:12px;
  7573. }
  7574. #u157090 {
  7575. border-width:0px;
  7576. position:absolute;
  7577. left:227px;
  7578. top:517px;
  7579. width:49px;
  7580. height:17px;
  7581. display:flex;
  7582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7583. font-weight:400;
  7584. font-style:normal;
  7585. font-size:12px;
  7586. }
  7587. #u157090 .text {
  7588. position:absolute;
  7589. align-self:flex-start;
  7590. padding:0px 0px 0px 0px;
  7591. box-sizing:border-box;
  7592. width:100%;
  7593. }
  7594. #u157090_text {
  7595. border-width:0px;
  7596. white-space:nowrap;
  7597. text-transform:none;
  7598. }
  7599. #u157091 {
  7600. border-width:0px;
  7601. position:absolute;
  7602. left:0px;
  7603. top:0px;
  7604. width:0px;
  7605. height:0px;
  7606. }
  7607. #u157092_div {
  7608. border-width:0px;
  7609. position:absolute;
  7610. left:0px;
  7611. top:0px;
  7612. width:49px;
  7613. height:17px;
  7614. background:inherit;
  7615. background-color:rgba(255, 255, 255, 0);
  7616. border:none;
  7617. border-radius:0px;
  7618. -moz-box-shadow:none;
  7619. -webkit-box-shadow:none;
  7620. box-shadow:none;
  7621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7622. font-weight:400;
  7623. font-style:normal;
  7624. font-size:12px;
  7625. }
  7626. #u157092 {
  7627. border-width:0px;
  7628. position:absolute;
  7629. left:790px;
  7630. top:422px;
  7631. width:49px;
  7632. height:17px;
  7633. display:flex;
  7634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7635. font-weight:400;
  7636. font-style:normal;
  7637. font-size:12px;
  7638. }
  7639. #u157092 .text {
  7640. position:absolute;
  7641. align-self:flex-start;
  7642. padding:0px 0px 0px 0px;
  7643. box-sizing:border-box;
  7644. width:100%;
  7645. }
  7646. #u157092_text {
  7647. border-width:0px;
  7648. white-space:nowrap;
  7649. text-transform:none;
  7650. }
  7651. #u157093_div {
  7652. border-width:0px;
  7653. position:absolute;
  7654. left:0px;
  7655. top:0px;
  7656. width:30px;
  7657. height:30px;
  7658. background:inherit;
  7659. background-color:rgba(24, 144, 255, 1);
  7660. border:none;
  7661. border-radius:4px;
  7662. -moz-box-shadow:none;
  7663. -webkit-box-shadow:none;
  7664. box-shadow:none;
  7665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7666. font-weight:400;
  7667. font-style:normal;
  7668. font-size:8px;
  7669. color:#FFFFFF;
  7670. }
  7671. #u157093 {
  7672. border-width:0px;
  7673. position:absolute;
  7674. left:799px;
  7675. top:387px;
  7676. width:30px;
  7677. height:30px;
  7678. display:flex;
  7679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7680. font-weight:400;
  7681. font-style:normal;
  7682. font-size:8px;
  7683. color:#FFFFFF;
  7684. }
  7685. #u157093 .text {
  7686. position:absolute;
  7687. align-self:center;
  7688. padding:2px 2px 2px 2px;
  7689. box-sizing:border-box;
  7690. width:100%;
  7691. }
  7692. #u157093_text {
  7693. border-width:0px;
  7694. word-wrap:break-word;
  7695. text-transform:none;
  7696. }
  7697. #u157094 {
  7698. border-width:0px;
  7699. position:absolute;
  7700. left:0px;
  7701. top:0px;
  7702. width:0px;
  7703. height:0px;
  7704. }
  7705. #u157095_div {
  7706. border-width:0px;
  7707. position:absolute;
  7708. left:0px;
  7709. top:0px;
  7710. width:30px;
  7711. height:30px;
  7712. background:inherit;
  7713. background-color:rgba(24, 144, 255, 1);
  7714. border:none;
  7715. border-radius:4px;
  7716. -moz-box-shadow:none;
  7717. -webkit-box-shadow:none;
  7718. box-shadow:none;
  7719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7720. font-weight:400;
  7721. font-style:normal;
  7722. font-size:8px;
  7723. color:#FFFFFF;
  7724. }
  7725. #u157095 {
  7726. border-width:0px;
  7727. position:absolute;
  7728. left:799px;
  7729. top:449px;
  7730. width:30px;
  7731. height:30px;
  7732. display:flex;
  7733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7734. font-weight:400;
  7735. font-style:normal;
  7736. font-size:8px;
  7737. color:#FFFFFF;
  7738. }
  7739. #u157095 .text {
  7740. position:absolute;
  7741. align-self:center;
  7742. padding:2px 2px 2px 2px;
  7743. box-sizing:border-box;
  7744. width:100%;
  7745. }
  7746. #u157095_text {
  7747. border-width:0px;
  7748. word-wrap:break-word;
  7749. text-transform:none;
  7750. }
  7751. #u157096_div {
  7752. border-width:0px;
  7753. position:absolute;
  7754. left:0px;
  7755. top:0px;
  7756. width:49px;
  7757. height:17px;
  7758. background:inherit;
  7759. background-color:rgba(255, 255, 255, 0);
  7760. border:none;
  7761. border-radius:0px;
  7762. -moz-box-shadow:none;
  7763. -webkit-box-shadow:none;
  7764. box-shadow:none;
  7765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7766. font-weight:400;
  7767. font-style:normal;
  7768. font-size:12px;
  7769. }
  7770. #u157096 {
  7771. border-width:0px;
  7772. position:absolute;
  7773. left:790px;
  7774. top:484px;
  7775. width:49px;
  7776. height:17px;
  7777. display:flex;
  7778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7779. font-weight:400;
  7780. font-style:normal;
  7781. font-size:12px;
  7782. }
  7783. #u157096 .text {
  7784. position:absolute;
  7785. align-self:flex-start;
  7786. padding:0px 0px 0px 0px;
  7787. box-sizing:border-box;
  7788. width:100%;
  7789. }
  7790. #u157096_text {
  7791. border-width:0px;
  7792. white-space:nowrap;
  7793. text-transform:none;
  7794. }
  7795. #u157097 {
  7796. border-width:0px;
  7797. position:absolute;
  7798. left:0px;
  7799. top:0px;
  7800. width:0px;
  7801. height:0px;
  7802. }
  7803. #u157098_div {
  7804. border-width:0px;
  7805. position:absolute;
  7806. left:0px;
  7807. top:0px;
  7808. width:30px;
  7809. height:30px;
  7810. background:inherit;
  7811. background-color:rgba(24, 144, 255, 1);
  7812. border:none;
  7813. border-radius:4px;
  7814. -moz-box-shadow:none;
  7815. -webkit-box-shadow:none;
  7816. box-shadow:none;
  7817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7818. font-weight:400;
  7819. font-style:normal;
  7820. font-size:8px;
  7821. color:#FFFFFF;
  7822. }
  7823. #u157098 {
  7824. border-width:0px;
  7825. position:absolute;
  7826. left:710px;
  7827. top:449px;
  7828. width:30px;
  7829. height:30px;
  7830. display:flex;
  7831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7832. font-weight:400;
  7833. font-style:normal;
  7834. font-size:8px;
  7835. color:#FFFFFF;
  7836. }
  7837. #u157098 .text {
  7838. position:absolute;
  7839. align-self:center;
  7840. padding:2px 2px 2px 2px;
  7841. box-sizing:border-box;
  7842. width:100%;
  7843. }
  7844. #u157098_text {
  7845. border-width:0px;
  7846. word-wrap:break-word;
  7847. text-transform:none;
  7848. }
  7849. #u157099_div {
  7850. border-width:0px;
  7851. position:absolute;
  7852. left:0px;
  7853. top:0px;
  7854. width:49px;
  7855. height:17px;
  7856. background:inherit;
  7857. background-color:rgba(255, 255, 255, 0);
  7858. border:none;
  7859. border-radius:0px;
  7860. -moz-box-shadow:none;
  7861. -webkit-box-shadow:none;
  7862. box-shadow:none;
  7863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7864. font-weight:400;
  7865. font-style:normal;
  7866. font-size:12px;
  7867. }
  7868. #u157099 {
  7869. border-width:0px;
  7870. position:absolute;
  7871. left:701px;
  7872. top:484px;
  7873. width:49px;
  7874. height:17px;
  7875. display:flex;
  7876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7877. font-weight:400;
  7878. font-style:normal;
  7879. font-size:12px;
  7880. }
  7881. #u157099 .text {
  7882. position:absolute;
  7883. align-self:flex-start;
  7884. padding:0px 0px 0px 0px;
  7885. box-sizing:border-box;
  7886. width:100%;
  7887. }
  7888. #u157099_text {
  7889. border-width:0px;
  7890. white-space:nowrap;
  7891. text-transform:none;
  7892. }
  7893. #u157100 {
  7894. border-width:0px;
  7895. position:absolute;
  7896. left:0px;
  7897. top:0px;
  7898. width:0px;
  7899. height:0px;
  7900. }
  7901. #u157101_div {
  7902. border-width:0px;
  7903. position:absolute;
  7904. left:0px;
  7905. top:0px;
  7906. width:30px;
  7907. height:30px;
  7908. background:inherit;
  7909. background-color:rgba(24, 144, 255, 1);
  7910. border:none;
  7911. border-radius:4px;
  7912. -moz-box-shadow:none;
  7913. -webkit-box-shadow:none;
  7914. box-shadow:none;
  7915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7916. font-weight:400;
  7917. font-style:normal;
  7918. font-size:8px;
  7919. color:#FFFFFF;
  7920. }
  7921. #u157101 {
  7922. border-width:0px;
  7923. position:absolute;
  7924. left:621px;
  7925. top:449px;
  7926. width:30px;
  7927. height:30px;
  7928. display:flex;
  7929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7930. font-weight:400;
  7931. font-style:normal;
  7932. font-size:8px;
  7933. color:#FFFFFF;
  7934. }
  7935. #u157101 .text {
  7936. position:absolute;
  7937. align-self:center;
  7938. padding:2px 2px 2px 2px;
  7939. box-sizing:border-box;
  7940. width:100%;
  7941. }
  7942. #u157101_text {
  7943. border-width:0px;
  7944. word-wrap:break-word;
  7945. text-transform:none;
  7946. }
  7947. #u157102_div {
  7948. border-width:0px;
  7949. position:absolute;
  7950. left:0px;
  7951. top:0px;
  7952. width:49px;
  7953. height:17px;
  7954. background:inherit;
  7955. background-color:rgba(255, 255, 255, 0);
  7956. border:none;
  7957. border-radius:0px;
  7958. -moz-box-shadow:none;
  7959. -webkit-box-shadow:none;
  7960. box-shadow:none;
  7961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7962. font-weight:400;
  7963. font-style:normal;
  7964. font-size:12px;
  7965. }
  7966. #u157102 {
  7967. border-width:0px;
  7968. position:absolute;
  7969. left:612px;
  7970. top:484px;
  7971. width:49px;
  7972. height:17px;
  7973. display:flex;
  7974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7975. font-weight:400;
  7976. font-style:normal;
  7977. font-size:12px;
  7978. }
  7979. #u157102 .text {
  7980. position:absolute;
  7981. align-self:flex-start;
  7982. padding:0px 0px 0px 0px;
  7983. box-sizing:border-box;
  7984. width:100%;
  7985. }
  7986. #u157102_text {
  7987. border-width:0px;
  7988. white-space:nowrap;
  7989. text-transform:none;
  7990. }