mode-w-m.scss 194 KB

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