mode-w-m.scss 194 KB

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