mode-w-m.scss 221 KB

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