mode-w-m.scss 197 KB

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