mode-w-m.scss 194 KB

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