mode-w-m.scss 223 KB

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