mode-w-m.scss 193 KB

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