mode-w-m.scss 205 KB

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