mode-w-m.scss 233 KB

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