mode-w-m.scss 194 KB

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