mode-w-m.scss 233 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515
  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--line--type {
  6018. .ag-root-wrapper {
  6019. .ag-header-group-cell {
  6020. .ag-header-cell-comp-wrapper {
  6021. justify-content: center;
  6022. font-size: 0.875rem;
  6023. color: #444444;
  6024. font-weight: 700;
  6025. }
  6026. }
  6027. .ag-header-row {
  6028. .ag-header-cell {
  6029. &:first-child {}
  6030. &:nth-child(2) {}
  6031. .ag-header-cell-resize {}
  6032. }
  6033. }
  6034. .lock-pinned {
  6035. background: #F2F7FF;
  6036. font-size: 0.875rem;
  6037. color: #444444;
  6038. font-weight: 700;
  6039. line-height: 2.55rem;
  6040. padding: 0 1.25rem;
  6041. }
  6042. }
  6043. }
  6044. .ag-root-wrapper {
  6045. .ag-root {
  6046. .ag-sticky-bottom {
  6047. width: 0 !important;
  6048. }
  6049. }
  6050. }
  6051. }
  6052. }
  6053. .custom-input{
  6054. &.v-text-field{
  6055. &.v-input--error{
  6056. .v-input__details{
  6057. padding-inline: 0;
  6058. padding-top: 0.63rem;
  6059. .v-messages{
  6060. .v-messages__message{
  6061. line-height: 100%;
  6062. color: #e50a0a;
  6063. font-size: 0.8125rem;
  6064. }
  6065. }
  6066. }
  6067. }
  6068. .v-input__control{
  6069. .v-field--error{
  6070. .v-field__field{
  6071. .v-field__input{
  6072. border: 1px solid #FF8C8C!important;
  6073. position: relative;
  6074. background-image: url(../img/ico_error.svg);
  6075. background-repeat: no-repeat;
  6076. background-size: 0.875rem 0.875rem;
  6077. background-position: right 0.75rem center;
  6078. }
  6079. }
  6080. }
  6081. }
  6082. }
  6083. }
  6084. // 로그인
  6085. .login-wrap{
  6086. .login--header{
  6087. position: fixed;
  6088. top: 0;
  6089. left: 0;
  6090. display: flex;
  6091. justify-content: space-between;
  6092. align-items: center;
  6093. padding: 1.25rem 1.88rem;
  6094. width: 100%;
  6095. background-color: rgba(255, 255, 255, 0.1);
  6096. height: 4.75rem;
  6097. z-index: 100;
  6098. .login--header--l{
  6099. display: flex;
  6100. gap: 0.9375rem;
  6101. align-items: center;
  6102. .logo{
  6103. color:#fff;
  6104. }
  6105. p{
  6106. color: #ffffff;
  6107. font-size: 1.125rem;
  6108. font-weight: 700;
  6109. line-height: 100%;
  6110. }
  6111. }
  6112. .login--header--r{
  6113. .custom-select{
  6114. &.v-input{
  6115. .v-input__control{
  6116. .v-field {
  6117. border-radius: 0.375rem;
  6118. .v-field__field{
  6119. padding-left: 0.75rem;
  6120. }
  6121. }
  6122. }
  6123. }
  6124. }
  6125. &.dp--flex{
  6126. display: flex;
  6127. align-items: center;
  6128. .user-info {
  6129. display: flex;
  6130. position: relative;
  6131. .ico {
  6132. width: 1.625rem;
  6133. height: 1.625rem;
  6134. background: #fff;
  6135. border-radius: 100%;
  6136. color: #438DFF;
  6137. display: flex;
  6138. align-items: center;
  6139. justify-content: center;
  6140. font-weight: 700;
  6141. font-size: 1rem;
  6142. cursor: pointer;
  6143. }
  6144. .info-detail {
  6145. position: absolute;
  6146. top: 2.7rem;
  6147. left: 50%;
  6148. width: 11.88rem;
  6149. // height: 12.25rem;
  6150. padding: 1.25rem;
  6151. // background: url("../img/bg_tooltip4.svg") no-repeat center / 100%;
  6152. transform: translateX(-50%);
  6153. background: #FFF;
  6154. border:1px solid #ddd;
  6155. box-shadow:0px 4px 4px rgba(0, 0, 0, 0.20);
  6156. border-radius: 0.625rem;
  6157. &:after{
  6158. content: '';
  6159. display: block;
  6160. width: 0;
  6161. height: 0;
  6162. border-left: 0.40625rem solid transparent;
  6163. border-right: 0.40625rem solid transparent;
  6164. border-bottom: 0.6875rem solid #fff;
  6165. position: absolute;
  6166. top:-0.5875rem;
  6167. left:50%;
  6168. transform: translateX(-50%);
  6169. }
  6170. &:before{
  6171. content: '';
  6172. display: block;
  6173. width: 0;
  6174. height: 0;
  6175. border-left: 0.40625rem solid transparent;
  6176. border-right: 0.40625rem solid transparent;
  6177. border-bottom: 0.6875rem solid #ddd;
  6178. position: absolute;
  6179. top:-0.6875rem;
  6180. left:50%;
  6181. transform: translateX(-50%);
  6182. }
  6183. .custom--btn--wrap{
  6184. display: flex;
  6185. flex-direction: column;
  6186. gap:0.5rem;
  6187. }
  6188. p {
  6189. color: #111;
  6190. font-size: 0.94rem;
  6191. font-weight: 700;
  6192. margin-bottom: 0.94rem;
  6193. span {
  6194. font-weight: 600;
  6195. }
  6196. }
  6197. ul {
  6198. padding-bottom: 1.25rem;
  6199. margin-bottom: 0.94rem;
  6200. border-bottom: 0.06rem solid #e1e1e1;
  6201. display: flex;
  6202. flex-direction: column;
  6203. gap: 0.25rem;
  6204. li {
  6205. color: #444444;
  6206. font-size: 0.81rem;
  6207. font-weight: 400;
  6208. }
  6209. &.nw--btn--text--type{
  6210. gap:0.6rem;
  6211. border-bottom:0px;
  6212. }
  6213. }
  6214. .custom-btn.v-btn.v-btn--density-default {
  6215. border: 0.06rem solid #D0DDEA;
  6216. border-radius: 0.31rem;
  6217. width: 100%;
  6218. height: 2.5rem;
  6219. min-height: 2.5rem;
  6220. .v-btn__content {
  6221. color:#798592;
  6222. font-size: 0.75rem;
  6223. font-weight: 600;
  6224. letter-spacing: -0.01rem;
  6225. }
  6226. &:hover{
  6227. .v-btn__content {
  6228. color: #064F9E!important;
  6229. }
  6230. border: 0.06rem solid rgba(6, 79, 158, 0.5);
  6231. }
  6232. }
  6233. }
  6234. }
  6235. .user-name {
  6236. color: #fff;
  6237. font-size: 0.81rem;
  6238. padding: 0 0.815rem;
  6239. font-weight: 700;
  6240. cursor: pointer;
  6241. }
  6242. .btn-logout {
  6243. width: 2rem;
  6244. height: 2rem;
  6245. background: url("../img/ico_logout.svg") no-repeat center / 100%;
  6246. }
  6247. }
  6248. }
  6249. }
  6250. .login-box{
  6251. .login-l{
  6252. .login-l-center{
  6253. text-align: center;
  6254. .logo{
  6255. background: none;
  6256. font-size: 1.5625rem;
  6257. font-weight: 700;
  6258. letter-spacing: -0.04688rem;
  6259. pointer-events: none;
  6260. line-height: 100%;
  6261. height: auto;
  6262. }
  6263. p{
  6264. color: #333;
  6265. text-align: center;
  6266. font-size: 0.875rem;
  6267. font-weight: 400;
  6268. line-height: 100%; /* 0.875rem */
  6269. letter-spacing: -0.00875rem;
  6270. pointer-events: none;
  6271. }
  6272. }
  6273. }
  6274. .login-r{
  6275. .login-input-wrap{
  6276. .txt-field-box{
  6277. &:first-of-type{
  6278. margin-bottom: 0.5rem;
  6279. }
  6280. .v-input{
  6281. &.custom-input{
  6282. &.v-text-field{
  6283. min-height: 2.25rem;
  6284. .v-input__control{
  6285. height: 2.25rem;
  6286. .v-field__field{
  6287. .v-field__input{
  6288. min-height: 2.25rem;
  6289. height: 2.25rem;
  6290. padding: 0 0.75rem;
  6291. }
  6292. }
  6293. }
  6294. }
  6295. }
  6296. }
  6297. &.error{
  6298. .v-input{
  6299. &.custom-input{
  6300. &.v-text-field{
  6301. .v-input__control{
  6302. .v-field--appended{
  6303. .v-field__append-inner{
  6304. right: 2.6rem;
  6305. }
  6306. }
  6307. }
  6308. }
  6309. }
  6310. }
  6311. .ico-eye{
  6312. right: 2.5rem;
  6313. }
  6314. }
  6315. .ico-eye{
  6316. position: absolute;
  6317. background-size: cover;
  6318. background-image: url(../img/ico_eye.svg);
  6319. width: 1.125rem;
  6320. height: 1.125rem;
  6321. right: 0.75rem;
  6322. top: 50%;
  6323. transform: translateY(-50%);
  6324. &.eye-off{
  6325. background-image: url(../img/ico_eye2.svg);
  6326. }
  6327. }
  6328. }
  6329. }
  6330. .login-radio{
  6331. margin-top: 1.87rem;
  6332. .custom-radio{
  6333. &.v-input{
  6334. .v-input__control{
  6335. .v-selection-control-group{
  6336. .v-radio{
  6337. margin-right: 1.56rem;
  6338. .v-label{
  6339. margin-left: 0.38rem;
  6340. font-weight: 500;
  6341. color: #444444;
  6342. font-size: 0.875rem;
  6343. }
  6344. .v-selection-control__wrapper{
  6345. .v-selection-control__input{
  6346. .v-icon{
  6347. border: 1px solid #c0c0c0;
  6348. width: 1rem;
  6349. height: 1rem;
  6350. &.mdi-radiobox-marked{
  6351. background-color: #438dff;
  6352. }
  6353. }
  6354. }
  6355. }
  6356. }
  6357. }
  6358. }
  6359. }
  6360. }
  6361. }
  6362. .login-otp{
  6363. margin-top: 1.87rem;
  6364. gap: 0.5rem;
  6365. .custom-input{
  6366. &.v-text-field{
  6367. min-height: 2.25rem;
  6368. .v-input__control{
  6369. height: 2.25rem;
  6370. .v-field__field{
  6371. .v-field__input{
  6372. min-height: 2.25rem;
  6373. height: 2.25rem;
  6374. padding: 0 0.75rem;
  6375. }
  6376. }
  6377. }
  6378. }
  6379. }
  6380. .btn-gray{
  6381. width: 6.875rem;
  6382. height: 2.25rem;
  6383. }
  6384. }
  6385. .login-chk{
  6386. margin: 1.88rem 0 0;
  6387. .custom-check{
  6388. &.v-input{
  6389. .v-input__control{
  6390. .v-selection-control{
  6391. .v-selection-control__wrapper{
  6392. .v-selection-control__input{
  6393. .v-icon{
  6394. background-size: cover;
  6395. }
  6396. }
  6397. }
  6398. .v-label{
  6399. padding-left: 0.38rem;
  6400. color: #444444;
  6401. font-size: 0.875rem;
  6402. font-weight: 500;
  6403. }
  6404. }
  6405. }
  6406. }
  6407. }
  6408. }
  6409. .login-find{
  6410. margin-top: 1.88rem;
  6411. padding-top: 1.88rem;
  6412. }
  6413. .login-btn-wrap {
  6414. .custom-btn {
  6415. &.v-btn {
  6416. &.v-btn--density-default {
  6417. &.btn-blue {
  6418. background-color: #0B318B;
  6419. border-radius: 0.5rem;
  6420. &:hover {
  6421. background-color: #4875DE !important;
  6422. box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.20);
  6423. }
  6424. .v-btn__content {
  6425. font-size: 0.9375rem !important;
  6426. font-weight: 700 !important;
  6427. letter-spacing: -0.02813rem !important;
  6428. }
  6429. &.v-btn--disabled {
  6430. background-color: #e0e0e0 !important;
  6431. .v-btn__content {
  6432. color: #8e8e8e !important;
  6433. }
  6434. }
  6435. }
  6436. }
  6437. }
  6438. }
  6439. }
  6440. .login-find{
  6441. > button{
  6442. &.color--blue{
  6443. color: #0b318b;
  6444. }
  6445. &.ml--auto{
  6446. &::after{
  6447. content: '';
  6448. width: 0.0625rem;
  6449. height: 0.875rem;
  6450. background-color: #e3e3e3;
  6451. margin-left: 0.94rem;
  6452. margin-right: 0.94rem;
  6453. }
  6454. }
  6455. }
  6456. }
  6457. }
  6458. }
  6459. .system--box{
  6460. display: flex;
  6461. align-items: center;
  6462. flex-direction: column;
  6463. .system--img{
  6464. width: 7.5rem;
  6465. height: 7.5rem;
  6466. background-image: url(../img/img_system.svg);
  6467. background-size: cover;
  6468. margin-bottom: 2.19rem;
  6469. }
  6470. > h2{
  6471. color: #111;
  6472. text-align: center;
  6473. font-size: 1.75rem;
  6474. font-weight: 500;
  6475. margin-bottom: 1.56rem;
  6476. }
  6477. > p{
  6478. text-align: center;
  6479. color: #333;
  6480. text-align: center;
  6481. font-size: 1rem;
  6482. font-weight: 400;
  6483. line-height: 1.7;
  6484. margin-bottom: 1.87rem;
  6485. }
  6486. > span{
  6487. color: #444;
  6488. text-align: center;
  6489. font-size: 0.9375rem;
  6490. font-weight: 400;
  6491. }
  6492. }
  6493. .login-footer{
  6494. height: 5.5rem;
  6495. display: flex;
  6496. justify-content: space-between;
  6497. padding: 1.56rem 1.88rem;
  6498. .login--footer--l{
  6499. display: flex;
  6500. color: rgba(51, 51, 51, 0.8);
  6501. flex-direction: column;
  6502. gap: 0.6rem;
  6503. p{
  6504. }
  6505. }
  6506. .login--footer--r{
  6507. display: flex;
  6508. gap: 3.75rem;
  6509. align-items: center;
  6510. .txt--btn{
  6511. > button{
  6512. color: #222;
  6513. font-size: 0.875rem;
  6514. font-weight: 400;
  6515. line-height: 100%; /* 0.875rem */
  6516. margin-left: 0.9rem;
  6517. &:first-child{
  6518. margin-left: 0;
  6519. &::after{
  6520. content: '';
  6521. width: 0.0625rem;
  6522. height: 0.875rem;
  6523. margin-left: 0.9rem;
  6524. vertical-align: -0.1rem;
  6525. background-color: #c5c5c5;
  6526. display: inline-block;
  6527. }
  6528. }
  6529. }
  6530. }
  6531. .logo--footer{
  6532. display: flex;
  6533. gap: 1.25rem;
  6534. align-items: center;
  6535. span{
  6536. font-size: 0;
  6537. display: inline-block;
  6538. background-repeat: no-repeat;
  6539. background-position: center;
  6540. background-size: contain;
  6541. &:first-child{
  6542. width: 8.125rem;
  6543. height: 0.9375rem;
  6544. background-image: url(../img/logo_sams_sds.svg);
  6545. }
  6546. &:nth-child(2){
  6547. width: 6.0625rem;
  6548. height: 2rem;
  6549. background-image: url(../img/logo_sams.svg);
  6550. }
  6551. }
  6552. }
  6553. }
  6554. }
  6555. }
  6556. // 로그인 팝업
  6557. .v-common-dialog-wrapper{
  6558. .v-common-dialog-content{
  6559. .find-pwd {
  6560. border-radius: 0.5rem;
  6561. background: #FFF;
  6562. box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
  6563. padding: 1.25rem;
  6564. p{
  6565. &.error-txt{
  6566. margin: 0 0 0.63rem 9.875rem!important;
  6567. }
  6568. }
  6569. .txt-field-box{
  6570. border-top: 1px solid #e0e0e0;
  6571. display: flex;
  6572. margin-bottom: 0;
  6573. &.error{
  6574. .ico{
  6575. right: 1rem;
  6576. }
  6577. }
  6578. > p{
  6579. width: 9.375rem;
  6580. padding: 1.13rem 0.62rem;
  6581. color: #444444;
  6582. font-size: 0.875rem;
  6583. font-weight: 700;
  6584. line-height: 1.4;
  6585. margin-bottom: 0;
  6586. .cir {
  6587. width: 0.3125rem;
  6588. height: 0.3125rem;
  6589. display: inline-block;
  6590. background-color: #ff4f60;
  6591. border-radius: 50%;
  6592. margin-left: 0.37rem;
  6593. vertical-align: 0.2rem;
  6594. }
  6595. }
  6596. > div{
  6597. width: 35.625rem;
  6598. padding: 0.625rem 0.5rem;
  6599. .custom-btn {
  6600. &.v-btn {
  6601. &.v-btn--density-default {
  6602. &.btn-password {
  6603. background: #6f8aa6;
  6604. height: 2.25rem;
  6605. width: 6.875rem;
  6606. }
  6607. &.btn-black {
  6608. background: #6f8aa6;
  6609. font-weight: 600 !important;
  6610. &.v-btn--disabled {
  6611. background-color: #e0e0e0 !important;
  6612. .v-btn__content {
  6613. color: #8e8e8e !important;
  6614. }
  6615. }
  6616. }
  6617. }
  6618. }
  6619. }
  6620. .custom-input{
  6621. &.v-text-field{
  6622. min-height: 2.25rem;
  6623. .v-input__control{
  6624. height: 2.25rem;
  6625. .v-field__field{
  6626. .v-field__input{
  6627. padding: 0 0.75rem;
  6628. min-height: 2.25rem;
  6629. height: 2.25rem;
  6630. &::placeholder {
  6631. color: #8e8e8e;
  6632. font-weight: 400;
  6633. }
  6634. }
  6635. }
  6636. }
  6637. }
  6638. &.v-text-field {
  6639. &.mini2 {
  6640. min-height: 2.25rem;
  6641. .v-input__control {
  6642. height: 2.25rem;
  6643. .v-field__field {
  6644. .v-field__input {
  6645. padding: 0 0.75rem;
  6646. color: #000000;
  6647. height: 2.25rem;
  6648. font-size: 0.875rem;
  6649. font-weight: 400;
  6650. min-height: 2.25rem;
  6651. &::placeholder {
  6652. color: #8e8e8e;
  6653. font-size: 0.875rem;
  6654. font-weight: 400;
  6655. }
  6656. }
  6657. }
  6658. }
  6659. }
  6660. }
  6661. }
  6662. }
  6663. }
  6664. .otp-box{
  6665. gap:0;
  6666. .txt-field-box{
  6667. width: 100%;
  6668. &.error{
  6669. .ico{
  6670. right: 8.5rem;
  6671. }
  6672. }
  6673. > div{
  6674. display: flex;
  6675. gap: 0.63rem;
  6676. }
  6677. }
  6678. }
  6679. }
  6680. }
  6681. }
  6682. .tab-style{
  6683. .tab-style-h{
  6684. button{
  6685. &::after{
  6686. background-size: cover!important;
  6687. }
  6688. .ico{
  6689. background-size: 0.75rem 0.75rem;
  6690. }
  6691. }
  6692. }
  6693. }
  6694. /**********************************************
  6695. | 2024-12-31 김민정 :
  6696. **********************************************/
  6697. .media--editor{
  6698. .caution{
  6699. color: #F00;
  6700. font-size: 16px;
  6701. display: inline-block;
  6702. margin-bottom: 10px;
  6703. }
  6704. .ql-snow{
  6705. .ql-editor{
  6706. p{
  6707. img{
  6708. max-width: 400px;
  6709. max-height: 400px;
  6710. }
  6711. }
  6712. }
  6713. }
  6714. }
  6715. // 재무관리 테이블
  6716. .table--wrap{
  6717. .bul{
  6718. color: #f00;
  6719. }
  6720. .table--t{
  6721. display: flex;
  6722. justify-content: space-between;
  6723. align-items: flex-end;
  6724. margin-bottom: 30px;
  6725. >span{
  6726. font-size: 18px;
  6727. }
  6728. }
  6729. table{
  6730. width: 100%;
  6731. border-top: 1px solid #3F3F3F;
  6732. .custom-input{
  6733. &.left{
  6734. *{
  6735. text-align: left;
  6736. }
  6737. }
  6738. }
  6739. th{
  6740. &.bg{
  6741. background-color: #f8f8f8;
  6742. }
  6743. &.le{
  6744. text-align: left;
  6745. padding: 30px;
  6746. }
  6747. vertical-align: middle;
  6748. height: 50px;
  6749. padding: 10px 30px;
  6750. color: #000000;
  6751. font-size: 18px;
  6752. font-weight: 700;
  6753. border-bottom: 1px solid #e2e2e2;
  6754. border-right: 1px solid #E2E2E2;
  6755. &.type2{
  6756. border-right: 1px solid #3F3F3F;
  6757. border-bottom: 1px solid #3f3f3f;
  6758. &.fz--16{
  6759. font-size: 16px;
  6760. }
  6761. }
  6762. &:last-child{
  6763. border-right: none;
  6764. }
  6765. }
  6766. td{
  6767. height: 50px;
  6768. padding: 10px 30px;
  6769. text-align: left;
  6770. color: #000000;
  6771. vertical-align: middle;
  6772. border-bottom: 1px solid #e2e2e2;
  6773. border-right: 1px solid #E2E2E2;
  6774. white-space: pre-line;
  6775. font-size: 18px;
  6776. font-weight: 400;
  6777. .dp--tp-wrap{
  6778. display: none;
  6779. }
  6780. .input--wrap{
  6781. display: flex;
  6782. align-items: center;
  6783. gap: 10px;
  6784. .text {
  6785. font-size: 0.75rem;
  6786. color: #444;
  6787. font-weight: 400;
  6788. }
  6789. .down--file{
  6790. color: #444;
  6791. cursor: pointer;
  6792. }
  6793. }
  6794. &.bg{
  6795. background-color: #f8f8f8;
  6796. }
  6797. &:last-child{
  6798. border-right: none;
  6799. }
  6800. &.le{
  6801. text-align: left;
  6802. padding: 30px;
  6803. }
  6804. }
  6805. }
  6806. font-size: 24px;
  6807. }
  6808. // .ag-theme-alpine {
  6809. // --ag-font-family: 'Arial', sans-serif; /* 또는 원하는 글꼴 */
  6810. // }
  6811. // .ag-icon {
  6812. // font-family: 'Font Awesome 5 Free', sans-serif !important;
  6813. // }
  6814. .dp__input{
  6815. &::placeholder{
  6816. color: #b6b6b6!important;
  6817. }
  6818. }
  6819. .dp__disabled{
  6820. background-color: #f0f0f0!important;
  6821. &.dp__input{
  6822. color: #aaaaaa!important;
  6823. }
  6824. }
  6825. .btn--wrap{
  6826. &.evt--btn{
  6827. display: flex;
  6828. .custom-btn{
  6829. &.v-btn{
  6830. &.v-btn--density-default{
  6831. width: fit-content;
  6832. &.btn-sky{
  6833. background-color: #42A5F5;
  6834. height: 2.25rem;
  6835. min-height: 2.25rem;
  6836. .v-btn__content{
  6837. color: #ffffff;
  6838. }
  6839. }
  6840. &.btn-red{
  6841. background-color: #DC143C;
  6842. height: 2.25rem;
  6843. min-height: 2.25rem;
  6844. .v-btn__content{
  6845. color: #ffffff;
  6846. }
  6847. }
  6848. }
  6849. }
  6850. }
  6851. }
  6852. }
  6853. .ms--pop{
  6854. display: flex;
  6855. gap: 30px;
  6856. .ms--input--wrap{
  6857. width: 60%;
  6858. }
  6859. .ms--desc--wrap{
  6860. width: 40%;
  6861. p{
  6862. font-size: 1rem;
  6863. font-weight: 200;
  6864. line-height: 1.4;
  6865. strong{
  6866. font-size: 1.2rem;
  6867. font-weight: 600;
  6868. margin-bottom: 20px;
  6869. display: inline-block;
  6870. }
  6871. }
  6872. }
  6873. }
  6874. .tbl-wrapper{
  6875. .tbl-wrap{
  6876. width: 100%;
  6877. .ag-checkbox-input-wrapper{
  6878. width: 20px;
  6879. height: 20px;
  6880. background-color: #ffffff;
  6881. border: 1px solid #b0b0b0;
  6882. &.ag-checked{
  6883. &::after{
  6884. display: block;
  6885. width: 20px;
  6886. height: 20px;
  6887. 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");
  6888. background-position: center;
  6889. }
  6890. }
  6891. }
  6892. // .order--table{
  6893. // .ag-header-row{
  6894. // display: flex;
  6895. // .ag-header-cell{
  6896. // position: static;
  6897. // width: calc(100% / 6)!important;
  6898. // }
  6899. // }
  6900. // .ag-row{
  6901. // display: flex;
  6902. // .ag-cell-value{
  6903. // position: static;
  6904. // width: calc(100% / 6)!important;
  6905. // }
  6906. // }
  6907. // }
  6908. }
  6909. .tbl-wrap .ag-checkbox-input-wrapper:before,
  6910. .tbl-wrap .ag-checkbox-input-wrapper:after{
  6911. display: none;
  6912. }
  6913. }
  6914. .sun-editor{
  6915. width: 100%;
  6916. text-align: left;
  6917. }
  6918. // CS 답변 관련 스타일
  6919. .answer-write-section {
  6920. margin-top: 32px;
  6921. padding: 24px;
  6922. border: 2px solid #e8f4fd;
  6923. border-radius: 12px;
  6924. background: linear-gradient(135deg, #fafbff 0%, #f0f7ff 100%);
  6925. box-shadow: 0 2px 8px rgba(0, 148, 255, 0.08);
  6926. h4 {
  6927. margin-bottom: 20px;
  6928. color: #1a365d;
  6929. font-weight: 700;
  6930. font-size: 1.1rem;
  6931. display: flex;
  6932. align-items: center;
  6933. gap: 8px;
  6934. &::before {
  6935. content: "💬";
  6936. font-size: 1.2rem;
  6937. }
  6938. }
  6939. .answer-write-form {
  6940. display: flex;
  6941. flex-direction: column;
  6942. gap: 20px;
  6943. .v-textarea {
  6944. .v-field {
  6945. background: white !important;
  6946. border: 1px solid #e1e5e9 !important;
  6947. border-radius: 12px !important;
  6948. box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
  6949. &.v-field--focused {
  6950. border-color: #667eea !important;
  6951. box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1) !important;
  6952. }
  6953. }
  6954. textarea {
  6955. resize: none !important;
  6956. padding: 25px !important;
  6957. line-height: 1.6 !important;
  6958. color: #333 !important;
  6959. font-size: 1rem !important;
  6960. font-family: inherit !important;
  6961. min-height: 120px !important;
  6962. &::placeholder {
  6963. color: #999;
  6964. font-size: 1rem;
  6965. }
  6966. }
  6967. }
  6968. }
  6969. .answer-actions {
  6970. display: flex;
  6971. justify-content: flex-end;
  6972. }
  6973. .submit-answer-btn {
  6974. min-width: 130px;
  6975. height: 44px;
  6976. border-radius: 22px;
  6977. box-shadow: 0 4px 12px rgba(0, 148, 255, 0.3);
  6978. transition: all 0.3s ease;
  6979. &:hover {
  6980. transform: translateY(-2px);
  6981. box-shadow: 0 6px 16px rgba(0, 148, 255, 0.4);
  6982. }
  6983. }
  6984. }
  6985. // 송장번호 등록 버튼 스타일 개선
  6986. .item-content{
  6987. padding-bottom: 20px;
  6988. }
  6989. .delivery-btn {
  6990. background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  6991. color: white !important;
  6992. border-radius: 25px !important;
  6993. padding: 8px 20px !important;
  6994. font-size: 0.85rem !important;
  6995. font-weight: 600 !important;
  6996. box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3) !important;
  6997. transition: all 0.3s ease !important;
  6998. border: none !important;
  6999. position: relative !important;
  7000. overflow: hidden !important;
  7001. width: 100%!important;
  7002. &:hover {
  7003. transform: translateY(-2px) !important;
  7004. box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4) !important;
  7005. &::before {
  7006. transform: translateX(100%) !important;
  7007. }
  7008. }
  7009. &::before {
  7010. content: '' !important;
  7011. position: absolute !important;
  7012. top: 0 !important;
  7013. left: -100% !important;
  7014. width: 100% !important;
  7015. height: 100% !important;
  7016. background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent) !important;
  7017. transition: transform 0.5s ease !important;
  7018. }
  7019. &:disabled {
  7020. background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%) !important;
  7021. color: rgba(255, 255, 255, 0.7) !important;
  7022. transform: none !important;
  7023. box-shadow: 0 2px 6px rgba(156, 163, 175, 0.2) !important;
  7024. cursor: not-allowed !important;
  7025. &:hover {
  7026. transform: none !important;
  7027. box-shadow: 0 2px 6px rgba(156, 163, 175, 0.2) !important;
  7028. }
  7029. &::before {
  7030. display: none !important;
  7031. }
  7032. }
  7033. .ico {
  7034. width: 16px !important;
  7035. height: 16px !important;
  7036. background-image: url(../img/ico_delivery.svg) !important;
  7037. background-repeat: no-repeat !important;
  7038. background-position: center !important;
  7039. background-size: contain !important;
  7040. margin-right: 6px !important;
  7041. display: inline-block !important;
  7042. vertical-align: middle !important;
  7043. }
  7044. .v-btn__content {
  7045. display: flex !important;
  7046. align-items: center !important;
  7047. color: #fff!important;
  7048. gap: 6px !important;
  7049. }
  7050. }
  7051. // 마이페이지 스타일
  7052. .mypage-container {
  7053. background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
  7054. .mypage-header {
  7055. align-items: center;
  7056. position: relative;
  7057. display: flex;
  7058. justify-content: space-between;
  7059. margin-top: -20px;
  7060. background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  7061. color: white;
  7062. padding: 60px 30px 40px;
  7063. border-radius: 0 0 30px 30px;
  7064. margin-bottom: 30px;
  7065. overflow: hidden;
  7066. .header-content {
  7067. position: relative;
  7068. z-index: 2;
  7069. }
  7070. .profile-section {
  7071. display: flex;
  7072. align-items: center;
  7073. gap: 30px;
  7074. }
  7075. .profile-avatar {
  7076. .avatar-placeholder {
  7077. width: 120px;
  7078. height: 120px;
  7079. border-radius: 50%;
  7080. background: rgba(255, 255, 255, 0.2);
  7081. display: flex;
  7082. align-items: center;
  7083. justify-content: center;
  7084. backdrop-filter: blur(10px);
  7085. border: 3px solid rgba(255, 255, 255, 0.3);
  7086. i {
  7087. font-size: 60px;
  7088. color: rgba(255, 255, 255, 0.8);
  7089. }
  7090. }
  7091. }
  7092. .profile-info {
  7093. display: flex;
  7094. flex-direction: column;
  7095. justify-content: center;
  7096. .user-name {
  7097. font-size: 2rem;
  7098. font-weight: 700;
  7099. margin-bottom: 8px;
  7100. text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  7101. }
  7102. .user-type {
  7103. font-size: 1.2rem;
  7104. opacity: 0.9;
  7105. }
  7106. .user-stats {
  7107. display: flex;
  7108. gap: 40px;
  7109. .stat-item {
  7110. display: flex;
  7111. flex-direction: column;
  7112. align-items: center;
  7113. .stat-number {
  7114. font-size: 2rem;
  7115. font-weight: 700;
  7116. text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  7117. }
  7118. .stat-label {
  7119. font-size: 0.9rem;
  7120. opacity: 0.8;
  7121. margin-top: 4px;
  7122. }
  7123. }
  7124. }
  7125. }
  7126. }
  7127. .dashboard-section {
  7128. .dashboard-cards {
  7129. display: grid;
  7130. grid-template-columns: 1fr 1fr 1fr;
  7131. gap: 1rem;
  7132. }
  7133. .dashboard-card {
  7134. background: white;
  7135. border-radius: 20px;
  7136. box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  7137. transition: all 0.3s ease;
  7138. overflow: hidden;
  7139. &:hover {
  7140. transform: translateY(-5px);
  7141. box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  7142. }
  7143. .card-header {
  7144. padding: 1.2rem 1.5rem;
  7145. border-bottom: 1px solid #f0f0f0;
  7146. display: flex;
  7147. justify-content: space-between;
  7148. align-items: center;
  7149. h3 {
  7150. font-size: 1.3rem;
  7151. font-weight: 600;
  7152. color: #333;
  7153. }
  7154. i {
  7155. font-size: 1.5rem;
  7156. color: #667eea;
  7157. }
  7158. }
  7159. .card-content {
  7160. padding: 1.2rem 1.5rem;
  7161. }
  7162. }
  7163. .quick-actions {
  7164. .action-buttons {
  7165. display: flex;
  7166. flex-direction: column;
  7167. gap: 15px;
  7168. .action-btn {
  7169. background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%) !important;
  7170. color: #667eea !important;
  7171. border: 1px solid #e8f0fe !important;
  7172. border-radius: 15px !important;
  7173. padding: 20px !important;
  7174. height: auto !important;
  7175. display: flex !important;
  7176. align-items: center !important;
  7177. justify-content: flex-start !important;
  7178. transition: all 0.3s ease !important;
  7179. &:hover {
  7180. background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  7181. color: white !important;
  7182. transform: translateX(5px);
  7183. box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
  7184. }
  7185. i {
  7186. font-size: 1.2rem;
  7187. margin-right: 12px;
  7188. }
  7189. span {
  7190. font-weight: 500;
  7191. }
  7192. }
  7193. }
  7194. }
  7195. .recent-inquiries {
  7196. .inquiry-list {
  7197. .inquiry-item {
  7198. display: flex;
  7199. justify-content: space-between;
  7200. align-items: center;
  7201. padding: 15px 0;
  7202. border-bottom: 1px solid #f5f5f5;
  7203. cursor: pointer;
  7204. transition: all 0.2s ease;
  7205. &:hover {
  7206. background: #f8faff;
  7207. margin: 0 -15px;
  7208. padding: 15px;
  7209. border-radius: 10px;
  7210. }
  7211. &:last-child {
  7212. border-bottom: none;
  7213. }
  7214. .inquiry-info {
  7215. h4 {
  7216. font-size: 1rem;
  7217. font-weight: 500;
  7218. color: #333;
  7219. margin-bottom: 5px;
  7220. overflow: hidden;
  7221. text-overflow: ellipsis;
  7222. white-space: nowrap;
  7223. max-width: 200px;
  7224. }
  7225. p {
  7226. font-size: 0.85rem;
  7227. color: #888;
  7228. }
  7229. }
  7230. .inquiry-status {
  7231. .status-waiting,
  7232. .status-completed {
  7233. padding: 4px 12px;
  7234. border-radius: 20px;
  7235. font-size: 0.8rem;
  7236. font-weight: 500;
  7237. }
  7238. }
  7239. }
  7240. .no-inquiries {
  7241. text-align: center;
  7242. padding: 40px 0;
  7243. color: #999;
  7244. i {
  7245. font-size: 3rem;
  7246. margin-bottom: 15px;
  7247. display: block;
  7248. }
  7249. }
  7250. }
  7251. .view-all {
  7252. text-align: center;
  7253. margin-top: 20px;
  7254. padding-top: 20px;
  7255. border-top: 1px solid #f0f0f0;
  7256. }
  7257. }
  7258. .notifications {
  7259. .notification-list {
  7260. .notification-item {
  7261. display: flex;
  7262. align-items: flex-start;
  7263. gap: 15px;
  7264. padding: 15px 0;
  7265. .notification-icon {
  7266. width: 40px;
  7267. height: 40px;
  7268. border-radius: 50%;
  7269. background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  7270. display: flex;
  7271. align-items: center;
  7272. justify-content: center;
  7273. flex-shrink: 0;
  7274. i {
  7275. color: white;
  7276. font-size: 1.1rem;
  7277. }
  7278. }
  7279. .notification-content {
  7280. h4 {
  7281. font-size: 1rem;
  7282. font-weight: 500;
  7283. color: #333;
  7284. margin-bottom: 5px;
  7285. }
  7286. p {
  7287. font-size: 0.9rem;
  7288. color: #666;
  7289. line-height: 1.4;
  7290. }
  7291. }
  7292. }
  7293. }
  7294. }
  7295. }
  7296. /* 액션 버튼 스타일 */
  7297. .action-buttons {
  7298. display: flex;
  7299. gap: 12px;
  7300. flex-wrap: wrap;
  7301. }
  7302. .action-btn {
  7303. flex: 1;
  7304. min-width: 120px;
  7305. padding: 16px 12px !important;
  7306. background: #f7fafc !important;
  7307. color: #4a5568 !important;
  7308. border: 1px solid #e2e8f0 !important;
  7309. border-radius: 12px !important;
  7310. transition: all 0.2s ease;
  7311. display: flex;
  7312. flex-direction: column;
  7313. align-items: center;
  7314. gap: 8px;
  7315. }
  7316. .action-btn:hover {
  7317. background: #4299e1 !important;
  7318. color: white !important;
  7319. transform: translateY(-2px);
  7320. }
  7321. .action-btn i {
  7322. font-size: 20px;
  7323. }
  7324. .action-btn span {
  7325. font-size: 14px;
  7326. font-weight: 500;
  7327. }
  7328. /* 빈 상태 스타일 */
  7329. .no-orders, .no-items, .no-stats, .no-inquiries {
  7330. text-align: center;
  7331. padding: 40px 20px;
  7332. color: #a0aec0;
  7333. display: flex;
  7334. flex-direction: column;
  7335. justify-content: center;
  7336. height: 300px;
  7337. max-height: 300px;
  7338. }
  7339. .no-orders i, .no-items i, .no-stats i, .no-inquiries i {
  7340. font-size: 48px;
  7341. margin-bottom: 16px;
  7342. display: block;
  7343. }
  7344. .no-orders p, .no-items p, .no-stats p, .no-inquiries p {
  7345. margin: 0;
  7346. font-size: 16px;
  7347. }
  7348. /* 전체 보기 링크 */
  7349. .view-all {
  7350. text-align: center;
  7351. padding-top: 16px;
  7352. border-top: 1px solid #e2e8f0;
  7353. margin-top: 16px;
  7354. .custom-btn.v-btn.v-btn--density-default{
  7355. height: 3rem;
  7356. }
  7357. }
  7358. // 반응형 디자인
  7359. @media (max-width: 1200px) {
  7360. .dashboard-section .dashboard-cards {
  7361. grid-template-columns: 1fr 1fr;
  7362. .notifications {
  7363. grid-column: 1 / -1;
  7364. }
  7365. }
  7366. }
  7367. @media (max-width: 768px) {
  7368. .mypage-header {
  7369. padding: 40px 20px 30px;
  7370. .profile-section {
  7371. flex-direction: column;
  7372. text-align: center;
  7373. gap: 20px;
  7374. }
  7375. .profile-avatar .avatar-placeholder {
  7376. width: 100px;
  7377. height: 100px;
  7378. i {
  7379. font-size: 50px;
  7380. }
  7381. }
  7382. .profile-info {
  7383. .user-name {
  7384. font-size: 2rem;
  7385. }
  7386. .user-stats {
  7387. justify-content: center;
  7388. }
  7389. }
  7390. }
  7391. .dashboard-section {
  7392. padding: 0 20px 40px;
  7393. .dashboard-cards {
  7394. grid-template-columns: 1fr;
  7395. gap: 20px;
  7396. }
  7397. }
  7398. }
  7399. }
  7400. /* 통계 요약 카드 스타일 */
  7401. .stats-overview {
  7402. display: flex;
  7403. max-width: 1050px;
  7404. height: 80%;
  7405. min-width: 900px;
  7406. justify-content: end;
  7407. gap: 20px;
  7408. }
  7409. .stat-card {
  7410. background: white;
  7411. padding: 20px;
  7412. width: 25%;
  7413. border-radius: 12px;
  7414. box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  7415. display: flex;
  7416. align-items: center;
  7417. gap: 16px;
  7418. transition: transform 0.2s ease, box-shadow 0.2s ease;
  7419. }
  7420. .stat-card:hover {
  7421. transform: translateY(-2px);
  7422. box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  7423. }
  7424. .stat-icon {
  7425. width: 50px;
  7426. height: 50px;
  7427. border-radius: 12px;
  7428. display: flex;
  7429. align-items: center;
  7430. justify-content: center;
  7431. font-size: 24px;
  7432. color: white;
  7433. }
  7434. .stat-icon.orders { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
  7435. .stat-icon.items { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
  7436. .stat-icon.sales { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
  7437. .stat-icon.influencers { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
  7438. .stat-info h3 {
  7439. margin: 0;
  7440. font-size: 24px;
  7441. font-weight: 700;
  7442. color: #2d3748;
  7443. }
  7444. .stat-info p {
  7445. margin: 4px 0 0 0;
  7446. font-size: 14px;
  7447. color: #718096;
  7448. }
  7449. /* 대시보드 카드 그리드 */
  7450. .dashboard-cards {
  7451. display: grid;
  7452. grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  7453. gap: 24px;
  7454. }
  7455. .dashboard-card {
  7456. background: white;
  7457. border-radius: 16px;
  7458. box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  7459. overflow: hidden;
  7460. transition: transform 0.2s ease, box-shadow 0.2s ease;
  7461. }
  7462. .dashboard-card:hover {
  7463. transform: translateY(-4px);
  7464. box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  7465. }
  7466. .card-header {
  7467. padding: 24px 24px 16px;
  7468. display: flex;
  7469. align-items: center;
  7470. justify-content: space-between;
  7471. border-bottom: 1px solid #e2e8f0;
  7472. }
  7473. .card-header h3 {
  7474. margin: 0;
  7475. font-size: 18px;
  7476. font-weight: 600;
  7477. color: #2d3748;
  7478. }
  7479. .card-header i {
  7480. font-size: 24px;
  7481. color: #a0aec0;
  7482. }
  7483. .card-content {
  7484. padding: 20px 24px 24px;
  7485. }
  7486. /* 주문 리스트 스타일 */
  7487. .order-list, .item-list {
  7488. height: 300px;
  7489. max-height: 300px;
  7490. overflow-y: auto;
  7491. }
  7492. .order-item, .inquiry-item {
  7493. display: flex;
  7494. align-items: center;
  7495. justify-content: space-between;
  7496. padding: 16px;
  7497. margin-bottom: 12px;
  7498. background: #f7fafc;
  7499. border-radius: 8px;
  7500. cursor: pointer;
  7501. transition: background-color 0.2s ease;
  7502. &:last-child{
  7503. margin-bottom: 0;
  7504. }
  7505. }
  7506. .order-item:hover, .inquiry-item:hover {
  7507. background: #edf2f7;
  7508. }
  7509. .order-info h4, .inquiry-info h4 {
  7510. margin: 0 0 4px 0;
  7511. font-size: 16px;
  7512. font-weight: 600;
  7513. color: #2d3748;
  7514. }
  7515. .buyer-name, .order-date, .inquiry-info p {
  7516. font-size: 14px;
  7517. color: #718096;
  7518. }
  7519. .order-details {
  7520. display: flex;
  7521. flex-direction: column;
  7522. align-items: flex-end;
  7523. gap: 4px;
  7524. }
  7525. .quantity {
  7526. font-size: 14px;
  7527. font-weight: 600;
  7528. color: #4a5568;
  7529. }
  7530. .status-badge {
  7531. padding: 4px 12px;
  7532. border-radius: 20px;
  7533. font-size: 12px;
  7534. font-weight: 600;
  7535. }
  7536. .status-badge.active {
  7537. background: #c6f6d5;
  7538. color: #22543d;
  7539. }
  7540. .status-waiting {
  7541. background: #fed7d7;
  7542. color: #742a2a;
  7543. }
  7544. .status-completed {
  7545. background: #c6f6d5;
  7546. color: #22543d;
  7547. }
  7548. /* 아이템 카드 스타일 */
  7549. .item-card {
  7550. display: flex;
  7551. justify-content: space-between;
  7552. align-items: flex-start;
  7553. padding: 16px;
  7554. margin-bottom: 12px;
  7555. background: #f7fafc;
  7556. border-radius: 8px;
  7557. cursor: pointer;
  7558. transition: background-color 0.2s ease;
  7559. &:last-child{
  7560. margin-bottom: 0;
  7561. }
  7562. }
  7563. .item-card:hover {
  7564. background: #edf2f7;
  7565. }
  7566. .item-info{
  7567. width: 100%;
  7568. }
  7569. .item-info h4 {
  7570. margin-bottom: 15px;
  7571. font-size: 0.9rem;
  7572. font-weight: 600;
  7573. color: #2d3748;
  7574. }
  7575. .company-name {
  7576. font-size: 14px;
  7577. color: #718096;
  7578. }
  7579. .item-dates {
  7580. display: flex;
  7581. width: 100%;
  7582. gap: 12px;
  7583. justify-content: space-between;
  7584. align-items: end;
  7585. }
  7586. .end-date {
  7587. font-size: 13px;
  7588. color: #718096;
  7589. }
  7590. .urgent {
  7591. color: #e53e3e;
  7592. font-weight: 600;
  7593. }
  7594. .normal {
  7595. color: #3182ce;
  7596. font-weight: 500;
  7597. }
  7598. .item-stats {
  7599. text-align: right;
  7600. }
  7601. .influencer-cards {
  7602. display: flex;
  7603. gap: 15px;
  7604. flex-wrap: wrap;
  7605. height: 300px;
  7606. }
  7607. .influencer-card {
  7608. position: relative;
  7609. background: linear-gradient(135deg, #f8f9ff 0%, #e8f4fd 100%);
  7610. border: 2px solid #e3f2fd;
  7611. border-radius: 16px;
  7612. padding: 15px;
  7613. height: calc(50% - 7.5px);
  7614. display: flex;
  7615. align-items: center;
  7616. justify-content: center;
  7617. flex-direction: column;
  7618. width: calc((100% - 30px) / 3);
  7619. text-align: center;
  7620. transition: all 0.3s ease;
  7621. box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  7622. }
  7623. .influencer-card:hover {
  7624. transform: translateY(-4px);
  7625. box-shadow: 0 8px 25px rgba(25, 118, 210, 0.15);
  7626. border-color: #764ba2;
  7627. }
  7628. .rank-badge {
  7629. position: absolute;
  7630. top: -8px;
  7631. left: -8px;
  7632. background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  7633. color: white;
  7634. width: 32px;
  7635. height: 32px;
  7636. border-radius: 50%;
  7637. display: flex;
  7638. align-items: center;
  7639. justify-content: center;
  7640. font-weight: bold;
  7641. font-size: 0.9rem;
  7642. box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
  7643. }
  7644. .user-avatar {
  7645. font-size: 1.8rem;
  7646. margin-bottom: 15px;
  7647. filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  7648. }
  7649. .order-count {
  7650. display: flex;
  7651. font-size: 0.8rem;
  7652. font-weight: 600;
  7653. justify-content: center;
  7654. align-items: end;
  7655. color: #764ba2;
  7656. gap: 4px;
  7657. .count{
  7658. font-size: 1rem;
  7659. font-weight: bold;
  7660. color: #764ba2;
  7661. }
  7662. .label{
  7663. font-size: 0.7rem;
  7664. color: #666;
  7665. }
  7666. }
  7667. .no-stats {
  7668. text-align: center;
  7669. padding: 40px 20px;
  7670. color: #999;
  7671. }
  7672. .no-stats i {
  7673. font-size: 3rem;
  7674. margin-bottom: 16px;
  7675. display: block;
  7676. }
  7677. .limit-badge {
  7678. color: #1976d2;
  7679. font-size: 0.65rem;
  7680. font-weight: 500;
  7681. padding: 2px 8px;
  7682. border-radius: 12px;
  7683. margin-left: 8px;
  7684. }
  7685. /* 인플루언서 통계 스타일 */
  7686. .influencer-stats{
  7687. display: flex;
  7688. flex-direction: column;
  7689. .card-content{
  7690. height: 100%;
  7691. }
  7692. .influencer-list{
  7693. height: 100%;
  7694. }
  7695. .influencer-item {
  7696. display: flex;
  7697. align-items: center;
  7698. gap: 16px;
  7699. padding: 16px;
  7700. margin-bottom: 12px;
  7701. background: #f7fafc;
  7702. border-radius: 8px;
  7703. }
  7704. .rank {
  7705. width: 30px;
  7706. height: 30px;
  7707. background: #4299e1;
  7708. color: white;
  7709. border-radius: 50%;
  7710. display: flex;
  7711. align-items: center;
  7712. justify-content: center;
  7713. font-weight: 700;
  7714. font-size: 14px;
  7715. }
  7716. .influencer-info{
  7717. width: 100%;
  7718. }
  7719. .influencer-info h4 {
  7720. margin: 0 0 4px 0;
  7721. font-size: 0.9rem;
  7722. font-weight: 600;
  7723. width: 100%;
  7724. color: #2d3748;
  7725. white-space: nowrap;
  7726. overflow: hidden;
  7727. text-overflow: ellipsis;
  7728. }
  7729. .influencer-info p {
  7730. margin: 0;
  7731. font-size: 14px;
  7732. color: #718096;
  7733. }
  7734. }
  7735. .order-count-badge {
  7736. background: #e6fffa;
  7737. color: #234e52;
  7738. padding: 8px 16px;
  7739. border-radius: 20px;
  7740. font-weight: 700;
  7741. font-size: 16px;
  7742. }
  7743. // 신규 주문
  7744. .recent-orders{
  7745. .recent-order {
  7746. display: flex;
  7747. align-items: center;
  7748. padding: 16px;
  7749. border: 1px solid #e3f2fd;
  7750. border-radius: 12px;
  7751. margin-bottom: 12px;
  7752. background: linear-gradient(135deg, #f8f9ff 0%, #e8f4fd 100%);
  7753. transition: all 0.3s ease;
  7754. cursor: pointer;
  7755. &:last-child{
  7756. margin-bottom: 0;
  7757. }
  7758. }
  7759. .recent-order:hover {
  7760. box-shadow: 0 4px 12px rgba(25, 118, 210, 0.15);
  7761. border-color: #1976d2;
  7762. }
  7763. .order-icon {
  7764. font-size: 1.8rem;
  7765. margin-right: 16px;
  7766. }
  7767. .order-meta {
  7768. align-items: end;
  7769. display: flex;
  7770. gap: 12px;
  7771. }
  7772. .order-number {
  7773. background: #1976d2;
  7774. color: white;
  7775. padding: 2px 8px;
  7776. border-radius: 12px;
  7777. font-size: 0.75rem;
  7778. font-weight: 500;
  7779. }
  7780. .influencer-name {
  7781. color: #666;
  7782. font-size: 0.9rem;
  7783. }
  7784. .order-date {
  7785. font-size: 0.8rem;
  7786. margin-left: auto;
  7787. color: #999;
  7788. }
  7789. }
  7790. // 진행중인 공동구매
  7791. .active-items{
  7792. .active-item {
  7793. background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e8 100%);
  7794. border: 1px solid #c8e6c9;
  7795. border-radius: 16px;
  7796. padding: 20px;
  7797. margin-bottom: 12px;
  7798. display: flex;
  7799. align-items: center;
  7800. transition: all 0.3s ease;
  7801. cursor: pointer;
  7802. &:last-child{
  7803. margin: 0;
  7804. }
  7805. }
  7806. .active-item:hover {
  7807. box-shadow: 0 6px 20px rgba(76, 175, 80, 0.2);
  7808. border-color: #4caf50;
  7809. }
  7810. .item-header {
  7811. display: flex;
  7812. justify-content: space-between;
  7813. align-items: center;
  7814. }
  7815. .item-icon {
  7816. font-size: 1.8rem;
  7817. }
  7818. .status-badge {
  7819. padding: 4px 12px;
  7820. border-radius: 20px;
  7821. font-size: 0.75rem;
  7822. font-weight: 500;
  7823. }
  7824. .status-badge.active {
  7825. background: #4caf50;
  7826. color: white;
  7827. }
  7828. .item-period {
  7829. margin: 12px 0;
  7830. padding: 8px 0;
  7831. border-top: 1px solid #e0e0e0;
  7832. }
  7833. .period-label {
  7834. font-size: 0.8rem;
  7835. color: #666;
  7836. display: block;
  7837. margin-bottom: 4px;
  7838. }
  7839. .period-dates {
  7840. font-size: 0.9rem;
  7841. color: #333;
  7842. font-weight: 500;
  7843. }
  7844. .item-stats {
  7845. margin-top: 8px;
  7846. }
  7847. .order-count {
  7848. background: rgba(76, 175, 80, 0.1);
  7849. color: #2e7d32;
  7850. padding: 4px 8px;
  7851. border-radius: 8px;
  7852. font-size: 0.8rem;
  7853. font-weight: 500;
  7854. }
  7855. }