mode-w-m.scss 193 KB

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