mode-w-m.scss 191 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631
  1. @charset "UTF-8";
  2. /**********************************************
  3. | 2024-08-26 김민정 :
  4. **********************************************/
  5. .mt--125rem{
  6. margin-top: 1.25rem;
  7. }
  8. .mt--1rem{
  9. margin-top: 1rem;
  10. }
  11. // header
  12. .container {
  13. .new--header {
  14. background: #0B318B;
  15. /*height:calc(1vh * (90 / 10.8));*/
  16. height: 3.75rem;
  17. display: flex;
  18. align-items: center;
  19. flex-shrink: 0;
  20. position: relative;
  21. padding: 0 1.88rem;
  22. z-index: 2200;
  23. .logo {
  24. color: #FFFFFF;
  25. font-size: 1.125rem;
  26. font-weight: 700;
  27. line-height: 100%;
  28. flex-shrink: 0;
  29. display: flex;
  30. align-items: center;
  31. margin-right: 15.5rem;
  32. .logo--img {
  33. background-image: url(../img/logo_new.svg);
  34. background-repeat: no-repeat;
  35. background-size: cover;
  36. width: 2rem;
  37. height: 2rem;
  38. margin-right: 1rem;
  39. display: inline-block;
  40. }
  41. .dashboard{
  42. color: #FFF500;
  43. font-size: 0.9375rem;
  44. font-weight: 700;
  45. padding-left: 0.81rem;
  46. margin-left: 0.81rem;
  47. border-left: 1px solid #FFFFFF80;
  48. }
  49. }
  50. .gnb {
  51. z-index: 10;
  52. height: 100%;
  53. &:hover {
  54. .gnb-bg {
  55. height: 16rem;
  56. }
  57. .depth1 {
  58. >li {
  59. .depth2 {
  60. height: 16rem;
  61. }
  62. }
  63. }
  64. }
  65. .depth1 {
  66. display: flex;
  67. height: 100%;
  68. >li {
  69. position: relative;
  70. &.active {
  71. >button {
  72. background: #ffffff;
  73. color: #0b318b;
  74. font-weight: 700;
  75. }
  76. }
  77. >button {
  78. /* width: calc(1vw * (180 / 19.2)); */
  79. /* height:calc(1vh * (90 / 10.8)); */
  80. /* min-height:90px; */
  81. width: 8.75rem;
  82. height: 3.75rem;
  83. display: inline-block;
  84. color: #fff;
  85. font-size: 1rem;
  86. font-weight: 600;
  87. }
  88. .depth2 {
  89. position: absolute;
  90. overflow: hidden;
  91. height: 0;
  92. z-index: 10;
  93. width: 100%;
  94. transition: 0.5s 0s;
  95. ul {
  96. padding-top: 1.88rem;
  97. li {
  98. color: #333;
  99. font-size: 0.88rem;
  100. font-weight: 400;
  101. display: block;
  102. margin-bottom: 1.88rem;
  103. cursor: pointer;
  104. text-align: center;
  105. &.active {
  106. color: #064F9E;
  107. font-weight: 700;
  108. }
  109. }
  110. }
  111. }
  112. }
  113. }
  114. .gnb-bg {
  115. position: fixed;
  116. /* top:calc(1vh * (90 / 10.8)); */
  117. top: 3.75rem;
  118. left: 0;
  119. right: 0;
  120. width: 100vw;
  121. background: #fff;
  122. z-index: 8;
  123. height: 0;
  124. transition: 0.5s 0s;
  125. box-shadow: 0 0.25rem 0.63rem 0 rgba(0, 0, 0, 0.25);
  126. }
  127. }
  128. .util {
  129. display: flex;
  130. align-items: center;
  131. gap: 0.625rem;
  132. margin-left: auto;
  133. flex-shrink: 0;
  134. .ico {
  135. font-size: 0;
  136. }
  137. .btn-setting{
  138. width: 1.625rem;
  139. height: 1.625rem;
  140. background: no-repeat center / 100%;
  141. background-image: url(../img/ico_setting.svg);
  142. }
  143. .btn-alarm {
  144. width: 2rem;
  145. height: 2rem;
  146. position: relative;
  147. &.type1 {
  148. .ico {
  149. width: 2rem;
  150. height: 2rem;
  151. background-image: url("../img/ico_alarm4.svg");
  152. background-size: cover!important;
  153. }
  154. }
  155. &.type2 {
  156. .ico {
  157. width: 2rem;
  158. height: 2rem;
  159. background-image: url("../img/ico_alarm3.svg");
  160. background-size: cover!important;
  161. }
  162. }
  163. .ico {
  164. position: relative;
  165. width: 1.625rem;
  166. height: 1.625rem;
  167. background: no-repeat center / 100%;
  168. .dot {
  169. position: absolute;
  170. background: #E42325;
  171. width: 0.44rem;
  172. height: 0.44rem;
  173. border-radius: 100%;
  174. right: 0;
  175. top: 0;
  176. }
  177. }
  178. .alarm-detail {
  179. position: absolute;
  180. width: 8.75rem;
  181. height: 4.44rem;
  182. top: 3.00rem;
  183. left: 50%;
  184. display: flex;
  185. align-items: center;
  186. justify-content: space-between;
  187. transform: translateX(-50%);
  188. padding: 1.31rem 1.25rem 1rem 1.25rem;
  189. background: url("../img/bg_tooltip.svg") no-repeat center / 100%;
  190. strong {
  191. color: #222222;
  192. font-size: 0.81rem;
  193. font-weight: 600;
  194. }
  195. .v-switch {
  196. width: 2.25rem;
  197. flex: 0 0 auto;
  198. .v-switch__track {
  199. background: #ECECEC;
  200. height: 0.75rem;
  201. width: 2.25rem;
  202. opacity: 1;
  203. }
  204. .v-switch__thumb {
  205. box-shadow: none;
  206. background: #92989E;
  207. width: 1.13rem;
  208. height: 1.13rem;
  209. }
  210. .v-selection-control {
  211. &.v-selection-control--dirty {
  212. .v-switch__track {
  213. background: #D7E4F1;
  214. }
  215. .v-switch__thumb {
  216. background: #064f9e;
  217. }
  218. }
  219. }
  220. .v-selection-control__input {
  221. &::before {
  222. display: none;
  223. }
  224. }
  225. .v-ripple__container {
  226. display: none;
  227. }
  228. }
  229. }
  230. }
  231. .btn-mode {
  232. position: relative;
  233. &.type1 {
  234. .ico {
  235. background-image: url("../img/ico_mode_white.svg");
  236. }
  237. }
  238. &.type2 {
  239. .ico {
  240. background-image: url("../img/ico_mode_dark.svg");
  241. }
  242. }
  243. .ico {
  244. width: 1.625rem;
  245. height: 1.625rem;
  246. background: no-repeat center / 100%;
  247. }
  248. .mode-detail {
  249. position: absolute;
  250. top: 3rem;
  251. left: 50%;
  252. transform: translateX(-50%);
  253. width: 12.63rem;
  254. height: 9.75rem;
  255. padding: 2.06rem 1.25rem 1.25rem 1.56rem;
  256. background: url("../img/bg_tooltip2.svg") no-repeat center / 100%;
  257. .custom-radio {
  258. .v-input__control {
  259. .v-selection-control-group {
  260. gap: 0.94rem;
  261. .v-radio {
  262. position: relative;
  263. height: 2.50rem;
  264. margin: 0;
  265. padding-left: 5.63rem;
  266. flex: auto;
  267. .v-selection-control__wrapper {
  268. .v-selection-control__input {
  269. width: 1.06rem;
  270. height: 1.06rem;
  271. .v-icon {
  272. border-color: #c0c0c0;
  273. &.mdi-radiobox-marked {
  274. border-color: #007AFF;
  275. background-color: #007AFF;
  276. box-shadow: inset 0 0 0 0.13rem #fff
  277. }
  278. }
  279. }
  280. }
  281. .v-label {
  282. margin-left: 0.75rem;
  283. .img {
  284. position: absolute;
  285. left: 0;
  286. top: 0;
  287. width: 4.38rem;
  288. height: 2.5rem;
  289. background: no-repeat center / 100%;
  290. &.img1 {
  291. background-image: url("../img/img_mode_white.svg");
  292. }
  293. &.img2 {
  294. background-image: url("../img/img_mode_dark.svg");
  295. }
  296. }
  297. strong {
  298. color: #333333;
  299. font-size: 0.75rem;
  300. font-weight: 400;
  301. }
  302. }
  303. }
  304. }
  305. }
  306. }
  307. }
  308. }
  309. .btn-lang {
  310. position: relative;
  311. width: 1.625rem;
  312. height: 1.625rem;
  313. .ico {
  314. /*width: 2rem;
  315. height: 2rem;
  316. border: 0.06rem solid #fff;
  317. background-color: #0B318B;
  318. border-radius: 100%;
  319. color: #fff;
  320. display: flex;
  321. align-items: center;
  322. justify-content: center;
  323. font-weight: 700;
  324. font-size: 0.81rem;*/
  325. &.KR {
  326. background-image: url(../img/ico_lang_korea2.svg);
  327. width: 1.625rem;
  328. height: 1.625rem;
  329. background-size: cover;
  330. display: inline-block;
  331. background-position: center;
  332. }
  333. &.EN {
  334. background-image: url(../img/ico_lang_english.svg);
  335. width: 1.625rem;
  336. height: 1.625rem;
  337. background-size: cover;
  338. display: inline-block;
  339. background-position: center;
  340. }
  341. }
  342. .lang-detail {
  343. position: absolute;
  344. top: 3rem;
  345. left: 50%;
  346. width: 9.75rem;
  347. height: 7.31rem;
  348. transform: translateX(-50%);
  349. background: url("../img/bg_tooltip3.svg") no-repeat center / 100%;
  350. padding: 1.63rem 1.25rem 1.25rem 1.56rem;
  351. .custom-radio {
  352. .v-input__control {
  353. .v-selection-control-group {
  354. gap: 0.94rem;
  355. .v-radio {
  356. height: 1.63rem;
  357. margin: 0;
  358. .v-selection-control__wrapper {
  359. .v-selection-control__input {
  360. width: 1.06rem;
  361. height: 1.06rem;
  362. .v-icon {
  363. border-color: #c0c0c0;
  364. &.mdi-radiobox-marked {
  365. border-color: #007AFF;
  366. background-color: #007AFF;
  367. box-shadow: inset 0 0 0 0.13rem #fff
  368. }
  369. }
  370. }
  371. }
  372. .v-label {
  373. margin-left: 0.75rem;
  374. .img {
  375. width: 1.63rem;
  376. height: 1.63rem;
  377. display: inline-block;
  378. background: no-repeat center / 100%;
  379. &.img1 {
  380. background-image: url("../img/ico_lang_korea.svg");
  381. }
  382. &.img2 {
  383. background-image: url("../img/ico_lang_english.svg");
  384. }
  385. }
  386. strong {
  387. color: #333333;
  388. font-size: 0.75rem;
  389. font-weight: 400;
  390. margin-left: 0.63rem;
  391. }
  392. }
  393. }
  394. }
  395. }
  396. }
  397. }
  398. }
  399. .divider {
  400. width: 0.06rem;
  401. height: 1.88rem;
  402. margin: 0 0.815rem;
  403. background: rgba(255, 255, 255, 0.5);
  404. }
  405. .user-info-wrap{
  406. display: flex;
  407. align-items: center;
  408. .user-info {
  409. display: flex;
  410. position: relative;
  411. .ico {
  412. width: 1.625rem;
  413. height: 1.625rem;
  414. background: #fff;
  415. border-radius: 100%;
  416. color: #438DFF;
  417. display: flex;
  418. align-items: center;
  419. justify-content: center;
  420. font-weight: 700;
  421. font-size: 1rem;
  422. cursor: pointer;
  423. }
  424. .info-detail {
  425. position: absolute;
  426. top: 2.7rem;
  427. left: 50%;
  428. width: 11.88rem;
  429. // height: 12.25rem;
  430. padding: 1.25rem;
  431. // background: url("../img/bg_tooltip4.svg") no-repeat center / 100%;
  432. transform: translateX(-50%);
  433. background: #FFF;
  434. border:1px solid #ddd;
  435. box-shadow:0px 4px 4px rgba(0, 0, 0, 0.20);
  436. border-radius: 0.625rem;
  437. &:after{
  438. content: '';
  439. display: block;
  440. width: 0;
  441. height: 0;
  442. border-left: 0.40625rem solid transparent;
  443. border-right: 0.40625rem solid transparent;
  444. border-bottom: 0.6875rem solid #fff;
  445. position: absolute;
  446. top:-0.5875rem;
  447. left:50%;
  448. transform: translateX(-50%);
  449. }
  450. &:before{
  451. content: '';
  452. display: block;
  453. width: 0;
  454. height: 0;
  455. border-left: 0.40625rem solid transparent;
  456. border-right: 0.40625rem solid transparent;
  457. border-bottom: 0.6875rem solid #ddd;
  458. position: absolute;
  459. top:-0.6875rem;
  460. left:50%;
  461. transform: translateX(-50%);
  462. }
  463. .custom--btn--wrap{
  464. display: flex;
  465. flex-direction: column;
  466. gap:0.5rem;
  467. }
  468. p {
  469. color: #111;
  470. font-size: 0.94rem;
  471. font-weight: 700;
  472. margin-bottom: 0.94rem;
  473. span {
  474. font-weight: 600;
  475. }
  476. }
  477. ul {
  478. padding-bottom: 1.25rem;
  479. margin-bottom: 0.94rem;
  480. border-bottom: 0.06rem solid #e1e1e1;
  481. display: flex;
  482. flex-direction: column;
  483. gap: 0.25rem;
  484. li {
  485. color: #444444;
  486. font-size: 0.81rem;
  487. font-weight: 400;
  488. }
  489. &.nw--btn--text--type{
  490. gap:0.6rem;
  491. border-bottom:0px;
  492. }
  493. }
  494. .custom-btn.v-btn.v-btn--density-default {
  495. border: 0.06rem solid #D0DDEA;
  496. border-radius: 0.31rem;
  497. width: 100%;
  498. height: 2.5rem;
  499. min-height: 2.5rem;
  500. .v-btn__content {
  501. color:#798592;
  502. font-size: 0.75rem;
  503. font-weight: 600;
  504. letter-spacing: -0.01rem;
  505. }
  506. &:hover{
  507. .v-btn__content {
  508. color: #064F9E!important;
  509. }
  510. border: 0.06rem solid rgba(6, 79, 158, 0.5);
  511. }
  512. }
  513. }
  514. }
  515. }
  516. .user-name {
  517. color: #fff;
  518. font-size: 0.81rem;
  519. padding: 0 0.815rem;
  520. font-weight: 700;
  521. cursor: pointer;
  522. }
  523. .btn-logout {
  524. width: 2rem;
  525. height: 2rem;
  526. background: url("../img/ico_logout.svg") no-repeat center / 100%;
  527. }
  528. }
  529. }
  530. }
  531. /**********************************************
  532. | css 오버라이딩
  533. **********************************************/
  534. .ag-sort-indicator-icon{
  535. background-image: url(../img/bg_login.svg);
  536. }
  537. .tbl-list-top {
  538. margin-bottom: 1.25rem;
  539. .total {
  540. .total-num {
  541. strong {
  542. color: #444444;
  543. font-size: 0.875rem;
  544. font-weight: 400;
  545. span {
  546. color: #438dff;
  547. font-size: 0.875rem;
  548. font-weight: 700;
  549. }
  550. }
  551. .total-slt {
  552. &::before {
  553. margin: 0 0.75rem;
  554. background-color: #8e8e8e;
  555. }
  556. .custom-select {
  557. &.v-input {
  558. .v-input__control {
  559. .v-field {
  560. .v-field__field {
  561. .v-field__input {
  562. .v-select__selection {
  563. margin-right: 0.5rem;
  564. .page-list-item {
  565. color: #444444;
  566. font-size: 0.875rem;
  567. font-weight: 700;
  568. .page {
  569. color: #444444;
  570. font-weight: 400;
  571. }
  572. }
  573. }
  574. }
  575. }
  576. }
  577. }
  578. }
  579. }
  580. }
  581. }
  582. .grid-tit{
  583. color: #222;
  584. font-size: 0.9375rem;
  585. font-style: normal;
  586. margin-top: 1.2rem;
  587. line-height: 2.25rem;
  588. font-weight: 700;
  589. letter-spacing: -0.00938rem;
  590. text-transform: uppercase;
  591. }
  592. .total-btn {
  593. .custom-btn {
  594. &.v-btn {
  595. &.v-btn--density-default {
  596. &.btn-evt{
  597. width: 7.8125rem;
  598. border: 1px solid #afbece;
  599. background-color: #ffffff;
  600. .v-btn__content{
  601. color: #6F8AA6;
  602. .ico{
  603. background-image: url(../img/ico_cal.svg);
  604. width: 1.125rem;
  605. height: 1.125rem;
  606. background-size: cover;
  607. }
  608. }
  609. &.v-btn--disabled{
  610. background-color: #fbfbfb!important;
  611. border: 1px solid #e0e0e0;
  612. .v-btn__content{
  613. color: #E0E0E0!important;
  614. .ico{
  615. background-image: url(../img/ico_cal_dis.svg);
  616. width: 1.125rem;
  617. height: 1.125rem;
  618. background-size: cover;
  619. }
  620. }
  621. }
  622. }
  623. &.btn-del {
  624. background-color: #6f8aa6;
  625. width: 5.25rem;
  626. &:hover {
  627. background-color: #adbfd2;
  628. box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.15);
  629. }
  630. .v-btn__content {
  631. font-size: 0.875rem;
  632. font-weight: 600;
  633. .ico {
  634. margin-right: 0.375rem;
  635. }
  636. }
  637. &.v-btn--disabled {
  638. .v-btn__content {
  639. .ico {
  640. background-image: url(../img/ico_del_disabled.svg);
  641. }
  642. }
  643. }
  644. }
  645. &.v-btn--disabled {
  646. background: #e0e0e0 !important;
  647. .v-btn__content {
  648. color: #8e8e8e !important;
  649. }
  650. }
  651. }
  652. }
  653. }
  654. .custom-check {
  655. &.v-input {
  656. &.type2 {
  657. .v-input__control {
  658. .v-selection-control {
  659. .v-label {
  660. padding-left: 0.37rem;
  661. color: #444444;
  662. font-size: 0.875rem;
  663. font-weight: 500;
  664. span{
  665. color: #111111;
  666. font-weight: 700;
  667. }
  668. }
  669. .v-selection-control__wrapper{
  670. .v-selection-control__input{
  671. .v-icon{
  672. background-size: cover;
  673. }
  674. }
  675. }
  676. }
  677. }
  678. }
  679. }
  680. }
  681. }
  682. }
  683. .excel-search {
  684. gap: 0.5rem;
  685. .custom-btn {
  686. &.v-btn {
  687. &.v-btn--density-default {
  688. &.btn-excel {
  689. width: 8.56rem;
  690. border-radius: 0.5rem;
  691. background-color: #ffffff;
  692. .v-btn__content {
  693. font-size: 0.875rem;
  694. }
  695. &.v-btn--disabled {
  696. background-color: #fbfbfb !important;
  697. border: 1px solid #e0e0e0 !important;
  698. .v-btn__content {
  699. color: #e0e0e0 !important;
  700. .ico {
  701. background-image: url(../img/ico_excel_d.svg);
  702. }
  703. }
  704. &.up {
  705. .v-btn__content {
  706. .ico {
  707. background-image: url(../img/ico_excel_d.svg) !important;
  708. }
  709. }
  710. }
  711. }
  712. }
  713. }
  714. }
  715. }
  716. .custom-input {
  717. .v-input__control {
  718. .v-field__field {
  719. .v-field__input {
  720. width: 17.3125rem;
  721. padding-left: 0.75rem;
  722. font-size: 0.75rem !important;
  723. font-weight: 400 !important;
  724. &::placeholder {
  725. font-size: 0.75rem;
  726. font-weight: 400;
  727. color: #8e8e8e;
  728. }
  729. }
  730. }
  731. }
  732. }
  733. }
  734. }
  735. .view-btm-btn {
  736. >div {
  737. gap: 0.5rem;
  738. }
  739. .custom-btn {
  740. &.v-btn {
  741. &.v-btn--density-default {
  742. width: 5.25rem;
  743. height: 2.25rem;
  744. &.btn-list {
  745. width: 5.25rem;
  746. height: 2.25rem;
  747. border: 1px solid #e0e0e0;
  748. .v-btn__content {
  749. color: #8e8e8e;
  750. font-size: 0.875rem;
  751. font-weight: 600;
  752. .ico {
  753. width: 1.25rem;
  754. height: 1.25rem;
  755. margin-right: 0.38rem;
  756. background-image: url(../img/ico_view_list2.svg);
  757. }
  758. }
  759. &:hover {
  760. box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.15);
  761. }
  762. }
  763. &.btn-del {
  764. width: 5.25rem;
  765. height: 2.25rem;
  766. border: none;
  767. background: #6F8AA6;
  768. .v-btn__content {
  769. color: #ffffff;
  770. font-size: 0.875rem;
  771. font-weight: 600;
  772. .ico {
  773. width: 1.125rem;
  774. height: 1.125rem;
  775. margin-right: 0.38rem;
  776. background-image: url(../img/ico_del2.svg);
  777. }
  778. }
  779. &:hover {
  780. background: #adbfd2;
  781. box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.15);
  782. }
  783. &.v-btn--disabled {
  784. background-color: #e0e0e0 !important;
  785. .v-btn__content {
  786. color: #8e8e8e !important;
  787. .ico {
  788. background-image: url(../img/ico_del_disabled2.svg);
  789. }
  790. }
  791. }
  792. }
  793. &.btn-gray-bor2 {
  794. background-color: #6f8aa6;
  795. border: none;
  796. .v-btn__content {
  797. color: #ffffff;
  798. .ico {
  799. width: 1.25rem;
  800. margin-right: 0.38rem;
  801. height: 1.25rem;
  802. background-image: url(../img/ico_cancel.svg);
  803. }
  804. }
  805. &:hover {
  806. background-color: #adbfd2;
  807. box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.15);
  808. }
  809. &.v-btn--disabled {
  810. background-color: #e0e0e0 !important;
  811. border: none;
  812. .v-btn__content {
  813. color: #8E8E8E !important;
  814. .ico {
  815. background-image: url(../img/ico_cancel_disabled.svg);
  816. }
  817. }
  818. }
  819. }
  820. &.btn-blue2 {
  821. background-color: #438dff;
  822. &:hover {
  823. background: #90BCFF;
  824. box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.15);
  825. }
  826. &.v-btn--disabled {
  827. background-color: #e0e0e0 !important;
  828. .v-btn__content {
  829. color: #8e8e8e !important;
  830. .ico {
  831. background-image: url(../img/ico_save_disabled.svg);
  832. }
  833. }
  834. }
  835. .v-btn__content {
  836. .ico {
  837. width: 1.25rem;
  838. height: 1.25rem;
  839. margin-right: 0.37rem;
  840. background-image: url(../img/ico_save.svg);
  841. }
  842. }
  843. }
  844. }
  845. }
  846. }
  847. }
  848. .custom-dialog {
  849. border-radius: 0.5rem;
  850. .modal-desc {
  851. padding: 1.25rem;
  852. >strong {
  853. color: #000000;
  854. font-weight: 500;
  855. font-size: 0.875rem;
  856. line-height: 0.875rem;
  857. }
  858. }
  859. .modal-desc2 {
  860. padding: 0.65rem 1.25rem 0.65rem 1.25rem;
  861. ul {
  862. li {
  863. padding-left: 1.2rem;
  864. position: relative;
  865. color: #555555;
  866. font-size: 0.875rem;
  867. font-weight: 400;
  868. margin-bottom: 1rem;
  869. &:last-child {
  870. margin-bottom: 0;
  871. }
  872. &::before {
  873. width: 0.2rem;
  874. height: 0.2rem;
  875. display: inline-block;
  876. background-color: #555555;
  877. position: absolute;
  878. width: 0.31rem;
  879. height: 0.31rem;
  880. left: 0;
  881. top: 0.38rem;
  882. background: #C0C0C0;
  883. border-radius: 100%;
  884. content: "";
  885. }
  886. }
  887. }
  888. }
  889. .modal-tit {
  890. height: 4rem;
  891. padding: 1.25rem;
  892. border-bottom: none;
  893. >strong {
  894. font-size: 1rem;
  895. color: #000000;
  896. font-weight: 700;
  897. letter-spacing: -0.02rem;
  898. }
  899. .modal--btn--wrap{
  900. display: flex;
  901. margin-left: auto;
  902. gap: 1.25rem;
  903. .btn-bar{
  904. width: 1.5rem;
  905. height: 1.5rem;
  906. background-size: cover;
  907. background-image: url(../img/ico_bar.svg);
  908. }
  909. .btn-square{
  910. width: 1.5rem;
  911. height: 1.5rem;
  912. background-size: cover;
  913. background-image: url(../img/ico_square.svg);
  914. }
  915. }
  916. .btn-close {
  917. background-image: url(../img/ico_close.svg);
  918. }
  919. }
  920. .v-common-dialog-content {
  921. padding: 0.38rem 1.25rem 1.25rem 1.25rem;
  922. .info-mod {
  923. padding-bottom: 0;
  924. .mod-txt {
  925. font-size: 0.9375rem;
  926. margin-top: 1.56rem;
  927. margin-bottom: 1.94rem;
  928. }
  929. .txt-field-box {
  930. .custom-input {
  931. &.v-text-field {
  932. min-height: 2.25rem;
  933. .v-input__control {
  934. height: 2.25rem;
  935. .v-field__field {
  936. .v-field__input {
  937. height: 2.25rem;
  938. min-height: 2.25rem;
  939. padding: 0 0.75rem;
  940. }
  941. }
  942. }
  943. }
  944. }
  945. }
  946. .error-txt {
  947. margin: 0.8rem 0 0 !important;
  948. }
  949. }
  950. .txt-field-box {
  951. &.error {
  952. .ico {
  953. right: 0.75rem;
  954. }
  955. }
  956. }
  957. .otp-reg {
  958. margin-top: 0;
  959. .otp-set-step{
  960. .otp-set-box{
  961. .tit{
  962. .num{
  963. background-color: #0B318B;
  964. }
  965. }
  966. }
  967. }
  968. .otp-box {
  969. .otp-certify {
  970. background-color: #F1F7FF;
  971. border-radius: 0.5rem;
  972. border: none;
  973. padding: 1.38rem 0;
  974. .error-txt {
  975. width: 15.625rem;
  976. }
  977. .certify-logo {
  978. display: flex;
  979. gap: 0.75rem;
  980. margin-bottom: 0.94rem;
  981. .logo {
  982. width: 1.625rem;
  983. height: 1.625rem;
  984. background-image: url(../img/ico_logo.svg);
  985. background-size: cover;
  986. }
  987. >p {
  988. color: #333;
  989. font-size: 0.9375rem;
  990. font-style: normal;
  991. font-weight: 700;
  992. line-height: 100%;
  993. /* 0.9375rem */
  994. }
  995. }
  996. z
  997. .txt-field-box {
  998. width: 15.625remf;
  999. &:nth-child(3) {
  1000. margin-bottom: 0;
  1001. }
  1002. .v-input {
  1003. &.v-text-field {
  1004. &.custom-input {
  1005. &.mini {
  1006. min-height: 2.25rem;
  1007. .v-input__control {
  1008. height: 2.25rem;
  1009. .v-field__field {
  1010. .v-field__input {
  1011. height: 2.25rem;
  1012. min-height: 2.25rem;
  1013. padding: 0 0.75rem;
  1014. }
  1015. }
  1016. }
  1017. }
  1018. }
  1019. }
  1020. }
  1021. }
  1022. .custom-btn {
  1023. &.v-btn {
  1024. &.v-btn--density-default {
  1025. &.btn-blue-bor {
  1026. width: 15.625rem;
  1027. background-color: #0B318B;
  1028. border-radius: 0.5rem;
  1029. border: none;
  1030. &:hover {
  1031. background-color: #4875DE !important;
  1032. box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.20);
  1033. }
  1034. .v-btn__content {
  1035. font-size: 0.9375rem !important;
  1036. font-weight: 700 !important;
  1037. letter-spacing: -0.02813rem !important;
  1038. color: #ffffff;
  1039. }
  1040. &.v-btn--disabled {
  1041. background-color: #e0e0e0 !important;
  1042. .v-btn__content {
  1043. color: #8e8e8e !important;
  1044. }
  1045. }
  1046. }
  1047. }
  1048. }
  1049. }
  1050. .otp--certify--2{
  1051. width: 100%;
  1052. display: flex;
  1053. align-items: center;
  1054. flex-direction: column;
  1055. justify-content: center;
  1056. >p{
  1057. color: #0B318B;
  1058. text-align: center;
  1059. font-size: 1.125rem;
  1060. font-weight: 700;
  1061. margin-bottom: 0.94rem;
  1062. letter-spacing: -0.01125rem;
  1063. }
  1064. >span{
  1065. color: #444;
  1066. text-align: center;
  1067. font-size: 0.9375rem;
  1068. font-weight: 400;
  1069. letter-spacing: -0.00938rem;
  1070. display: inline-block;
  1071. margin-bottom: 1.87rem;
  1072. }
  1073. .txt-field-box{
  1074. display: flex;
  1075. align-items: center;
  1076. width: 80%;
  1077. justify-content: center;
  1078. gap: 0.6rem;
  1079. .v-btn {
  1080. &.v-btn--density-default {
  1081. margin-top: 0;
  1082. &.btn-password {
  1083. background-color: #6f8aa6;
  1084. height: 2.25rem;
  1085. width: 6.875rem;
  1086. &.v-btn--disabled {
  1087. background-color: #fff !important;
  1088. border: 1px solid #CCC;
  1089. .v-btn__content {
  1090. color: #8e8e8e !important;
  1091. }
  1092. }
  1093. }
  1094. &.btn-blue{
  1095. width: 3.5rem;
  1096. height: 2.25rem;
  1097. &.v-btn--disabled {
  1098. background-color: #e0e0e0 !important;
  1099. .v-btn__content {
  1100. color: #8e8e8e !important;
  1101. }
  1102. }
  1103. }
  1104. }
  1105. }
  1106. }
  1107. .error-txt{
  1108. width: 80%;
  1109. }
  1110. }
  1111. .otp--certify--y{
  1112. padding: 2.37rem 0;
  1113. display: flex;
  1114. flex-direction: column;
  1115. gap: 1.88rem;
  1116. align-items: center;
  1117. justify-content: center;
  1118. .ico{
  1119. width: 5rem;
  1120. height: 5rem;
  1121. border-radius: 50%;
  1122. background-color: #fff;
  1123. background-position: center;
  1124. background-size: 2.25rem 3rem;
  1125. background-image: url(../img/ico_certify_y2.svg);
  1126. }
  1127. > p{
  1128. color: #000;
  1129. font-size: 0.9375rem;
  1130. font-style: normal;
  1131. font-weight: 500;
  1132. line-height: 100%;
  1133. letter-spacing: -0.00938rem;
  1134. > span{
  1135. color: #034ea2;
  1136. font-size: 0.9375rem;
  1137. font-style: normal;
  1138. font-weight: 500;
  1139. line-height: 100%;
  1140. letter-spacing: -0.00938rem;
  1141. }
  1142. }
  1143. }
  1144. }
  1145. .otp-chk{
  1146. .v-input{
  1147. .v-input__control{
  1148. .v-selection-control{
  1149. .v-label{
  1150. padding-left: 0.38rem;
  1151. }
  1152. .v-selection-control__wrapper{
  1153. .v-selection-control__input{
  1154. .v-icon{
  1155. background-size: cover;
  1156. }
  1157. }
  1158. }
  1159. }
  1160. }
  1161. }
  1162. }
  1163. .otp-reg-step{
  1164. ul{
  1165. li{
  1166. .numbering{
  1167. border-radius: 6.25rem;
  1168. }
  1169. }
  1170. }
  1171. }
  1172. }
  1173. }
  1174. .form-style1 {
  1175. &.shadow--type {
  1176. border-radius: 0.5rem;
  1177. background: #FFF;
  1178. box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
  1179. padding: 1.25rem;
  1180. &.col4 {
  1181. margin-top: 0px;
  1182. }
  1183. table {
  1184. tbody {
  1185. tr {
  1186. border-top: 1px solid #e0e0e0;
  1187. th {
  1188. padding: 0.62rem;
  1189. color: #444444;
  1190. font-size: 0.875rem;
  1191. .cir {
  1192. width: 0.3125rem;
  1193. height: 0.3125rem;
  1194. display: inline-block;
  1195. background-color: #ff4f60;
  1196. border-radius: 50%;
  1197. margin-left: 0.37rem;
  1198. vertical-align: 2px;
  1199. }
  1200. }
  1201. td {
  1202. padding: 0.62rem;
  1203. color: #444444;
  1204. font-size: 0.875rem;
  1205. &.critical{
  1206. color:#E1473D;
  1207. }
  1208. &.major{
  1209. color:#438DFF;
  1210. }
  1211. &.minor{
  1212. color:#848BA4;
  1213. }
  1214. .custom-btn {
  1215. &.v-btn {
  1216. &.v-btn--density-default {
  1217. &.btn-password {
  1218. background: #6f8aa6;
  1219. height: 2.25rem;
  1220. width: 6.875rem;
  1221. }
  1222. &.btn-black {
  1223. background: #6f8aa6;
  1224. font-weight: 600 !important;
  1225. &.v-btn--disabled {
  1226. background-color: #e0e0e0 !important;
  1227. .v-btn__content {
  1228. color: #8e8e8e !important;
  1229. }
  1230. }
  1231. }
  1232. }
  1233. }
  1234. }
  1235. .custom-input {
  1236. .v-input__control {
  1237. height: 2.25rem;
  1238. .v-field__field {
  1239. .v-field__input {
  1240. padding: 0 0.75rem;
  1241. &::placeholder {
  1242. color: #8e8e8e;
  1243. font-weight: 400;
  1244. }
  1245. }
  1246. }
  1247. }
  1248. &.v-text-field {
  1249. &.mini2 {
  1250. min-height: 2.25rem;
  1251. .v-input__control {
  1252. height: 2.25rem;
  1253. .v-field__field {
  1254. .v-field__input {
  1255. padding: 0 0.75rem;
  1256. color: #000000;
  1257. height: 2.25rem;
  1258. font-size: 0.875rem;
  1259. font-weight: 400;
  1260. min-height: 2.25rem;
  1261. &::placeholder {
  1262. color: #8e8e8e;
  1263. font-size: 0.875rem;
  1264. font-weight: 400;
  1265. }
  1266. }
  1267. }
  1268. }
  1269. }
  1270. }
  1271. }
  1272. }
  1273. }
  1274. }
  1275. }
  1276. }
  1277. }
  1278. .alert-txt{
  1279. .color--red{
  1280. color: #E1473D;
  1281. font-weight: 700;
  1282. }
  1283. }
  1284. &.type--l{
  1285. padding: 1.25rem;
  1286. .agree--contents{
  1287. height: calc(100vh - 30rem);
  1288. overflow-y: auto;
  1289. &.border--top{
  1290. border-top: 1px solid #e8e8e8;
  1291. }
  1292. }
  1293. }
  1294. &.chart{
  1295. max-height: calc(100vh - 10rem);
  1296. padding: 0 1.25rem 1.25rem 1.25rem;
  1297. .dialog-chart-tab{
  1298. padding-bottom: 1.25rem;
  1299. display: flex;
  1300. justify-content: flex-start;
  1301. .v-input{
  1302. flex: none;
  1303. margin-right: 1.88rem;
  1304. }
  1305. .v-selection-control-group{
  1306. gap: 0.63rem;
  1307. display: flex;
  1308. flex-direction: row;
  1309. .v-selection-control{
  1310. width: 5.1875rem;
  1311. height: 2.25rem;
  1312. flex: none;
  1313. background-color: black;
  1314. text-align: center;
  1315. border-radius: 0.375rem;
  1316. background-color: #E0E0E0;
  1317. color: #8e8e8e;
  1318. &.v-selection-control--dirty{
  1319. background-color: #6F8AA6;
  1320. color: #ffffff;
  1321. }
  1322. }
  1323. .v-selection-control__wrapper{
  1324. display: none;
  1325. }
  1326. .v-label{
  1327. width: 100%;
  1328. display: flex;
  1329. justify-content: center;
  1330. opacity: 1;
  1331. font-size: 0.875rem;
  1332. font-weight: 500;
  1333. }
  1334. }
  1335. .total-wrap{
  1336. display: flex;
  1337. gap: 0.1rem;
  1338. margin-right: 1.87rem;
  1339. color: #8E8E8E;
  1340. font-size: 0.8125rem;
  1341. font-style: normal;
  1342. align-items: center;
  1343. font-weight: 400;
  1344. span{
  1345. color: #438DFF;
  1346. font-weight: 900;
  1347. }
  1348. }
  1349. .btn-wrap{
  1350. padding: 0;
  1351. gap: 0.5rem;
  1352. .v-input{
  1353. margin-right: 0;
  1354. }
  1355. .custom-btn{
  1356. &.btn-list{
  1357. width: 2.25rem;
  1358. height: 2.25rem;
  1359. min-width: 2.25rem;
  1360. background: #ffffff;
  1361. border: 1px solid #d9d9d9;
  1362. .v-btn__content{
  1363. .ico{
  1364. width: 1.25rem;
  1365. background-size: cover;
  1366. height: 1.25rem;
  1367. background-image: url(../img/ico_list.svg);
  1368. }
  1369. }
  1370. &.active{
  1371. background: #438DFF;
  1372. .v-btn__content{
  1373. .ico{
  1374. background-image: url(../img/ico_list_white.svg);
  1375. }
  1376. }
  1377. }
  1378. }
  1379. }
  1380. &.trend--list--wrap{
  1381. position: relative;
  1382. .trend--list--pop{
  1383. position: absolute;
  1384. z-index: 100;
  1385. width: 26.375rem;
  1386. top: 3rem;
  1387. background-color: #ffffff;
  1388. box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
  1389. border-radius: 0.625rem;
  1390. .modal-tit{
  1391. height: 3.125rem;
  1392. .btn-close{
  1393. &.mini{
  1394. width: 1rem;
  1395. height: 1rem;
  1396. }
  1397. }
  1398. }
  1399. .modal-cont{
  1400. padding: 0.94rem 1.25rem;
  1401. height: 60vh;
  1402. overflow-y: auto;
  1403. display: grid;
  1404. grid-template-columns: repeat(2, 1fr); /* 2열 레이아웃 */
  1405. gap: 0.62rem;
  1406. align-content: start;
  1407. .custom-check{
  1408. &.v-input{
  1409. width: 100%;
  1410. height: 2.5rem;
  1411. display: inline-block;
  1412. border-radius: 0.3125rem;
  1413. border: 1px solid #DFDFDF;
  1414. &.type3{
  1415. .v-input__control{
  1416. width: 100%;
  1417. padding: 0 0.94rem;
  1418. height: 2.5rem;
  1419. .v-checkbox-btn{
  1420. }
  1421. .v-label{
  1422. width: 100%;
  1423. display: inline-block;
  1424. }
  1425. .v-selection-control{
  1426. .v-selection-control__wrapper{
  1427. .v-selection-control__input{
  1428. .v-icon{
  1429. background-size: cover;
  1430. background-image: url(../img/ico_chk_off.svg);
  1431. min-width: 1rem;
  1432. width: 1rem;
  1433. height: 1rem;
  1434. border: 0;
  1435. &.mdi-checkbox-marked{
  1436. background-image: url(../img/ico_chk_on.svg);
  1437. }
  1438. }
  1439. }
  1440. }
  1441. }
  1442. }
  1443. }
  1444. }
  1445. }
  1446. }
  1447. .btn-wrap{
  1448. padding: 1.25rem;
  1449. }
  1450. }
  1451. }
  1452. }
  1453. }
  1454. .dialog-chart-wrap{
  1455. display: flex;
  1456. flex-direction: column;
  1457. gap: 1rem;
  1458. overflow-y: auto;
  1459. height: 75vh;
  1460. .dialog-chart{
  1461. display: flex;
  1462. justify-content: space-between;
  1463. flex-direction: row;
  1464. width: 100%;
  1465. // height: calc((100vh - 10rem) / 3);
  1466. height: 25vh;
  1467. gap: 1.25rem;
  1468. .chart-wrap{
  1469. height: 100%;
  1470. width: calc(100% / 3);
  1471. gap: 2.5rem;
  1472. border-radius: 0.625rem;
  1473. border: 1px solid #efefef;
  1474. flex-direction: column;
  1475. padding: 1.2rem 1.2rem 0 1.2rem;
  1476. &::after{
  1477. display: none;
  1478. }
  1479. .chart-total{
  1480. margin: 0;
  1481. p{
  1482. width: 100%;
  1483. }
  1484. .ico{
  1485. width: 0.875rem;
  1486. height: 0.875rem;
  1487. background-image: url(../img/ico_set.svg);
  1488. display: inline-block;
  1489. background-size: cover;
  1490. cursor: pointer;
  1491. float: right;
  1492. }
  1493. }
  1494. .chart-con{
  1495. width: 100%;
  1496. height: 80%;
  1497. .chart-wrap-fix{
  1498. left: 1rem;
  1499. top: auto;
  1500. > div{
  1501. }
  1502. }
  1503. .chart-in{
  1504. height: 100%;
  1505. z-index: 10;
  1506. position: relative;
  1507. > div{
  1508. height: 100%;
  1509. }
  1510. .chart--legend{
  1511. height: auto;
  1512. display: flex;
  1513. position: absolute;
  1514. right: 50%;
  1515. transform: translateX(50%);
  1516. top: -1.25rem;
  1517. .legend{
  1518. display: flex;
  1519. align-items: center;
  1520. .line{
  1521. margin-left: 1.25rem;
  1522. width: 0.9375rem;
  1523. height: 0.1875rem;
  1524. border-radius: 6.25rem;
  1525. display: inline-block;
  1526. }
  1527. p{
  1528. color: #333;
  1529. font-size: 0.8125rem;
  1530. font-style: normal;
  1531. margin-left: 0.75rem;
  1532. font-weight: 400;
  1533. letter-spacing: -0.00813rem;
  1534. }
  1535. &:first-child{
  1536. .line{
  1537. background-color: #FF531E;
  1538. }
  1539. }
  1540. &:nth-child(2){
  1541. .line{
  1542. background-color: #44C5FF;
  1543. }
  1544. }
  1545. &:nth-child(3){
  1546. .line{
  1547. background-color: #FF00C7;
  1548. }
  1549. }
  1550. &:nth-child(4){
  1551. .line{
  1552. background-color: #AF70FF;
  1553. }
  1554. }
  1555. &:nth-child(5){
  1556. .line{
  1557. background-color: #4862FF;
  1558. }
  1559. }
  1560. }
  1561. }
  1562. }
  1563. }
  1564. }
  1565. }
  1566. }
  1567. }
  1568. .core--list--component{
  1569. h2{
  1570. &.fw--500{
  1571. font-weight: 500;
  1572. > span{
  1573. font-weight: 700;
  1574. }
  1575. &.mb--125rem{
  1576. margin-bottom: 1.25rem;
  1577. }
  1578. }
  1579. }
  1580. .event--stat{
  1581. padding-top: 1.25rem;
  1582. display: flex;
  1583. gap: 0.62rem;
  1584. justify-content: space-between;
  1585. > li{
  1586. width: 100%;
  1587. border-radius: 62.5rem;
  1588. height: 2.375rem;
  1589. color: #ffffff;
  1590. font-size: 0.8125rem;
  1591. font-weight: 500;
  1592. padding: 0 1.12rem;
  1593. display: flex;
  1594. align-items: center;
  1595. line-height: 2.375rem;
  1596. .ico{
  1597. background-image: url(../img/ic_tenant01.svg);
  1598. margin-right: 0.62rem;
  1599. width: 1rem;
  1600. display: inline-block;
  1601. background-repeat: no-repeat;
  1602. background-size: cover;
  1603. background-position: center;
  1604. height: 1rem;
  1605. }
  1606. span{
  1607. &:last-child{
  1608. margin-left: auto;
  1609. font-weight: 900;
  1610. }
  1611. }
  1612. &.critical{
  1613. background-color: #E1473D;
  1614. }
  1615. &.major{
  1616. background-color: #438DFF;
  1617. }
  1618. &.minor{
  1619. background-color: #C3C8D8;
  1620. }
  1621. &.disconnected{
  1622. background-color: #fff;
  1623. border: 1px solid #ffc7c3;
  1624. color: #333333;
  1625. .ico{
  1626. background-image: url(../img/ico_ban.svg);
  1627. }
  1628. span{
  1629. &:last-child{
  1630. color: #E1473D;
  1631. }
  1632. }
  1633. }
  1634. }
  1635. }
  1636. .map--area{
  1637. border-radius: 0.9375rem;
  1638. border: 1px solid #DFDFDF;
  1639. overflow: hidden;
  1640. height: 12rem;
  1641. position: relative;
  1642. .side--title{
  1643. position: absolute;
  1644. border-radius: 0.4375rem;
  1645. border: 1px solid #848484;
  1646. background: rgba(0, 0, 0, 0.50);
  1647. top: 0.94rem;
  1648. left: 0.94rem;
  1649. padding: 0.5rem 0.75rem;
  1650. color: #ffffff;
  1651. text-align: center;
  1652. font-size: 0.75rem;
  1653. font-weight: 500;
  1654. }
  1655. .area--info{
  1656. position: absolute;
  1657. padding: 1rem 1.25rem;
  1658. border-radius: 0.625rem;
  1659. border: 1px solid #E3E3E3;
  1660. width: 12.5rem;
  1661. background: #FFF;
  1662. .area--info--title{
  1663. display: flex;
  1664. justify-content: space-between;
  1665. margin-bottom: 1rem;
  1666. p{
  1667. color: #222;
  1668. font-size: 0.9375rem;
  1669. font-weight: 700;
  1670. }
  1671. .btn-close{
  1672. background-image: url(/_nuxt/assets/img/ico_close_gray.svg);
  1673. width: 1rem;
  1674. height: 1rem;
  1675. background-repeat: no-repeat;
  1676. background-size: cover;
  1677. }
  1678. }
  1679. ul{
  1680. display: flex;
  1681. flex-direction: column;
  1682. gap: 0.3rem;
  1683. li{
  1684. display: flex;
  1685. align-items: center;
  1686. .ico{
  1687. width: 0.625rem;
  1688. height: 0.625rem;
  1689. border-radius: 50%;
  1690. display: inline-block;
  1691. margin-right: 0.5rem;
  1692. &.green{
  1693. background-color: #55E074;
  1694. }
  1695. &.red{
  1696. background-color: #E1473D;
  1697. }
  1698. }
  1699. span{
  1700. &:nth-child(2){
  1701. color: #222;
  1702. font-size: 0.75rem;
  1703. font-weight: 500;
  1704. }
  1705. &:nth-child(3){
  1706. color: #222;
  1707. font-size: 0.75rem;
  1708. font-weight: 400;
  1709. margin-left: auto;
  1710. &.active{
  1711. font-weight: 700;
  1712. }
  1713. }
  1714. }
  1715. }
  1716. }
  1717. }
  1718. &.big--map{
  1719. height: 22rem;
  1720. }
  1721. }
  1722. }
  1723. .core--list--component--grid{
  1724. .title{
  1725. h2{
  1726. font-weight: 500;
  1727. span{
  1728. font-weight: 700;
  1729. }
  1730. }
  1731. }
  1732. }
  1733. }
  1734. .btn-wrap {
  1735. justify-content: flex-end;
  1736. padding: 1.25rem 1.25rem 1.25rem 1.25rem;
  1737. .custom-btn {
  1738. &.v-btn {
  1739. &.v-btn--density-default {
  1740. width: 5.25rem;
  1741. height: 2.25rem;
  1742. border: none;
  1743. &.btn-blue {
  1744. &:hover {
  1745. box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.15);
  1746. }
  1747. &.v-btn--disabled {
  1748. background: #e0e0e0 !important;
  1749. .v-btn__content {
  1750. color: #8e8e8e !important;
  1751. .ico {
  1752. background-image: url(../img/ico_chk_circle_disabled.svg);
  1753. }
  1754. }
  1755. }
  1756. .v-btn__content {
  1757. .ico {
  1758. width: 1.25rem;
  1759. height: 1.25rem;
  1760. margin-right: 0.37rem;
  1761. background-image: url(../img/ico_chk_circle.svg);
  1762. background-repeat: no-repeat;
  1763. background-size: cover;
  1764. background-position: center;
  1765. }
  1766. }
  1767. &.btn-id {
  1768. width: 7.5625rem;
  1769. .ico {
  1770. background-image: url(../img/ico_id_on.svg);
  1771. width: 1.125rem;
  1772. height: 1.125rem;
  1773. }
  1774. &.v-btn--disabled {
  1775. .ico {
  1776. background-image: url(../img/ico_id_off.svg);
  1777. }
  1778. }
  1779. }
  1780. &.btn-pw {
  1781. width: 9.1875rem;
  1782. .ico {
  1783. background-image: url(../img/ico_id_on.svg);
  1784. width: 1.125rem;
  1785. height: 1.125rem;
  1786. }
  1787. &.v-btn--disabled {
  1788. .ico {
  1789. background-image: url(../img/ico_id_off.svg);
  1790. }
  1791. }
  1792. }
  1793. &.btn-ext{
  1794. .v-btn__content{
  1795. .ico{
  1796. background-image: url(../img/ico_time.svg);
  1797. }
  1798. }
  1799. &.v-btn--disabled {
  1800. .ico {
  1801. background-image: url(../img/ico_time_disabled.svg);
  1802. }
  1803. }
  1804. }
  1805. }
  1806. &.btn-white {
  1807. background-color: #6f8aa6;
  1808. &:hover {
  1809. background-color: #adbfd2;
  1810. box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.15);
  1811. }
  1812. &.v-btn--disabled {
  1813. background: #e0e0e0 !important;
  1814. .v-btn__content {
  1815. color: #8e8e8e !important;
  1816. .ico {
  1817. background-image: url(../img/ico_cancel_disabled.svg);
  1818. }
  1819. }
  1820. }
  1821. .v-btn__content {
  1822. color: #ffffff;
  1823. .ico {
  1824. width: 1.25rem;
  1825. height: 1.25rem;
  1826. margin-right: 0.37rem;
  1827. background-image: url(../img/ico_cancel.svg);
  1828. background-repeat: no-repeat;
  1829. background-size: cover;
  1830. background-position: center;
  1831. }
  1832. }
  1833. }
  1834. &.btn-blue2 {
  1835. background-color: #438dff;
  1836. &.btn-mod{
  1837. .v-btn__content {
  1838. .ico{
  1839. background-image: url(../img/ico_mod2.svg);
  1840. }
  1841. }
  1842. }
  1843. &:hover {
  1844. background: #90BCFF;
  1845. box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.15);
  1846. }
  1847. &.v-btn--disabled {
  1848. background-color: #e0e0e0 !important;
  1849. .v-btn__content {
  1850. color: #8e8e8e !important;
  1851. .ico {
  1852. background-image: url(../img/ico_save_disabled.svg);
  1853. }
  1854. }
  1855. &.btn-mod{
  1856. .v-btn__content {
  1857. .ico{
  1858. background-image: url(../img/ico_mod_disabled.svg);
  1859. }
  1860. }
  1861. }
  1862. }
  1863. .v-btn__content {
  1864. .ico {
  1865. width: 1.25rem;
  1866. height: 1.25rem;
  1867. margin-right: 0.37rem;
  1868. background-size: cover;
  1869. background-image: url(../img/ico_save.svg);
  1870. }
  1871. }
  1872. }
  1873. }
  1874. }
  1875. }
  1876. }
  1877. }
  1878. .container {
  1879. .content {
  1880. .content-tit {
  1881. margin-bottom: 1.25rem;
  1882. .location {
  1883. gap: 0.37rem;
  1884. >span {
  1885. font-size: 0.875rem;
  1886. color: #444444;
  1887. letter-spacing: -0.0175rem;
  1888. &.now {
  1889. font-weight: 700;
  1890. }
  1891. }
  1892. }
  1893. h2 {
  1894. //color: #444;
  1895. font-size: 1.125rem;
  1896. color: #000;
  1897. font-weight: 400;
  1898. }
  1899. >span {
  1900. color: #8e8e8e;
  1901. font-size: 0.875rem;
  1902. font-weight: 400;
  1903. &::before {
  1904. background-color: #8e8e8e;
  1905. }
  1906. &.arr{
  1907. color: #0B318B;
  1908. font-size: 1.125rem;
  1909. font-style: normal;
  1910. margin-right: 0.62rem;
  1911. font-weight: 700;
  1912. line-height: 100%; /* 1.125rem */
  1913. &::before {
  1914. background-color: transparent;
  1915. background-image: url(../img/ico_tit_arr.svg);
  1916. width: 1.1875rem;
  1917. height: 1.1875rem;
  1918. background-size: cover;
  1919. background-repeat: no-repeat;
  1920. margin: 0 0.62rem;
  1921. }
  1922. }
  1923. }
  1924. .ico{
  1925. width: 1.375rem;
  1926. height: 1.375rem;
  1927. background-image: url(../img/ico_set_blue.svg);
  1928. background-size: cover;
  1929. cursor: pointer;
  1930. }
  1931. }
  1932. .search-wrap {
  1933. .search-btn {
  1934. .v-btn {
  1935. width: 5.25rem !important;
  1936. }
  1937. }
  1938. .custom-btn {
  1939. &.v-btn {
  1940. &.v-btn--density-default {
  1941. &.btn-gray-bor {
  1942. border: 1px solid #cccccc;
  1943. color: #8e8e8e;
  1944. font-size: 0.875rem;
  1945. font-weight: 600;
  1946. &:hover {
  1947. box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.15);
  1948. }
  1949. }
  1950. }
  1951. }
  1952. }
  1953. .perfor-tab {
  1954. margin-right: 1.87rem;
  1955. padding-right: 1.87rem;
  1956. border-right: 1px solid #e4e4e4;
  1957. width: auto;
  1958. .v-radio-group {
  1959. width: 6.5625rem;
  1960. .v-input__control {
  1961. width: 6.5625rem;
  1962. .v-radio {
  1963. &:hover {
  1964. .v-label {
  1965. box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.15);
  1966. }
  1967. }
  1968. &.v-selection-control--dirty {
  1969. .v-label {
  1970. color: #000000;
  1971. border: 1px solid #a5a5a5;
  1972. }
  1973. }
  1974. .v-label {
  1975. background-color: #ffffff;
  1976. border-radius: 0.375rem;
  1977. font-size: 0.8125rem;
  1978. font-weight: 600;
  1979. letter-spacing: -0.00813rem;
  1980. color: #949494;
  1981. border: 1px solid #e0e0e0;
  1982. }
  1983. }
  1984. }
  1985. }
  1986. }
  1987. .search-line-wrap {
  1988. gap: 1rem;
  1989. .search-line {
  1990. gap: 2.5rem;
  1991. align-items: center;
  1992. .search-box {
  1993. >strong {
  1994. margin-right: 0.5rem;
  1995. width: 5.875rem;
  1996. margin-left: 0;
  1997. font-size: 0.875rem;
  1998. font-weight: 700;
  1999. color: #444444;
  2000. &.op--3{
  2001. opacity: 0.3;
  2002. }
  2003. }
  2004. .info{
  2005. width: 1rem;
  2006. height: 1rem;
  2007. background-image: url(../img/ico_info.svg);
  2008. background-size: cover;
  2009. background-repeat: no-repeat;
  2010. margin-left: 0.3rem;
  2011. position: relative;
  2012. cursor: pointer;
  2013. .info--tt{
  2014. position: absolute;
  2015. top: -3.5rem;
  2016. left: -11.8rem;
  2017. display: inline-block;
  2018. font-style: normal;
  2019. font-weight: 500;
  2020. color: #fff;
  2021. background-color: rgba(67, 141, 255, 0.70);
  2022. padding: 0.9375rem 1.5625rem 1.0625rem 1.5625rem;
  2023. border-radius: 0.625rem;
  2024. width: 25rem;
  2025. text-align: center;
  2026. display: none;
  2027. z-index: 30;
  2028. &::after{
  2029. content: '';
  2030. background-image: url(../img/ico_tool.svg);
  2031. width: 0.875rem;
  2032. height: 0.625rem;
  2033. display: inline-block;
  2034. position: absolute;
  2035. bottom: -0.625rem;
  2036. left: 50%;
  2037. transform: translateX(-50%);
  2038. }
  2039. }
  2040. &:hover{
  2041. .info--tt{
  2042. display: block;
  2043. }
  2044. }
  2045. }
  2046. .search-box-in {
  2047. margin-left: 0;
  2048. .custom-select {
  2049. &.v-input {
  2050. .v-input__control {
  2051. .v-field {
  2052. .v-field__field {
  2053. padding-left: 0.75rem;
  2054. }
  2055. &.v-field--disabled{
  2056. .v-field__input{
  2057. .v-select__selection{
  2058. .v-select__selection-text{
  2059. color: #e0e0e0!important;
  2060. }
  2061. }
  2062. }
  2063. }
  2064. .v-field__append-inner {
  2065. .v-icon {
  2066. margin-right: 0.75rem;
  2067. }
  2068. }
  2069. .v-field__outline {}
  2070. }
  2071. }
  2072. &.v-input--disabled{
  2073. .v-input__control{
  2074. .v-field{
  2075. background-color: #fbfbfb;
  2076. opacity: 1;
  2077. }
  2078. .v-field__outline{
  2079. border: 1px solid #ccc;
  2080. }
  2081. }
  2082. }
  2083. }
  2084. }
  2085. .custom-input {
  2086. &.v-text-field {
  2087. .v-input__control {
  2088. .v-field__field {
  2089. .v-field__input {
  2090. padding: 0 0.75rem;
  2091. &:read-only {
  2092. color: #000000 !important;
  2093. font-weight: 400 !important;
  2094. background: #ffffff;
  2095. }
  2096. }
  2097. }
  2098. }
  2099. }
  2100. }
  2101. .custom-radio {
  2102. .v-selection-control--disabled{
  2103. opacity: 1;
  2104. }
  2105. &.picker-terms {
  2106. width: auto;
  2107. .v-input__control {
  2108. .v-selection-control-group {
  2109. gap: 0.5rem;
  2110. .v-selection-control {
  2111. &.v-radio {
  2112. width: 2.8125rem;
  2113. }
  2114. }
  2115. }
  2116. }
  2117. }
  2118. }
  2119. .calendar-wrap {
  2120. margin-left: 0.5rem;
  2121. .calendar {
  2122. width: 12.5rem;
  2123. .dp__input_wrap {
  2124. &::before {
  2125. right: 0.75rem;
  2126. }
  2127. .dp__input {
  2128. color: #8e8e8e;
  2129. font-size: 0.875rem;
  2130. &::placeholder {
  2131. color: #8e8e8e;
  2132. font-size: 0.875rem;
  2133. }
  2134. &.dp__disabled{
  2135. border: 1px solid #CCC;
  2136. background-color: #FBFBFB;
  2137. &::placeholder{
  2138. color: #e0e0e0!important;
  2139. }
  2140. }
  2141. }
  2142. }
  2143. .dp__main{
  2144. .dp--menu-wrapper{
  2145. box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
  2146. border-radius: 1.25rem;
  2147. overflow: hidden;
  2148. z-index: 2;
  2149. .dp__menu{
  2150. .dp__arrow_top{
  2151. display: none;
  2152. }
  2153. }
  2154. }
  2155. }
  2156. }
  2157. .custom-btn{
  2158. &.btn-refresh{
  2159. width: 2.25rem;
  2160. height: 2.25rem;
  2161. padding: 0;
  2162. .v-btn__content{
  2163. .ico{
  2164. background-image: url(../img/ico_backup1.svg);
  2165. }
  2166. }
  2167. }
  2168. &.btn-ref{
  2169. width: 2.25rem;
  2170. min-width: 2.25rem;
  2171. height: 2.25rem;
  2172. padding: 0;
  2173. border-radius: 0.375rem;
  2174. border: 1px solid #CCC;
  2175. margin-left: 0.3rem;
  2176. .v-btn__content{
  2177. .ico{
  2178. display: inline-block;
  2179. width: 0.875rem;
  2180. height: 0.875rem;
  2181. background-size: cover;
  2182. background-image: url(../img/ico_refresh.svg);
  2183. }
  2184. }
  2185. &.v-btn--disabled{
  2186. border: 1px solid #E7E7E7;
  2187. background-color: #ffffff!important;
  2188. .v-btn__content{
  2189. .ico{
  2190. background-image: url(../img/ico_refresh_dis.svg);
  2191. }
  2192. }
  2193. }
  2194. }
  2195. }
  2196. .text {
  2197. color: #8e8e8e;
  2198. }
  2199. }
  2200. }
  2201. }
  2202. }
  2203. }
  2204. }
  2205. .chart-wrap {
  2206. background-color: #ffffff;
  2207. box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
  2208. border-radius: 0.5rem;
  2209. padding: 1.88rem;
  2210. flex-direction: column;
  2211. .no--data{
  2212. display: flex;
  2213. justify-content: center;
  2214. align-items: center;
  2215. color: var(--gray2, #444);
  2216. font-size: 0.875rem;
  2217. font-weight: 700;
  2218. height: 100%;
  2219. .ico{
  2220. width: 1.25rem;
  2221. height: 1.25rem;
  2222. margin-right: 0.62rem;
  2223. background-size: cover;
  2224. background-image: url(../img/ico_no_data_nw.svg);
  2225. }
  2226. }
  2227. .chart-total {
  2228. margin-top: 0;
  2229. font-size: 0.9375rem;
  2230. z-index: 1;
  2231. background-color: #ffffff;
  2232. margin-bottom: 1rem;
  2233. >p {
  2234. font-size: 0.9375rem;
  2235. font-weight: 700;
  2236. }
  2237. .legend-area {
  2238. justify-content: center;
  2239. gap: 1.56rem;
  2240. .legend-box {
  2241. color: #333333;
  2242. font-weight: 400;
  2243. font-size: 0.8125rem;
  2244. &.none--atv{
  2245. color: rgba(68, 68, 68, 0.30);
  2246. .cir{
  2247. background-color: rgba(68, 68, 68, 0.30)!important;
  2248. }
  2249. }
  2250. .cir {
  2251. width: 0.9375rem;
  2252. height: 0.1875rem;
  2253. border-radius: 6.25rem;
  2254. &.cir1 {
  2255. background-color: #FF531E;
  2256. }
  2257. &.cir2 {
  2258. background-color: #44C5FF;
  2259. }
  2260. &.cir3 {
  2261. background-color: #FF00C7;
  2262. }
  2263. &.cir4 {
  2264. background-color: #AF70FF;
  2265. }
  2266. &.cir5 {
  2267. background-color: #4862FF;
  2268. }
  2269. &.cir6 {
  2270. background-color: #6ACB52;
  2271. }
  2272. &.cir7 {
  2273. background-color: #00D47B;
  2274. }
  2275. }
  2276. }
  2277. }
  2278. }
  2279. .chart-wrap-fix {
  2280. left: 1.5rem;
  2281. width: 100%;
  2282. height: 100%;
  2283. top: 4rem;
  2284. }
  2285. .scrl-chart {
  2286. margin-left: 0;
  2287. padding-bottom: 0;
  2288. height: 100%;
  2289. .scrl-in{
  2290. height: 100%;
  2291. div{
  2292. height: 100%;
  2293. }
  2294. }
  2295. }
  2296. }
  2297. .view-wrap {
  2298. .view-box {
  2299. .view-box-btm {
  2300. .form-style1 {
  2301. table {
  2302. tbody {
  2303. tr {
  2304. border-top: 1px solid #e0e0e0;
  2305. th {
  2306. padding: 0.62rem;
  2307. color: #444444;
  2308. font-size: 0.875rem;
  2309. .cir {
  2310. width: 0.3125rem;
  2311. height: 0.3125rem;
  2312. display: inline-block;
  2313. background-color: #ff4f60;
  2314. border-radius: 50%;
  2315. margin-left: 0.37rem;
  2316. vertical-align: 2px;
  2317. }
  2318. }
  2319. td {
  2320. padding: 0.62rem;
  2321. color: #444444;
  2322. font-size: 0.875rem;
  2323. .status{
  2324. display: inline-block;
  2325. border: 1px solid #B8D4FF;
  2326. padding: 0.5rem 0.62rem;
  2327. border-radius: 6.25rem;
  2328. color: #438DFF;
  2329. font-size: 0.75rem;
  2330. font-style: normal;
  2331. font-weight: 400;
  2332. .ico{
  2333. display: inline-block;
  2334. width: 0.75rem;
  2335. margin-right: 0.62rem;
  2336. height: 0.75rem;
  2337. background-color: #438dff;
  2338. border-radius: 50%;
  2339. }
  2340. &.discon{
  2341. border: 1px solid #E8E7ED;
  2342. color: #A5A3AE;
  2343. .ico{
  2344. background-color: #D8D7DC;
  2345. }
  2346. }
  2347. }
  2348. .custom-btn {
  2349. &.v-btn {
  2350. &.v-btn--density-default {
  2351. &.btn-password {
  2352. background: #6f8aa6;
  2353. height: 2.25rem;
  2354. width: 6.875rem;
  2355. }
  2356. &.btn-black {
  2357. background: #6f8aa6;
  2358. &.v-btn--disabled {
  2359. background-color: #e0e0e0 !important;
  2360. .v-btn__content {
  2361. color: #8e8e8e !important;
  2362. }
  2363. }
  2364. }
  2365. }
  2366. }
  2367. }
  2368. .custom-input {
  2369. &.v-text-field {
  2370. &.mini {
  2371. .v-input__control {
  2372. .v-field__field {
  2373. .v-field__input {
  2374. padding: 0 0.75rem;
  2375. color: #000000;
  2376. height: 2.25rem;
  2377. font-size: 0.875rem;
  2378. font-weight: 400 !important;
  2379. min-height: 2.25rem;
  2380. &::placeholder {
  2381. color: #8e8e8e;
  2382. font-size: 0.875rem;
  2383. font-weight: 400 !important;
  2384. }
  2385. }
  2386. }
  2387. }
  2388. .v-input__details{
  2389. overflow: visible;
  2390. .v-messages__message{
  2391. padding: 0;
  2392. }
  2393. }
  2394. }
  2395. &.mini2 {
  2396. min-height: 2.25rem;
  2397. .v-input__control {
  2398. height: 2.25rem;
  2399. .v-field__field {
  2400. .v-field__input {
  2401. padding: 0 0.75rem;
  2402. color: #000000;
  2403. height: 2.25rem;
  2404. font-size: 0.875rem;
  2405. font-weight: 400;
  2406. min-height: 2.25rem;
  2407. &::placeholder {
  2408. color: #8e8e8e;
  2409. font-size: 0.875rem;
  2410. font-weight: 400;
  2411. }
  2412. }
  2413. }
  2414. }
  2415. }
  2416. }
  2417. }
  2418. .custom-radio {
  2419. &.v-input {
  2420. &.type2 {
  2421. .v-input__control {
  2422. .v-selection-control-group {
  2423. .v-radio {
  2424. .v-label {
  2425. padding-left: 0.56rem;
  2426. font-weight: 500;
  2427. }
  2428. .v-selection-control__wrapper {
  2429. .v-selection-control__input {
  2430. width: 1rem;
  2431. height: 1rem;
  2432. .v-icon {
  2433. border: 1px solid #C0C0C0;
  2434. &.mdi-radiobox-marked {
  2435. border: 1px solid #C0C0C0;
  2436. background-color: #438dff;
  2437. }
  2438. }
  2439. }
  2440. }
  2441. }
  2442. }
  2443. }
  2444. }
  2445. }
  2446. }
  2447. }
  2448. }
  2449. }
  2450. }
  2451. }
  2452. }
  2453. }
  2454. }
  2455. .content--db--wrap{
  2456. display: flex;
  2457. gap: 1.25rem;
  2458. .content--inner{
  2459. .content--inner--title{
  2460. display: flex;
  2461. justify-content: space-between;
  2462. align-items: center;
  2463. h3{
  2464. color: #222;
  2465. font-size: 1rem;
  2466. font-weight: 700;
  2467. }
  2468. .d--day{
  2469. border-radius: 6.25rem;
  2470. border: 1px solid #AFCFFF;
  2471. color: #438DFF;
  2472. font-size: 0.8125rem;
  2473. font-weight: 700;
  2474. padding: 0.5rem 0.94rem 0.62rem;
  2475. span{
  2476. font-weight: 400;
  2477. }
  2478. }
  2479. .status--wrap{
  2480. }
  2481. }
  2482. }
  2483. .content--l{
  2484. background-color: #fff;
  2485. width: 28.125rem;
  2486. height: 52.8125rem;
  2487. padding: 1.25rem;
  2488. border-radius: 1.25rem;
  2489. .content--inner{
  2490. .content--inner--content{
  2491. .db--chart--wrap{
  2492. display: flex;
  2493. align-items: center;
  2494. justify-content: center;
  2495. padding:3rem 0rem 3rem 0rem;
  2496. .db--chart{
  2497. position: relative;
  2498. width:12.5rem;
  2499. height:12.5rem;
  2500. max-width:12.5rem;
  2501. max-height:12.5rem;
  2502. canvas{
  2503. position: relative;
  2504. z-index: 3;
  2505. }
  2506. &:after{
  2507. content:'';
  2508. display: block;
  2509. width:12.5rem;
  2510. height:12.5rem;
  2511. position: absolute;
  2512. top:50%;
  2513. left:50%;
  2514. transform: translate(-50%, -50%);
  2515. background:#EAEAEA;
  2516. border-radius: 12.5rem;
  2517. z-index: 1;
  2518. }
  2519. &:before{
  2520. content:'';
  2521. display: block;
  2522. width:7.5rem;
  2523. height:7.5rem;
  2524. position: absolute;
  2525. top:50%;
  2526. left:50%;
  2527. transform: translate(-50%, -50%);
  2528. background:#fff;
  2529. border-radius: 12.5rem;
  2530. z-index: 2;
  2531. }
  2532. }
  2533. }
  2534. .db--table{
  2535. table{
  2536. width: 100%;
  2537. margin-top: 1.75rem;
  2538. tbody{
  2539. tr{
  2540. border-top: 1px solid #e0e0e0;
  2541. th{
  2542. text-align: left;
  2543. padding: 1.12rem 0.62rem;
  2544. font-size: 0.875rem;
  2545. color: #444444;
  2546. font-weight: 700;
  2547. }
  2548. td{
  2549. color: #444444;
  2550. font-size: 0.875rem;
  2551. font-weight: 400;
  2552. span{
  2553. font-weight: 700;
  2554. color: #438dff;
  2555. }
  2556. }
  2557. }
  2558. }
  2559. }
  2560. }
  2561. }
  2562. }
  2563. }
  2564. .content--r{
  2565. display: flex;
  2566. flex-direction: column;
  2567. width: calc(100% - 28.14rem);
  2568. gap: 1.25rem;
  2569. .content--r--t{
  2570. background-color: #fff;
  2571. width: 100%;
  2572. border-radius: 1.25rem;
  2573. height: 27.625rem;
  2574. padding: 1.25rem;
  2575. .content--inner{
  2576. height: 100%;
  2577. .content--inner--title{
  2578. margin-bottom: 1.12rem;
  2579. .status--wrap{
  2580. display: flex;
  2581. gap: 1.88rem;
  2582. .status{
  2583. display: flex;
  2584. position: relative;
  2585. gap: 0.63rem;
  2586. align-items: center;
  2587. .status--card{
  2588. padding: 0.5rem 0.75rem;
  2589. border-radius: 6.25rem;
  2590. display: flex;
  2591. align-items: center;
  2592. span{
  2593. color: #111;
  2594. font-size: 0.8125rem;
  2595. font-weight: 500;
  2596. letter-spacing: -0.00813rem;
  2597. margin-right: 1.5rem;
  2598. &.count{
  2599. margin-right: 0;
  2600. font-weight: 700;
  2601. }
  2602. }
  2603. .ico{
  2604. background-repeat: no-repeat;
  2605. background-position: center;
  2606. background-size: cover;
  2607. width: 0.875rem;
  2608. height: 0.875rem;
  2609. margin-right: 0.63rem;
  2610. }
  2611. &.con{
  2612. border: 1px solid #a1c6ff;
  2613. .ico{
  2614. background-image: url(../img/ico_status1.svg);
  2615. }
  2616. .count{
  2617. color: #438DFF;
  2618. }
  2619. }
  2620. &.dis--con{
  2621. border: 1px solid #F6A19B;
  2622. .ico{
  2623. background-image: url(../img/ico_status2.svg);
  2624. }
  2625. .count{
  2626. color: #E1473D;
  2627. }
  2628. }
  2629. &.active{
  2630. border: 1px solid #a1c6ff;
  2631. .ico{
  2632. background-image: url(../img/ico_status1.svg);
  2633. }
  2634. .count{
  2635. color: #438DFF;
  2636. }
  2637. }
  2638. &.issue{
  2639. border: 1px solid #F6A19B;
  2640. .ico{
  2641. background-image: url(../img/ico_status3.svg);
  2642. }
  2643. .count{
  2644. color: #E1473D;
  2645. }
  2646. }
  2647. }
  2648. }
  2649. .map{
  2650. position: relative;
  2651. .custom-btn{
  2652. &.btn-map{
  2653. // width: 4.5625rem;
  2654. width: 6.75rem;
  2655. height: 1.875rem;
  2656. border-radius: 6.25rem;
  2657. .v-btn__content{
  2658. font-size: 0.8125rem!important;
  2659. .ico{
  2660. width: 0.875rem;
  2661. height: 0.875rem;
  2662. background-image: url(../img/ico_map.svg);
  2663. background-repeat: no-repeat;
  2664. background-position: center;
  2665. background-size: cover;
  2666. margin-right: 0.31rem;
  2667. }
  2668. }
  2669. }
  2670. }
  2671. // &::before{
  2672. // width: 0.0625rem;
  2673. // height: 1.125rem;
  2674. // top: 50%;
  2675. // transform: translateY(-50%);
  2676. // background-color: #e0e0e0;
  2677. // content: '';
  2678. // position: absolute;
  2679. // left: -0.94rem;
  2680. // }
  2681. }
  2682. }
  2683. }
  2684. .content--inner--content{
  2685. .db--status{
  2686. .equip--card--wrap{
  2687. display: flex;
  2688. align-items: flex-end;
  2689. width: 100%;
  2690. height: 19.5rem;
  2691. .equip--card{
  2692. width: 100%;
  2693. height: 18rem;
  2694. background-color: #f1f7ff;
  2695. border-radius: 0.9375rem;
  2696. border: 1px solid #D4E7FF;
  2697. padding: 2.25rem 1.88rem 1.25rem 1.88rem;
  2698. display: flex;
  2699. justify-content: center;
  2700. gap: 1.37rem;
  2701. position: relative;
  2702. flex-direction: column;
  2703. .equip--t{
  2704. display: flex;
  2705. align-items: center;
  2706. gap: 0.94rem;
  2707. justify-content: flex-start;
  2708. }
  2709. .equip--icon{
  2710. background-color: #fff;
  2711. width: 2.5rem;
  2712. height: 2.5rem;
  2713. border-radius: 6.25rem;
  2714. background-image: url(../img/ico_equip.svg);
  2715. background-size: 1.25rem 1.25rem;
  2716. background-position: center;
  2717. }
  2718. .equip--txt{
  2719. p{
  2720. color: #222;
  2721. font-size: 1rem;
  2722. font-weight: 700;
  2723. margin-bottom: 0.2rem;
  2724. }
  2725. span{
  2726. color: #8C8C8C;
  2727. font-size: 0.6875rem;
  2728. font-weight: 400;
  2729. letter-spacing: -0.00688rem;
  2730. }
  2731. }
  2732. .equip--st{
  2733. width: 100%;
  2734. display: flex;
  2735. flex-direction: column;
  2736. gap: 0.75rem;
  2737. li{
  2738. display: flex;
  2739. align-items: center;
  2740. .circle{
  2741. border-radius: 50%;
  2742. width: 0.5625rem;
  2743. height: 0.5625rem;
  2744. margin-right: 0.94rem;
  2745. vertical-align: -0.1rem;
  2746. background-color: #55E074;
  2747. &.critical{
  2748. background-color:#E1473D;
  2749. }
  2750. }
  2751. p{
  2752. color: #222;
  2753. font-size: 0.6875rem;
  2754. font-weight: 500;
  2755. }
  2756. span{
  2757. color: #222;
  2758. font-size: 0.6875rem;
  2759. font-weight: 500;
  2760. margin-left: auto;
  2761. &.active{
  2762. font-weight: 700;
  2763. color: #111111;
  2764. }
  2765. }
  2766. }
  2767. }
  2768. &::before{
  2769. position: absolute;
  2770. content: 'Connected';
  2771. left: 0.62rem;
  2772. top: -0.69rem;
  2773. color: #438DFF;
  2774. text-align: center;
  2775. font-size: 0.6875rem;
  2776. font-weight: 500;
  2777. border-radius: 6.25rem;
  2778. border: 1px solid #9BC2FF;
  2779. background: #FFF;
  2780. padding: 0.38rem 0.62rem 0.5rem;
  2781. z-index: 2;
  2782. }
  2783. &.dis{
  2784. &::before{
  2785. border: 1px solid #F6A19B;
  2786. color: #E1473D;
  2787. content: 'Disconnected';
  2788. }
  2789. &::after{
  2790. position: absolute;
  2791. content: '';
  2792. left: 0;
  2793. bottom: 0;
  2794. width: 100%;
  2795. height: 100%;
  2796. border: 1px solid #f4a19c;
  2797. background-color: #06102780;
  2798. border-radius: 0.9375rem;
  2799. background-image: url(../img/ico_wifi.svg);
  2800. background-position: center;
  2801. background-size: 2.5rem 2.5rem;
  2802. }
  2803. }
  2804. }
  2805. }
  2806. }
  2807. .swiper{
  2808. padding-bottom: 3.25rem;
  2809. .swiper-controls{
  2810. display: flex;
  2811. margin-top: 1.25rem;
  2812. align-items: center;
  2813. gap: 1.25rem;
  2814. height: 2rem;
  2815. justify-content: center;
  2816. .swiper-button-prev{
  2817. position: static;
  2818. margin-top: 0;
  2819. width: 2rem;
  2820. height: 2rem;
  2821. background-image: url(../img/ico_arrow_prev.svg);
  2822. background-position: center;
  2823. background-repeat: no-repeat;
  2824. background-size: cover;
  2825. &::after{
  2826. content: none;
  2827. }
  2828. &.swiper-button-disabled{
  2829. }
  2830. }
  2831. .swiper-button-next{
  2832. position: static;
  2833. width: 2rem;
  2834. height: 2rem;
  2835. margin-top: 0;
  2836. background-image: url(../img/ico_arrow_next.svg);
  2837. background-position: center;
  2838. background-repeat: no-repeat;
  2839. background-size: cover;
  2840. &::after{
  2841. content: none;
  2842. }
  2843. }
  2844. .swiper-pagination{
  2845. position: static;
  2846. width: auto;
  2847. .swiper-pagination-bullet{
  2848. margin-left: 0;
  2849. margin-right: 0.63rem;
  2850. width: 0.75rem;
  2851. height: 0.75rem;
  2852. background-color: #E9E9E9;
  2853. opacity: 1;
  2854. &.swiper-pagination-bullet-active{
  2855. background-color: #6F8AA6;
  2856. }
  2857. &:last-child{
  2858. margin-right: 0;
  2859. }
  2860. }
  2861. }
  2862. }
  2863. }
  2864. }
  2865. }
  2866. }
  2867. .content--r--b{
  2868. background-color: #fff;
  2869. width: 100%;
  2870. height: 23.9375rem;
  2871. border-radius: 1.25rem;
  2872. padding: 1.25rem;
  2873. .content--inner{
  2874. height: 100%;
  2875. gap: 3rem;
  2876. display: flex;
  2877. flex-direction: column;
  2878. &::after{
  2879. display: none;
  2880. }
  2881. .content--inner--title{
  2882. margin: 0;
  2883. justify-content: flex-start;
  2884. p{
  2885. color: #222222;
  2886. font-weight: 700;
  2887. font-size: 1rem;
  2888. margin-right: 2.5rem;
  2889. }
  2890. .ico{
  2891. width: 0.9375rem;
  2892. height: 0.9375rem;
  2893. margin-right: 2.5rem;
  2894. margin-left: 0.75rem;
  2895. background-image: url(../img/ico_set.svg);
  2896. display: inline-block;
  2897. background-size: cover;
  2898. cursor: pointer;
  2899. }
  2900. .btn-wrap{
  2901. margin-left: auto;
  2902. .custom-btn{
  2903. &.btn-pip{
  2904. margin-left: 0.94rem;
  2905. width: 6.75rem;
  2906. height: 2.25rem;
  2907. padding: 0;
  2908. .v-btn__content{
  2909. color: #8E8E8E;
  2910. font-size: 0.875rem;
  2911. font-weight: 500;
  2912. letter-spacing: -0.00875rem;
  2913. .ico{
  2914. width: 1.25rem;
  2915. height: 1.25rem;
  2916. display: inline-block;
  2917. background-image: url(../img/ico_pip2.svg);
  2918. background-size: cover;
  2919. background-repeat: no-repeat;
  2920. margin-right: 0.38rem;
  2921. margin-left: 0;
  2922. background-position: center;
  2923. }
  2924. }
  2925. }
  2926. }
  2927. }
  2928. .select--wrap{
  2929. display: flex;
  2930. gap: 0.63rem;
  2931. align-items: center;
  2932. .custom-btn{
  2933. &.v-btn{
  2934. &.btn-blue{
  2935. width: 5.25rem;
  2936. }
  2937. }
  2938. }
  2939. }
  2940. }
  2941. .chart--con{
  2942. width: 100%;
  2943. height: 100%;
  2944. .chart--in{
  2945. height: calc(100% - 1rem);
  2946. z-index: 10;
  2947. position: relative;
  2948. > div{
  2949. height: 100%;
  2950. }
  2951. .chart--legend{
  2952. height: auto;
  2953. display: flex;
  2954. position: absolute;
  2955. right: 50%;
  2956. transform: translateX(50%);
  2957. top: -2.5rem;
  2958. .legend{
  2959. display: flex;
  2960. align-items: center;
  2961. .line{
  2962. margin-left: 1.25rem;
  2963. width: 0.9375rem;
  2964. height: 0.1875rem;
  2965. border-radius: 6.25rem;
  2966. display: inline-block;
  2967. background-color: #55E074;
  2968. }
  2969. p{
  2970. color: #333;
  2971. font-size: 0.8125rem;
  2972. font-style: normal;
  2973. margin-left: 0.75rem;
  2974. font-weight: 400;
  2975. letter-spacing: -0.00813rem;
  2976. }
  2977. &:first-child{
  2978. .line{
  2979. background-color: #FF531E;
  2980. }
  2981. }
  2982. &:nth-child(2){
  2983. .line{
  2984. background-color: #44C5FF;
  2985. }
  2986. }
  2987. &:nth-child(3){
  2988. .line{
  2989. background-color: #FF00C7;
  2990. }
  2991. }
  2992. &:nth-child(4){
  2993. .line{
  2994. background-color: #AF70FF;
  2995. }
  2996. }
  2997. &:nth-child(5){
  2998. .line{
  2999. background-color: #4862FF;
  3000. }
  3001. }
  3002. }
  3003. }
  3004. }
  3005. }
  3006. }
  3007. }
  3008. }
  3009. .content--inner--content{
  3010. &.no--data{
  3011. display: flex;
  3012. justify-content: center;
  3013. align-items: center;
  3014. color: var(--gray2, #444);
  3015. font-size: 0.875rem;
  3016. font-weight: 700;
  3017. height: 100%;
  3018. .ico{
  3019. width: 1.25rem;
  3020. height: 1.25rem;
  3021. margin-right: 0.62rem;
  3022. background-size: cover;
  3023. background-image: url(../img/ico_no_data_nw.svg);
  3024. }
  3025. }
  3026. }
  3027. }
  3028. // dashboard components
  3029. .dash--board--wrapper{
  3030. &.none--title{
  3031. height: calc(100vh - 6.5rem);
  3032. }
  3033. .dash--board--contents{
  3034. &.type3{
  3035. .core--component--wrap{
  3036. height: 100%;
  3037. &.user--list{
  3038. > div{
  3039. &:nth-of-type(1){
  3040. height:auto;
  3041. .inner--content{
  3042. height:100%;
  3043. .oper--stat{
  3044. height:calc( ( ( 100% / 3 ) * 2 ) - 3.75rem );
  3045. .card--alarm{
  3046. .card{
  3047. .ico{
  3048. width:2rem;
  3049. height:2rem;
  3050. }
  3051. .alarm--txt{
  3052. display: flex;
  3053. flex-direction: column;
  3054. gap:.3rem;
  3055. }
  3056. }
  3057. }
  3058. &:nth-of-type(2){
  3059. height:calc( ( 100% / 3 ) - 0.625rem );
  3060. }
  3061. }
  3062. }
  3063. }
  3064. &:nth-of-type(2){
  3065. padding-top:1.25rem;
  3066. height:calc(100% - 15.7rem);
  3067. .inner--content{
  3068. height:calc(100% - 1rem);
  3069. .swiper{
  3070. height:100%;
  3071. .swiper-wrapper{
  3072. height:100%;
  3073. .swiper-slide{
  3074. height:100%;
  3075. .tenant--card--wrap{
  3076. display: flex;
  3077. flex-wrap: wrap;
  3078. flex-direction: row;
  3079. height:100%;
  3080. .tenant--card{
  3081. width:calc(50% - 0.25rem);
  3082. height: calc( (100% - ((0.25rem * 6) + 1.6rem)) / 7);
  3083. display: flex;
  3084. flex-direction: column;
  3085. justify-content: space-between;
  3086. }
  3087. }
  3088. .user--list--contents{
  3089. width:100%;
  3090. padding-top:0px;
  3091. height:100%;
  3092. > ul{
  3093. width:100%;
  3094. height:100%;
  3095. gap:0.62rem;
  3096. >li{
  3097. padding: 0.54rem;
  3098. width:calc( (100% - 0.62rem) / 2);
  3099. height:calc( (100% - ( 0.62rem * 3 ) ) / 4);
  3100. .chart--box{
  3101. margin-top:.5rem;
  3102. width:calc(100% - 6.2rem);
  3103. height:50%;
  3104. }
  3105. &.critical{
  3106. .current--value--ps{
  3107. color:#f00!important;
  3108. }
  3109. }
  3110. &.major{
  3111. .current--value--ps{
  3112. color:#C96103!important;
  3113. }
  3114. }
  3115. &.minor{
  3116. .current--value--ps{
  3117. color:#DDA405!important;
  3118. }
  3119. }
  3120. &.normal{
  3121. .current--value--ps{
  3122. color:#2D8CFA!important;
  3123. }
  3124. }
  3125. }
  3126. }
  3127. }
  3128. }
  3129. }
  3130. }
  3131. }
  3132. }
  3133. }
  3134. }
  3135. &.core--tp{
  3136. > div{
  3137. &:nth-of-type(1){
  3138. height:50%;
  3139. &.no--data{
  3140. height: 100%;
  3141. }
  3142. .inner--content{
  3143. height:100%;
  3144. >div{
  3145. height:calc( (100% - (0.25rem * 2)) / 3);
  3146. display:flex;
  3147. flex-direction: column;
  3148. justify-content: space-between;
  3149. &:nth-of-type(2){
  3150. height:calc( ( (100% - (0.25rem * 2)) / 3 ) - 1.2rem );
  3151. }
  3152. &:nth-of-type(3){
  3153. height:calc( ( (100% - (0.25rem * 2)) / 3 ) - 2.5rem );
  3154. }
  3155. }
  3156. }
  3157. }
  3158. &:nth-of-type(2){
  3159. height:50%;
  3160. .inner--content{
  3161. height:100%;
  3162. .swiper{
  3163. height:100%;
  3164. .swiper-wrapper{
  3165. height:calc(100% - 1rem);
  3166. .swiper-slide{
  3167. height:100%;
  3168. .equip--card--wrap{
  3169. height:100%;
  3170. .equip--card{
  3171. height: calc( 100% / 4)!important;
  3172. }
  3173. }
  3174. }
  3175. }
  3176. }
  3177. }
  3178. }
  3179. }
  3180. }
  3181. .inner--header--wrap{
  3182. &.mt--15rem{
  3183. margin-top: 1rem;
  3184. }
  3185. .inner--component--title{
  3186. &.none--after{
  3187. &::after{
  3188. display: none;
  3189. }
  3190. }
  3191. }
  3192. .inner--component--date{
  3193. color: #8E8E8E;
  3194. font-size: 0.8125rem;
  3195. font-style: normal;
  3196. font-weight: 400;
  3197. }
  3198. .inner--component--total{
  3199. color: #8E8E8E;
  3200. font-size: 0.8125rem;
  3201. font-weight: 400;
  3202. span{
  3203. color: #438DFF;
  3204. font-weight: 900;
  3205. }
  3206. }
  3207. }
  3208. .inner--content{
  3209. gap: 0.5rem;
  3210. &.df--block{
  3211. display: block;
  3212. }
  3213. &.pt--125rem{
  3214. padding-top: 0.75rem;
  3215. }
  3216. &.pt--1rem{
  3217. padding-top: 0.75rem;
  3218. }
  3219. .oper--stat{
  3220. border-radius: 0.625rem;
  3221. border: 1px solid #EFEFEF;
  3222. background: #FFF;
  3223. width: 100%;
  3224. padding: 0.75rem 1rem;
  3225. .card--title{
  3226. display: flex;
  3227. justify-content: space-between;
  3228. margin-bottom: 0.75rem;
  3229. h3{
  3230. color: #111;
  3231. font-size: 0.7rem;
  3232. font-style: normal;
  3233. font-weight: 700;
  3234. }
  3235. p{
  3236. color: #555;
  3237. font-size: 0.7rem;
  3238. font-weight: 400;
  3239. span{
  3240. color: #111;
  3241. font-weight: 500;
  3242. }
  3243. }
  3244. }
  3245. .card--cont{
  3246. display: flex;
  3247. justify-content: space-between;
  3248. gap: 2.12rem;
  3249. .card{
  3250. display: flex;
  3251. width: calc(100% / 3);
  3252. flex-direction: column;
  3253. gap: 0.5rem;
  3254. .card--count{
  3255. padding: 0.25rem 0.75rem;
  3256. border-radius: 6.25rem;
  3257. background-color: #eff2f4;
  3258. color: #444;
  3259. font-size: 0.6rem;
  3260. font-weight: 400;
  3261. text-align: center;
  3262. width: 5rem;
  3263. span{
  3264. font-weight: 700;
  3265. }
  3266. }
  3267. .card--txt{
  3268. display: flex;
  3269. justify-content: space-between;
  3270. color: #333;
  3271. font-size: 0.7rem;
  3272. align-items: center;
  3273. font-weight: 400;
  3274. span{
  3275. color: #333;
  3276. font-size: 1.12rem;
  3277. font-weight: 900;
  3278. position: relative;
  3279. &::after{
  3280. content: '';
  3281. width: 0.0625rem;
  3282. height: 1.0625rem;
  3283. background-color: #d2d2d2;
  3284. position: absolute;
  3285. right: -1.1rem;
  3286. top: 0.2rem;
  3287. }
  3288. }
  3289. }
  3290. &:last-child{
  3291. .card--txt{
  3292. span{
  3293. &::after{
  3294. display: none;
  3295. }
  3296. }
  3297. }
  3298. }
  3299. }
  3300. }
  3301. .card--alarm{
  3302. display: flex;
  3303. gap: 3.12rem;
  3304. &.gap--0{
  3305. gap: 0;
  3306. }
  3307. &.mb--1rem{
  3308. margin-bottom: 0.94rem;
  3309. }
  3310. .card{
  3311. display: flex;
  3312. width: 50%;
  3313. gap: 0.94rem;
  3314. align-items: center;
  3315. position: relative;
  3316. .ico{
  3317. background-color: #E4EFFF;
  3318. border-radius: 50%;
  3319. width: 2.2rem;
  3320. height: 2.2rem;
  3321. background-image: url(../img/ico_core_alarm1.svg);
  3322. background-position: center;
  3323. background-repeat: no-repeat;
  3324. background-size: 1rem 1rem;
  3325. }
  3326. &.tenant1{
  3327. .ico{
  3328. background-image: url(../img/ico_tenant1.svg);
  3329. }
  3330. }
  3331. &.tenant2{
  3332. .ico{
  3333. background-image: url(../img/ico_tenant2.svg);
  3334. }
  3335. }
  3336. &.tenant3{
  3337. .ico{
  3338. background-image: url(../img/ico_tenant3.svg);
  3339. }
  3340. }
  3341. &.tenant4{
  3342. .ico{
  3343. background-image: url(../img/ico_tenant4.svg);
  3344. }
  3345. }
  3346. &.license1{
  3347. .ico{
  3348. background-image: url(../img/ico_certify_y3.svg);
  3349. }
  3350. }
  3351. &.license2{
  3352. .ico{
  3353. background-image: url(../img/ico_certify_n.svg)!important;
  3354. }
  3355. }
  3356. .alarm--txt{
  3357. p{
  3358. color: #222;
  3359. font-size: 0.65rem;
  3360. font-weight: 400;
  3361. }
  3362. span{
  3363. color: #438DFF;
  3364. font-size: 0.8rem;
  3365. font-weight: 700;
  3366. }
  3367. }
  3368. &:first-child{
  3369. &::after{
  3370. content: '';
  3371. width: 0.0625rem;
  3372. height: 1.5rem;
  3373. background-color: #d2d2d2;
  3374. position: absolute;
  3375. right: -1.56rem;
  3376. top: 0.5rem;
  3377. }
  3378. }
  3379. &.no--alarm{
  3380. .ico{
  3381. background-color: #FFEBEA;
  3382. background-image: url(../img/ico_core_alarm2.svg);
  3383. }
  3384. .alarm--txt{
  3385. span{
  3386. color: #E1473D;
  3387. }
  3388. }
  3389. }
  3390. &.gray--alarm{
  3391. .ico{
  3392. background-color: #F5F5F5;
  3393. }
  3394. .alarm--txt{
  3395. span{
  3396. color: #333333;
  3397. }
  3398. }
  3399. }
  3400. }
  3401. }
  3402. }
  3403. .link--stat{
  3404. margin-bottom: 1rem;
  3405. width: 100%;
  3406. padding: 0.75rem 1rem;
  3407. border-radius: 0.625rem;
  3408. .card--title{
  3409. display: flex;
  3410. justify-content: space-between;
  3411. margin-bottom: 0.75rem;
  3412. h3{
  3413. color: #111;
  3414. font-size: 0.7rem;
  3415. font-style: normal;
  3416. font-weight: 700;
  3417. }
  3418. }
  3419. .card--cont{
  3420. display: flex;
  3421. align-items: center;
  3422. .ico{
  3423. width: 1.25rem;
  3424. height: 1.25rem;
  3425. background-position: center;
  3426. background-size: cover;
  3427. margin-right: 0.75rem;
  3428. background-repeat: no-repeat;
  3429. }
  3430. p{
  3431. color: #222;
  3432. font-size: 0.7rem;
  3433. font-weight: 400;
  3434. }
  3435. span{
  3436. margin-left: auto;
  3437. color: #E1473D;
  3438. font-size: 1.12rem;
  3439. font-weight: 700;
  3440. }
  3441. }
  3442. &.discon{
  3443. border: 1px solid #F4A19C;
  3444. background: #FFF4F3;
  3445. .card--cont{
  3446. .ico{
  3447. background-image: url(../img/ico_link.svg);
  3448. }
  3449. }
  3450. }
  3451. }
  3452. .swiper{
  3453. .swiper-wrapper{
  3454. .equip--card--wrap{
  3455. display: flex;
  3456. flex-direction: column;
  3457. gap: 0.5rem;
  3458. .equip--card{
  3459. border-radius: 0.625rem;
  3460. position: relative;
  3461. border: 1px solid #EFEFEF;
  3462. /*height: 4rem;*/
  3463. // height: calc( (50vh / 4.8));
  3464. display: flex;
  3465. align-items: center;
  3466. width: 100%;
  3467. padding: 0 1.5rem;
  3468. &.critical{
  3469. border: 1px solid #F4A19C;
  3470. background-color: #FFF4F3
  3471. }
  3472. &.major{
  3473. border: 1px solid #FFD3AC;
  3474. background-color: #FFF6EE;
  3475. }
  3476. &.minor{
  3477. border: 1px solid #FFE6A5;
  3478. background-color: #FFF7E2;
  3479. }
  3480. &.normal{
  3481. border: 1px solid #E3E3E3;
  3482. background-color: #ffffff;
  3483. }
  3484. // &:hover{
  3485. // &::after{
  3486. // background-color: rgba(67, 141, 255, 0.20)!important;
  3487. // content: '';
  3488. // width: 100%;
  3489. // height: 100%;
  3490. // border-radius: 0.625rem;
  3491. // position: absolute;
  3492. // top: 0;
  3493. // left: 0;
  3494. // }
  3495. // }
  3496. &.discon{
  3497. position: relative;
  3498. &::after{
  3499. content:'';
  3500. width: 100%;
  3501. height: 100%;
  3502. background-color: rgba(255, 0, 0, 0.50);
  3503. border-radius: 0.625rem;
  3504. position: absolute;
  3505. top: 0;
  3506. left: 0;
  3507. background-image: url(../img/ico_wifi.svg);
  3508. background-size: 2.5rem 2.5rem;
  3509. background-position: center;
  3510. }
  3511. }
  3512. .equip--name{
  3513. color: #222;
  3514. font-size: 0.75rem;
  3515. font-style: normal;
  3516. font-weight: 700;
  3517. width: 7%;
  3518. margin-right: 1.5rem;
  3519. }
  3520. .equip--st{
  3521. display: flex;
  3522. flex-wrap: wrap;
  3523. width: 93%;
  3524. row-gap: 1rem;
  3525. column-gap: 1.88rem;
  3526. > li{
  3527. width: calc(50% - 1rem);
  3528. display: flex;
  3529. align-items: center;
  3530. .circle{
  3531. width: 0.5625rem;
  3532. height: 0.5625rem;
  3533. border-radius: 50%;
  3534. margin-right: 0.62rem;
  3535. background-color: #55E074;
  3536. &.critical{
  3537. background-color: #FF0000;
  3538. }
  3539. &.major{
  3540. background-color: #C96103;
  3541. }
  3542. &.minor{
  3543. background-color: #DDA405;
  3544. }
  3545. &.warning{
  3546. background-color: #D1B568;
  3547. }
  3548. &.normal{
  3549. background-color: #2D8CFA;
  3550. }
  3551. }
  3552. > p{
  3553. color: #222;
  3554. font-size: 0.55rem;
  3555. font-weight: 500;
  3556. }
  3557. span{
  3558. color: #222;
  3559. font-size: 0.55rem;
  3560. font-weight: 500;
  3561. margin-left: auto;
  3562. &.active{
  3563. font-weight: 700;
  3564. }
  3565. }
  3566. }
  3567. }
  3568. }
  3569. }
  3570. .tenant--card--wrap{
  3571. display: flex;
  3572. flex-direction: column;
  3573. gap: 0.5rem;
  3574. .tenant--card{
  3575. border-radius: 0.625rem;
  3576. border: 1px solid #EFEFEF;
  3577. background: #F8F8F8;
  3578. padding: 0.6rem 1rem;
  3579. .tenant--name{
  3580. display: flex;
  3581. justify-content: space-between;
  3582. margin-bottom: 0.25rem;
  3583. p{
  3584. color: #222;
  3585. font-size: 0.7rem;
  3586. line-height: 0.8125rem;
  3587. font-weight: 500;
  3588. letter-spacing: -0.00813rem;
  3589. }
  3590. .ico{
  3591. width: 0.875rem;
  3592. height: 0.875rem;
  3593. background-image: url(../img/ico_pin_off.svg);
  3594. background-repeat: no-repeat;
  3595. background-size: cover;
  3596. cursor: pointer;
  3597. &.active{
  3598. background-image: url(../img/ico_pin_on.svg);
  3599. }
  3600. }
  3601. }
  3602. .tenant--per--wrap{
  3603. display: flex;
  3604. gap: 0.94rem;
  3605. justify-content: space-between;
  3606. .tenant--per--num{
  3607. span{
  3608. &:nth-child(1){
  3609. color: #438DFF;
  3610. font-size: 1rem;
  3611. font-weight: 900;
  3612. letter-spacing: -0.01125rem;
  3613. margin-right: 0.2rem;
  3614. }
  3615. &:nth-child(2){
  3616. color: #8C8C8C;
  3617. font-size: 0.7rem;
  3618. font-weight: 500;
  3619. letter-spacing: -0.0075rem;
  3620. }
  3621. }
  3622. }
  3623. .tenant--per--bar{
  3624. width: 100%;
  3625. position: relative;
  3626. .bg--bar{
  3627. position: absolute;
  3628. bottom: 0;
  3629. width: 100%;
  3630. background-color: #EAEAEA;
  3631. border-radius: 6.25rem;
  3632. height: 0.75rem;
  3633. .fill--bar{
  3634. height: 0.75rem;
  3635. line-height: 0.75rem;
  3636. background: #438DFF;
  3637. border-radius: 6.25rem;
  3638. color: #FFF;
  3639. text-align: center;
  3640. font-size: 0.625rem;
  3641. font-weight: 700;
  3642. letter-spacing: -0.00625rem;
  3643. }
  3644. }
  3645. }
  3646. }
  3647. &.discon{
  3648. .tenant--name{
  3649. p{
  3650. color: rgba(34, 34, 34, 0.3);
  3651. &::after{
  3652. content: '';
  3653. background-image: url(../img/ico_ban.svg);
  3654. width: 0.875rem;
  3655. height: 0.875rem;
  3656. background-size: cover;
  3657. position: absolute;
  3658. margin-left: 0.3rem;
  3659. }
  3660. }
  3661. }
  3662. }
  3663. &.critical{
  3664. .tenant--per--wrap{
  3665. .tenant--per--num{
  3666. span{
  3667. &:first-child{
  3668. color: #f00;
  3669. }
  3670. }
  3671. }
  3672. .tenant--per--bar{
  3673. .bg--bar{
  3674. .fill--bar{
  3675. background-color: #f00;
  3676. }
  3677. }
  3678. }
  3679. }
  3680. }
  3681. &.major{
  3682. .tenant--per--wrap{
  3683. .tenant--per--num{
  3684. span{
  3685. &:first-child{
  3686. color: #C96103;
  3687. }
  3688. }
  3689. }
  3690. .tenant--per--bar{
  3691. .bg--bar{
  3692. .fill--bar{
  3693. background-color: #C96103;
  3694. }
  3695. }
  3696. }
  3697. }
  3698. }
  3699. &.minor{
  3700. .tenant--per--wrap{
  3701. .tenant--per--num{
  3702. span{
  3703. &:first-child{
  3704. color: #DDA405;
  3705. }
  3706. }
  3707. }
  3708. .tenant--per--bar{
  3709. .bg--bar{
  3710. .fill--bar{
  3711. background-color: #DDA405;
  3712. }
  3713. }
  3714. }
  3715. }
  3716. }
  3717. &.normal{
  3718. .tenant--per--wrap{
  3719. .tenant--per--num{
  3720. span{
  3721. &:first-child{
  3722. color: #2D8CFA;
  3723. }
  3724. }
  3725. }
  3726. .tenant--per--bar{
  3727. .bg--bar{
  3728. .fill--bar{
  3729. background-color: #2D8CFA;
  3730. }
  3731. }
  3732. }
  3733. }
  3734. }
  3735. }
  3736. }
  3737. }
  3738. .swiper-pagination{
  3739. position: static;
  3740. width: auto;
  3741. margin-top: 0.75rem;
  3742. .swiper-pagination-bullet{
  3743. margin-left: 0;
  3744. margin-right: 0.63rem;
  3745. width: 0.75rem;
  3746. height: 0.75rem;
  3747. background-color: #E9E9E9;
  3748. opacity: 1;
  3749. &.swiper-pagination-bullet-active{
  3750. background-color: #6F8AA6;
  3751. }
  3752. &:last-child{
  3753. margin-right: 0;
  3754. }
  3755. }
  3756. }
  3757. }
  3758. &.swiper--view--2{
  3759. .swiper{
  3760. .swiper-wrapper{
  3761. .swiper-slide{
  3762. display: flex;
  3763. gap: 0.5rem;
  3764. .equip--card--wrap{
  3765. width: 50%;
  3766. .equip--card{
  3767. padding: 0.5rem 0.94rem;
  3768. align-items: flex-start;
  3769. justify-content: space-between;
  3770. .equip--name{
  3771. font-size: 0.7rem;
  3772. font-style: normal;
  3773. font-weight: 700;
  3774. width: 25%;
  3775. word-break: keep-all;
  3776. margin-right: 0.5rem;
  3777. }
  3778. .equip--st{
  3779. display: flex;
  3780. flex-direction: column;
  3781. row-gap: 0.5rem;
  3782. width: calc(75% - 0.5rem);
  3783. > li{
  3784. width: 100%;
  3785. display: flex;
  3786. align-items: center;
  3787. .circle{
  3788. width: 0.375rem;
  3789. height: 0.375rem;
  3790. }
  3791. > p{
  3792. font-size: 0.6rem;
  3793. }
  3794. span{
  3795. font-size: 0.6rem;
  3796. }
  3797. }
  3798. }
  3799. }
  3800. }
  3801. }
  3802. .tenant--card--wrap{
  3803. display: flex;
  3804. flex-direction: column;
  3805. gap: 0.62rem;
  3806. .tenant--card{
  3807. border-radius: 0.625rem;
  3808. border: 1px solid #EFEFEF;
  3809. background: #F8F8F8;
  3810. padding: 0.94rem 1.25rem;
  3811. .tenant--name{
  3812. display: flex;
  3813. justify-content: space-between;
  3814. margin-bottom: 0.62rem;
  3815. p{
  3816. color: #222;
  3817. font-size: 0.8125rem;
  3818. font-weight: 500;
  3819. letter-spacing: -0.00813rem;
  3820. }
  3821. .ico{
  3822. width: 0.875rem;
  3823. height: 0.875rem;
  3824. background-image: url(../img/ico_pin_off.svg);
  3825. background-repeat: no-repeat;
  3826. background-size: cover;
  3827. cursor: pointer;
  3828. &.active{
  3829. background-image: url(../img/ico_pin_on.svg);
  3830. }
  3831. }
  3832. }
  3833. .tenant--per--wrap{
  3834. display: flex;
  3835. gap: 0.94rem;
  3836. justify-content: space-between;
  3837. .tenant--per--num{
  3838. span{
  3839. &:nth-child(1){
  3840. color: #438DFF;
  3841. font-size: 1.125rem;
  3842. font-weight: 900;
  3843. letter-spacing: -0.01125rem;
  3844. margin-right: 0.2rem;
  3845. }
  3846. &:nth-child(2){
  3847. color: #8C8C8C;
  3848. font-size: 0.75rem;
  3849. font-weight: 500;
  3850. letter-spacing: -0.0075rem;
  3851. }
  3852. }
  3853. }
  3854. .tenant--per--bar{
  3855. width: 100%;
  3856. position: relative;
  3857. .bg--bar{
  3858. position: absolute;
  3859. bottom: 0;
  3860. width: 100%;
  3861. background-color: #EAEAEA;
  3862. border-radius: 6.25rem;
  3863. height: 0.75rem;
  3864. .fill--bar{
  3865. height: 0.75rem;
  3866. line-height: 0.75rem;
  3867. background: #438DFF;
  3868. border-radius: 6.25rem;
  3869. color: #FFF;
  3870. text-align: center;
  3871. font-size: 0.625rem;
  3872. font-weight: 700;
  3873. letter-spacing: -0.00625rem;
  3874. }
  3875. }
  3876. }
  3877. }
  3878. &.warning{
  3879. .tenant--per--wrap{
  3880. .tenant--per--num{
  3881. span{
  3882. &:first-child{
  3883. color: #E1473D;
  3884. }
  3885. }
  3886. }
  3887. .tenant--per--bar{
  3888. .bg--bar{
  3889. .fill--bar{
  3890. background-color: #e1473d;
  3891. }
  3892. }
  3893. }
  3894. }
  3895. }
  3896. }
  3897. }
  3898. }
  3899. .swiper-pagination{
  3900. position: static;
  3901. width: auto;
  3902. margin-top: 0.75rem;
  3903. .swiper-pagination-bullet{
  3904. margin-left: 0;
  3905. margin-right: 0.63rem;
  3906. width: 0.75rem;
  3907. height: 0.75rem;
  3908. background-color: #E9E9E9;
  3909. opacity: 1;
  3910. &.swiper-pagination-bullet-active{
  3911. background-color: #6F8AA6;
  3912. }
  3913. &:last-child{
  3914. margin-right: 0;
  3915. }
  3916. }
  3917. }
  3918. }
  3919. }
  3920. }
  3921. }
  3922. }
  3923. &.type2{
  3924. .core--component--wrap{
  3925. .inner--header--wrap{
  3926. &.mt--15rem{
  3927. margin-top: 1.56rem;
  3928. }
  3929. .inner--component--title{
  3930. &.none--after{
  3931. &::after{
  3932. display: none;
  3933. }
  3934. }
  3935. }
  3936. .pagenation--wrapper{
  3937. .search--box{
  3938. display: flex;
  3939. padding-left: 1.25rem;
  3940. position: relative;
  3941. gap: 0.63rem;
  3942. &::before{
  3943. content: '';
  3944. width: 0.0625rem;
  3945. height: 1.125rem;
  3946. position: absolute;
  3947. top: 50%;
  3948. transform: translateY(-50%);
  3949. left: 0;
  3950. background-color: #E0E0E0;
  3951. }
  3952. .custom-btn{
  3953. &.sort-btn{
  3954. width: 2.25rem;
  3955. height: 2.25rem;
  3956. min-width: 2.25rem;
  3957. border-radius: 0.3125rem;
  3958. border: 1px solid #D1D1D1;
  3959. background-color: #FFF;
  3960. padding: 0;
  3961. background-size: 0.875rem 0.875rem;
  3962. background-image: url(../img/ico_sort.svg);
  3963. background-repeat: no-repeat;
  3964. background-position: center;
  3965. }
  3966. }
  3967. .sort--atv{
  3968. position: absolute;
  3969. right: 0;
  3970. background-color: #fff;
  3971. border-radius: 0.5rem;
  3972. box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
  3973. padding: 1.25rem 1.38rem;
  3974. z-index: 2;
  3975. top: 2.5rem;
  3976. ul{
  3977. display: flex;
  3978. flex-direction: column;
  3979. gap: 0.94rem;
  3980. li{
  3981. color: #000;
  3982. font-size: 0.8125rem;
  3983. font-style: normal;
  3984. font-weight: 400;
  3985. cursor: pointer;
  3986. &.atv{
  3987. font-weight: 700;
  3988. }
  3989. }
  3990. }
  3991. }
  3992. }
  3993. }
  3994. }
  3995. .inner--content{
  3996. padding-top: 1rem;
  3997. .ran--card{
  3998. display: flex;
  3999. gap: 0.94rem;
  4000. flex-wrap: wrap;
  4001. >li{
  4002. border-radius: 0.625rem;
  4003. border: 1px solid #EFEFEF;
  4004. background: #F8F8F8;
  4005. width: calc(100% / 9 - 0.84rem);
  4006. padding: 1rem;
  4007. height: 7rem;
  4008. &:hover{
  4009. border: 1px solid #b4d1ff;
  4010. }
  4011. .ran--title{
  4012. display: flex;
  4013. justify-content: space-between;
  4014. align-items: center;
  4015. margin-bottom: 0.5rem;
  4016. .ran--area{
  4017. color: #222;
  4018. font-size: 0.8rem;
  4019. font-weight: 700;
  4020. }
  4021. .more--btn{
  4022. width:0.875rem;
  4023. height:0.875rem;
  4024. min-width: 0.875rem;
  4025. padding: 0;
  4026. background: url(../img/ico_ran_arrow_gray.svg) no-repeat center;
  4027. background-size: cover;
  4028. }
  4029. }
  4030. .ran--stat{
  4031. display: flex;
  4032. flex-direction: column;
  4033. gap: 0.25rem;
  4034. p{
  4035. display: flex;
  4036. justify-content: space-between;
  4037. span{
  4038. color: #222;
  4039. font-size: 0.7rem;
  4040. font-weight: 500;
  4041. &:nth-child(2){
  4042. font-weight: 700;
  4043. color: #111111;
  4044. }
  4045. }
  4046. }
  4047. }
  4048. &.ran--blue{
  4049. border: 1px solid #1E76FF;
  4050. background: #438DFF;
  4051. .ran--title{
  4052. span{
  4053. color: #ffffff;
  4054. }
  4055. .more--btn{
  4056. background-image: url(../img/ico_ran_arrow_white.svg);
  4057. }
  4058. }
  4059. .ran--stat{
  4060. p{
  4061. span{
  4062. color: #ffffff;
  4063. &.color--yel{
  4064. color: #FAFF00;
  4065. }
  4066. }
  4067. }
  4068. }
  4069. }
  4070. &.ran--red{
  4071. border: 1px solid #BB251B;
  4072. background: #E1473D;
  4073. .ran--title{
  4074. span{
  4075. color: #ffffff;
  4076. }
  4077. .more--btn{
  4078. background-image: url(../img/ico_ran_arrow_white.svg);
  4079. }
  4080. }
  4081. .ran--stat{
  4082. p{
  4083. span{
  4084. color: #ffffff;
  4085. &.color--yel{
  4086. color: #FAFF00;
  4087. }
  4088. }
  4089. }
  4090. }
  4091. }
  4092. }
  4093. }
  4094. .core--card{
  4095. row-gap: 0.5rem;
  4096. > li{
  4097. .card--header{
  4098. h2{
  4099. font-size: 0.8rem;
  4100. }
  4101. }
  4102. }
  4103. }
  4104. }
  4105. &.small{
  4106. .inner--content{
  4107. .equip--card--wrap{
  4108. height: calc(100% - 1.6rem);
  4109. }
  4110. }
  4111. }
  4112. }
  4113. .user--list--wrap{
  4114. height: 100%;
  4115. .current--value{
  4116. right: -4rem;
  4117. width: auto;
  4118. }
  4119. }
  4120. .user--list--contents{
  4121. height: 100%;
  4122. .tbl-wrapper{
  4123. box-shadow: none;
  4124. .user--list--pin{
  4125. color: transparent;
  4126. background-image: url(../img/ico_pin_on.svg);
  4127. width: 1rem;
  4128. height: 1rem;
  4129. background-size: cover;
  4130. display: inline-block;
  4131. line-height: 1rem;
  4132. background-position: center;
  4133. }
  4134. .none--pin{
  4135. color: #444444;
  4136. font-size: 0.875rem;
  4137. font-weight: 400;
  4138. }
  4139. .user--list--ban{
  4140. color: rgba(34, 34, 34, 0.3);
  4141. &::after{
  4142. content: '';
  4143. width: 0.875rem;
  4144. height: 0.875rem;
  4145. background-image: url(../img/ico_ban.svg);
  4146. display: inline-block;
  4147. background-size: cover;
  4148. margin-left: 0.5rem;
  4149. }
  4150. }
  4151. .user--list--dis{
  4152. color: rgba(34, 34, 34, 0.3);
  4153. }
  4154. .user--list--critical{
  4155. &::before{
  4156. content: '';
  4157. display: inline-block;
  4158. margin-right: 0.62rem;
  4159. border-radius: 50%;
  4160. width: 0.75rem;
  4161. height: 0.75rem;
  4162. background-color: #f00;
  4163. }
  4164. }
  4165. .user--list--major{
  4166. &::before{
  4167. content: '';
  4168. display: inline-block;
  4169. margin-right: 0.62rem;
  4170. border-radius: 50%;
  4171. width: 0.75rem;
  4172. height: 0.75rem;
  4173. background-color: #C96103;
  4174. }
  4175. }
  4176. .user--list--minor{
  4177. &::before{
  4178. content: '';
  4179. display: inline-block;
  4180. margin-right: 0.62rem;
  4181. border-radius: 50%;
  4182. width: 0.75rem;
  4183. height: 0.75rem;
  4184. background-color: #DDA405;
  4185. }
  4186. }
  4187. .user--list--normal{
  4188. &::before{
  4189. content: '';
  4190. display: inline-block;
  4191. margin-right: 0.62rem;
  4192. border-radius: 50%;
  4193. width: 0.75rem;
  4194. height: 0.75rem;
  4195. background-color: #2D8CFA;
  4196. }
  4197. }
  4198. }
  4199. }
  4200. .user--list--bar--graph{
  4201. height: 100%;
  4202. padding:1.25rem;
  4203. .inner--header--wrap{
  4204. display: flex;
  4205. align-items: center;
  4206. justify-content: space-between;
  4207. .current--date{
  4208. color: #8E8E8E;
  4209. font-size: 0.8125rem;
  4210. font-weight: 400;
  4211. }
  4212. .pagenation--wrapper{
  4213. display: flex;
  4214. align-items: center;
  4215. gap:1.25rem;
  4216. .total--wrapper{
  4217. color: #222;
  4218. font-size: 0.8125rem;
  4219. font-weight: 400;
  4220. .total--count{
  4221. color: #438DFF;
  4222. font-size: 0.8125rem;
  4223. font-weight: 700;
  4224. }
  4225. }
  4226. .pager--btn--wrap{
  4227. display: flex;
  4228. align-items: center;
  4229. justify-content: center;
  4230. gap:0.94rem;
  4231. .page--numb{
  4232. height:1.625rem;
  4233. line-height: 1.625rem;;
  4234. display: flex;
  4235. align-items: center;
  4236. gap:0.1rem;
  4237. .current{
  4238. color: #333;
  4239. font-size: 0.8125rem;
  4240. font-weight: 700;
  4241. }
  4242. color: #666;
  4243. font-size: 0.8125rem;
  4244. font-weight: 400;
  4245. }
  4246. .page--btn{
  4247. border-radius: 0.5rem;
  4248. border: 1px solid #DDD!important;
  4249. background: #FFF;
  4250. width:1.625rem!important;
  4251. min-width:1.635rem!important;
  4252. height:1.625rem!important;
  4253. padding:0px!important;
  4254. &.prev--btn{
  4255. background:url(../img/ic_chv.svg) no-repeat center;
  4256. }
  4257. &.next--btn{
  4258. background:url(../img/ic_chv.svg) no-repeat center;
  4259. transform: rotate(180deg);
  4260. }
  4261. }
  4262. }
  4263. .search--box{
  4264. display: flex;
  4265. padding-left: 1.25rem;
  4266. position: relative;
  4267. gap: 0.63rem;
  4268. &::before{
  4269. content: '';
  4270. width: 0.0625rem;
  4271. height: 1.125rem;
  4272. position: absolute;
  4273. top: 50%;
  4274. transform: translateY(-50%);
  4275. left: 0;
  4276. background-color: #E0E0E0;
  4277. }
  4278. .custom-btn{
  4279. &.sort-btn{
  4280. width: 2.25rem;
  4281. height: 2.25rem;
  4282. min-width: 2.25rem;
  4283. border-radius: 0.3125rem;
  4284. border: 1px solid #D1D1D1;
  4285. background-color: #FFF;
  4286. padding: 0;
  4287. background-size: 0.875rem 0.875rem;
  4288. background-image: url(../img/ico_sort.svg);
  4289. background-repeat: no-repeat;
  4290. background-position: center;
  4291. }
  4292. }
  4293. }
  4294. }
  4295. }
  4296. .user--list--contents{
  4297. height:calc(100% - 1.25rem);
  4298. .data--list--content--modal{
  4299. width:100%;
  4300. display: flex;
  4301. align-items:flex-start;
  4302. justify-content: flex-start;
  4303. flex-wrap:wrap;
  4304. padding:0;
  4305. padding-bottom:1.25rem;
  4306. padding-top: 0.8rem;
  4307. gap:0.45rem;
  4308. > li{
  4309. border-radius: 0.625rem;
  4310. border: 1px solid #EFEFEF;
  4311. background: #F8F8F8;
  4312. width:calc( (100% - (0.94rem * 3)) / 4);
  4313. padding:0.52rem;
  4314. >h2{
  4315. display: flex;
  4316. align-items: center;
  4317. justify-content: space-between;
  4318. span{
  4319. color: #222;
  4320. font-size: 0.75rem;
  4321. font-weight: 500;
  4322. letter-spacing: -0.0075rem;
  4323. display: flex;
  4324. align-items: center;
  4325. justify-content: space-between;
  4326. gap:0.31rem;
  4327. .ico--disconnected{
  4328. display: inline-flex;
  4329. min-width: 0.875rem;
  4330. min-height:0.8975rem;
  4331. width: 0.875rem;
  4332. height: 0.875rem;
  4333. background:url(../img/ic_ds.svg) no-repeat center;
  4334. }
  4335. }
  4336. .icon--control{
  4337. .pin--lock{
  4338. width: 0.875rem;
  4339. min-width:0.875rem;
  4340. height: 0.875rem;
  4341. padding:0px;
  4342. background: url(../img/ic_tack_off.svg) no-repeat center;
  4343. &.on{
  4344. background: url(../img/ic_tack_on.svg) no-repeat center;
  4345. }
  4346. }
  4347. }
  4348. }
  4349. .data--column{
  4350. padding-top:.25rem;
  4351. display: flex;
  4352. align-items: center;
  4353. width:100%;
  4354. gap:1rem;
  4355. .data--bar--chart{
  4356. width:100%;
  4357. .data--bar--wrap{
  4358. width:100%;
  4359. height: 0.75rem;
  4360. border-radius: 6.25rem;
  4361. background: #EAEAEA;
  4362. .data--bar--current{
  4363. color: #FFF;
  4364. font-size: 0.625rem;
  4365. height:0.75rem;
  4366. line-height: 0.75rem;
  4367. font-weight: 700;
  4368. letter-spacing: -0.00625rem;
  4369. background:#55E074;
  4370. border-radius: 6.25rem;
  4371. padding:0rem 0.37rem;
  4372. }
  4373. }
  4374. }
  4375. .percent{
  4376. color: #43D263;
  4377. font-size: .9025rem;
  4378. font-weight: 900;
  4379. letter-spacing: -0.01125rem;
  4380. display: flex;
  4381. align-items: center;
  4382. gap:0.22rem;
  4383. .unit{
  4384. color: #8C8C8C;
  4385. font-size: 0.75rem;
  4386. font-weight: 500;
  4387. letter-spacing: -0.0075rem;
  4388. font-style: normal;
  4389. }
  4390. }
  4391. }
  4392. &.discon{
  4393. > h2{
  4394. > span{
  4395. color: rgba(34, 34, 34, 0.3);
  4396. &::after{
  4397. content: '';
  4398. width: 0.875rem;
  4399. height: 0.875rem;
  4400. background-image: url(../img/ico_ban.svg);
  4401. display: inline-block;
  4402. background-size: cover;
  4403. }
  4404. }
  4405. }
  4406. }
  4407. &.critical{
  4408. .data--column{
  4409. .percent{
  4410. color: #f00;
  4411. }
  4412. .data--bar--chart{
  4413. .data--bar--wrap{
  4414. .data--bar--current{
  4415. background: #f00;
  4416. }
  4417. }
  4418. }
  4419. }
  4420. }
  4421. &.major{
  4422. .data--column{
  4423. .percent{
  4424. color: #C96103;
  4425. }
  4426. .data--bar--chart{
  4427. .data--bar--wrap{
  4428. .data--bar--current{
  4429. background: #C96103;
  4430. }
  4431. }
  4432. }
  4433. }
  4434. }
  4435. &.minor{
  4436. .data--column{
  4437. .percent{
  4438. color: #DDA405;
  4439. }
  4440. .data--bar--chart{
  4441. .data--bar--wrap{
  4442. .data--bar--current{
  4443. background: #DDA405;
  4444. }
  4445. }
  4446. }
  4447. }
  4448. }
  4449. &.normal{
  4450. .data--column{
  4451. .percent{
  4452. color: #2D8CFA;
  4453. }
  4454. .data--bar--chart{
  4455. .data--bar--wrap{
  4456. .data--bar--current{
  4457. background: #2D8CFA;
  4458. }
  4459. }
  4460. }
  4461. }
  4462. }
  4463. }
  4464. }
  4465. }
  4466. &.small{
  4467. height:100%;
  4468. .data--list--content--modal{
  4469. height:100%;
  4470. > li{
  4471. width: calc((100% - (0.62rem * 3)) / 5);
  4472. height:calc( ( 100% - 2.5rem) / 4)!important;
  4473. }
  4474. }
  4475. }
  4476. }
  4477. .pagenation--wrapper{
  4478. display: flex;
  4479. align-items: center;
  4480. gap:1.25rem;
  4481. .btn--list--content{
  4482. position: relative;
  4483. display: flex;
  4484. align-items: center;
  4485. gap:0.62rem;
  4486. margin-left:0.625rem;
  4487. &:before{
  4488. content:'';
  4489. display: block;
  4490. width: 0.0625rem;
  4491. height: 1.125rem;
  4492. background: #E0E0E0;
  4493. position: absolute;
  4494. top:50%;
  4495. transform: translateY(-50%);
  4496. left:-0.94rem;
  4497. }
  4498. }
  4499. .shape--selector{
  4500. display: flex;
  4501. align-items: center;
  4502. gap:0.62rem;
  4503. position: relative;
  4504. margin-left:0.625rem;
  4505. &:before{
  4506. content:'';
  4507. display: block;
  4508. width: 0.0625rem;
  4509. height: 1.125rem;
  4510. background: #E0E0E0;
  4511. position: absolute;
  4512. top:50%;
  4513. transform: translateY(-50%);
  4514. left:-0.94rem;
  4515. }
  4516. .v-btn{
  4517. border-radius: 0.5rem;
  4518. border: 1px solid #DDD;
  4519. background: #FFF;
  4520. width: 1.625rem;
  4521. min-width:1.625rem!important;
  4522. height: 1.625rem;
  4523. padding:0px;
  4524. &.card--type--btn{
  4525. background:url(../img/ic_card_off.svg) no-repeat center;
  4526. &.on{
  4527. background:#6F8AA6 url(../img/ic_card_on.svg) no-repeat center;
  4528. }
  4529. }
  4530. &.list--type--btn{
  4531. background:url(../img/ic_list_off.svg) no-repeat center;
  4532. &.on{
  4533. background:#6F8AA6 url(../img/ic_list_on.svg) no-repeat center;
  4534. }
  4535. }
  4536. }
  4537. }
  4538. .all--view--btn{
  4539. display: flex;
  4540. height: 1.875rem;
  4541. padding: 0.625rem;
  4542. align-items: center;
  4543. padding:0px!important;
  4544. border-radius: 6.25rem;
  4545. background: #438DFF;
  4546. width:5.625rem;
  4547. *{
  4548. color: #FFF!important;
  4549. font-size: 0.8125rem;
  4550. font-weight: 500;
  4551. letter-spacing: -0.00813rem;
  4552. }
  4553. .icon{
  4554. width: 0.875rem;
  4555. height: 0.875rem;
  4556. background: url(../img/ic_allview.svg) no-repeat center;
  4557. margin-right:0.3125rem;
  4558. }
  4559. }
  4560. .issue--cont{
  4561. display: flex;
  4562. align-items: center;
  4563. justify-content: center;
  4564. color: #444;
  4565. font-size: 0.8125rem;
  4566. font-weight: 500;
  4567. letter-spacing: -0.00813rem;
  4568. border-radius: 6.25rem;
  4569. border: 1px solid #EAB2AE;
  4570. background: #FFF;
  4571. height: 1.875rem;
  4572. padding: 0.625rem;
  4573. gap: 0.3125rem;
  4574. .icon{
  4575. width:0.875rem;
  4576. height:0.875rem;
  4577. background: url(../img/ic_issue_flag.svg) no-repeat center;
  4578. }
  4579. .current--value{
  4580. color: #E1473D;
  4581. font-size: 0.8125rem;
  4582. font-weight: 700;
  4583. letter-spacing: -0.00813rem;
  4584. }
  4585. }
  4586. .total--wrapper{
  4587. color: #222;
  4588. font-size: 0.8125rem;
  4589. font-weight: 400;
  4590. .total--count{
  4591. color: #438DFF;
  4592. font-size: 0.8125rem;
  4593. font-weight: 700;
  4594. }
  4595. }
  4596. .pager--btn--wrap{
  4597. display: flex;
  4598. align-items: center;
  4599. justify-content: center;
  4600. gap:0.94rem;
  4601. .page--numb{
  4602. height:1.625rem;
  4603. line-height: 1.625rem;;
  4604. display: flex;
  4605. align-items: center;
  4606. gap:0.1rem;
  4607. .current{
  4608. color: #333;
  4609. font-size: 0.8125rem;
  4610. font-weight: 700;
  4611. }
  4612. color: #666;
  4613. font-size: 0.8125rem;
  4614. font-weight: 400;
  4615. }
  4616. .page--btn{
  4617. border-radius: 0.5rem;
  4618. border: 1px solid #DDD!important;
  4619. background: #FFF;
  4620. width:1.625rem!important;
  4621. min-width:1.635rem!important;
  4622. height:1.625rem!important;
  4623. padding:0px!important;
  4624. &.prev--btn{
  4625. background:url(../img/ic_chv.svg) no-repeat center;
  4626. }
  4627. &.next--btn{
  4628. background:url(../img/ic_chv.svg) no-repeat center;
  4629. transform: rotate(180deg);
  4630. }
  4631. }
  4632. }
  4633. }
  4634. }
  4635. &.type1{
  4636. .core--component--wrap{
  4637. .inner--header--wrap{
  4638. .pagenation--wrapper{
  4639. .search--box{
  4640. display: flex;
  4641. padding-left: 1.25rem;
  4642. position: relative;
  4643. gap: 0.63rem;
  4644. &::before{
  4645. content: '';
  4646. width: 0.0625rem;
  4647. height: 1.125rem;
  4648. position: absolute;
  4649. top: 50%;
  4650. transform: translateY(-50%);
  4651. left: 0;
  4652. background-color: #E0E0E0;
  4653. }
  4654. .custom-btn{
  4655. &.sort-btn{
  4656. width: 2.25rem;
  4657. height: 2.25rem;
  4658. min-width: 2.25rem;
  4659. border-radius: 0.3125rem;
  4660. border: 1px solid #D1D1D1;
  4661. background-color: #ffffff;
  4662. padding: 0;
  4663. background-size: 0.875rem 0.875rem;
  4664. background-image: url(../img/ico_sort.svg);
  4665. background-repeat: no-repeat;
  4666. background-position: center;
  4667. }
  4668. }
  4669. .sort--atv{
  4670. position: absolute;
  4671. right: 0;
  4672. background-color: #fff;
  4673. border-radius: 0.5rem;
  4674. box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
  4675. padding: 1.25rem 1.38rem;
  4676. z-index: 2;
  4677. top: 2.5rem;
  4678. ul{
  4679. display: flex;
  4680. flex-direction: column;
  4681. gap: 0.94rem;
  4682. li{
  4683. color: #000;
  4684. font-size: 0.8125rem;
  4685. font-style: normal;
  4686. font-weight: 400;
  4687. cursor: pointer;
  4688. &.atv{
  4689. font-weight: 700;
  4690. }
  4691. }
  4692. }
  4693. }
  4694. }
  4695. }
  4696. }
  4697. .inner--content{
  4698. padding-top: 0.8rem;
  4699. height: 100%;
  4700. .core--card{
  4701. > li{}
  4702. }
  4703. }
  4704. &.small{
  4705. .inner--content{
  4706. .equip--card--wrap{
  4707. .equip--card{
  4708. &.critical{
  4709. border: 1px solid #F4A19C;
  4710. background-color: #FFF4F3
  4711. }
  4712. &.major{
  4713. border: 1px solid #FFD3AC;
  4714. background-color: #FFF6EE;
  4715. }
  4716. &.minor{
  4717. border: 1px solid #FFE6A5;
  4718. background-color: #FFF7E2;
  4719. }
  4720. &.normal{
  4721. border: 1px solid #E3E3E3;
  4722. background-color: #ffffff;
  4723. }
  4724. // &:hover{
  4725. // &::after{
  4726. // background-color: rgba(67, 141, 255, 0.20)!important;
  4727. // content: '';
  4728. // width: 100%;
  4729. // height: 100%;
  4730. // border-radius: 0.625rem;
  4731. // position: absolute;
  4732. // top: 0;
  4733. // left: 0;
  4734. // }
  4735. // }
  4736. &.discon{
  4737. &::after{
  4738. content:'';
  4739. width: 100%;
  4740. height: 100%;
  4741. background-color: rgba(255, 0, 0, 0.50);
  4742. border-radius: 0.625rem;
  4743. position: absolute;
  4744. top: 0;
  4745. left: 0;
  4746. background-image: url(../img/ico_wifi.svg);
  4747. background-size: 2.5rem 2.5rem;
  4748. background-position: center;
  4749. }
  4750. }
  4751. .equip--st{
  4752. .circle{
  4753. &.critical{
  4754. background-color: #FF0000;
  4755. }
  4756. &.major{
  4757. background-color: #C96103;
  4758. }
  4759. &.minor{
  4760. background-color: #DDA405;
  4761. }
  4762. &.warning{
  4763. background-color: #D1B568;
  4764. }
  4765. &.normal{
  4766. background-color: #2D8CFA;
  4767. }
  4768. }
  4769. }
  4770. }
  4771. }
  4772. }
  4773. }
  4774. }
  4775. .user--list--wrap{
  4776. height: 100%;
  4777. .current--value{
  4778. right: -4rem;
  4779. width: auto;
  4780. }
  4781. }
  4782. .user--list--bar--graph{
  4783. height: 100%;
  4784. }
  4785. .user--list--contents{
  4786. height: 100%;
  4787. .tbl-wrapper{
  4788. box-shadow: none;
  4789. .user--list--pin{
  4790. color: transparent;
  4791. background-image: url(../img/ico_pin_on.svg);
  4792. width: 1rem;
  4793. height: 1rem;
  4794. background-size: cover;
  4795. display: inline-block;
  4796. line-height: 1rem;
  4797. background-position: center;
  4798. }
  4799. .none--pin{
  4800. color: #444444;
  4801. font-size: 0.875rem;
  4802. font-weight: 400;
  4803. }
  4804. .user--list--ban{
  4805. color: rgba(34, 34, 34, 0.3);
  4806. &::after{
  4807. content: '';
  4808. width: 0.875rem;
  4809. height: 0.875rem;
  4810. background-image: url(../img/ico_ban.svg);
  4811. display: inline-block;
  4812. background-size: cover;
  4813. margin-left: 0.5rem;
  4814. }
  4815. }
  4816. .user--list--dis{
  4817. color: rgba(34, 34, 34, 0.3);
  4818. }
  4819. .user--list--critical{
  4820. &::before{
  4821. content: '';
  4822. display: inline-block;
  4823. margin-right: 0.62rem;
  4824. border-radius: 50%;
  4825. width: 0.75rem;
  4826. height: 0.75rem;
  4827. background-color: #f00;
  4828. }
  4829. }
  4830. .user--list--major{
  4831. &::before{
  4832. content: '';
  4833. display: inline-block;
  4834. margin-right: 0.62rem;
  4835. border-radius: 50%;
  4836. width: 0.75rem;
  4837. height: 0.75rem;
  4838. background-color: #C96103;
  4839. }
  4840. }
  4841. .user--list--minor{
  4842. &::before{
  4843. content: '';
  4844. display: inline-block;
  4845. margin-right: 0.62rem;
  4846. border-radius: 50%;
  4847. width: 0.75rem;
  4848. height: 0.75rem;
  4849. background-color: #DDA405;
  4850. }
  4851. }
  4852. .user--list--normal{
  4853. &::before{
  4854. content: '';
  4855. display: inline-block;
  4856. margin-right: 0.62rem;
  4857. border-radius: 50%;
  4858. width: 0.75rem;
  4859. height: 0.75rem;
  4860. background-color: #2D8CFA;
  4861. }
  4862. }
  4863. }
  4864. }
  4865. .map--contents--wrap{
  4866. .header--wrapper{
  4867. .control--wrap{
  4868. .custom-btn{
  4869. background-color: #d4d4d4;
  4870. &.on{
  4871. background-color: #438DFF;
  4872. }
  4873. }
  4874. }
  4875. }
  4876. .inner--content--wrapper{
  4877. .map--sub--info{
  4878. .status--row{
  4879. > ul{
  4880. > li{
  4881. .icon{
  4882. background-size: cover;
  4883. }
  4884. }
  4885. }
  4886. }
  4887. .status--list{
  4888. width: 15.625rem;
  4889. .drp--header{
  4890. &.active{
  4891. background-color: #6f8aa6;
  4892. > div{
  4893. color: #ffffff;
  4894. span{
  4895. color: #ffffff;
  4896. }
  4897. .drop--btn{
  4898. background-image: url(../img/ic_drop_down_on.svg);
  4899. }
  4900. }
  4901. .drp--titles{
  4902. &::before{
  4903. background-image: url(../img/ic_tenant_small_white.svg);
  4904. }
  4905. }
  4906. }
  4907. .drp--titles{
  4908. &::before{
  4909. background-size: cover;
  4910. }
  4911. }
  4912. .drp--current--data{
  4913. .drop--btn{
  4914. background-size: cover;
  4915. }
  4916. }
  4917. }
  4918. .drp--content{
  4919. border-top: none;
  4920. &.active{
  4921. height: auto;
  4922. }
  4923. ul{
  4924. padding: 0 1.25rem 1.25rem;
  4925. max-height: 20vh;
  4926. background-color: #F7F7F7;
  4927. overflow-y: auto;
  4928. li{
  4929. padding: 0.88rem 0;
  4930. border-bottom: 1px solid #E4E4E4;
  4931. &:last-child{
  4932. border-bottom: none;
  4933. }
  4934. }
  4935. }
  4936. &.type1{
  4937. li{
  4938. color: #333;
  4939. font-size: 0.8125rem;
  4940. font-weight: 400;
  4941. span{
  4942. color: #111;
  4943. font-weight: 500;
  4944. margin-left: 0.1rem;
  4945. }
  4946. }
  4947. }
  4948. &.type2{
  4949. li{
  4950. display: flex;
  4951. justify-content: space-between;
  4952. align-items: center;
  4953. .li--l{
  4954. color: #333;
  4955. font-size: 0.8125rem;
  4956. width: 65%;
  4957. white-space: nowrap;
  4958. overflow: hidden;
  4959. text-overflow: ellipsis;
  4960. font-weight: 500;
  4961. }
  4962. .li--r{
  4963. display: flex;
  4964. align-items: center;
  4965. gap: 0.94rem;
  4966. span{
  4967. color: #333;
  4968. font-size: 0.8125rem;
  4969. font-weight: 400;
  4970. }
  4971. .alarm{
  4972. width: 0.875rem;
  4973. height: 0.875rem;
  4974. background-size: cover;
  4975. display: inline-block;
  4976. background-image: url(../img/ico_alarm_gray.svg);
  4977. &.red{
  4978. background-image: url(../img/ico_alarm_red.svg);
  4979. }
  4980. &.green{
  4981. background-image: url(../img/ico_alarm_green.svg);
  4982. }
  4983. &.blue{
  4984. background-image: url(../img/ico_alarm_blue.svg);
  4985. }
  4986. }
  4987. }
  4988. }
  4989. }
  4990. &.type3{
  4991. li{
  4992. display: flex;
  4993. justify-content: space-between;
  4994. align-items: center;
  4995. .li--l{
  4996. color: #333;
  4997. font-size: 0.8125rem;
  4998. font-weight: 500;
  4999. width: 65%;
  5000. white-space: nowrap;
  5001. overflow: hidden;
  5002. text-overflow: ellipsis;
  5003. }
  5004. .li--r{
  5005. color: #666;
  5006. font-size: 0.8125rem;
  5007. font-weight: 400;
  5008. }
  5009. }
  5010. }
  5011. }
  5012. }
  5013. }
  5014. }
  5015. .inner--content{
  5016. padding-top: 1.25rem;
  5017. .ran--card{
  5018. display: flex;
  5019. gap: 0.94rem;
  5020. flex-wrap: wrap;
  5021. >li{
  5022. display: flex;
  5023. flex-direction: column;
  5024. border-radius: 0.625rem;
  5025. border: 1px solid #EFEFEF;
  5026. background: #F8F8F8;
  5027. width: calc((100% - 2.82rem) / 4);
  5028. padding: 1.25rem;
  5029. height: calc((100vh - 23.3rem) / 5);
  5030. &:hover{
  5031. border: 1px solid #b4d1ff;
  5032. }
  5033. .ran--title{
  5034. display: flex;
  5035. justify-content: space-between;
  5036. align-items: center;
  5037. margin-bottom: 1rem;
  5038. .ran--area{
  5039. color: #222;
  5040. font-size: 0.8125rem;
  5041. font-weight: 700;
  5042. }
  5043. .more--btn{
  5044. width:0.875rem;
  5045. height:0.875rem;
  5046. min-width: 0.875rem;
  5047. padding: 0;
  5048. background: url(../img/ico_ran_arrow_gray.svg) no-repeat center;
  5049. background-size: cover;
  5050. }
  5051. }
  5052. .ran--stat{
  5053. display: flex;
  5054. flex-direction: column;
  5055. gap: 0.6rem;
  5056. p{
  5057. display: flex;
  5058. justify-content: space-between;
  5059. span{
  5060. color: #222;
  5061. font-size: 0.75rem;
  5062. font-weight: 500;
  5063. &:nth-child(2){
  5064. font-weight: 700;
  5065. color: #111111;
  5066. }
  5067. }
  5068. }
  5069. }
  5070. &.ran--blue{
  5071. border: 1px solid #1E76FF;
  5072. background: #438DFF;
  5073. .ran--title{
  5074. span{
  5075. color: #ffffff;
  5076. }
  5077. .more--btn{
  5078. background-image: url(../img/ico_ran_arrow_white.svg);
  5079. }
  5080. }
  5081. .ran--stat{
  5082. p{
  5083. span{
  5084. color: #ffffff;
  5085. &.color--yel{
  5086. color: #FAFF00;
  5087. }
  5088. }
  5089. }
  5090. }
  5091. }
  5092. &.ran--red{
  5093. border: 1px solid #BB251B;
  5094. background: #E1473D;
  5095. .ran--title{
  5096. span{
  5097. color: #ffffff;
  5098. }
  5099. .more--btn{
  5100. background-image: url(../img/ico_ran_arrow_white.svg);
  5101. }
  5102. }
  5103. .ran--stat{
  5104. p{
  5105. span{
  5106. color: #ffffff;
  5107. &.color--yel{
  5108. color: #FAFF00;
  5109. }
  5110. }
  5111. }
  5112. }
  5113. }
  5114. &.ran--all{
  5115. border: 1px solid #1E76FF;
  5116. background: #3f5984;
  5117. .ran--title{
  5118. span{
  5119. color: #ffffff;
  5120. }
  5121. .more--btn{
  5122. background-image: url(../img/ico_ran_arrow_white.svg);
  5123. }
  5124. }
  5125. .ran--stat{
  5126. p{
  5127. span{
  5128. color: #ffffff;
  5129. &.color--yel{
  5130. color: #FAFF00;
  5131. }
  5132. }
  5133. }
  5134. }
  5135. }
  5136. }
  5137. }
  5138. }
  5139. }
  5140. }
  5141. }
  5142. }
  5143. }
  5144. .menu-flex-wrap {
  5145. gap: 1.88rem;
  5146. .system-menu {
  5147. width: 21.25rem;
  5148. padding: 1.25rem;
  5149. height: calc(100vh - 15rem);
  5150. border-radius: 0.5rem;
  5151. border: none;
  5152. box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
  5153. background: #fff;
  5154. .system-menu-tit {
  5155. color: #111111;
  5156. font-size: 0.9375rem;
  5157. font-weight: 700;
  5158. line-height: 100%;
  5159. /* 0.9375rem */
  5160. letter-spacing: -0.01875rem;
  5161. background: #fff;
  5162. border-bottom: 1px solid #0B318B;
  5163. height: 2.8125rem;
  5164. padding: 0 1.12rem;
  5165. .ico {
  5166. margin-right: 0.62rem;
  5167. width: 0.875rem;
  5168. height: 0.875rem;
  5169. background-size: cover;
  5170. background-position: center;
  5171. background-repeat: no-repeat;
  5172. background-image: url(../img/ico_cate.svg);
  5173. }
  5174. }
  5175. .system-menu-in {
  5176. margin-top: 0;
  5177. padding: 0;
  5178. gap: 0;
  5179. .system-box {
  5180. .system-box-tit {
  5181. padding: 1.12rem;
  5182. font-size: 0.9375rem;
  5183. font-weight: 600 !important;
  5184. gap: 0.66rem;
  5185. border-bottom: 1px solid #EBEBEB;
  5186. color: #333333;
  5187. position: relative;
  5188. >button {
  5189. &:first-child {
  5190. background-image: none;
  5191. width: 0.4375rem;
  5192. height: 0.4375rem;
  5193. background-color: #9c9c9c;
  5194. border-radius: 50%;
  5195. }
  5196. &:nth-child(2) {
  5197. background-image: url(../img/ico_plus.svg);
  5198. width: 0.875rem;
  5199. height: 0.875rem;
  5200. position: absolute;
  5201. right: 1.12rem;
  5202. }
  5203. }
  5204. }
  5205. &.on {
  5206. .system-box-tit {
  5207. font-weight: 700 !important;
  5208. color: #0b318b;
  5209. >button {
  5210. &:first-child {
  5211. background-color: #0B318B;
  5212. }
  5213. &:nth-child(2) {
  5214. background-image: url(../img/ico_minus.svg);
  5215. }
  5216. }
  5217. }
  5218. }
  5219. .system-box-sub {
  5220. padding: 1.25rem 1.69rem;
  5221. background: #F8FAFF;
  5222. ul {
  5223. gap: 1.5625rem;
  5224. li {
  5225. gap: 0;
  5226. color: #000000;
  5227. font-size: 0.8125rem;
  5228. font-weight: 400;
  5229. letter-spacing: -0.01625rem;
  5230. line-height: 100%;
  5231. &::before {
  5232. display: none;
  5233. }
  5234. }
  5235. }
  5236. }
  5237. }
  5238. }
  5239. }
  5240. .menu-info {
  5241. height: calc(100vh - 15rem);
  5242. border: none;
  5243. border-radius: 0.5rem;
  5244. background-color: #fff;
  5245. box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
  5246. .info-tit {
  5247. height: 4.6875rem;
  5248. background-color: #fff;
  5249. padding: 0 1.88rem;
  5250. letter-spacing: -0.01875rem;
  5251. font-size: 0.9375rem;
  5252. color: #111111;
  5253. border-radius: 0.5rem 0.5rem 0 0;
  5254. border-bottom: 1px solid #e9e9e9;
  5255. }
  5256. .menu-info-view {
  5257. padding: 1.25rem;
  5258. margin-top: 0;
  5259. height: calc(100vh - 19.6875rem);
  5260. .info-tbl {
  5261. .form-style2 {
  5262. &.shadow--type {
  5263. padding: 1.25rem 1.25rem 0.94rem 1.25rem;
  5264. box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
  5265. border-radius: 0.5rem;
  5266. table {
  5267. tr {
  5268. th {
  5269. background-color: #fff;
  5270. padding: 1.13rem 0.62rem 1.13rem 0.62rem;
  5271. color: #444;
  5272. font-weight: 700;
  5273. font-size: 0.875rem;
  5274. border-right: none;
  5275. }
  5276. td {
  5277. color: #444444;
  5278. font-size: 0.875rem;
  5279. font-weight: 400;
  5280. line-height: 100%;
  5281. .input-wrap {
  5282. flex-direction: column;
  5283. gap: 1.25rem;
  5284. .custom-check {
  5285. &.v-input {
  5286. &.type2 {
  5287. .v-input__control {
  5288. .v-selection-control {
  5289. .v-label {
  5290. padding-left: 0.37rem;
  5291. color: #444444;
  5292. font-size: 0.875rem;
  5293. font-weight: 600;
  5294. }
  5295. .v-selection-control__wrapper {
  5296. .v-selection-control__input {
  5297. .v-icon {
  5298. background-size: cover;
  5299. }
  5300. }
  5301. }
  5302. }
  5303. }
  5304. }
  5305. }
  5306. }
  5307. }
  5308. }
  5309. &:last-child {
  5310. th {
  5311. border-bottom: none;
  5312. }
  5313. td {
  5314. border-bottom: none;
  5315. }
  5316. }
  5317. }
  5318. }
  5319. }
  5320. }
  5321. }
  5322. .no-data {
  5323. flex-direction: row;
  5324. gap: 0.63rem;
  5325. .ico {
  5326. background-image: url(../img/ico_no_data2.svg);
  5327. width: 1.25rem;
  5328. height: 1.25rem;
  5329. }
  5330. >p {
  5331. margin-top: 0;
  5332. color: #444444;
  5333. font-size: 0.875rem;
  5334. font-weight: 700;
  5335. }
  5336. }
  5337. }
  5338. }
  5339. }
  5340. }
  5341. .tbl-wrap {
  5342. .ag-theme-quartz {
  5343. &.ag--line--type {
  5344. .ag-root-wrapper {
  5345. .ag-header-group-cell {
  5346. .ag-header-cell-comp-wrapper {
  5347. justify-content: center;
  5348. font-size: 0.875rem;
  5349. color: #444444;
  5350. font-weight: 700;
  5351. }
  5352. }
  5353. .ag-header-row {
  5354. .ag-header-cell {
  5355. &:first-child {}
  5356. &:nth-child(2) {}
  5357. .ag-header-cell-resize {}
  5358. }
  5359. }
  5360. .lock-pinned {
  5361. background: #F2F7FF;
  5362. font-size: 0.875rem;
  5363. color: #444444;
  5364. font-weight: 700;
  5365. line-height: 2.55rem;
  5366. padding: 0 1.25rem;
  5367. }
  5368. }
  5369. }
  5370. .ag-root-wrapper {
  5371. .ag-root {
  5372. .ag-sticky-bottom {
  5373. width: 0 !important;
  5374. }
  5375. }
  5376. }
  5377. }
  5378. }
  5379. .custom-input{
  5380. &.v-text-field{
  5381. &.v-input--error{
  5382. .v-input__details{
  5383. padding-inline: 0;
  5384. padding-top: 0.63rem;
  5385. .v-messages{
  5386. .v-messages__message{
  5387. line-height: 100%;
  5388. color: #e50a0a;
  5389. font-size: 0.8125rem;
  5390. }
  5391. }
  5392. }
  5393. }
  5394. .v-input__control{
  5395. .v-field--error{
  5396. .v-field__field{
  5397. .v-field__input{
  5398. border: 1px solid #FF8C8C!important;
  5399. position: relative;
  5400. background-image: url(../img/ico_error.svg);
  5401. background-repeat: no-repeat;
  5402. background-size: 0.875rem 0.875rem;
  5403. background-position: right 0.75rem center;
  5404. }
  5405. }
  5406. }
  5407. }
  5408. }
  5409. }
  5410. // 로그인
  5411. .login-wrap{
  5412. .login--header{
  5413. position: fixed;
  5414. top: 0;
  5415. left: 0;
  5416. display: flex;
  5417. justify-content: space-between;
  5418. align-items: center;
  5419. padding: 1.25rem 1.88rem;
  5420. width: 100%;
  5421. background-color: #0B318B;
  5422. height: 4.75rem;
  5423. z-index: 100;
  5424. .login--header--l{
  5425. display: flex;
  5426. gap: 0.9375rem;
  5427. align-items: center;
  5428. .logo{
  5429. height: 2rem;
  5430. color:#fff;
  5431. }
  5432. p{
  5433. color: #ffffff;
  5434. font-size: 1.125rem;
  5435. font-weight: 700;
  5436. line-height: 100%;
  5437. }
  5438. }
  5439. .login--header--r{
  5440. .custom-select{
  5441. &.v-input{
  5442. .v-input__control{
  5443. .v-field {
  5444. border-radius: 0.375rem;
  5445. .v-field__field{
  5446. padding-left: 0.75rem;
  5447. }
  5448. }
  5449. }
  5450. }
  5451. }
  5452. &.dp--flex{
  5453. display: flex;
  5454. align-items: center;
  5455. .user-info {
  5456. display: flex;
  5457. position: relative;
  5458. .ico {
  5459. width: 1.625rem;
  5460. height: 1.625rem;
  5461. background: #fff;
  5462. border-radius: 100%;
  5463. color: #438DFF;
  5464. display: flex;
  5465. align-items: center;
  5466. justify-content: center;
  5467. font-weight: 700;
  5468. font-size: 1rem;
  5469. cursor: pointer;
  5470. }
  5471. .info-detail {
  5472. position: absolute;
  5473. top: 2.7rem;
  5474. left: 50%;
  5475. width: 11.88rem;
  5476. // height: 12.25rem;
  5477. padding: 1.25rem;
  5478. // background: url("../img/bg_tooltip4.svg") no-repeat center / 100%;
  5479. transform: translateX(-50%);
  5480. background: #FFF;
  5481. border:1px solid #ddd;
  5482. box-shadow:0px 4px 4px rgba(0, 0, 0, 0.20);
  5483. border-radius: 0.625rem;
  5484. &:after{
  5485. content: '';
  5486. display: block;
  5487. width: 0;
  5488. height: 0;
  5489. border-left: 0.40625rem solid transparent;
  5490. border-right: 0.40625rem solid transparent;
  5491. border-bottom: 0.6875rem solid #fff;
  5492. position: absolute;
  5493. top:-0.5875rem;
  5494. left:50%;
  5495. transform: translateX(-50%);
  5496. }
  5497. &:before{
  5498. content: '';
  5499. display: block;
  5500. width: 0;
  5501. height: 0;
  5502. border-left: 0.40625rem solid transparent;
  5503. border-right: 0.40625rem solid transparent;
  5504. border-bottom: 0.6875rem solid #ddd;
  5505. position: absolute;
  5506. top:-0.6875rem;
  5507. left:50%;
  5508. transform: translateX(-50%);
  5509. }
  5510. .custom--btn--wrap{
  5511. display: flex;
  5512. flex-direction: column;
  5513. gap:0.5rem;
  5514. }
  5515. p {
  5516. color: #111;
  5517. font-size: 0.94rem;
  5518. font-weight: 700;
  5519. margin-bottom: 0.94rem;
  5520. span {
  5521. font-weight: 600;
  5522. }
  5523. }
  5524. ul {
  5525. padding-bottom: 1.25rem;
  5526. margin-bottom: 0.94rem;
  5527. border-bottom: 0.06rem solid #e1e1e1;
  5528. display: flex;
  5529. flex-direction: column;
  5530. gap: 0.25rem;
  5531. li {
  5532. color: #444444;
  5533. font-size: 0.81rem;
  5534. font-weight: 400;
  5535. }
  5536. &.nw--btn--text--type{
  5537. gap:0.6rem;
  5538. border-bottom:0px;
  5539. }
  5540. }
  5541. .custom-btn.v-btn.v-btn--density-default {
  5542. border: 0.06rem solid #D0DDEA;
  5543. border-radius: 0.31rem;
  5544. width: 100%;
  5545. height: 2.5rem;
  5546. min-height: 2.5rem;
  5547. .v-btn__content {
  5548. color:#798592;
  5549. font-size: 0.75rem;
  5550. font-weight: 600;
  5551. letter-spacing: -0.01rem;
  5552. }
  5553. &:hover{
  5554. .v-btn__content {
  5555. color: #064F9E!important;
  5556. }
  5557. border: 0.06rem solid rgba(6, 79, 158, 0.5);
  5558. }
  5559. }
  5560. }
  5561. }
  5562. .user-name {
  5563. color: #fff;
  5564. font-size: 0.81rem;
  5565. padding: 0 0.815rem;
  5566. font-weight: 700;
  5567. cursor: pointer;
  5568. }
  5569. .btn-logout {
  5570. width: 2rem;
  5571. height: 2rem;
  5572. background: url("../img/ico_logout.svg") no-repeat center / 100%;
  5573. }
  5574. }
  5575. }
  5576. }
  5577. .login-box{
  5578. .login-l{
  5579. .login-l-center{
  5580. text-align: center;
  5581. .logo{
  5582. background: none;
  5583. font-size: 1.5625rem;
  5584. color: #0b318b;
  5585. font-weight: 700;
  5586. letter-spacing: -0.04688rem;
  5587. pointer-events: none;
  5588. line-height: 100%;
  5589. height: auto;
  5590. }
  5591. p{
  5592. color: #333;
  5593. text-align: center;
  5594. font-size: 0.875rem;
  5595. font-weight: 400;
  5596. line-height: 100%; /* 0.875rem */
  5597. letter-spacing: -0.00875rem;
  5598. pointer-events: none;
  5599. }
  5600. }
  5601. }
  5602. .login-r{
  5603. .login-input-wrap{
  5604. .txt-field-box{
  5605. &:first-of-type{
  5606. margin-bottom: 0.87rem;
  5607. }
  5608. .v-input{
  5609. &.custom-input{
  5610. &.v-text-field{
  5611. min-height: 2.25rem;
  5612. .v-input__control{
  5613. height: 2.25rem;
  5614. .v-field__field{
  5615. .v-field__input{
  5616. min-height: 2.25rem;
  5617. height: 2.25rem;
  5618. padding: 0 0.75rem;
  5619. }
  5620. }
  5621. }
  5622. }
  5623. }
  5624. }
  5625. &.error{
  5626. .v-input{
  5627. &.custom-input{
  5628. &.v-text-field{
  5629. .v-input__control{
  5630. .v-field--appended{
  5631. .v-field__append-inner{
  5632. right: 2.6rem;
  5633. }
  5634. }
  5635. }
  5636. }
  5637. }
  5638. }
  5639. .ico-eye{
  5640. right: 2.5rem;
  5641. }
  5642. }
  5643. .ico-eye{
  5644. position: absolute;
  5645. background-size: cover;
  5646. background-image: url(../img/ico_eye.svg);
  5647. width: 1.125rem;
  5648. height: 1.125rem;
  5649. right: 0.75rem;
  5650. top: 50%;
  5651. transform: translateY(-50%);
  5652. &.eye-off{
  5653. background-image: url(../img/ico_eye2.svg);
  5654. }
  5655. }
  5656. }
  5657. }
  5658. .login-radio{
  5659. margin-top: 1.87rem;
  5660. .custom-radio{
  5661. &.v-input{
  5662. .v-input__control{
  5663. .v-selection-control-group{
  5664. .v-radio{
  5665. margin-right: 1.56rem;
  5666. .v-label{
  5667. margin-left: 0.38rem;
  5668. font-weight: 500;
  5669. color: #444444;
  5670. font-size: 0.875rem;
  5671. }
  5672. .v-selection-control__wrapper{
  5673. .v-selection-control__input{
  5674. .v-icon{
  5675. border: 1px solid #c0c0c0;
  5676. width: 1rem;
  5677. height: 1rem;
  5678. &.mdi-radiobox-marked{
  5679. background-color: #438dff;
  5680. }
  5681. }
  5682. }
  5683. }
  5684. }
  5685. }
  5686. }
  5687. }
  5688. }
  5689. }
  5690. .login-otp{
  5691. margin-top: 1.87rem;
  5692. gap: 0.5rem;
  5693. .custom-input{
  5694. &.v-text-field{
  5695. min-height: 2.25rem;
  5696. .v-input__control{
  5697. height: 2.25rem;
  5698. .v-field__field{
  5699. .v-field__input{
  5700. min-height: 2.25rem;
  5701. height: 2.25rem;
  5702. padding: 0 0.75rem;
  5703. }
  5704. }
  5705. }
  5706. }
  5707. }
  5708. .btn-gray{
  5709. width: 6.875rem;
  5710. height: 2.25rem;
  5711. }
  5712. }
  5713. .login-chk{
  5714. margin: 1.88rem 0 0;
  5715. .custom-check{
  5716. &.v-input{
  5717. .v-input__control{
  5718. .v-selection-control{
  5719. .v-selection-control__wrapper{
  5720. .v-selection-control__input{
  5721. .v-icon{
  5722. background-size: cover;
  5723. }
  5724. }
  5725. }
  5726. .v-label{
  5727. padding-left: 0.38rem;
  5728. color: #444444;
  5729. font-size: 0.875rem;
  5730. font-weight: 500;
  5731. }
  5732. }
  5733. }
  5734. }
  5735. }
  5736. }
  5737. .login-find{
  5738. margin-top: 1.88rem;
  5739. padding-top: 1.88rem;
  5740. }
  5741. .login-btn-wrap {
  5742. .custom-btn {
  5743. &.v-btn {
  5744. &.v-btn--density-default {
  5745. &.btn-blue {
  5746. background-color: #0B318B;
  5747. border-radius: 0.5rem;
  5748. &:hover {
  5749. background-color: #4875DE !important;
  5750. box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.20);
  5751. }
  5752. .v-btn__content {
  5753. font-size: 0.9375rem !important;
  5754. font-weight: 700 !important;
  5755. letter-spacing: -0.02813rem !important;
  5756. }
  5757. &.v-btn--disabled {
  5758. background-color: #e0e0e0 !important;
  5759. .v-btn__content {
  5760. color: #8e8e8e !important;
  5761. }
  5762. }
  5763. }
  5764. }
  5765. }
  5766. }
  5767. }
  5768. .login-find{
  5769. > button{
  5770. &.color--blue{
  5771. color: #0b318b;
  5772. }
  5773. &.ml--auto{
  5774. &::after{
  5775. content: '';
  5776. width: 0.0625rem;
  5777. height: 0.875rem;
  5778. background-color: #e3e3e3;
  5779. margin-left: 0.94rem;
  5780. margin-right: 0.94rem;
  5781. }
  5782. }
  5783. }
  5784. }
  5785. }
  5786. }
  5787. .system--box{
  5788. display: flex;
  5789. align-items: center;
  5790. flex-direction: column;
  5791. .system--img{
  5792. width: 7.5rem;
  5793. height: 7.5rem;
  5794. background-image: url(../img/img_system.svg);
  5795. background-size: cover;
  5796. margin-bottom: 2.19rem;
  5797. }
  5798. > h2{
  5799. color: #111;
  5800. text-align: center;
  5801. font-size: 1.75rem;
  5802. font-weight: 500;
  5803. margin-bottom: 1.56rem;
  5804. }
  5805. > p{
  5806. text-align: center;
  5807. color: #333;
  5808. text-align: center;
  5809. font-size: 1rem;
  5810. font-weight: 400;
  5811. line-height: 1.7;
  5812. margin-bottom: 1.87rem;
  5813. }
  5814. > span{
  5815. color: #444;
  5816. text-align: center;
  5817. font-size: 0.9375rem;
  5818. font-weight: 400;
  5819. }
  5820. }
  5821. .login-footer{
  5822. height: 5.5rem;
  5823. display: flex;
  5824. justify-content: space-between;
  5825. padding: 1.56rem 1.88rem;
  5826. .login--footer--l{
  5827. display: flex;
  5828. color: rgba(51, 51, 51, 0.8);
  5829. flex-direction: column;
  5830. gap: 0.6rem;
  5831. p{
  5832. }
  5833. }
  5834. .login--footer--r{
  5835. display: flex;
  5836. gap: 3.75rem;
  5837. align-items: center;
  5838. .txt--btn{
  5839. > button{
  5840. color: #222;
  5841. font-size: 0.875rem;
  5842. font-weight: 400;
  5843. line-height: 100%; /* 0.875rem */
  5844. margin-left: 0.9rem;
  5845. &:first-child{
  5846. margin-left: 0;
  5847. &::after{
  5848. content: '';
  5849. width: 0.0625rem;
  5850. height: 0.875rem;
  5851. margin-left: 0.9rem;
  5852. vertical-align: -0.1rem;
  5853. background-color: #c5c5c5;
  5854. display: inline-block;
  5855. }
  5856. }
  5857. }
  5858. }
  5859. .logo--footer{
  5860. display: flex;
  5861. gap: 1.25rem;
  5862. align-items: center;
  5863. span{
  5864. font-size: 0;
  5865. display: inline-block;
  5866. background-repeat: no-repeat;
  5867. background-position: center;
  5868. background-size: contain;
  5869. &:first-child{
  5870. width: 8.125rem;
  5871. height: 0.9375rem;
  5872. background-image: url(../img/logo_sams_sds.svg);
  5873. }
  5874. &:nth-child(2){
  5875. width: 6.0625rem;
  5876. height: 2rem;
  5877. background-image: url(../img/logo_sams.svg);
  5878. }
  5879. }
  5880. }
  5881. }
  5882. }
  5883. }
  5884. // 로그인 팝업
  5885. .v-common-dialog-wrapper{
  5886. .v-common-dialog-content{
  5887. .find-pwd {
  5888. border-radius: 0.5rem;
  5889. background: #FFF;
  5890. box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
  5891. padding: 1.25rem;
  5892. p{
  5893. &.error-txt{
  5894. margin: 0 0 0.63rem 9.875rem!important;
  5895. }
  5896. }
  5897. .txt-field-box{
  5898. border-top: 1px solid #e0e0e0;
  5899. display: flex;
  5900. margin-bottom: 0;
  5901. &.error{
  5902. .ico{
  5903. right: 1rem;
  5904. }
  5905. }
  5906. > p{
  5907. width: 9.375rem;
  5908. padding: 1.13rem 0.62rem;
  5909. color: #444444;
  5910. font-size: 0.875rem;
  5911. font-weight: 700;
  5912. line-height: 1.4;
  5913. margin-bottom: 0;
  5914. .cir {
  5915. width: 0.3125rem;
  5916. height: 0.3125rem;
  5917. display: inline-block;
  5918. background-color: #ff4f60;
  5919. border-radius: 50%;
  5920. margin-left: 0.37rem;
  5921. vertical-align: 0.2rem;
  5922. }
  5923. }
  5924. > div{
  5925. width: 35.625rem;
  5926. padding: 0.625rem 0.5rem;
  5927. .custom-btn {
  5928. &.v-btn {
  5929. &.v-btn--density-default {
  5930. &.btn-password {
  5931. background: #6f8aa6;
  5932. height: 2.25rem;
  5933. width: 6.875rem;
  5934. }
  5935. &.btn-black {
  5936. background: #6f8aa6;
  5937. font-weight: 600 !important;
  5938. &.v-btn--disabled {
  5939. background-color: #e0e0e0 !important;
  5940. .v-btn__content {
  5941. color: #8e8e8e !important;
  5942. }
  5943. }
  5944. }
  5945. }
  5946. }
  5947. }
  5948. .custom-input{
  5949. &.v-text-field{
  5950. min-height: 2.25rem;
  5951. .v-input__control{
  5952. height: 2.25rem;
  5953. .v-field__field{
  5954. .v-field__input{
  5955. padding: 0 0.75rem;
  5956. min-height: 2.25rem;
  5957. height: 2.25rem;
  5958. &::placeholder {
  5959. color: #8e8e8e;
  5960. font-weight: 400;
  5961. }
  5962. }
  5963. }
  5964. }
  5965. }
  5966. &.v-text-field {
  5967. &.mini2 {
  5968. min-height: 2.25rem;
  5969. .v-input__control {
  5970. height: 2.25rem;
  5971. .v-field__field {
  5972. .v-field__input {
  5973. padding: 0 0.75rem;
  5974. color: #000000;
  5975. height: 2.25rem;
  5976. font-size: 0.875rem;
  5977. font-weight: 400;
  5978. min-height: 2.25rem;
  5979. &::placeholder {
  5980. color: #8e8e8e;
  5981. font-size: 0.875rem;
  5982. font-weight: 400;
  5983. }
  5984. }
  5985. }
  5986. }
  5987. }
  5988. }
  5989. }
  5990. }
  5991. }
  5992. .otp-box{
  5993. gap:0;
  5994. .txt-field-box{
  5995. width: 100%;
  5996. &.error{
  5997. .ico{
  5998. right: 8.5rem;
  5999. }
  6000. }
  6001. > div{
  6002. display: flex;
  6003. gap: 0.63rem;
  6004. }
  6005. }
  6006. }
  6007. }
  6008. }
  6009. }
  6010. .tab-style{
  6011. .tab-style-h{
  6012. button{
  6013. &::after{
  6014. background-size: cover!important;
  6015. }
  6016. .ico{
  6017. background-size: 0.75rem 0.75rem;
  6018. }
  6019. }
  6020. }
  6021. }
  6022. /**********************************************
  6023. | 2024-12-31 김민정 :
  6024. **********************************************/
  6025. .media--editor{
  6026. .caution{
  6027. color: #F00;
  6028. font-size: 16px;
  6029. display: inline-block;
  6030. margin-bottom: 10px;
  6031. }
  6032. .ql-snow{
  6033. .ql-editor{
  6034. p{
  6035. img{
  6036. max-width: 400px;
  6037. max-height: 400px;
  6038. }
  6039. }
  6040. }
  6041. }
  6042. }
  6043. // 재무관리 테이블
  6044. .table--wrap{
  6045. .bul{
  6046. color: #f00;
  6047. }
  6048. .table--t{
  6049. display: flex;
  6050. justify-content: space-between;
  6051. align-items: flex-end;
  6052. margin-bottom: 30px;
  6053. >span{
  6054. font-size: 18px;
  6055. }
  6056. }
  6057. table{
  6058. width: 100%;
  6059. border-top: 1px solid #3F3F3F;
  6060. .custom-input{
  6061. *{
  6062. text-align: center;
  6063. }
  6064. &.left{
  6065. *{
  6066. text-align: left;
  6067. }
  6068. }
  6069. }
  6070. th{
  6071. &.bg{
  6072. background-color: #f8f8f8;
  6073. }
  6074. &.le{
  6075. text-align: left;
  6076. padding: 30px;
  6077. }
  6078. vertical-align: middle;
  6079. height: 50px;
  6080. padding: 10px 30px;
  6081. color: #000000;
  6082. font-size: 18px;
  6083. font-weight: 700;
  6084. border-bottom: 1px solid #e2e2e2;
  6085. border-right: 1px solid #E2E2E2;
  6086. &.type2{
  6087. border-right: 1px solid #3F3F3F;
  6088. border-bottom: 1px solid #3f3f3f;
  6089. &.fz--16{
  6090. font-size: 16px;
  6091. }
  6092. }
  6093. &:last-child{
  6094. border-right: none;
  6095. }
  6096. }
  6097. td{
  6098. height: 50px;
  6099. padding: 10px 30px;
  6100. text-align: center;
  6101. color: #000000;
  6102. vertical-align: middle;
  6103. border-bottom: 1px solid #e2e2e2;
  6104. border-right: 1px solid #E2E2E2;
  6105. white-space: pre-line;
  6106. font-size: 18px;
  6107. font-weight: 400;
  6108. .dp--tp-wrap{
  6109. display: none;
  6110. }
  6111. .input--wrap{
  6112. display: flex;
  6113. align-items: center;
  6114. gap: 10px;
  6115. .text {
  6116. font-size: 0.75rem;
  6117. color: #444;
  6118. font-weight: 400;
  6119. }
  6120. }
  6121. &.bg{
  6122. background-color: #f8f8f8;
  6123. }
  6124. &:last-child{
  6125. border-right: none;
  6126. }
  6127. &.le{
  6128. text-align: left;
  6129. padding: 30px;
  6130. }
  6131. }
  6132. }
  6133. font-size: 24px;
  6134. }
  6135. // .ag-theme-alpine {
  6136. // --ag-font-family: 'Arial', sans-serif; /* 또는 원하는 글꼴 */
  6137. // }
  6138. // .ag-icon {
  6139. // font-family: 'Font Awesome 5 Free', sans-serif !important;
  6140. // }
  6141. .dp__input{
  6142. &::placeholder{
  6143. color: #b6b6b6!important;
  6144. }
  6145. }
  6146. .dp__disabled{
  6147. background-color: #f0f0f0!important;
  6148. &.dp__input{
  6149. color: #aaaaaa!important;
  6150. }
  6151. }
  6152. .btn--wrap{
  6153. &.evt--btn{
  6154. display: flex;
  6155. .custom-btn{
  6156. &.v-btn{
  6157. &.v-btn--density-default{
  6158. width: fit-content;
  6159. &.btn-sky{
  6160. background-color: #42A5F5;
  6161. height: 2.25rem;
  6162. min-height: 2.25rem;
  6163. .v-btn__content{
  6164. color: #ffffff;
  6165. }
  6166. }
  6167. &.btn-red{
  6168. background-color: #DC143C;
  6169. height: 2.25rem;
  6170. min-height: 2.25rem;
  6171. .v-btn__content{
  6172. color: #ffffff;
  6173. }
  6174. }
  6175. }
  6176. }
  6177. }
  6178. }
  6179. }
  6180. .ms--pop{
  6181. display: flex;
  6182. gap: 30px;
  6183. .ms--input--wrap{
  6184. width: 60%;
  6185. }
  6186. .ms--desc--wrap{
  6187. width: 40%;
  6188. p{
  6189. font-size: 1rem;
  6190. font-weight: 200;
  6191. line-height: 1.4;
  6192. strong{
  6193. font-size: 1.2rem;
  6194. font-weight: 600;
  6195. margin-bottom: 20px;
  6196. display: inline-block;
  6197. }
  6198. }
  6199. }
  6200. }
  6201. .tbl-wrapper{
  6202. .tbl-wrap .ag-checkbox-input-wrapper{
  6203. width: 20px;
  6204. height: 20px;
  6205. background-color: #ffffff;
  6206. border: 1px solid #b0b0b0;
  6207. &.ag-checked{
  6208. &::after{
  6209. display: block;
  6210. width: 20px;
  6211. height: 20px;
  6212. background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M10 3L4.5 8.5L2 6' stroke='%230094FF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  6213. background-position: center;
  6214. }
  6215. }
  6216. }
  6217. .tbl-wrap .ag-checkbox-input-wrapper:before,
  6218. .tbl-wrap .ag-checkbox-input-wrapper:after{
  6219. display: none;
  6220. }
  6221. }