style.scss 119 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029
  1. .container {
  2. height: 100%;
  3. width: 100%;
  4. display: flex;
  5. .header {
  6. background: #064F9E;
  7. height: calc(1vh * (90 / 10.8));
  8. min-height: 90px;
  9. display: flex;
  10. align-items: center;
  11. flex-shrink: 0;
  12. position: relative;
  13. padding: 0 1.88rem;
  14. z-index: 100;
  15. .logo {
  16. color: #FFFFFF;
  17. font-size: 1.13rem;
  18. font-weight: 700;
  19. line-height: 1.50rem;
  20. flex-shrink: 0;
  21. margin-right: auto;
  22. }
  23. .gnb {
  24. z-index: 10;
  25. &:hover {
  26. .gnb-bg {
  27. height: 22.38rem;
  28. }
  29. .depth1 {
  30. >li {
  31. .depth2 {
  32. height: 22.38rem;
  33. }
  34. }
  35. }
  36. }
  37. .depth1 {
  38. display: flex;
  39. >li {
  40. position: relative;
  41. &.active {
  42. >button {
  43. background: #83A7CF;
  44. font-weight: 700;
  45. }
  46. }
  47. >button {
  48. width: calc(1vw * (180 / 19.2));
  49. height: calc(1vh * (90 / 10.8));
  50. min-height: 90px;
  51. color: #fff;
  52. font-size: 1rem;
  53. font-weight: 400;
  54. }
  55. .depth2 {
  56. position: absolute;
  57. overflow: hidden;
  58. height: 0;
  59. z-index: 10;
  60. width: 100%;
  61. transition: 0.5s 0s;
  62. ul {
  63. padding-top: 1.88rem;
  64. li {
  65. color: #333;
  66. font-size: 0.88rem;
  67. font-weight: 400;
  68. display: block;
  69. margin-bottom: 1.88rem;
  70. cursor: pointer;
  71. text-align: center;
  72. &.active {
  73. color: #064F9E;
  74. font-weight: 700;
  75. }
  76. }
  77. }
  78. }
  79. }
  80. }
  81. .gnb-bg {
  82. position: fixed;
  83. top: calc(1vh * (90 / 10.8));
  84. left: 0;
  85. right: 0;
  86. width: 100vw;
  87. background: #fff;
  88. z-index: 8;
  89. height: 0;
  90. transition: 0.5s 0s;
  91. box-shadow: 0 0.25rem 0.63rem 0 rgba(0, 0, 0, 0.25);
  92. }
  93. }
  94. .util {
  95. display: flex;
  96. align-items: center;
  97. gap: 1.56rem;
  98. margin-left: auto;
  99. flex-shrink: 0;
  100. .ico {
  101. font-size: 0;
  102. }
  103. .btn-alarm {
  104. width: 2rem;
  105. height: 2rem;
  106. position: relative;
  107. &.type1 {
  108. .ico {
  109. background-image: url("../img/ico_alarm1.svg");
  110. }
  111. }
  112. &.type2 {
  113. .ico {
  114. background-image: url("../img/ico_alarm2.svg");
  115. }
  116. }
  117. .ico {
  118. position: relative;
  119. width: 2rem;
  120. height: 2rem;
  121. background: no-repeat center / 100%;
  122. .dot {
  123. position: absolute;
  124. background: #E42325;
  125. width: 0.44rem;
  126. height: 0.44rem;
  127. border-radius: 100%;
  128. right: 0;
  129. top: 0;
  130. }
  131. }
  132. .alarm-detail {
  133. position: absolute;
  134. width: 8.75rem;
  135. height: 4.44rem;
  136. top: 3.00rem;
  137. left: 50%;
  138. display: flex;
  139. align-items: center;
  140. justify-content: space-between;
  141. transform: translateX(-50%);
  142. padding: 1.31rem 1.25rem 1rem 1.25rem;
  143. background: url("../img/bg_tooltip.svg") no-repeat center / 100%;
  144. strong {
  145. color: #222222;
  146. font-size: 0.81rem;
  147. font-weight: 600;
  148. }
  149. .v-switch {
  150. width: 2.25rem;
  151. flex: 0 0 auto;
  152. .v-switch__track {
  153. background: #ECECEC;
  154. height: 0.75rem;
  155. width: 2.25rem;
  156. opacity: 1;
  157. }
  158. .v-switch__thumb {
  159. box-shadow: none;
  160. background: #92989E;
  161. width: 1.13rem;
  162. height: 1.13rem;
  163. }
  164. .v-selection-control {
  165. &.v-selection-control--dirty {
  166. .v-switch__track {
  167. background: #D7E4F1;
  168. }
  169. .v-switch__thumb {
  170. background: #064f9e;
  171. }
  172. }
  173. }
  174. .v-selection-control__input {
  175. &::before {
  176. display: none;
  177. }
  178. }
  179. .v-ripple__container {
  180. display: none;
  181. }
  182. }
  183. }
  184. }
  185. .btn-mode {
  186. position: relative;
  187. &.type1 {
  188. .ico {
  189. background-image: url("../img/ico_mode_white.svg");
  190. }
  191. }
  192. &.type2 {
  193. .ico {
  194. background-image: url("../img/ico_mode_dark.svg");
  195. }
  196. }
  197. .ico {
  198. width: 2rem;
  199. height: 2rem;
  200. background: no-repeat center / 100%;
  201. }
  202. .mode-detail {
  203. position: absolute;
  204. top: 3rem;
  205. left: 50%;
  206. transform: translateX(-50%);
  207. width: 12.63rem;
  208. height: 9.75rem;
  209. padding: 2.06rem 1.25rem 1.25rem 1.56rem;
  210. background: url("../img/bg_tooltip2.svg") no-repeat center / 100%;
  211. .custom-radio {
  212. .v-input__control {
  213. .v-selection-control-group {
  214. gap: 0.94rem;
  215. .v-radio {
  216. position: relative;
  217. height: 2.50rem;
  218. margin: 0;
  219. padding-left: 5.63rem;
  220. flex: auto;
  221. .v-selection-control__wrapper {
  222. .v-selection-control__input {
  223. width: 1.06rem;
  224. height: 1.06rem;
  225. .v-icon {
  226. border-color: #c0c0c0;
  227. &.mdi-radiobox-marked {
  228. border-color: #007AFF;
  229. background-color: #007AFF;
  230. box-shadow: inset 0 0 0 0.13rem #fff
  231. }
  232. }
  233. }
  234. }
  235. .v-label {
  236. margin-left: 0.75rem;
  237. .img {
  238. position: absolute;
  239. left: 0;
  240. top: 0;
  241. width: 4.38rem;
  242. height: 2.5rem;
  243. background: no-repeat center / 100%;
  244. &.img1 {
  245. background-image: url("../img/img_mode_white.svg");
  246. }
  247. &.img2 {
  248. background-image: url("../img/img_mode_dark.svg");
  249. }
  250. }
  251. strong {
  252. color: #333333;
  253. font-size: 0.75rem;
  254. font-weight: 400;
  255. }
  256. }
  257. }
  258. }
  259. }
  260. }
  261. }
  262. }
  263. .btn-lang {
  264. position: relative;
  265. .ico {
  266. width: 2rem;
  267. height: 2rem;
  268. border: 0.06rem solid #fff;
  269. background-color: #064F9E;
  270. border-radius: 100%;
  271. color: #fff;
  272. display: flex;
  273. align-items: center;
  274. justify-content: center;
  275. font-weight: 700;
  276. font-size: 0.81rem;
  277. }
  278. .lang-detail {
  279. position: absolute;
  280. top: 3rem;
  281. left: 50%;
  282. width: 9.75rem;
  283. height: 7.31rem;
  284. transform: translateX(-50%);
  285. background: url("../img/bg_tooltip3.svg") no-repeat center / 100%;
  286. padding: 1.63rem 1.25rem 1.25rem 1.56rem;
  287. .custom-radio {
  288. .v-input__control {
  289. .v-selection-control-group {
  290. gap: 0.94rem;
  291. .v-radio {
  292. height: 1.63rem;
  293. margin: 0;
  294. .v-selection-control__wrapper {
  295. .v-selection-control__input {
  296. width: 1.06rem;
  297. height: 1.06rem;
  298. .v-icon {
  299. border-color: #c0c0c0;
  300. &.mdi-radiobox-marked {
  301. border-color: #007AFF;
  302. background-color: #007AFF;
  303. box-shadow: inset 0 0 0 0.13rem #fff
  304. }
  305. }
  306. }
  307. }
  308. .v-label {
  309. margin-left: 0.75rem;
  310. .img {
  311. width: 1.63rem;
  312. height: 1.63rem;
  313. display: inline-block;
  314. background: no-repeat center / 100%;
  315. &.img1 {
  316. background-image: url("../img/ico_lang_korea.svg");
  317. }
  318. &.img2 {
  319. background-image: url("../img/ico_lang_english.svg");
  320. }
  321. }
  322. strong {
  323. color: #333333;
  324. font-size: 0.75rem;
  325. font-weight: 400;
  326. margin-left: 0.63rem;
  327. }
  328. }
  329. }
  330. }
  331. }
  332. }
  333. }
  334. }
  335. .divider {
  336. width: 0.06rem;
  337. height: 1.88rem;
  338. margin: 0 0.63rem;
  339. background: rgba(255, 255, 255, 0.5);
  340. }
  341. .user-info {
  342. display: flex;
  343. position: relative;
  344. .ico {
  345. width: 2rem;
  346. height: 2rem;
  347. background: #fff;
  348. border-radius: 100%;
  349. color: #064F9E;
  350. display: flex;
  351. align-items: center;
  352. justify-content: center;
  353. font-weight: 700;
  354. font-size: 0.81rem;
  355. cursor: pointer;
  356. }
  357. .info-detail {
  358. position: absolute;
  359. top: 3rem;
  360. left: 50%;
  361. width: 11.88rem;
  362. height: 12.25rem;
  363. padding: 2rem 1.56rem 1.25rem 1.56rem;
  364. background: url("../img/bg_tooltip4.svg") no-repeat center / 100%;
  365. transform: translateX(-50%);
  366. p {
  367. color: #111;
  368. font-size: 0.94rem;
  369. font-weight: 700;
  370. margin-bottom: 0.94rem;
  371. span {
  372. font-weight: 600;
  373. }
  374. }
  375. ul {
  376. padding-bottom: 1.25rem;
  377. margin-bottom: 0.94rem;
  378. border-bottom: 0.06rem solid #e1e1e1;
  379. display: flex;
  380. flex-direction: column;
  381. gap: 0.25rem;
  382. li {
  383. color: #444444;
  384. font-size: 0.81rem;
  385. font-weight: 400;
  386. }
  387. }
  388. .custom-btn.v-btn.v-btn--density-default {
  389. border: 0.06rem solid rgba(6, 79, 158, 0.5);
  390. border-radius: 0.31rem;
  391. width: 100%;
  392. height: 2.5rem;
  393. min-height: 2.5rem;
  394. .v-btn__content {
  395. color: #064F9E;
  396. font-size: 0.75rem;
  397. font-weight: 600;
  398. letter-spacing: -0.01rem;
  399. }
  400. }
  401. }
  402. }
  403. .user-name {
  404. color: #fff;
  405. font-size: 0.81rem;
  406. font-weight: 700;
  407. cursor: pointer;
  408. display: flex;
  409. align-items: center;
  410. }
  411. .btn-logout {
  412. width: 2rem;
  413. background: url("../img/ico_logout.svg") no-repeat center / 100%;
  414. }
  415. .btn-profile{
  416. min-width:2rem;
  417. min-height:2rem;
  418. display: inline-flex;
  419. align-items: center;
  420. width: 2rem;
  421. height: 2rem;
  422. color:#fff;
  423. }
  424. }
  425. }
  426. .content {
  427. position: relative;
  428. overflow-y: auto;
  429. background: #fff;
  430. width: calc(100% - 340px);
  431. }
  432. .footer {
  433. height: calc(1vh * (58 / 10.8));
  434. min-height: 58px;
  435. flex-shrink: 0;
  436. background: #EBEBEB;
  437. display: flex;
  438. align-items: center;
  439. padding: 0 1.88rem;
  440. gap: 1.25rem;
  441. .foot-connection {
  442. display: flex;
  443. align-items: center;
  444. strong {
  445. color: #111111;
  446. font-size: 0.69rem;
  447. font-weight: 600;
  448. margin-right: 0.63rem;
  449. }
  450. span {
  451. background: #064F9E;
  452. border-radius: 6.25rem;
  453. min-width: 2.25rem;
  454. height: 1.56rem;
  455. padding: 0 0.63rem;
  456. display: flex;
  457. align-items: center;
  458. justify-content: center;
  459. color: #fff;
  460. font-size: 0.69rem;
  461. font-weight: 600;
  462. }
  463. }
  464. .foot-numbering {
  465. display: flex;
  466. gap: 0.63rem;
  467. padding: 0 1.25rem;
  468. position: relative;
  469. &:before,
  470. &:after {
  471. position: absolute;
  472. content: "";
  473. width: 0.06rem;
  474. height: 1.25rem;
  475. background: #c8c8c8;
  476. top: 50%;
  477. margin-top: -0.63rem;
  478. }
  479. &:before {
  480. left: 0;
  481. }
  482. &:after {
  483. right: 0;
  484. }
  485. span {
  486. height: 1.56rem;
  487. min-width: 3.13rem;
  488. display: flex;
  489. align-items: center;
  490. justify-content: center;
  491. color: #fff;
  492. font-size: 0.63rem;
  493. font-weight: 600;
  494. &.num1 {
  495. background: #FF2426;
  496. }
  497. &.num2 {
  498. background: #FF7236;
  499. }
  500. &.num3 {
  501. background: #FFB800;
  502. }
  503. }
  504. }
  505. .foot-state {
  506. color: #ff2426;
  507. font-size: 0.63rem;
  508. font-weight: 600;
  509. border: 0.06rem solid rgba(255, 36, 38, 0.5);
  510. display: flex;
  511. align-items: center;
  512. justify-content: center;
  513. min-width: 4.13rem;
  514. height: 1.56rem;
  515. }
  516. .foot-txt {
  517. padding-left: 0.63rem;
  518. color: #333;
  519. opacity: 0.8;
  520. font-size: 0.69rem;
  521. font-weight: 400;
  522. }
  523. .foot-btn-wrap {
  524. margin-left: auto;
  525. display: flex;
  526. gap: 0.63rem;
  527. align-items: center;
  528. button {
  529. background: #111111;
  530. min-width: 6.81rem;
  531. padding: 0 0.94rem;
  532. height: 1.56rem;
  533. display: flex;
  534. align-items: center;
  535. justify-content: center;
  536. color: #fff;
  537. font-size: 0.69rem;
  538. font-weight: 600;
  539. .ico {
  540. width: 0.81rem;
  541. height: 0.81rem;
  542. margin-right: 0.5rem;
  543. background: no-repeat center / 100%;
  544. &.ico1 {
  545. background-image: url("../img/ico_event_view.svg");
  546. }
  547. &.ico2 {
  548. background-image: url("../img/ico_event_pop.svg");
  549. }
  550. }
  551. }
  552. }
  553. .foot-logo {
  554. width: 11.69rem;
  555. height: 1.44rem;
  556. margin-left: 0.31rem;
  557. font-size: 0;
  558. background: url("../img/logo_foot2.svg") no-repeat center / 100%;
  559. }
  560. }
  561. }
  562. @media (max-height: 1079px) {
  563. .container {
  564. .header {
  565. .gnb {
  566. .gnb-bg {
  567. top: 90px;
  568. }
  569. }
  570. }
  571. .content {
  572. height: calc(100vh - 148px);
  573. }
  574. }
  575. }
  576. .v-application__wrap {
  577. min-width: 1920px;
  578. }
  579. /* --- common type --- */
  580. .txt-field-box {
  581. position: relative;
  582. width: 100%;
  583. &.error {
  584. .custom-input.v-text-field {
  585. .v-input__control {
  586. .v-field__field {
  587. .v-field__input {
  588. padding-right: 2.56rem !important;
  589. border-color: #FF8C8C !important;
  590. }
  591. }
  592. }
  593. }
  594. .ico {
  595. display: block;
  596. background: url("../img/ico_error.svg") no-repeat center / 100%;
  597. }
  598. }
  599. .ico {
  600. display: none;
  601. position: absolute;
  602. width: 1.13rem;
  603. height: 1.13rem;
  604. right: 0.94rem;
  605. top: 50%;
  606. margin-top: -0.565rem;
  607. }
  608. }
  609. .custom-input.v-text-field {
  610. flex: 0 0 auto;
  611. width: 100%;
  612. min-height: 3.63rem;
  613. padding: 0;
  614. margin: 0;
  615. flex-direction: column;
  616. &.v-input--readonly {
  617. .v-input__control {
  618. .v-field__field {
  619. .v-field__input {
  620. background: #F0F0F0;
  621. color: #747474!important;
  622. cursor: not-allowed;
  623. }
  624. }
  625. }
  626. }
  627. &.success-input {
  628. flex-direction: column;
  629. .v-input__append-outer {
  630. width: 100%;
  631. margin: 0;
  632. .input-success {
  633. padding: 0 1rem;
  634. margin: 0.25rem 0 0;
  635. letter-spacing: -0.02rem;
  636. line-height: 1rem;
  637. white-space: nowrap;
  638. font-size: 0.75rem;
  639. font-weight: 600;
  640. }
  641. }
  642. }
  643. &.v-input--is-disabled {
  644. background: #f6f6f6 !important;
  645. .v-input__prepend-outer {
  646. .v-input__icon {
  647. opacity: 0.5;
  648. }
  649. }
  650. .v-input__control {
  651. .v-input__slot {
  652. .v-text-field__slot {
  653. input {
  654. color: #999;
  655. }
  656. }
  657. }
  658. }
  659. }
  660. &.v-input--is-focused {
  661. .v-input__control {
  662. .v-input__slot {
  663. border-color: #584DE4 !important;
  664. }
  665. }
  666. }
  667. &.v-input--error {
  668. .v-input__details {
  669. display: block;
  670. width: 100%;
  671. .v-messages {
  672. color: #FF4C6D;
  673. text-align: left;
  674. }
  675. }
  676. }
  677. &.mini {
  678. min-height: 2.25rem;
  679. .v-input__control {
  680. height: 2.25rem;
  681. .v-field__field {
  682. .v-field__input {
  683. padding: 0 0.94rem;
  684. height: 2.25rem;
  685. min-height: 2.25rem;
  686. font-size: 0.75rem;
  687. color: #444;
  688. border: 0.06rem solid #e0e0e0;
  689. }
  690. }
  691. }
  692. }
  693. &.mini2 {
  694. min-height: 2.5rem;
  695. .v-input__control {
  696. height: 2.5rem;
  697. .v-field__field {
  698. .v-field__input {
  699. padding: 0 0.94rem;
  700. height: 2.5rem;
  701. min-height: 2.5rem;
  702. font-size: 0.81rem;
  703. color: #444;
  704. border: 0.06rem solid #e0e0e0;
  705. }
  706. }
  707. }
  708. }
  709. &.cursor {
  710. cursor: pointer;
  711. .v-input__control {
  712. .v-field__field {
  713. .v-field__input:read-only {
  714. cursor: pointer;
  715. }
  716. }
  717. }
  718. }
  719. .v-input__prepend-outer {
  720. margin: 0 0 0 0.75rem;
  721. .v-icon {
  722. display: inline-block;
  723. width: 1.25rem;
  724. height: 1.25rem;
  725. font-size: 0;
  726. background: url("../assets/img/ico_calendar.svg") no-repeat center;
  727. &:before {
  728. display: none;
  729. content: "";
  730. }
  731. }
  732. }
  733. .v-input__control {
  734. width: 100%;
  735. height: 3.63rem;
  736. .v-field__overlay {
  737. display: none;
  738. }
  739. .v-field__loader {
  740. display: none;
  741. }
  742. .v-field {
  743. opacity: 1;
  744. }
  745. .v-field__field {
  746. .v-field__input {
  747. height: 3.63rem;
  748. min-height: 3.63rem;
  749. padding: 0 1.25rem;
  750. border: 0.06rem solid #E9E9E9;
  751. background: #fff;
  752. border-radius: 0;
  753. color: #000;
  754. font-size: 0.88rem;
  755. font-weight: 400;
  756. letter-spacing: -0.02rem;
  757. &::placeholder {
  758. color: #AAAAAA;
  759. opacity: 1;
  760. }
  761. }
  762. }
  763. .v-field__outline {
  764. &:before,
  765. &:after {
  766. display: none;
  767. }
  768. }
  769. .v-input__slot {
  770. height: 2.50rem;
  771. margin: 0;
  772. border: 0.06 solid #E9E9E9;
  773. border-radius: 0;
  774. &:before,
  775. &:after {
  776. display: none;
  777. }
  778. .v-text-field__slot {
  779. height: 3.63rem;
  780. input {
  781. display: block;
  782. max-height: 3.63rem;
  783. padding: 0 0.75rem;
  784. letter-spacing: -0.02rem;
  785. color: #000;
  786. font-weight: 600;
  787. font-size: 0.88rem;
  788. &::placeholder {
  789. font-weight: 400;
  790. color: #999990;
  791. }
  792. }
  793. }
  794. }
  795. .v-text-field__details {
  796. overflow: inherit !important;
  797. display: none;
  798. transition: none !important;
  799. .v-messages__message {
  800. padding: 0 0.81rem;
  801. margin-top: 0.25rem;
  802. letter-spacing: -0.02rem;
  803. line-height: 1rem;
  804. white-space: nowrap;
  805. font-size: 0.75rem;
  806. font-weight: 600;
  807. color: #E50A0A;
  808. transition: none !important;
  809. overflow: visible!important;
  810. }
  811. }
  812. }
  813. .v-input__details {
  814. display: none;
  815. }
  816. }
  817. p.error-txt {
  818. color: #E50A0A !important;
  819. font-size: 0.88rem !important;
  820. line-height: 0.88rem !important;
  821. font-weight: 400 !important;
  822. margin: 0.75rem 0 0;
  823. text-align: left !important;
  824. }
  825. p.success-txt {
  826. color: #007AFF !important;
  827. font-size: 0.88rem !important;
  828. line-height: 0.88rem !important;
  829. font-weight: 400 !important;
  830. margin: 0.75rem 0 0;
  831. text-align: left !important;
  832. }
  833. .input-field-box:has(.v-field--focused) .ico-cancel {
  834. display: block;
  835. }
  836. .custom-check.v-input {
  837. padding: 0;
  838. margin: 0;
  839. cursor: pointer;
  840. &.v-input--is-disabled {
  841. opacity: 0.5;
  842. }
  843. &.type2 {
  844. .v-input__control {
  845. .v-selection-control {
  846. .v-selection-control__wrapper {
  847. width: 1rem;
  848. height: 1rem;
  849. .v-selection-control__input {
  850. width: 1rem;
  851. height: 1rem;
  852. .v-icon {
  853. min-width: 1rem;
  854. width: 1rem;
  855. height: 1rem;
  856. //border-radius: 0;
  857. border: 0;
  858. background: url("../img/ico_chk_off.svg") no-repeat center;
  859. &.mdi-checkbox-marked {
  860. background-image: url("../img/ico_chk_on.svg");
  861. }
  862. }
  863. }
  864. }
  865. .v-label {
  866. height: auto;
  867. padding-left: 0.94rem;
  868. margin: 0;
  869. font-size: 0.81rem;
  870. font-weight: 400;
  871. color: #333;
  872. opacity: 1;
  873. span {
  874. padding-left: 0.19rem;
  875. font-weight: 700;
  876. color: #007AFF;
  877. }
  878. }
  879. }
  880. }
  881. }
  882. .v-input__control {
  883. .v-selection-control {
  884. min-height: auto;
  885. .v-selection-control__wrapper {
  886. width: 1rem;
  887. height: 1rem;
  888. .v-selection-control__input {
  889. width: 1rem;
  890. height: 1rem;
  891. &:before {
  892. display: none;
  893. }
  894. .v-icon {
  895. min-width: 1rem;
  896. width: 1rem;
  897. height: 1rem;
  898. //border-radius: 0.25rem;
  899. //border: 0.06rem solid #9B9B9B;
  900. &:before {
  901. display: none;
  902. }
  903. &.mdi-checkbox-marked {
  904. background: url("../img/ico_chk.svg") no-repeat center / 100%;
  905. }
  906. }
  907. .v-ripple__container {
  908. display: none !important;
  909. background: transparent !important;
  910. }
  911. }
  912. }
  913. .v-label {
  914. height: auto;
  915. margin-left: 0.63rem;
  916. font-size: 0.81rem;
  917. font-weight: 400;
  918. color: #000;
  919. opacity: 1;
  920. }
  921. }
  922. }
  923. }
  924. .custom-radio.v-input {
  925. padding: 0;
  926. margin: 0;
  927. &.v-input--radio-group--column {
  928. .v-input--radio-group__input {
  929. .v-radio {
  930. margin-bottom: 0;
  931. }
  932. }
  933. }
  934. &.picker-terms {
  935. height: 2.25rem;
  936. .v-input__control {
  937. .v-selection-control-group {
  938. gap: calc(1vw * (5 / 19.2));
  939. flex-wrap: nowrap;
  940. .v-radio {
  941. position: relative;
  942. margin: 0;
  943. &.radio_n {
  944. .v-label {
  945. width: calc(1vw * (87 / 19.2));
  946. }
  947. }
  948. &.radio_h {
  949. .v-label {
  950. width: calc(1vw * (70 / 19.2));
  951. }
  952. }
  953. &.radio_d {
  954. .v-label {
  955. width: calc(1vw * (69 / 19.2));
  956. }
  957. }
  958. &.radio_w {
  959. .v-label {
  960. width: calc(1vw * (72 / 19.2));
  961. }
  962. }
  963. .v-selection-control__wrapper {
  964. display: none;
  965. }
  966. .v-label {
  967. justify-content: center;
  968. padding: 0;
  969. height: 2.25rem;
  970. margin: 0;
  971. border: 0.06rem solid #BACBDE;
  972. font-size: 0.75rem;
  973. font-weight: 400;
  974. color: #56779B;
  975. background: #fff;
  976. }
  977. &.v-selection-control--dirty {
  978. .v-label {
  979. color: #007AFF;
  980. font-weight: 700;
  981. border-color: #007AFF;
  982. }
  983. }
  984. }
  985. }
  986. }
  987. }
  988. &.type2 {
  989. .v-input__control {
  990. .v-selection-control-group {
  991. .v-radio {
  992. margin-right: 1.88rem;
  993. &:last-of-type {
  994. margin-right: 0;
  995. }
  996. .v-selection-control__wrapper {
  997. width: 1.06rem;
  998. height: 1.06rem;
  999. min-width: 1.06rem;
  1000. .v-selection-control__input {
  1001. width: 1.06rem;
  1002. height: 1.06rem;
  1003. .v-icon {
  1004. width: 1.06rem;
  1005. height: 1.06rem;
  1006. min-width: 1.06rem;
  1007. border-color: #C0C0C0;
  1008. &.mdi-radiobox-marked {
  1009. border-color: #007AFF;
  1010. box-shadow: inset 0 0 0 0.13rem #fff;
  1011. background: #007AFF;
  1012. }
  1013. }
  1014. }
  1015. }
  1016. .v-label {
  1017. padding-left: 0.75rem;
  1018. margin: 0;
  1019. color: #333;
  1020. font-size: 0.75rem;
  1021. }
  1022. }
  1023. }
  1024. }
  1025. }
  1026. .v-input__control {
  1027. .v-selection-control-group {
  1028. .v-radio {
  1029. margin-right: 1.25rem;
  1030. &:last-of-type {
  1031. margin-right: 0;
  1032. }
  1033. .v-selection-control__wrapper {
  1034. min-width: 0.94rem;
  1035. width: 0.94rem;
  1036. height: 0.94rem;
  1037. opacity: 1;
  1038. .v-selection-control__input {
  1039. width: 0.94rem;
  1040. height: 0.94rem;
  1041. border-radius: 0;
  1042. opacity: 1;
  1043. &:before {
  1044. display: none;
  1045. }
  1046. .v-icon {
  1047. min-width: 0.94rem;
  1048. width: 0.94rem;
  1049. height: 0.94rem;
  1050. border-radius: 100%;
  1051. border: 0.06rem solid #9B9B9B;
  1052. opacity: 1;
  1053. position: relative;
  1054. background: #fff;
  1055. &:before {
  1056. display: none;
  1057. }
  1058. &.mdi-radiobox-marked {
  1059. border-color: #064F9E;
  1060. box-shadow: inset 0 0 0 0.13rem #fff;
  1061. background: #064f9e;
  1062. }
  1063. }
  1064. .v-ripple__container {
  1065. display: none !important;
  1066. background: transparent !important;
  1067. }
  1068. }
  1069. }
  1070. .v-label {
  1071. margin-left: 0.63rem;
  1072. color: #000;
  1073. font-size: 0.81rem;
  1074. font-weight: 400;
  1075. opacity: 1;
  1076. }
  1077. }
  1078. }
  1079. }
  1080. .v-input__details {
  1081. display: none;
  1082. }
  1083. }
  1084. .custom-btn.v-btn.v-btn--density-default {
  1085. width: 100%;
  1086. height: 3.63rem;
  1087. border-radius: 0;
  1088. box-shadow: none;
  1089. padding: 0 0.63rem;
  1090. &:hover {
  1091. box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.15);
  1092. }
  1093. &.btn-blue {
  1094. background: #064F9E;
  1095. .v-btn__content {
  1096. color: #fff;
  1097. }
  1098. }
  1099. &.btn-blue2 {
  1100. background: #007AFF;
  1101. &.v-btn--disabled {
  1102. background: #C5CDD4 !important;
  1103. }
  1104. .v-btn__content {
  1105. color: #fff;
  1106. }
  1107. }
  1108. &.btn-blue-bor {
  1109. background: transparent;
  1110. border: 0.06rem solid rgba(3, 78, 162, 0.5);
  1111. .v-btn__content {
  1112. color: #034EA2;
  1113. font-size: 0.81rem;
  1114. font-weight: 400;
  1115. }
  1116. }
  1117. &.btn-white {
  1118. border: 0.06rem solid #DFE7EF;
  1119. background: #fff;
  1120. .v-btn__content {
  1121. color: #9DA9B6;
  1122. font-weight: 400;
  1123. }
  1124. }
  1125. &.btn-reg {
  1126. background: #007AFF;
  1127. .v-btn__content {
  1128. color: #fff;
  1129. font-weight: 400;
  1130. .ico {
  1131. width: 18px;
  1132. height: 18px;
  1133. margin-right: 0.37rem;
  1134. background-image: url("../img/ico_reg.svg");
  1135. }
  1136. }
  1137. }
  1138. &.btn-gray {
  1139. border: 0.06rem solid #DFE4EA;
  1140. background: #F4F6F9;
  1141. &.v-btn--disabled {
  1142. background: #fff !important;
  1143. border-color: #BDC5CE !important;
  1144. .v-btn__content {
  1145. color: #6E7E8F !important;
  1146. }
  1147. }
  1148. .v-btn__content {
  1149. color: #9DAAB8;
  1150. font-size: 0.75rem;
  1151. font-weight: 600;
  1152. }
  1153. }
  1154. &.btn-black {
  1155. background: #5A6571;
  1156. .v-btn__content {
  1157. color: #fff;
  1158. }
  1159. }
  1160. &.btn-gray-bor {
  1161. border: 0.06rem solid #BDC5CE;
  1162. background: #fff;
  1163. .v-btn__content {
  1164. color: #6E7E8F;
  1165. font-weight: 600;
  1166. }
  1167. }
  1168. &.btn-gray-bor2 {
  1169. border: 0.06rem solid #BDC5CE;
  1170. background: #fff;
  1171. &.v-btn--disabled {
  1172. background: #F4F6F9 !important;
  1173. border-color: #DFE4EA !important;
  1174. .v-btn__content {
  1175. color: #9DAAB8 !important;
  1176. }
  1177. }
  1178. .v-btn__content {
  1179. color: #5A6571;
  1180. }
  1181. }
  1182. &.btn-gray-bor3 {
  1183. border: 0.06rem solid #8F8F8F;
  1184. background: #fff;
  1185. .v-btn__content {
  1186. color: #333333;
  1187. }
  1188. }
  1189. &.v-btn--disabled {
  1190. background: #B3BFCD !important;
  1191. .v-btn__content {
  1192. color: #fff !important;
  1193. }
  1194. }
  1195. &.btn-excel {
  1196. width: 8.25rem;
  1197. border: 0.06rem solid #98CC9B;
  1198. height: 2.25rem;
  1199. &.v-btn--disabled {
  1200. background-color: #F4F6F9 !important;
  1201. border-color: #DFE4EA !important;
  1202. .ico {
  1203. background-image: url("../img/ico_excel_d.svg") !important;
  1204. }
  1205. .v-btn__content {
  1206. color: #9DAAB8 !important;
  1207. }
  1208. }
  1209. &.up {
  1210. border-color: #93C7FF;
  1211. width: 7.50rem;
  1212. .ico {
  1213. background-image: url("../img/ico_excel2.svg") !important;
  1214. }
  1215. .v-btn__content {
  1216. color: #007AFF !important;
  1217. }
  1218. }
  1219. .ico {
  1220. width: 1.13rem;
  1221. height: 1.13rem;
  1222. margin-right: 0.63rem;
  1223. background: url("../img/ico_excel.svg") no-repeat center / 100%;
  1224. }
  1225. .v-btn__content {
  1226. color: #19791E;
  1227. font-size: 0.81rem;
  1228. font-weight: 400;
  1229. }
  1230. }
  1231. &.btn-password {
  1232. background: #034EA2;
  1233. height: 1.81rem;
  1234. width: 6.88rem;
  1235. .v-btn__content {
  1236. color: #FFFFFF;
  1237. font-size: 0.75rem;
  1238. font-weight: 600;
  1239. }
  1240. }
  1241. &.mini {
  1242. width: 84px;
  1243. // height: 36px;
  1244. height: 2.25rem;
  1245. padding: 0 2.31rem;
  1246. .v-btn__content {
  1247. font-size: 0.75rem;
  1248. }
  1249. }
  1250. &.mini2 {
  1251. height: 2.5rem;
  1252. .v-btn__content {
  1253. font-size: 0.75rem;
  1254. font-weight: 600;
  1255. }
  1256. }
  1257. &.mid {
  1258. height: 2.25rem;
  1259. .v-btn__content {
  1260. font-size: 0.75rem;
  1261. }
  1262. }
  1263. .v-btn__overlay {
  1264. display: none;
  1265. }
  1266. .v-btn__underlay {
  1267. display: none;
  1268. }
  1269. .v-btn__content {
  1270. font-size: 0.94rem;
  1271. font-weight: 700;
  1272. letter-spacing: -0.02rem;
  1273. text-transform: none;
  1274. }
  1275. }
  1276. .custom-dialog {
  1277. background: #fff;
  1278. &.alert {
  1279. .v-common-dialog-content {
  1280. padding: 2.50rem 1.56rem 2.19rem 1.56rem;
  1281. .alert-txt {
  1282. text-align: left;
  1283. color: #222222;
  1284. font-size: 0.88rem;
  1285. font-weight: 400;
  1286. line-height: 1.63rem;
  1287. }
  1288. }
  1289. .btn-wrap {
  1290. padding-top: 0;
  1291. }
  1292. }
  1293. &.certify {
  1294. .modal-tit {
  1295. position: relative;
  1296. padding: 0;
  1297. height: auto;
  1298. border: 0;
  1299. .btn-close {
  1300. position: absolute;
  1301. right: 0.94rem;
  1302. top: 0.94rem;
  1303. }
  1304. }
  1305. .v-common-dialog-content {
  1306. padding-top: 2.81rem;
  1307. overflow: hidden;
  1308. }
  1309. .btn-wrap {
  1310. padding-bottom: 2.81rem;
  1311. .custom-btn {
  1312. height: 2.63rem;
  1313. }
  1314. }
  1315. }
  1316. .modal-tit {
  1317. display: flex;
  1318. align-items: center;
  1319. height: 3.63rem;
  1320. border-bottom: 0.06rem solid #EEEEEE;
  1321. padding: 0 1.25rem 0 1.56rem;
  1322. strong {
  1323. color: #034EA2;
  1324. font-size: 0.81rem;
  1325. font-weight: 600;
  1326. display: block;
  1327. }
  1328. .btn-close {
  1329. width: 1.50rem;
  1330. height: 1.50rem;
  1331. margin-left: auto;
  1332. background: url("../img/ico_pop_close.svg") no-repeat center / 100%;
  1333. }
  1334. }
  1335. .v-common-dialog-content {
  1336. padding: 1.56rem 1.56rem 0 1.56rem;
  1337. max-height: calc(100vh - 18.33rem);
  1338. overflow-y: auto;
  1339. &:has(.dialog-tree) {
  1340. overflow-y: hidden;
  1341. }
  1342. .find-pwd {
  1343. p {
  1344. color: #222;
  1345. display: block;
  1346. font-weight: 400;
  1347. font-size: 0.88rem;
  1348. margin-bottom: 1.88rem;
  1349. }
  1350. .txt-field-box {
  1351. margin-bottom: 0.94rem;
  1352. }
  1353. .otp-box {
  1354. display: flex;
  1355. gap: 0.94rem;
  1356. .txt-field-box {
  1357. width: calc(100% - 6.82rem);
  1358. margin: 0;
  1359. }
  1360. .btn-blue-bor {
  1361. width: 5.88rem;
  1362. }
  1363. }
  1364. .txt-list {
  1365. padding-bottom: 1.25rem;
  1366. margin-top: 2.19rem;
  1367. }
  1368. }
  1369. .otp-reg {
  1370. background: url("../img/bg_otp_reg.png") no-repeat right top / 16.69rem auto;
  1371. margin-top: -1.56rem;
  1372. padding-top: 1.56rem;
  1373. &.bg-not {
  1374. background: none;
  1375. }
  1376. .otp-box {
  1377. margin-top: 1.88rem;
  1378. &:first-of-type {
  1379. margin-top: 0;
  1380. }
  1381. .otp-box-tit {
  1382. display: block;
  1383. color: #000;
  1384. font-size: 0.94rem;
  1385. font-weight: 700;
  1386. letter-spacing: -0.02rem;
  1387. margin-bottom: 1.13rem;
  1388. }
  1389. .txt-list {
  1390. padding-bottom: 0.63rem;
  1391. }
  1392. .otp-reg-step {
  1393. margin-bottom: 1.56rem;
  1394. ul {
  1395. display: flex;
  1396. justify-content: space-between;
  1397. li {
  1398. width: 4.69rem;
  1399. display: flex;
  1400. flex-direction: column;
  1401. align-items: center;
  1402. position: relative;
  1403. &:after {
  1404. content: "";
  1405. width: 1.25rem;
  1406. height: 1.25rem;
  1407. right: -2.25rem;
  1408. top: 1.56rem;
  1409. position: absolute;
  1410. background: url("../img/ico_step_arr.svg") no-repeat center / 100%;
  1411. }
  1412. &:last-of-type {
  1413. &:after {
  1414. display: none;
  1415. }
  1416. }
  1417. .ico {
  1418. background: #F7F7F7 no-repeat center / 1.25rem;
  1419. height: 4.69rem;
  1420. width: 4.69rem;
  1421. border-radius: 100%;
  1422. &.ico1 {
  1423. background-image: url("../img/ico_otp_step1.svg");
  1424. }
  1425. &.ico2 {
  1426. background-image: url("../img/ico_otp_step2.svg");
  1427. }
  1428. &.ico3 {
  1429. background-image: url("../img/ico_otp_step3.svg");
  1430. }
  1431. &.ico4 {
  1432. background-image: url("../img/ico_otp_step4.svg");
  1433. }
  1434. &.ico5 {
  1435. background-image: url("../img/ico_otp_step5.svg");
  1436. }
  1437. }
  1438. .numbering {
  1439. background: #034EA2;
  1440. border-radius: 100%;
  1441. height: 1.25rem;
  1442. width: 2.31rem;
  1443. display: flex;
  1444. align-items: center;
  1445. justify-content: center;
  1446. margin-top: -0.63rem;
  1447. color: #fff;
  1448. font-size: 0.63rem;
  1449. font-weight: 700;
  1450. }
  1451. p {
  1452. text-align: center;
  1453. color: #333;
  1454. font-size: 0.81rem;
  1455. letter-spacing: -0.02rem;
  1456. margin-top: 0.63rem;
  1457. line-height: 1rem;
  1458. font-weight: 400;
  1459. }
  1460. }
  1461. }
  1462. }
  1463. .otp-certify {
  1464. background: #F8F8F8;
  1465. border: 0.06rem solid #EBEBEB;
  1466. padding: 1.88rem 0;
  1467. display: flex;
  1468. flex-direction: column;
  1469. align-items: center;
  1470. .certify-logo {
  1471. margin-bottom: 1.50rem;
  1472. span {
  1473. display: block;
  1474. height: 0.81rem;
  1475. width: 100%;
  1476. font-size: 0;
  1477. background: url("../img/logo_login.svg") no-repeat center / auto 0.81rem;
  1478. }
  1479. p {
  1480. margin-top: 0.38rem;
  1481. font-weight: 400;
  1482. text-align: center;
  1483. color: #333;
  1484. font-size: 0.88rem;
  1485. letter-spacing: -0.02rem;
  1486. }
  1487. }
  1488. .txt-field-box {
  1489. width: 18.75rem;
  1490. margin-bottom: 0.5rem;
  1491. }
  1492. .error-txt {
  1493. margin-top: 0.25rem;
  1494. width: 18.75rem;
  1495. }
  1496. .custom-input.v-text-field {
  1497. &.mini {
  1498. min-height: 2.5rem;
  1499. .v-input__control {
  1500. height: 2.5rem;
  1501. .v-field__field {
  1502. .v-field__input {
  1503. height: 2.5rem;
  1504. min-height: 2.5rem;
  1505. font-size: 0.81rem;
  1506. border: 0.06rem solid #E4E4E4;
  1507. }
  1508. }
  1509. }
  1510. }
  1511. }
  1512. .custom-btn {
  1513. width: 18.75rem;
  1514. margin-top: 0.94rem;
  1515. .v-btn__content {
  1516. font-weight: 700;
  1517. font-size: 0.81rem;
  1518. }
  1519. }
  1520. }
  1521. .otp-chk {
  1522. margin-top: 1.63rem;
  1523. padding-bottom: 1.56rem;
  1524. }
  1525. }
  1526. .otp-txt {
  1527. line-height: 0.94rem;
  1528. color: #000;
  1529. font-size: 0.94rem;
  1530. font-weight: 600;
  1531. letter-spacing: -0.02rem;
  1532. &.type2 {
  1533. font-weight: 400;
  1534. }
  1535. }
  1536. .otp-set-step {
  1537. margin-top: 1.88rem;
  1538. .otp-set-box {
  1539. margin-bottom: 2.50rem;
  1540. &:last-of-type {
  1541. margin-bottom: 0;
  1542. padding-bottom: 1.56rem;
  1543. }
  1544. .tit {
  1545. display: flex;
  1546. align-items: center;
  1547. margin-bottom: 1.06rem;
  1548. .num {
  1549. width: 3.75rem;
  1550. height: 1.69rem;
  1551. border-radius: 6.25rem;
  1552. display: flex;
  1553. align-items: center;
  1554. justify-content: center;
  1555. color: #fff;
  1556. font-weight: 600;
  1557. font-size: 0.69rem;
  1558. margin-right: 0.81rem;
  1559. background: #0078FF;
  1560. }
  1561. strong {
  1562. color: #000;
  1563. font-size: 0.81rem;
  1564. font-weight: 700;
  1565. letter-spacing: -0.02rem;
  1566. }
  1567. }
  1568. .set-in {
  1569. .app-download {
  1570. display: flex;
  1571. background: #F8F8F8;
  1572. border: 0.06rem solid #EBEBEB;
  1573. padding: 1.25rem 0;
  1574. margin-bottom: 1.56rem;
  1575. .store {
  1576. display: flex;
  1577. align-items: center;
  1578. justify-content: center;
  1579. width: 100%;
  1580. gap: 1.56rem;
  1581. button {
  1582. width: 8.81rem;
  1583. height: 2.50rem;
  1584. font-size: 0;
  1585. background: no-repeat center / 100%;
  1586. &.btn-google {
  1587. background-image: url("../img/btn_goolge_play.svg");
  1588. }
  1589. &.btn-app {
  1590. background-image: url("../img/btn_app_store.svg");
  1591. }
  1592. }
  1593. }
  1594. .qr {
  1595. padding: 0 2.38rem;
  1596. display: flex;
  1597. flex-shrink: 0;
  1598. height: 4.38rem;
  1599. align-items: center;
  1600. border-left: 0.06rem solid #DCDCDC;
  1601. .img {
  1602. width: 3.75rem;
  1603. height: 3.75rem;
  1604. img {
  1605. width: 100%;
  1606. height: 100%;
  1607. }
  1608. }
  1609. }
  1610. }
  1611. .key-box {
  1612. padding: 1.25rem 2.50rem;
  1613. display: flex;
  1614. margin-bottom: 1.56rem;
  1615. align-items: center;
  1616. background: #F8F8F8;
  1617. border: 0.06rem solid #EBEBEB;
  1618. .qr {
  1619. width: 3.75rem;
  1620. height: 3.75rem;
  1621. flex-shrink: 0;
  1622. img {
  1623. width: 100%;
  1624. height: 100%;
  1625. }
  1626. }
  1627. p {
  1628. margin-left: 3.44rem;
  1629. color: #000;
  1630. font-size: 0.88rem;
  1631. font-weight: 400;
  1632. span {
  1633. font-weight: 700;
  1634. }
  1635. }
  1636. }
  1637. .txt-field-box {
  1638. margin-top: 1.56rem;
  1639. }
  1640. }
  1641. }
  1642. }
  1643. }
  1644. .certify-y {
  1645. .ico {
  1646. display: block;
  1647. margin: 0 auto;
  1648. width: 4.38rem;
  1649. height: 4.38rem;
  1650. background: #E9EBEE url("../img/ico_certify_y.svg") no-repeat center / 2.25rem;
  1651. border-radius: 100%;
  1652. }
  1653. .certify-txt {
  1654. text-align: center;
  1655. font-weight: 400;
  1656. font-size: 1rem;
  1657. margin-top: 1.25rem;
  1658. color: #222222;
  1659. span {
  1660. font-weight: 700;
  1661. color: #034EA2;
  1662. }
  1663. }
  1664. }
  1665. .info-mod {
  1666. padding-bottom: 1.25rem;
  1667. .mod-txt {
  1668. color: #222;
  1669. font-size: 0.88rem;
  1670. font-weight: 400;
  1671. margin-bottom: 1.88rem;
  1672. }
  1673. }
  1674. .excel-step {
  1675. display: flex;
  1676. gap: 3.38rem;
  1677. flex-direction: column;
  1678. padding-bottom: 0.94rem;
  1679. .excel-step-box {
  1680. position: relative;
  1681. &:before {
  1682. position: absolute;
  1683. width: 1.5rem;
  1684. height: 1.5rem;
  1685. bottom: -2.44rem;
  1686. left: 50%;
  1687. transform: translateX(-50%);
  1688. background: url("../img/ico_step_arr2.svg") no-repeat center / 100%;
  1689. content: "";
  1690. }
  1691. &:last-of-type {
  1692. &:before {
  1693. display: none;
  1694. }
  1695. }
  1696. .excel-step-top {
  1697. display: flex;
  1698. align-items: center;
  1699. margin-bottom: 1.06rem;
  1700. .step {
  1701. display: flex;
  1702. align-items: center;
  1703. justify-content: center;
  1704. width: 3.75rem;
  1705. height: 1.69rem;
  1706. border-radius: 6.25rem;
  1707. color: #fff;
  1708. margin-right: 0.81rem;
  1709. font-size: 0.69rem;
  1710. font-weight: 600;
  1711. background: #0078FF;
  1712. }
  1713. strong {
  1714. color: #000;
  1715. font-weight: 700;
  1716. font-size: 0.88rem;
  1717. letter-spacing: -0.02rem;
  1718. }
  1719. }
  1720. .excel-step-btm {
  1721. .step-bg-box {
  1722. background: #F8F8F8;
  1723. border: 0.06rem solid #ebebeb;
  1724. display: flex;
  1725. padding: 1.25rem 0;
  1726. &.type2 {
  1727. flex-direction: column;
  1728. padding: 1.81rem 2.44rem 1.5rem 2.44rem;
  1729. p {
  1730. text-align: center;
  1731. color: #444444;
  1732. font-size: 0.81rem;
  1733. letter-spacing: -0.02rem;
  1734. font-weight: 400;
  1735. &.txt2 {
  1736. margin-top: 0.56rem;
  1737. }
  1738. span {
  1739. display: inline-flex;
  1740. align-items: center;
  1741. justify-content: center;
  1742. width: 3.75rem;
  1743. height: 1.69rem;
  1744. border-radius: 6.25rem;
  1745. color: #fff;
  1746. margin: 0 0.5rem;
  1747. font-size: 0.69rem;
  1748. font-weight: 600;
  1749. background: #0078FF;
  1750. }
  1751. }
  1752. }
  1753. .download-txt {
  1754. display: flex;
  1755. align-items: center;
  1756. justify-content: center;
  1757. width: 100%;
  1758. p {
  1759. display: inline-block;
  1760. text-align: left;
  1761. color: #444444;
  1762. font-size: 0.81rem;
  1763. font-weight: 400;
  1764. letter-spacing: -0.02rem;
  1765. line-height: 1.63rem;
  1766. }
  1767. }
  1768. .download-area {
  1769. padding: 0.88rem 1.81rem;
  1770. margin-left: auto;
  1771. flex-shrink: 0;
  1772. border-left: 0.06rem solid #DCDCDC;
  1773. .custom-btn.btn-download {
  1774. width: 8.75rem;
  1775. height: 2.5rem;
  1776. min-height: 2.5rem;
  1777. .ico {
  1778. width: 1rem;
  1779. height: 1rem;
  1780. background: url("../img/ico_download.svg") no-repeat center / 100%;
  1781. margin-left: 0.94rem;
  1782. }
  1783. .v-btn__content {
  1784. font-size: 0.81rem;
  1785. font-weight: 700;
  1786. letter-spacing: -0.02rem;
  1787. }
  1788. }
  1789. }
  1790. .add-file {
  1791. margin-top: 1.56rem;
  1792. position: relative;
  1793. .v-file-input {
  1794. position: relative;
  1795. //padding-right:6.88rem;
  1796. .v-input__prepend {
  1797. grid-area: none;
  1798. margin: 0;
  1799. .v-icon {
  1800. display: none;
  1801. }
  1802. }
  1803. .v-input__control {
  1804. //height:2.25rem;
  1805. //border:0.06rem solid #E0E0E0;
  1806. background: transparent;
  1807. .v-field {
  1808. height: 2.25rem;
  1809. padding: 0;
  1810. }
  1811. .v-field__overlay {
  1812. background: transparent;
  1813. ;
  1814. opacity: 1;
  1815. }
  1816. .v-field__field {
  1817. height: 2.25rem;
  1818. padding-right: 6.88rem;
  1819. position: relative;
  1820. cursor: pointer;
  1821. .v-label {
  1822. width: 100%;
  1823. height: 100%;
  1824. width: 6.25rem;
  1825. overflow: visible !important;
  1826. margin: 0 !important;
  1827. position: absolute;
  1828. right: 0;
  1829. top: 0;
  1830. display: none;
  1831. transform: none;
  1832. contain: none;
  1833. cursor: pointer;
  1834. transition: none;
  1835. &.v-field-label--floating {
  1836. display: block !important;
  1837. visibility: visible !important;
  1838. opacity: 1 !important;
  1839. }
  1840. }
  1841. .v-field__input {
  1842. height: 2.25rem;
  1843. min-height: 2.25rem;
  1844. padding: 0 0.94rem;
  1845. color: #444444;
  1846. font-size: 0.75rem;
  1847. font-weight: 400;
  1848. border: 0.06rem solid #E0E0E0;
  1849. background: #fff;
  1850. }
  1851. input {
  1852. cursor: pointer;
  1853. }
  1854. }
  1855. .v-field__clearable {
  1856. position: absolute;
  1857. right: 7.31rem;
  1858. top: 50%;
  1859. transform: translateY(-50%);
  1860. z-index: 5;
  1861. }
  1862. .v-field__outline {
  1863. display: none;
  1864. }
  1865. }
  1866. }
  1867. .btn-file {
  1868. width: 100px;
  1869. height: 2.25rem;
  1870. display: flex;
  1871. align-items: center;
  1872. justify-content: center;
  1873. background: #f8f8f8;
  1874. border: 0.06rem solid rgba(3, 78, 162, 0.3);
  1875. color: #034EA2;
  1876. font-weight: 700;
  1877. font-size: 0.81rem;
  1878. letter-spacing: -0.02rem;
  1879. cursor: pointer;
  1880. }
  1881. }
  1882. }
  1883. .tbl-wrap {
  1884. .custom-table.v-table {
  1885. .v-table__wrapper {
  1886. max-height: calc(1vh * (196 / 10.8));
  1887. min-height: auto;
  1888. height: auto;
  1889. }
  1890. }
  1891. }
  1892. }
  1893. }
  1894. }
  1895. .backup-name-dns {
  1896. display: flex;
  1897. align-items: flex-start;
  1898. justify-content: flex-start;
  1899. flex-direction: column;
  1900. margin-bottom: 1.25rem;
  1901. gap: 0.875rem;
  1902. strong {
  1903. color: #222222;
  1904. font-weight: 700;
  1905. font-size: 0.88rem;
  1906. flex-shrink: 0;
  1907. }
  1908. p {
  1909. color: #222222;
  1910. font-weight: 700;
  1911. font-size: 0.88rem;
  1912. flex-shrink: 0;
  1913. }
  1914. }
  1915. .notice-img {
  1916. border: 0.06rem solid #D0E7FF;
  1917. display: flex;
  1918. align-items: center;
  1919. padding: 1.19rem 1.88rem;
  1920. margin-bottom: 2.19rem;
  1921. background: #E4F1FF url("../img/bg_popup.svg") no-repeat center top / 100% auto;
  1922. .ico {
  1923. width: 5.13rem;
  1924. height: 5.13rem;
  1925. background: url("../img/img_popup.svg") no-repeat center / 100%;
  1926. }
  1927. .notice-info {
  1928. padding-left: 1.88rem;
  1929. strong {
  1930. color: #111;
  1931. font-size: 1.13rem;
  1932. font-weight: 700;
  1933. line-height: 1.13rem;
  1934. display: block;
  1935. text-align: left;
  1936. letter-spacing: -0.01rem;
  1937. margin-bottom: 1.38rem;
  1938. }
  1939. p {
  1940. color: #555555;
  1941. font-size: 0.88rem;
  1942. font-weight: 400;
  1943. text-align: left;
  1944. letter-spacing: -0.01rem;
  1945. }
  1946. }
  1947. }
  1948. .notice-txt {
  1949. padding-bottom: 1.25rem;
  1950. word-break: break-all;
  1951. color: #333;
  1952. font-size: 0.88rem;
  1953. letter-spacing: -0.02rem;
  1954. line-height: 1.25rem;
  1955. }
  1956. .map-area {
  1957. height: 25rem;
  1958. border: 0.06rem solid #F7F8F9;
  1959. background: #FAFAFA;
  1960. }
  1961. .map-address {
  1962. display: flex;
  1963. align-items: center;
  1964. padding: 0.63rem;
  1965. background: #FAFAFA;
  1966. border: 0.06rem solid #F7F8F9;
  1967. margin: 0.63rem 0 0;
  1968. strong {
  1969. color: #111;
  1970. font-weight: 700;
  1971. flex-shrink: 0;
  1972. font-size: 0.88rem;
  1973. }
  1974. p {
  1975. color: #333;
  1976. font-size: 0.88rem;
  1977. font-weight: 600;
  1978. width: 100%;
  1979. padding-left: 0.5rem;
  1980. }
  1981. }
  1982. .dialog-tree {
  1983. padding: 0.94rem 0.31rem 0.94rem 0.94rem;
  1984. border: 0.06rem solid #F7F8F9;
  1985. .tree-area {
  1986. max-height: calc(100vh - 25rem);
  1987. }
  1988. }
  1989. }
  1990. .btn-wrap {
  1991. display: flex;
  1992. padding: 2.19rem 0 3.44rem;
  1993. justify-content: center;
  1994. gap: 0.69rem;
  1995. }
  1996. }
  1997. .custom-table.v-table {
  1998. position: relative;
  1999. &.backup-table {
  2000. .v-table__wrapper {
  2001. min-height: 196px;
  2002. height: calc(1vh * (196 / 10.8));
  2003. }
  2004. }
  2005. .v-table__wrapper {
  2006. border-top: 0.06rem solid #CCCCCC;
  2007. height: calc(1vh * (539 / 10.8));
  2008. min-height: 539px;
  2009. table {
  2010. table-layout: fixed;
  2011. thead {
  2012. tr {
  2013. th {
  2014. height: 47px;
  2015. padding: calc(1vh * (15 / 10.8)) 10px calc(1vh * (14 / 10.8));
  2016. background: #FAFAFA !important;
  2017. color: #222222;
  2018. font-size: 0.75rem;
  2019. font-weight: 600;
  2020. box-shadow: none;
  2021. box-shadow: inset 0 -0.06rem 0 #EBEBEB !important;
  2022. vertical-align: middle;
  2023. .v-data-table-header__content {
  2024. justify-content: center;
  2025. text-align: center;
  2026. span {
  2027. margin-left: 1.13rem;
  2028. }
  2029. }
  2030. }
  2031. }
  2032. }
  2033. tbody {
  2034. tr {
  2035. &.cursor {
  2036. td {
  2037. cursor: pointer;
  2038. }
  2039. }
  2040. &:hover {
  2041. td {
  2042. background: rgba(89, 146, 255, 0.12);
  2043. }
  2044. }
  2045. td {
  2046. min-height: 49px;
  2047. height: calc(1vh * (49 / 10.8));
  2048. padding: 0.63rem 0.63rem 0.56rem 0.63rem;
  2049. color: #222222;
  2050. text-align: center;
  2051. font-size: 0.75rem;
  2052. font-weight: 400;
  2053. vertical-align: middle;
  2054. border-bottom: 0.06rem solid #EBEBEB !important;
  2055. .ellipsis {
  2056. display: block;
  2057. width: 100%;
  2058. overflow: hidden;
  2059. white-space: nowrap;
  2060. text-overflow: ellipsis;
  2061. word-break: break-all;
  2062. }
  2063. .cusror {
  2064. cursor: pointer;
  2065. }
  2066. .btn-session-end {
  2067. display: flex;
  2068. margin: 0 auto;
  2069. align-items: center;
  2070. justify-content: center;
  2071. width: 6.44rem;
  2072. height: 1.81rem;
  2073. border-radius: 6.25rem;
  2074. background: #2C3744;
  2075. padding: 0;
  2076. box-shadow: none;
  2077. .v-btn__content {
  2078. color: #fff;
  2079. font-size: 0.75rem;
  2080. font-weight: 600;
  2081. letter-spacing: 0;
  2082. .ico {
  2083. width: 1.13rem;
  2084. height: 1.13rem;
  2085. background: url("../img/ico_end.svg");
  2086. margin-right: 0.59rem;
  2087. }
  2088. }
  2089. }
  2090. .result-color {
  2091. display: flex;
  2092. width: 3.31rem;
  2093. height: 1.81rem;
  2094. margin: 0 auto;
  2095. border-radius: 6.25rem;
  2096. align-items: center;
  2097. justify-content: center;
  2098. color: #fff;
  2099. font-size: 0.75rem;
  2100. font-weight: 600;
  2101. &.type-blue {
  2102. background: #064F9E;
  2103. }
  2104. &.type-red {
  2105. background: #FF2426;
  2106. }
  2107. }
  2108. .btn-state {
  2109. padding: 0 0.75rem;
  2110. display: inline-flex;
  2111. align-items: center;
  2112. font-size: 0.75rem;
  2113. height: 1.81rem;
  2114. border-radius: 6.25rem;
  2115. font-weight: 600;
  2116. border: 0.06rem solid;
  2117. background: #fff;
  2118. &.state1 {
  2119. border-color: rgba(0, 122, 255, 0.5);
  2120. color: #007AFF;
  2121. .ico {
  2122. background-image: url("../img/ico_state1.svg");
  2123. }
  2124. }
  2125. &.state2 {
  2126. border-color: rgba(255, 36, 38, 0.5);
  2127. color: #FF2426;
  2128. .ico {
  2129. background-image: url("../img/ico_state2.svg");
  2130. }
  2131. }
  2132. &.state3 {
  2133. border-color: rgba(255, 131, 0, 0.5);
  2134. color: #FF8300;
  2135. .ico {
  2136. background-image: url("../img/ico_state3.svg");
  2137. }
  2138. }
  2139. .ico {
  2140. width: 0.88rem;
  2141. height: 0.88rem;
  2142. background: no-repeat center / 100%;
  2143. margin-right: 0.31rem;
  2144. }
  2145. }
  2146. .btn-backup {
  2147. border: 0.06rem solid rgba(70, 118, 173, 0.4);
  2148. border-radius: 6.25rem;
  2149. height: 1.81rem;
  2150. display: inline-flex;
  2151. margin: 0 auto;
  2152. align-items: center;
  2153. padding: 0 0.75rem;
  2154. letter-spacing: 0;
  2155. box-shadow: none;
  2156. .v-btn__content {
  2157. color: #487EBD;
  2158. font-size: 0.75rem;
  2159. font-weight: 600;
  2160. letter-spacing: 0;
  2161. .ico {
  2162. width: 0.88rem;
  2163. height: 0.88rem;
  2164. background: no-repeat center / 100%;
  2165. margin-right: 0.31rem;
  2166. &.ico1 {
  2167. background-image: url("../img/ico_backup1.svg");
  2168. }
  2169. &.ico2 {
  2170. background-image: url("../img/ico_backup2.svg");
  2171. }
  2172. &.ico3 {
  2173. background-image: url("../img/ico_backup3.svg");
  2174. }
  2175. &.ico4 {
  2176. background-image: url("../img/ico_backup4.svg");
  2177. }
  2178. }
  2179. }
  2180. }
  2181. .input-wrap.slt-btn {
  2182. width: 100%;
  2183. justify-content: center;
  2184. .custom-select {
  2185. width: 8.63rem;
  2186. flex: none;
  2187. height: 1.81rem;
  2188. .v-input__control {
  2189. .v-field {
  2190. height: 1.81rem;
  2191. .v-field__field {
  2192. height: 1.81rem;
  2193. .v-field__input {
  2194. height: 1.81rem;
  2195. min-height: 1.81rem;
  2196. .v-btn__content {
  2197. color: #6E7E8F;
  2198. }
  2199. }
  2200. }
  2201. }
  2202. }
  2203. }
  2204. .custom-btn {
  2205. padding: 0;
  2206. min-width: 2.94rem;
  2207. width: 2.94rem;
  2208. height: 1.81rem;
  2209. min-height: 1.81rem;
  2210. }
  2211. }
  2212. }
  2213. }
  2214. }
  2215. .chk-first {
  2216. .v-selection-control__input::before {
  2217. display: none;
  2218. }
  2219. .v-icon {
  2220. opacity: 1;
  2221. width: 1.06rem;
  2222. min-width: 1.06rem;
  2223. height: 1.06rem;
  2224. background: no-repeat center / 100%;
  2225. &::before {
  2226. display: none;
  2227. }
  2228. &.mdi-checkbox-blank-outline {
  2229. background-image: url("../img/ico_chk_off.svg");
  2230. }
  2231. &.mdi-checkbox-marked {
  2232. background-image: url("../img/ico_chk_on.svg");
  2233. }
  2234. &.mdi-minus-box {
  2235. background: #007AFF;
  2236. position: relative;
  2237. overflow: hidden;
  2238. width: 1.06rem;
  2239. height: 1.06rem;
  2240. min-width: 1.06rem;
  2241. border-radius: 0.31rem;
  2242. &:before {
  2243. display: block;
  2244. color: #007AFF;
  2245. width: 1.06rem;
  2246. height: 1.06rem;
  2247. font-size: 1.44rem;
  2248. position: absolute;
  2249. top: -0.19rem;
  2250. left: -0.19rem;
  2251. border: 0;
  2252. background: #fff;
  2253. }
  2254. }
  2255. }
  2256. .v-ripple__container {
  2257. display: none;
  2258. }
  2259. }
  2260. }
  2261. }
  2262. .v-data-table-footer,
  2263. .v-divider {
  2264. display: none;
  2265. }
  2266. .tbl-no-data {
  2267. min-height: 5rem;
  2268. padding: 0.63rem 0;
  2269. display: flex;
  2270. align-items: center;
  2271. justify-content: center;
  2272. flex-direction: column;
  2273. .ico-excel {
  2274. width: 2.5rem;
  2275. height: 2.5rem;
  2276. display: inline-block;
  2277. background: url("../img/ico_not_excel.svg") no-repeat center / 100%;
  2278. margin-bottom: 0.63rem;
  2279. }
  2280. p {
  2281. text-align: center;
  2282. color: #333333;
  2283. font-size: 0.81rem;
  2284. font-weight: 400;
  2285. }
  2286. }
  2287. }
  2288. .connect-state {
  2289. display: flex;
  2290. margin: 0 auto;
  2291. align-items: center;
  2292. width: 8.38rem;
  2293. height: 1.81rem;
  2294. border-radius: 6.25rem;
  2295. padding: 0 0.88rem;
  2296. font-weight: 600;
  2297. font-size: 0.75rem;
  2298. color: #2D8CFA;
  2299. border: 0.06rem solid #2D8CFA;
  2300. background: #fff;
  2301. &.state-red {
  2302. border-color: #FFBABB;
  2303. color: #FF2426;
  2304. .cir {
  2305. background: #FF2426;
  2306. }
  2307. }
  2308. .cir {
  2309. width: 0.69rem;
  2310. height: 0.69rem;
  2311. border-radius: 100%;
  2312. margin-right: auto;
  2313. background: #2D8CFA;
  2314. }
  2315. }
  2316. .severity-type {
  2317. width: 4.56rem;
  2318. display: inline-flex;
  2319. align-items: center;
  2320. justify-content: center;
  2321. height: 1.81rem;
  2322. color: #fff;
  2323. font-size: 0.63rem;
  2324. font-weight: 600;
  2325. &.type-critical {
  2326. background: #FF2426;
  2327. }
  2328. &.type-major {
  2329. background: #FF7236;
  2330. }
  2331. &.type-minor {
  2332. background: #FFB800;
  2333. }
  2334. &.type-warning {
  2335. background: #C10002;
  2336. }
  2337. &.type-normal {
  2338. background: #064F9E;
  2339. }
  2340. &.type-not {
  2341. color: #222222;
  2342. font-weight: 400;
  2343. }
  2344. }
  2345. .custom-select.v-input {
  2346. &.not-detail {
  2347. .v-input__details {
  2348. display: none;
  2349. }
  2350. }
  2351. &.v-select--selected {
  2352. .v-input__control {
  2353. .v-field {
  2354. .v-field__field {
  2355. .v-label {
  2356. display: none;
  2357. }
  2358. }
  2359. }
  2360. }
  2361. }
  2362. &.v-input--error {
  2363. .v-input__control {
  2364. .v-field {
  2365. .v-field__outline {
  2366. border-color: #FF4C6D!important;
  2367. }
  2368. }
  2369. }
  2370. .v-input__details {
  2371. display: block;
  2372. width: 100%;
  2373. padding: 0.38rem 0.63rem 0 0.63rem;
  2374. .v-messages {
  2375. color: #FF4C6D;
  2376. text-align: left;
  2377. }
  2378. }
  2379. }
  2380. .v-input__control {
  2381. .v-field {
  2382. height: 2.25rem;
  2383. padding-right: 0;
  2384. background: #fff;
  2385. &.v-field--active {
  2386. .v-label {
  2387. visibility: visible;
  2388. }
  2389. }
  2390. .v-field__overlay {
  2391. display: none;
  2392. }
  2393. .v-field__field {
  2394. height: 2.25rem;
  2395. padding-left: 0.94rem;
  2396. overflow: hidden;
  2397. .v-label {
  2398. display: flex;
  2399. align-items: center;
  2400. position: static !important;
  2401. top: 0 !important;
  2402. height: 2.25rem;
  2403. font-size: 0.75rem;
  2404. color: #444444;
  2405. font-weight: 400;
  2406. margin: 0;
  2407. width: 100%;
  2408. opacity: 1;
  2409. min-width: 100%;
  2410. letter-spacing: 0;
  2411. transition: none !important;
  2412. transform: none !important;
  2413. }
  2414. .v-field__input {
  2415. padding: 0;
  2416. height: 2.25rem;
  2417. min-height: 2.25rem;
  2418. opacity: 1;
  2419. .v-select__selection {
  2420. font-size: 0.75rem;
  2421. color: #444;
  2422. font-weight: 400;
  2423. }
  2424. }
  2425. }
  2426. .v-field__append-inner {
  2427. .v-icon {
  2428. width: 0.75rem;
  2429. height: 0.75rem;
  2430. margin-right: 0.88rem;
  2431. min-width: 0.75rem;
  2432. background: url("/assets/img/ico_slt.svg") no-repeat center / 100%;
  2433. opacity: 1;
  2434. &:before {
  2435. display: none;
  2436. }
  2437. }
  2438. }
  2439. .v-field__outline {
  2440. border-radius: 0;
  2441. border: 0.06rem solid #E0E0E0;
  2442. >div {
  2443. display: none;
  2444. }
  2445. }
  2446. }
  2447. }
  2448. .v-input__details {
  2449. display: none;
  2450. }
  2451. }
  2452. .custom-textarea.v-textarea {
  2453. .v-input__control {
  2454. border: 0.06rem solid #E0E0E0;
  2455. border-radius: 0;
  2456. .v-field {
  2457. .v-field__overlay {
  2458. background: transparent;
  2459. opacity: 1;
  2460. }
  2461. .v-field__field {
  2462. .v-field__input {
  2463. font-size: 0.75rem;
  2464. font-weight: 400;
  2465. color: #444;
  2466. letter-spacing: 0;
  2467. padding: 0.94rem;
  2468. &::placeholder {
  2469. color: #AAAAAA;
  2470. opacity: 1;
  2471. }
  2472. }
  2473. }
  2474. .v-field__outline {
  2475. display: none;
  2476. }
  2477. }
  2478. }
  2479. .v-input__details {
  2480. display: none;
  2481. }
  2482. }
  2483. .v-menu {
  2484. border-radius: 0 !important;
  2485. box-shadow: none;
  2486. >.v-overlay__content {
  2487. border-radius: 0 !important;
  2488. box-shadow: none;
  2489. background: transparent;
  2490. }
  2491. .v-list {
  2492. border: 0.06rem solid #E0E0E0;
  2493. padding: 0;
  2494. margin-top: 0.06rem;
  2495. box-shadow: none;
  2496. overflow: hidden;
  2497. background: #fff;
  2498. .v-list-item {
  2499. background: none;
  2500. ;
  2501. min-height: 2.25rem;
  2502. padding: 0.38rem;
  2503. border-radius: 0;
  2504. .v-list-item-title {
  2505. font-size: 0.75rem;
  2506. color: #444;
  2507. font-weight: 400;
  2508. }
  2509. }
  2510. }
  2511. }
  2512. .calendar-wrap {
  2513. display: flex;
  2514. align-items: center;
  2515. margin-left: calc(1vw * (21 / 19.2));
  2516. .text {
  2517. padding: 0 calc(1vw * (10 / 19.2));
  2518. font-size: 0.75rem;
  2519. color: #444;
  2520. font-weight: 400;
  2521. }
  2522. }
  2523. .calendar {
  2524. .dp__input_wrap {
  2525. position: relative;
  2526. &:before {
  2527. content: "";
  2528. position: absolute;
  2529. right: 0.94rem;
  2530. top: 0.63rem;
  2531. width: 1rem;
  2532. height: 1rem;
  2533. background: url("/assets/img/ico_calendar.svg") no-repeat center / 100%;
  2534. }
  2535. .dp__input {
  2536. width: calc(1vw * (191 / 19.2));
  2537. padding: 0 2.56rem 0 0.94rem;
  2538. height: 2.25rem;
  2539. border: 0.06rem solid #E0E0E0 !important;
  2540. color: #444;
  2541. font-weight: 400;
  2542. font-size: 0.75rem;
  2543. border-radius: 0;
  2544. &:hover {
  2545. border-color: #E0E0E0;
  2546. }
  2547. &::placeholder {
  2548. color: #444;
  2549. font-weight: 400;
  2550. opacity: 1;
  2551. }
  2552. }
  2553. .dp__icon {
  2554. display: none;
  2555. }
  2556. }
  2557. .dp--menu-wrapper {
  2558. width: 16.44rem;
  2559. .dp__menu_inner {
  2560. padding: 0.38rem 0.50rem;
  2561. .dp--year-select,
  2562. .dp__month_year_select {
  2563. height: 2.19rem;
  2564. font-size: 1rem;
  2565. }
  2566. .dp__calendar_header_item {
  2567. height: 2.19rem;
  2568. width: 2.19rem;
  2569. padding: 0.31rem;
  2570. font-size: 1rem;
  2571. }
  2572. .dp__calendar_header_separator {
  2573. height: 0.06rem;
  2574. }
  2575. .dp__calendar_row {
  2576. margin: 0.31rem 0;
  2577. .dp__cell_inner {
  2578. height: 2.19rem;
  2579. width: 2.19rem;
  2580. padding: 0.31rem;
  2581. border-width: 0.06rem;
  2582. font-size: 1rem;
  2583. }
  2584. }
  2585. }
  2586. .dp__action_row {
  2587. .dp__selection_preview {
  2588. display: none;
  2589. }
  2590. }
  2591. .dp__action_buttons {
  2592. gap: 0.5rem;
  2593. }
  2594. .dp__action_button {
  2595. border-width: 0.06rem;
  2596. padding: 0.38rem;
  2597. margin: 0;
  2598. height: 1.38rem;
  2599. font-size: 0.81rem;
  2600. }
  2601. .dp__time_col_sec {
  2602. padding: 0 0.63rem;
  2603. }
  2604. .dp__time_col_block {
  2605. font-size: 2rem;
  2606. }
  2607. .dp__inc_dec_button {
  2608. padding: 0.31rem;
  2609. height: 2rem;
  2610. width: 2rem;
  2611. }
  2612. .dp__time_display_block {
  2613. padding: 0 0.19rem;
  2614. }
  2615. .dp__button {
  2616. padding: 0.63em;
  2617. }
  2618. .dp__overlay_cell_pad {
  2619. padding: 0.63em 0;
  2620. }
  2621. .dp__overlay_col {
  2622. padding: 0.19rem;
  2623. }
  2624. .dp__overlay_container {
  2625. height: 18.00rem;
  2626. }
  2627. }
  2628. }
  2629. .pagination-wrapper {
  2630. margin-top: 1.88rem;
  2631. display: flex;
  2632. align-items: center;
  2633. justify-content: center;
  2634. .pagination-btn {
  2635. min-width: 1.75rem;
  2636. height: 1.75rem !important;
  2637. background-repeat: no-repeat !important;
  2638. background-color: transparent !important;
  2639. background-position: center !important;
  2640. background-size: 100%;
  2641. padding: 0;
  2642. box-shadow: none !important;
  2643. flex-shrink: 0;
  2644. &.prev1 {
  2645. margin: 0 0.63rem 0 0.31rem;
  2646. background-image: url("/assets/img/ico_paging_prev1.svg");
  2647. }
  2648. &.prev2 {
  2649. background-image: url("/assets/img/ico_paging_prev2.svg");
  2650. }
  2651. &.next1 {
  2652. margin: 0 0.31rem 0 0.63rem;
  2653. background-image: url("/assets/img/ico_paging_next1.svg");
  2654. }
  2655. &.next2 {
  2656. background-image: url("/assets/img/ico_paging_next2.svg");
  2657. }
  2658. &.number {
  2659. background-color: #fff;
  2660. border-radius: 100%;
  2661. }
  2662. &.more {
  2663. background-image: url("../img/ico_paging_more.svg");
  2664. }
  2665. &.on {
  2666. background: #007AFF !important;
  2667. .v-btn__content {
  2668. color: #fff;
  2669. font-weight: 700;
  2670. }
  2671. }
  2672. &.v-btn--disabled {
  2673. opacity: 0.4;
  2674. }
  2675. .v-btn__overlay,
  2676. .v-btn__underlay,
  2677. .v-ripple__container {
  2678. display: none !important;
  2679. }
  2680. .v-btn__content {
  2681. color: #5A5A5A;
  2682. font-size: 0.75rem;
  2683. line-height: 0.75rem;
  2684. font-weight: 400;
  2685. }
  2686. }
  2687. .page-go {
  2688. display: flex;
  2689. align-items: center;
  2690. overflow: hidden;
  2691. height: 2rem;
  2692. margin-left: 0.94rem;
  2693. .custom-input.v-text-field.mini {
  2694. height: 2rem;
  2695. min-height: 2rem;
  2696. .v-input__control {
  2697. height: 2rem;
  2698. .v-field__field {
  2699. .v-field__input {
  2700. height: 2rem;
  2701. min-height: 2rem;
  2702. border-right: 0;
  2703. border-radius: 0.63rem 0 0 0.63rem;
  2704. padding: 0 0.56rem;
  2705. color: #5a5a5a;
  2706. font-size: 0.75rem;
  2707. font-weight: 400;
  2708. }
  2709. }
  2710. }
  2711. }
  2712. button {
  2713. height: 2rem;
  2714. width: 2.81rem;
  2715. border-radius: 0 0.63rem 0.63rem 0;
  2716. border: 0.06rem solid #e8e8e8;
  2717. background: #f8f8f8;
  2718. display: flex;
  2719. align-items: center;
  2720. justify-content: center;
  2721. color: #007AFF;
  2722. font-size: 0.75rem;
  2723. font-weight: 600;
  2724. }
  2725. }
  2726. }
  2727. .txt-list {
  2728. li {
  2729. margin-bottom: 0.63rem;
  2730. position: relative;
  2731. padding-left: 1.06rem;
  2732. line-height: 1.13rem;
  2733. color: #444444;
  2734. font-size: 0.81rem;
  2735. font-weight: 400;
  2736. letter-spacing: -0.02rem;
  2737. &:last-of-type {
  2738. margin-bottom: 0;
  2739. }
  2740. &:before {
  2741. position: absolute;
  2742. width: 0.31rem;
  2743. height: 0.31rem;
  2744. left: 0;
  2745. top: 0.38rem;
  2746. background: #C0C0C0;
  2747. border-radius: 100%;
  2748. content: "";
  2749. }
  2750. p {
  2751. margin-top: 0.31rem;
  2752. }
  2753. }
  2754. }
  2755. .input-wrap {
  2756. display: flex;
  2757. gap: 0.63rem;
  2758. width: 100%;
  2759. .custom-input {
  2760. flex: inherit;
  2761. }
  2762. .custom-btn.v-btn.v-btn--density-default {
  2763. height: 2.25rem;
  2764. .v-btn__content {
  2765. font-size: 0.75rem;
  2766. font-weight: 600;
  2767. }
  2768. }
  2769. .txt {
  2770. flex-shrink: 0;
  2771. font-size: 0.75rem;
  2772. font-weight: 400;
  2773. margin-right: 0.38rem;
  2774. height: 2.25rem;
  2775. line-height: 2.25rem;
  2776. &.long {
  2777. margin-left: 0.63rem;
  2778. }
  2779. }
  2780. }
  2781. .chk-wrap {
  2782. display: flex;
  2783. gap: 1.88rem;
  2784. .custom-check {
  2785. flex: none;
  2786. }
  2787. }
  2788. .tbl-wrap {
  2789. .ag-root-wrapper {
  2790. border: 0;
  2791. .ag-header {
  2792. // min-height: 47px;
  2793. // height: 47px;
  2794. border-bottom-color: #EBEBEB;
  2795. border-top: 0.06rem solid #CCCCCC;
  2796. }
  2797. .ag-header-cell-text {
  2798. color: #222222;
  2799. font-size: 0.75rem;
  2800. font-weight: 600;
  2801. display: block;
  2802. width: 100%;
  2803. text-align: center;
  2804. }
  2805. .ag-center-cols-container {
  2806. .ag-row {
  2807. border-bottom: 0.06rem solid #EBEBEB;
  2808. //min-height: 49px;
  2809. .ag-cell {
  2810. color: #222222;
  2811. font-size: 0.75rem;
  2812. font-weight: 400;
  2813. display: block;
  2814. text-align: center;
  2815. border: 0;
  2816. padding-top: 0.63rem;
  2817. padding-bottom: 0.63rem;
  2818. line-height: normal;
  2819. display: flex;
  2820. justify-content: center;
  2821. align-items: center;
  2822. }
  2823. }
  2824. }
  2825. //border-bottom:1px solid #EBEBEB;
  2826. }
  2827. .ag-paging-panel {
  2828. border-top: 0;
  2829. height: auto;
  2830. padding-top: 1.88rem;
  2831. justify-content: center;
  2832. .ag-paging-page-size {
  2833. margin: 0;
  2834. .ag-picker-field {
  2835. .ag-label {
  2836. display: none;
  2837. }
  2838. .ag-picker-field-wrapper {
  2839. border-radius: 0;
  2840. border: 1px solid #E0E0E0;
  2841. height: 36px;
  2842. padding: 0 0 0 0.94rem;
  2843. outline: 0;
  2844. cursor: pointer;
  2845. .ag-picker-field-display {
  2846. color: #444;
  2847. font-size: 0.75rem;
  2848. font-weight: 400;
  2849. }
  2850. .ag-picker-field-icon {
  2851. .ag-icon {
  2852. width: 0.75rem;
  2853. height: 0.75rem;
  2854. margin-right: 0.88rem;
  2855. min-width: 0.75rem;
  2856. background: url("/assets/img/ico_slt.svg") no-repeat center / 100%;
  2857. &:before,
  2858. &:after {
  2859. display: none;
  2860. }
  2861. }
  2862. }
  2863. }
  2864. }
  2865. }
  2866. .ag-paging-row-summary-panel {
  2867. display: none;
  2868. }
  2869. .ag-paging-page-summary-panel {
  2870. margin-right: 0;
  2871. .ag-paging-button {
  2872. margin: 0;
  2873. border: 0;
  2874. outline: 0;
  2875. &.ag-disabled {
  2876. opacity: 0.4;
  2877. }
  2878. .ag-icon {
  2879. width: 40px;
  2880. height: 40px;
  2881. background: no-repeat center / 100%;
  2882. &:before,
  2883. &:after {
  2884. display: none;
  2885. }
  2886. &.ag-icon-first {
  2887. background-image: url("/assets/img/ico_paging_prev2.svg");
  2888. }
  2889. &.ag-icon-previous {
  2890. margin: 0 0.63rem 0 0.31rem;
  2891. background-image: url("/assets/img/ico_paging_prev1.svg");
  2892. }
  2893. &.ag-icon-next {
  2894. margin: 0 0.31rem 0 0.63rem;
  2895. background-image: url("/assets/img/ico_paging_next1.svg");
  2896. }
  2897. &.ag-icon-last {
  2898. background-image: url("/assets/img/ico_paging_next2.svg");
  2899. }
  2900. }
  2901. }
  2902. .ag-paging-description {
  2903. margin: 0;
  2904. font-size: 0.75rem;
  2905. color: #444;
  2906. font-weight: 400;
  2907. }
  2908. }
  2909. }
  2910. }
  2911. /* --- login --- */
  2912. .login-wrap {
  2913. flex-direction: column;
  2914. position: relative;
  2915. display: flex;
  2916. align-items: center;
  2917. justify-content: center;
  2918. width: 100%;
  2919. height: 100%;
  2920. padding: 3.63rem 0;
  2921. background: #F2F6FF;
  2922. .login-box {
  2923. display: flex;
  2924. height: 43.63rem;
  2925. .login-l {
  2926. flex-shrink: 0;
  2927. width: 39.94rem;
  2928. background: #064F9E url("../img/bg_login.svg") no-repeat center / 100%;
  2929. display: flex;
  2930. align-items: center;
  2931. flex-direction: column;
  2932. justify-content: center;
  2933. .login-l-center {
  2934. width: 15.63rem;
  2935. height: 13.13rem;
  2936. background: #fff;
  2937. display: flex;
  2938. align-items: center;
  2939. flex-direction: column;
  2940. justify-content: center;
  2941. .logo {
  2942. font-size: 0;
  2943. display: block;
  2944. height: 1.25rem;
  2945. width: 100%;
  2946. background: url("../img/logo_login.svg") no-repeat center / auto 100%;
  2947. }
  2948. p {
  2949. margin: 0.75rem 0 0;
  2950. text-align: center;
  2951. color: #333;
  2952. letter-spacing: -0.02rem;
  2953. font-size: 1.19rem;
  2954. line-height: 1.19rem;
  2955. }
  2956. }
  2957. }
  2958. .login-r {
  2959. width: 36.25rem;
  2960. background: #fff;
  2961. padding: 0 6.25rem;
  2962. display: flex;
  2963. flex-direction: column;
  2964. justify-content: center;
  2965. .tit-login {
  2966. display: flex;
  2967. justify-content: space-between;
  2968. align-items: center;
  2969. margin-bottom: 1.88rem;
  2970. strong {
  2971. color: #333;
  2972. font-size: 1.38rem;
  2973. font-weight: 700;
  2974. line-height: 1.38rem;
  2975. display: block;
  2976. }
  2977. .lang-set {
  2978. width: 6.00rem;
  2979. .custom-select {
  2980. width: 6.00rem;
  2981. }
  2982. }
  2983. }
  2984. .login-input-wrap {
  2985. width: 100%;
  2986. .txt-field-box {
  2987. &:first-of-type {
  2988. margin-bottom: 0.63rem;
  2989. }
  2990. }
  2991. }
  2992. .login-radio {
  2993. margin-top: 1.25rem;
  2994. }
  2995. .login-otp {
  2996. display: flex;
  2997. gap: 0.63rem;
  2998. margin-top: 1.25rem;
  2999. .txt-field-box {
  3000. width: 100%;
  3001. }
  3002. .btn-blue-bor {
  3003. width: 8.31rem;
  3004. height: 3.63rem;
  3005. flex-shrink: 0;
  3006. }
  3007. }
  3008. .login-btn-wrap {
  3009. margin-top: 1.88rem;
  3010. }
  3011. .login-chk {
  3012. margin: 1.25rem 0 0;
  3013. }
  3014. .login-find {
  3015. display: flex;
  3016. align-items: center;
  3017. margin-top: 2.19rem;
  3018. padding-top: 2.19rem;
  3019. border-top: 0.06rem solid #EEEEEE;
  3020. justify-content: center;
  3021. button {
  3022. display: flex;
  3023. align-items: center;
  3024. font-size: 0.88rem;
  3025. font-weight: 400;
  3026. color: #333;
  3027. &.blue-color {
  3028. &:after {
  3029. display: inline-block;
  3030. background: #E3E3E3;
  3031. width: 0.06rem;
  3032. height: 1rem;
  3033. content: "";
  3034. margin: 0 1rem;
  3035. }
  3036. }
  3037. &.blue-color {
  3038. color: #034EA2;
  3039. }
  3040. }
  3041. }
  3042. }
  3043. }
  3044. .login-footer {
  3045. position: fixed;
  3046. bottom: 0;
  3047. left: 0;
  3048. right: 0;
  3049. width: 100%;
  3050. background: #fff;
  3051. display: flex;
  3052. justify-content: flex-end;
  3053. align-items: center;
  3054. height: 3.63rem;
  3055. padding: 0 1.88rem;
  3056. p {
  3057. color: #333333;
  3058. opacity: 0.8;
  3059. font-size: 0.69rem;
  3060. font-weight: 400;
  3061. }
  3062. .logo {
  3063. margin-left: 4.38rem;
  3064. width: 8.19rem;
  3065. height: 1.44rem;
  3066. background: url("../img/logo_foot.svg") no-repeat center / 100%;
  3067. font-size: 0;
  3068. }
  3069. }
  3070. }
  3071. /* --- content --- */
  3072. .content-tit {
  3073. display: flex;
  3074. align-items: center;
  3075. margin-bottom: 1.25rem;
  3076. h2 {
  3077. color: #333333;
  3078. font-weight: 700;
  3079. font-size: 1.13rem;
  3080. letter-spacing: -0.01rem;
  3081. }
  3082. >span {
  3083. color: #666666;
  3084. font-size: 0.88rem;
  3085. font-weight: 400;
  3086. letter-spacing: -0.01rem;
  3087. display: flex;
  3088. align-items: center;
  3089. &:before {
  3090. content: "";
  3091. margin: 0 0.94rem;
  3092. background: #ddd;
  3093. width: 0.06rem;
  3094. height: 1rem;
  3095. }
  3096. }
  3097. .location {
  3098. margin-left: auto;
  3099. display: flex;
  3100. gap: 0.31rem;
  3101. align-items: center;
  3102. span {
  3103. display: flex;
  3104. align-items: center;
  3105. color: #333;
  3106. font-size: 0.94rem;
  3107. font-weight: 400;
  3108. letter-spacing: -0.01rem;
  3109. line-height: 0.88rem;
  3110. }
  3111. .home {
  3112. &:before {
  3113. content: "";
  3114. margin-right: 0.63rem;
  3115. width: 0.88rem;
  3116. height: 0.88rem;
  3117. background: url("../img/ico_location_home.svg") no-repeat center / 100%;
  3118. }
  3119. }
  3120. .arr {
  3121. width: 0.88rem;
  3122. height: 0.88rem;
  3123. background: url("../img/ico_location_arr.svg") no-repeat center / 100%;
  3124. }
  3125. .now {
  3126. font-weight: 700;
  3127. }
  3128. }
  3129. }
  3130. .search-wrap {
  3131. background: #FAFAFA;
  3132. padding: 20px calc(1vw * (30 / 19.2)) 22px calc(1vw * (30 / 19.2));
  3133. display: flex;
  3134. margin-bottom: 1.56rem;
  3135. .search-line-wrap {
  3136. display: flex;
  3137. gap: 1.06rem;
  3138. flex-direction: column;
  3139. .search-line {
  3140. gap: calc(1vw * (50 / 19.2));
  3141. display: flex;
  3142. .search-box {
  3143. display: flex;
  3144. strong {
  3145. min-height: 2.25rem;
  3146. flex-shrink: 0;
  3147. display: flex;
  3148. color: #333;
  3149. font-size: 0.75rem;
  3150. font-weight: 400;
  3151. align-items: center;
  3152. }
  3153. .search-box-in {
  3154. display: flex;
  3155. .custom-radio {
  3156. height: 1.13rem;
  3157. align-self: center;
  3158. &.picker-terms {
  3159. height: 2.25rem;
  3160. }
  3161. }
  3162. }
  3163. }
  3164. }
  3165. }
  3166. .search-btn {
  3167. flex-shrink: 0;
  3168. width: calc(1vw * (100 / 19.2));
  3169. display: flex;
  3170. margin-left: auto;
  3171. flex-direction: column;
  3172. gap: 1.06rem;
  3173. &.row {
  3174. flex-direction: row;
  3175. width: auto;
  3176. gap: calc(1vw * (10 / 19.2));
  3177. .custom-btn.v-btn.v-btn--density-default {
  3178. width: calc(1vw * (100 / 19.2));
  3179. }
  3180. }
  3181. .custom-btn.v-btn.v-btn--density-default {
  3182. width: 100%;
  3183. }
  3184. }
  3185. }
  3186. .tbl-list-top {
  3187. display: flex;
  3188. align-items: flex-end;
  3189. justify-content: space-between;
  3190. margin-bottom: .8rem;
  3191. .total {
  3192. display: flex;
  3193. flex-direction: column;
  3194. .total-num {
  3195. display: flex;
  3196. align-items: center;
  3197. strong {
  3198. color: #333333;
  3199. font-size: 0.81rem;
  3200. font-weight: 400;
  3201. span {
  3202. color: #007AFF;
  3203. font-weight: 700;
  3204. }
  3205. }
  3206. .total-slt {
  3207. display: flex;
  3208. align-items: center;
  3209. &:before {
  3210. content: "";
  3211. background: #C1C1C1;
  3212. width: 0.06rem;
  3213. height: 0.75rem;
  3214. margin: 0 0.94rem;
  3215. display: inline-block;
  3216. }
  3217. .custom-select.v-input {
  3218. .v-input__control {
  3219. .v-field {
  3220. height: 0.81rem;
  3221. background: transparent;
  3222. .v-field__field {
  3223. height: 0.81rem;
  3224. overflow: visible;
  3225. padding: 0;
  3226. .v-label {
  3227. height: 0.81rem;
  3228. font-size: 0.81rem;
  3229. color: #333;
  3230. font-weight: 400;
  3231. }
  3232. .v-field__input {
  3233. height: 0.81rem;
  3234. min-height: 0.81rem;
  3235. .v-select__selection {
  3236. font-size: 0.81rem;
  3237. color: #333;
  3238. line-height: 0.81rem;
  3239. }
  3240. }
  3241. }
  3242. .v-field__append-inner {
  3243. .v-icon {
  3244. margin-right: 0;
  3245. min-width: 0.75rem;
  3246. background-image: url("../img/ico_slt2.svg")
  3247. }
  3248. }
  3249. .v-field__outline {
  3250. border: 0;
  3251. }
  3252. }
  3253. }
  3254. }
  3255. }
  3256. }
  3257. .total-btn {
  3258. display: flex;
  3259. gap: 0.63rem;
  3260. margin-top: 1.25rem;
  3261. align-items: center;
  3262. .custom-btn.v-btn.v-btn--density-default {
  3263. width: 5.13rem;
  3264. height: 2.25rem;
  3265. &.v-btn--disabled {
  3266. background: #C5CDD4 !important;
  3267. }
  3268. &.btn-reg {
  3269. background: #007AFF;
  3270. .v-btn__content {
  3271. .ico {
  3272. background-image: url("../img/ico_reg.svg");
  3273. }
  3274. }
  3275. }
  3276. &.btn-del {
  3277. background: #8F9FAF;
  3278. .v-btn__content {
  3279. .ico {
  3280. background-image: url("../img/ico_del.svg");
  3281. }
  3282. }
  3283. }
  3284. &.btn-all-end {
  3285. width: 8.38rem;
  3286. background: #2C3744;
  3287. .v-btn__content {
  3288. .ico {
  3289. background-image: url("../img/ico_end.svg");
  3290. }
  3291. }
  3292. }
  3293. &.btn-all-end-red {
  3294. width: 8.75rem;
  3295. border: 1px solid #F49A9A;
  3296. .v-btn__content {
  3297. color: #EC4242;
  3298. font-size: 14px;
  3299. font-weight: 500;
  3300. letter-spacing: -0.28px;
  3301. max-width: 9.75rem !important;
  3302. width: 9.75rem !important;
  3303. ;
  3304. .ico {
  3305. background-image: url(../img/ic_end_red.svg);
  3306. }
  3307. }
  3308. }
  3309. &.btn-excel {
  3310. width: 8.25rem;
  3311. &.v-btn--disabled {
  3312. background-color: #F4F6F9 !important;
  3313. border-color: #DFE4EA !important;
  3314. .ico {
  3315. background-image: url("../img/ico_excel_d.svg") !important;
  3316. }
  3317. .v-btn__content {
  3318. color: #9DAAB8 !important;
  3319. }
  3320. }
  3321. }
  3322. .v-btn__content {
  3323. color: #fff;
  3324. font-size: 0.81rem;
  3325. font-weight: 400;
  3326. letter-spacing: -0.01rem;
  3327. .ico {
  3328. width: 1.13rem;
  3329. height: 1.13rem;
  3330. margin-right: 0.63rem;
  3331. background: no-repeat center / 100%;
  3332. }
  3333. }
  3334. }
  3335. .custom-check.v-input {
  3336. margin-left: 0.94rem;
  3337. }
  3338. }
  3339. }
  3340. .excel-search {
  3341. display: flex;
  3342. gap: 0.63rem;
  3343. .tbl-search {
  3344. position: relative;
  3345. .custom-input.v-text-field {
  3346. .v-input__control {
  3347. .v-field__field {
  3348. .v-field__input {
  3349. padding-right: 2.50rem;
  3350. }
  3351. }
  3352. }
  3353. }
  3354. .ico {
  3355. width: 2.56rem;
  3356. height: 2.25rem;
  3357. top: 0;
  3358. right: 0;
  3359. z-index: 1;
  3360. position: absolute;
  3361. background: url("../img/ico_search.svg") no-repeat 0.63rem center / 1rem;
  3362. }
  3363. }
  3364. }
  3365. }
  3366. .page-list-item {
  3367. color: #222;
  3368. font-size: 0.81rem;
  3369. font-weight: 700;
  3370. .page {
  3371. color: #333;
  3372. font-weight: 400;
  3373. }
  3374. }
  3375. .form-style1 {
  3376. //border-top:0.06rem solid #ccc;
  3377. &.col4 {
  3378. margin-top: -0.63rem;
  3379. table {
  3380. th {
  3381. font-weight: 400;
  3382. &:nth-of-type(even) {
  3383. padding-left: 1.56rem;
  3384. }
  3385. }
  3386. td {
  3387. &:nth-of-type(odd) {
  3388. padding-right: 1.56rem;
  3389. }
  3390. }
  3391. }
  3392. }
  3393. &.row {
  3394. table {
  3395. th {
  3396. height: 3.06rem;
  3397. padding: 0.94rem;
  3398. background: #FAFAFA;
  3399. color: #222222;
  3400. font-size: 0.75rem;
  3401. font-weight: 600;
  3402. border-top: 0.06rem solid #ccc;
  3403. border-bottom: 0.06rem solid #EBEBEB;
  3404. text-align: center;
  3405. vertical-align: middle;
  3406. line-height: normal;
  3407. }
  3408. td {
  3409. padding: 0.63rem;
  3410. text-align: center;
  3411. color: #222222;
  3412. font-size: 0.75rem;
  3413. font-weight: 400;
  3414. border-bottom: 0.06rem solid #EBEBEB;
  3415. .custom-radio {
  3416. display: inline-flex;
  3417. }
  3418. .input-wrap.slt-btn {
  3419. width: 100%;
  3420. justify-content: center;
  3421. .custom-input {
  3422. width: 14.88rem;
  3423. flex: none;
  3424. height: 1.81rem;
  3425. min-height: 1.81rem;
  3426. .v-input__control {
  3427. min-height: 1.81rem;
  3428. height: 1.81rem;
  3429. .v-field {
  3430. height: 1.81rem;
  3431. .v-field__field {
  3432. height: 1.81rem;
  3433. .v-field__input {
  3434. height: 1.81rem;
  3435. min-height: 1.81rem;
  3436. .v-btn__content {
  3437. color: #6E7E8F;
  3438. }
  3439. }
  3440. }
  3441. }
  3442. }
  3443. }
  3444. .custom-btn {
  3445. padding: 0;
  3446. min-width: 2.94rem;
  3447. width: 2.94rem;
  3448. height: 1.81rem;
  3449. min-height: 1.81rem;
  3450. }
  3451. }
  3452. }
  3453. }
  3454. }
  3455. table {
  3456. width: 100%;
  3457. table-layout: fixed;
  3458. th {
  3459. padding: 0.63rem 0;
  3460. text-align: left;
  3461. font-size: 0.75rem;
  3462. color: #222222;
  3463. font-weight: 700;
  3464. vertical-align: middle;
  3465. line-height: 2.25rem;
  3466. .bul {
  3467. color: #007AFF;
  3468. font-weight: 700;
  3469. padding-left: 0.19rem;
  3470. }
  3471. }
  3472. td {
  3473. text-align: left;
  3474. color: #222222;
  3475. font-weight: 400;
  3476. font-size: 0.75rem;
  3477. vertical-align: middle;
  3478. padding: 0.63rem 0;
  3479. }
  3480. }
  3481. }
  3482. .form-style2 {
  3483. table {
  3484. width: 100%;
  3485. border-top: 0.06rem solid #E0E0E0;
  3486. tr {
  3487. th {
  3488. border-bottom: 0.06rem solid #E0E0E0;
  3489. border-right: 0.06rem solid #E0E0E0;
  3490. background: #F4F4F4;
  3491. padding: 0.63rem 0 0.63rem 1.88rem;
  3492. text-align: left;
  3493. color: #222222;
  3494. font-size: 0.75rem;
  3495. font-weight: 600;
  3496. vertical-align: middle;
  3497. .bullet {
  3498. color: #007AFF;
  3499. font-weight: 700;
  3500. }
  3501. }
  3502. td {
  3503. padding: 0.63rem 1.13rem;
  3504. border-bottom: 0.06rem solid #E0E0E0;
  3505. color: #444;
  3506. font-size: 0.75rem;
  3507. font-weight: 400;
  3508. }
  3509. }
  3510. }
  3511. }
  3512. .view-box {
  3513. margin-top: 1.88rem;
  3514. &:first-of-type {
  3515. margin-top: 0;
  3516. }
  3517. .view-box-top {
  3518. background: #F0F6FD;
  3519. border: 0.06rem solid #DBE7F4;
  3520. min-height: 3.19rem;
  3521. padding: 0 1.56rem;
  3522. display: flex;
  3523. align-items: center;
  3524. h3 {
  3525. color: #333333;
  3526. font-size: 0.88rem;
  3527. font-weight: 600;
  3528. letter-spacing: -0.01rem;
  3529. .bul {
  3530. color: #007AFF;
  3531. }
  3532. .txt1 {
  3533. padding-left: 1.25rem;
  3534. font-size: 0.81rem;
  3535. font-weight: 400;
  3536. }
  3537. }
  3538. .connect-state {
  3539. margin: 0 auto 0 1.56rem;
  3540. }
  3541. .custom-btn.v-btn.v-btn--density-default {
  3542. min-height: 1.81rem;
  3543. height: 1.81rem;
  3544. margin-left: 1.25rem;
  3545. }
  3546. }
  3547. .view-box-btm {
  3548. border: 0.06rem solid #EBEBEB;
  3549. border-top: 0;
  3550. background: #fff;
  3551. padding: 0.56rem 1.56rem;
  3552. .form-style1 {
  3553. padding: 0;
  3554. table {
  3555. th {
  3556. font-weight: 400;
  3557. &:nth-of-type(even) {
  3558. padding-left: 2.5rem;
  3559. }
  3560. }
  3561. td {
  3562. &:nth-of-type(odd) {
  3563. padding-right: 2.5rem;
  3564. }
  3565. .custom-radio {
  3566. padding: 0.56rem 0;
  3567. }
  3568. }
  3569. }
  3570. }
  3571. .no-data {
  3572. height: 9.38rem;
  3573. width: 100%;
  3574. display: flex;
  3575. align-items: center;
  3576. justify-content: center;
  3577. flex-direction: column;
  3578. .ico {
  3579. width: 2.25rem;
  3580. height: 2.25rem;
  3581. background: url("../img/ico_no_data.svg") no-repeat center / 100%;
  3582. margin-bottom: 1.25rem;
  3583. }
  3584. p {
  3585. text-align: center;
  3586. color: #444;
  3587. font-size: 0.88rem;
  3588. letter-spacing: -0.01rem;
  3589. font-weight: 400;
  3590. width: 100%;
  3591. &.txt1 {
  3592. margin-bottom: 2.19rem;
  3593. }
  3594. span {
  3595. color: #000;
  3596. display: block;
  3597. }
  3598. }
  3599. }
  3600. }
  3601. }
  3602. .view-btm-btn {
  3603. display: flex;
  3604. justify-content: space-between;
  3605. margin-top: 1.13rem;
  3606. padding-bottom: 1.19rem;
  3607. >div {
  3608. display: flex;
  3609. gap: 0.94rem;
  3610. }
  3611. .custom-btn.v-btn.v-btn--density-default {
  3612. height: 3.13rem;
  3613. width: 8.13rem;
  3614. &.btn-list {
  3615. background: #fff;
  3616. border: 0.06rem solid #C2C2C2;
  3617. .v-btn__content {
  3618. color: #48525C;
  3619. .ico {
  3620. background-image: url("../img/ico_view_list.svg");
  3621. }
  3622. }
  3623. }
  3624. &.btn-del {
  3625. background: #fff;
  3626. border: 0.06rem solid #FFBCBC;
  3627. .v-btn__content {
  3628. color: #EA5555;
  3629. .ico {
  3630. background-image: url("../img/ico_view_del.svg");
  3631. }
  3632. }
  3633. }
  3634. .v-btn__content {
  3635. font-size: 0.81rem;
  3636. font-weight: 600;
  3637. .ico {
  3638. width: 0.88rem;
  3639. height: 0.88rem;
  3640. margin-right: 2.5rem;
  3641. background: no-repeat center / 100%;
  3642. }
  3643. }
  3644. }
  3645. }
  3646. .list-flex {
  3647. display: flex;
  3648. gap: calc(1vw * (40 / 19.2));
  3649. .list-flex-l {
  3650. max-width: calc(1vw * (350 / 19.2));
  3651. width: calc(1vw * (350 / 19.2));
  3652. height: calc(1vh * (823 / 10.8));
  3653. min-height: 45.6rem;
  3654. border: 0.31rem solid #F7F8F9;
  3655. display: flex;
  3656. flex-direction: column;
  3657. .topology-top {
  3658. background: #F7F8F9;
  3659. min-height: 3.44rem;
  3660. display: flex;
  3661. align-items: center;
  3662. padding: 0.63rem 1.25rem 0.94rem 1.25rem;
  3663. flex-shrink: 0;
  3664. strong {
  3665. color: #333333;
  3666. font-size: 0.81rem;
  3667. font-weight: 700;
  3668. }
  3669. .btn-ne-del {
  3670. font-size: 0;
  3671. margin-left: auto;
  3672. display: flex;
  3673. align-items: center;
  3674. justify-content: center;
  3675. border: 0.05rem solid #FFBEBF;
  3676. width: 1.88rem;
  3677. height: 1.88rem;
  3678. border-radius: 0.5rem;
  3679. &:disabled {
  3680. border-color: #4C576B;
  3681. cursor: default;
  3682. pointer-events: none;
  3683. &:before {
  3684. background-image: url("../img/ico_ne_del_d.svg");
  3685. }
  3686. }
  3687. &:before {
  3688. content: "";
  3689. width: 0.75rem;
  3690. height: 0.75rem;
  3691. background: url("../img/ico_ne_del.svg") no-repeat center / 100%;
  3692. display: inline-block;
  3693. }
  3694. }
  3695. }
  3696. .topology-btm {
  3697. height: 100%;
  3698. max-height: calc(100% - 3.44rem);
  3699. padding: 1.56rem 0.63rem 1.56rem 1.25rem;
  3700. .no-data {
  3701. height: 100%;
  3702. width: 100%;
  3703. display: flex;
  3704. align-items: center;
  3705. justify-content: center;
  3706. flex-direction: column;
  3707. .ico {
  3708. width: 2.25rem;
  3709. height: 2.25rem;
  3710. background: url("../img/ico_no_data.svg") no-repeat center / 100%;
  3711. margin-bottom: 1.25rem;
  3712. }
  3713. p {
  3714. text-align: center;
  3715. color: #444;
  3716. font-size: 0.88rem;
  3717. letter-spacing: -0.01rem;
  3718. font-weight: 400;
  3719. width: 100%;
  3720. &.txt1 {
  3721. margin-bottom: 2.19rem;
  3722. }
  3723. span {
  3724. color: #000;
  3725. display: block;
  3726. }
  3727. }
  3728. }
  3729. }
  3730. }
  3731. .list-flex-r {
  3732. width: 100%;
  3733. max-width: calc(100% - (1vw * (350 / 19.2)));
  3734. }
  3735. }
  3736. .tree-area {
  3737. height: 100%;
  3738. overflow-y: scroll;
  3739. padding-right: 0.44rem;
  3740. .depth-item-tit {
  3741. display: flex;
  3742. align-items: center;
  3743. gap: 0.63rem;
  3744. &.down {
  3745. .arr {
  3746. transform: rotate(180deg);
  3747. }
  3748. }
  3749. .custom-input.v-text-field.mini {
  3750. flex: none;
  3751. min-height: 1.88rem;
  3752. width: calc(100% - 4.63rem);
  3753. .v-input__control {
  3754. height: 1.88rem;
  3755. .v-field__field {
  3756. .v-field__input {
  3757. min-height: 1.88rem;
  3758. height: 1.88rem;
  3759. padding: 0 0.56rem;
  3760. }
  3761. }
  3762. }
  3763. }
  3764. .arr {
  3765. display: flex;
  3766. align-items: center;
  3767. justify-content: center;
  3768. width: 0.75rem;
  3769. height: 0.75rem;
  3770. flex-shrink: 0;
  3771. background: url("../img/ico_tree_arr.svg") no-repeat center / 100%;
  3772. &.nor {
  3773. background: none;
  3774. &:before {
  3775. content: "-";
  3776. display: block;
  3777. font-weight: 600;
  3778. color: #222;
  3779. font-size: 0.75rem;
  3780. }
  3781. }
  3782. }
  3783. .ico {
  3784. width: 1rem;
  3785. height: 1rem;
  3786. flex-shrink: 0;
  3787. background: no-repeat center / 100%;
  3788. }
  3789. .custom-check.v-input {
  3790. .v-input__control {
  3791. display: block;
  3792. .v-selection-control {
  3793. .v-label {
  3794. font-size: 0.75rem;
  3795. margin-left: 0.63rem;
  3796. line-height: 1.06rem;
  3797. white-space: nowrap;
  3798. text-overflow: ellipsis;
  3799. overflow: hidden;
  3800. display: block;
  3801. }
  3802. }
  3803. }
  3804. }
  3805. .btn-tree {
  3806. width: 1rem;
  3807. height: 1rem;
  3808. flex-shrink: 0;
  3809. background: no-repeat center / 100%;
  3810. &.btn-save {
  3811. background-image: url("../img/ico_tree_save.svg");
  3812. }
  3813. }
  3814. }
  3815. .tree-depth1 {
  3816. margin-bottom: 1.25rem;
  3817. &:last-of-type {
  3818. margin-bottom: 0;
  3819. }
  3820. ul {
  3821. display: flex;
  3822. flex-direction: column;
  3823. gap: 0.63rem;
  3824. }
  3825. .depth1-item {
  3826. .depth1-item-tit {
  3827. .ico {
  3828. background-image: url("../img/ico_tree1.svg");
  3829. }
  3830. strong {
  3831. color: #222;
  3832. line-height: 1rem;
  3833. font-weight: 600;
  3834. font-size: 0.75rem;
  3835. text-align: left;
  3836. width: 100%;
  3837. white-space: nowrap;
  3838. text-overflow: ellipsis;
  3839. overflow: hidden;
  3840. }
  3841. .btn-add {
  3842. margin-left: auto;
  3843. font-size: 0;
  3844. background-image: url("../img/ico_tree_add.svg");
  3845. }
  3846. }
  3847. }
  3848. }
  3849. .tree-depth2 {
  3850. padding: 1.25rem 0 0 0.94rem;
  3851. ul {
  3852. display: flex;
  3853. flex-direction: column;
  3854. gap: 0.94rem;
  3855. }
  3856. .depth2-item {
  3857. .depth2-item-tit {
  3858. .ico {
  3859. background-image: url("../img/ico_tree2.svg");
  3860. }
  3861. .btn-ne-add {
  3862. width: 2.19rem;
  3863. height: 1rem;
  3864. display: flex;
  3865. flex-shrink: 0;
  3866. margin-left: auto;
  3867. border-radius: 0.19rem;
  3868. background: #00c2ff;
  3869. color: #fff;
  3870. align-items: center;
  3871. justify-content: center;
  3872. font-size: 0.56rem;
  3873. font-weight: 700;
  3874. line-height: 0.63rem;
  3875. .plus {
  3876. width: 0.56rem;
  3877. height: 0.56rem;
  3878. margin-right: 0.19rem;
  3879. background: url("../img/ico_ne_add.svg") no-repeat center / 100%;
  3880. }
  3881. }
  3882. .btn-pos {
  3883. background-image: url("../img/ico_pos.svg");
  3884. }
  3885. }
  3886. }
  3887. }
  3888. .tree-depth3 {
  3889. padding: 1.25rem 0 0.63rem 22px;
  3890. &:has(ul:empty) {
  3891. padding: 0;
  3892. }
  3893. .depth3-item {
  3894. .depth3-item-tit {
  3895. .ico {
  3896. background-image: url("../img/ico_tree3.svg");
  3897. &.core {
  3898. background-image: url("../img/ico_tree3_core.svg");
  3899. }
  3900. &.ran {
  3901. background-image: url("../img/ico_tree3_ran.svg");
  3902. }
  3903. }
  3904. .btn-mod {
  3905. background-image: url("../img/ico_mod.svg");
  3906. }
  3907. }
  3908. }
  3909. }
  3910. }
  3911. .tbl-col-wrap {
  3912. display: flex;
  3913. margin-bottom: 4rem;
  3914. .tbl-col-fix {
  3915. width: calc(1vw * (340 / 19.2));
  3916. table {
  3917. th {
  3918. border-right: 0.06rem solid #EBEBEB;
  3919. height: 6.12rem;
  3920. }
  3921. td {
  3922. height: 3.06rem;
  3923. background: #FAFAFA;
  3924. color: #222222;
  3925. font-size: 0.75rem;
  3926. font-weight: 600;
  3927. vertical-align: middle;
  3928. text-align: center;
  3929. border-bottom: 0.06rem solid #EBEBEB;
  3930. border-right: 0.06rem solid #EBEBEB;
  3931. }
  3932. }
  3933. }
  3934. .tbl-col-scrl {
  3935. width: calc(100% - (1vw * (340 / 19.2)));
  3936. overflow-x: auto;
  3937. padding-bottom: 0.44rem;
  3938. &::-webkit-scrollbar {
  3939. height: 0.5rem;
  3940. border-radius: 0.5rem;
  3941. }
  3942. &::-webkit-scrollbar-track {
  3943. background: #F8F8F8;
  3944. border-radius: 0.5rem;
  3945. }
  3946. &::-webkit-scrollbar-thumb {
  3947. border-radius: 0.5rem;
  3948. background: #D9D9D9;
  3949. }
  3950. .scrl-in {
  3951. white-space: nowrap;
  3952. .tbl-box {
  3953. display: inline-block;
  3954. vertical-align: top;
  3955. border-right: 0.06rem solid #EBEBEB;
  3956. &:last-of-type {
  3957. border-right: 0;
  3958. }
  3959. }
  3960. }
  3961. }
  3962. table {
  3963. width: 100%;
  3964. border-top: 0.06rem solid #CCCCCC;
  3965. th {
  3966. height: 3.06rem;
  3967. color: #222222;
  3968. font-size: 0.75rem;
  3969. font-weight: 600;
  3970. vertical-align: middle;
  3971. background: #FAFAFA;
  3972. box-shadow: none;
  3973. box-shadow: inset 0 -0.06rem 0 #EBEBEB;
  3974. padding: calc(1vh * (15 / 10.8)) 10px calc(1vh * (14 / 10.8));
  3975. }
  3976. td {
  3977. padding: 0.63rem 0.63rem 0.56rem 0.63rem;
  3978. color: #222222;
  3979. text-align: center;
  3980. font-size: 0.75rem;
  3981. font-weight: 400;
  3982. vertical-align: middle;
  3983. text-align: center;
  3984. height: 3.06rem;
  3985. width: calc(1vw * (138 / 19.2));
  3986. border-bottom: 0.06rem solid #EBEBEB !important;
  3987. }
  3988. }
  3989. }
  3990. .menu-flex-wrap {
  3991. display: flex;
  3992. gap: calc(1vw * (40 / 19.2));
  3993. .system-menu {
  3994. width: calc(1vw * (350 / 19.2));
  3995. border: 0.31rem solid #F7F8F9;
  3996. flex-shrink: 0;
  3997. .system-menu-tit {
  3998. padding: 0 1.56rem;
  3999. background: #F7F8F9;
  4000. color: #333;
  4001. font-weight: 700;
  4002. font-size: 0.81rem;
  4003. height: 3.44rem;
  4004. display: flex;
  4005. align-items: center;
  4006. }
  4007. .system-menu-in {
  4008. overflow-y: scroll;
  4009. height: calc(1vh * (768 / 10.8));
  4010. display: flex;
  4011. margin-top: -0.31rem;
  4012. flex-direction: column;
  4013. padding: 1.88rem 1.56rem;
  4014. gap: 1.25rem;
  4015. .system-box {
  4016. &.on {
  4017. .system-box-sub {
  4018. display: block;
  4019. }
  4020. }
  4021. .system-box-tit {
  4022. display: flex;
  4023. align-items: center;
  4024. gap: 0.94rem;
  4025. font-weight: 600;
  4026. cursor: pointer;
  4027. color: #000;
  4028. font-size: 0.81rem;
  4029. button {
  4030. width: 1.13rem;
  4031. height: 1.13rem;
  4032. background: url("../img/ico_menu_plus.svg") no-repeat center / 100%;
  4033. cursor: pointer;
  4034. &.open {
  4035. background-image: url("../img/ico_menu_minus.svg");
  4036. }
  4037. }
  4038. }
  4039. .system-box-sub {
  4040. padding: 1.25rem 0 1.25rem 1.25rem;
  4041. display: none;
  4042. ul {
  4043. display: flex;
  4044. flex-direction: column;
  4045. gap: 0.94rem;
  4046. li {
  4047. gap: 0.63rem;
  4048. display: flex;
  4049. align-items: center;
  4050. cursor: pointer;
  4051. font-size: 0.75rem;
  4052. font-weight: 400;
  4053. color: #333;
  4054. &.active {
  4055. color: #007AFF;
  4056. }
  4057. &:before {
  4058. width: 0.75rem;
  4059. height: 0.75rem;
  4060. background: url("../img/ico_menu_arr.svg") no-repeat center / 100%;
  4061. content: "";
  4062. }
  4063. }
  4064. }
  4065. }
  4066. }
  4067. }
  4068. }
  4069. .menu-info {
  4070. border: 0.31rem solid #F7F8F9;
  4071. width: 100%;
  4072. .info-tit {
  4073. padding: 0 1.56rem;
  4074. background: #F7F8F9;
  4075. color: #333;
  4076. font-weight: 700;
  4077. font-size: 0.81rem;
  4078. height: 3.44rem;
  4079. display: flex;
  4080. align-items: center;
  4081. }
  4082. .menu-info-view {
  4083. height: calc(1vh * (768 / 10.8));
  4084. padding: 1.88rem 1.56rem 1.56rem 1.56rem;
  4085. margin-top: -0.31rem;
  4086. .info-tbl-tit {
  4087. display: flex;
  4088. align-items: center;
  4089. margin-bottom: 1.56rem;
  4090. .ico {
  4091. width: 1.25rem;
  4092. height: 1.25rem;
  4093. background: url("../img/ico_menu.svg") no-repeat center / 100%;
  4094. margin-right: 0.63rem;
  4095. }
  4096. .menu {
  4097. color: #333;
  4098. font-size: 1rem;
  4099. font-weight: 400;
  4100. letter-spacing: -0.01rem;
  4101. }
  4102. .arr {
  4103. margin: 0 0.31rem;
  4104. width: 0.94rem;
  4105. height: 0.94rem;
  4106. background: url("../img/ico_menu_arr2.svg") no-repeat center / 100%;
  4107. }
  4108. .now {
  4109. color: #111111;
  4110. font-size: 1rem;
  4111. font-weight: 700;
  4112. letter-spacing: -0.01rem;
  4113. }
  4114. }
  4115. .form-style2 {
  4116. table {
  4117. tr {
  4118. th {
  4119. padding: 1.25rem 0 1.25rem 1.88rem;
  4120. }
  4121. td {
  4122. padding: 1.25rem 1.38rem;
  4123. }
  4124. }
  4125. }
  4126. }
  4127. .input-wrap {
  4128. gap: 1.88rem;
  4129. .custom-check {
  4130. flex: none;
  4131. }
  4132. }
  4133. .no-data {
  4134. display: flex;
  4135. align-items: center;
  4136. justify-content: center;
  4137. flex-direction: column;
  4138. height: 100%;
  4139. .ico {
  4140. width: 2.25rem;
  4141. height: 2.25rem;
  4142. background: url("../img/ico_menu_nodata.svg") no-repeat center / 100%;
  4143. }
  4144. p {
  4145. text-align: center;
  4146. margin-top: 1.56rem;
  4147. color: #444;
  4148. font-size: 0.94rem;
  4149. letter-spacing: -0.01rem;
  4150. font-weight: 400;
  4151. }
  4152. }
  4153. }
  4154. .menu-info-r {
  4155. display: flex;
  4156. justify-content: flex-end;
  4157. gap: 0.94rem;
  4158. margin-top: 3.13rem;
  4159. .custom-btn.v-btn.v-btn--density-default {
  4160. height: 3.13rem;
  4161. width: 8.13rem;
  4162. &.btn-list {
  4163. background: #F8F8F8;
  4164. border: 0.06rem solid #E9E9E9;
  4165. .v-btn__content {
  4166. color: #6E7E8F;
  4167. .ico {
  4168. background-image: url("../img/ico_view_list.svg");
  4169. }
  4170. }
  4171. }
  4172. &.btn-del {
  4173. background: #FFF4F4;
  4174. border: 0.06rem solid #FFE2E2;
  4175. .v-btn__content {
  4176. color: #EA5555;
  4177. .ico {
  4178. background-image: url("../img/ico_view_del.svg");
  4179. }
  4180. }
  4181. }
  4182. .v-btn__content {
  4183. font-size: 0.81rem;
  4184. font-weight: 600;
  4185. .ico {
  4186. width: 0.88rem;
  4187. height: 0.88rem;
  4188. margin-right: 2.5rem;
  4189. background: no-repeat center / 100%;
  4190. }
  4191. }
  4192. }
  4193. }
  4194. }
  4195. }
  4196. .perfor-tab {
  4197. width: 7.81rem;
  4198. margin-right: 2.5rem;
  4199. .v-radio-group {
  4200. .v-input__control {
  4201. .v-selection-control-group {
  4202. gap: 1.06rem;
  4203. }
  4204. .v-radio {
  4205. &.v-selection-control--dirty {
  4206. .v-label {
  4207. background: #007AFF;
  4208. }
  4209. }
  4210. .v-selection-control__wrapper {
  4211. display: none;
  4212. }
  4213. .v-label {
  4214. width: 100%;
  4215. height: 2.25rem;
  4216. background: #C5CDD4;
  4217. justify-content: center;
  4218. align-items: center;
  4219. opacity: 1;
  4220. font-size: 0.75rem;
  4221. font-weight: 600;
  4222. color: #fff;
  4223. .ico {
  4224. width: 1.13rem;
  4225. height: 1.13rem;
  4226. margin-right: 0.75rem;
  4227. background: no-repeat center / 100%;
  4228. &.ico1 {
  4229. background-image: url("../img/ico_performance1.svg");
  4230. }
  4231. &.ico2 {
  4232. background-image: url("../img/ico_performance2.svg");
  4233. }
  4234. }
  4235. }
  4236. }
  4237. }
  4238. }
  4239. }
  4240. .chart-total {
  4241. text-align: left;
  4242. margin: 2.5rem 0 1.69rem;
  4243. display: flex;
  4244. p {
  4245. color: #333;
  4246. font-size: 0.88rem;
  4247. font-weight: 600;
  4248. flex-shrink: 0;
  4249. span {
  4250. color: #111;
  4251. font-weight: 700;
  4252. }
  4253. }
  4254. .legend-area {
  4255. display: flex;
  4256. justify-content: flex-end;
  4257. width: 100%;
  4258. gap: 1.88rem;
  4259. margin-left: auto;
  4260. .legend-box {
  4261. display: flex;
  4262. align-items: center;
  4263. gap: 0.75rem;
  4264. font-size: 0.81rem;
  4265. font-weight: 400;
  4266. color: #333;
  4267. .cir {
  4268. width: 0.75rem;
  4269. border-radius: 100%;
  4270. height: 0.75rem;
  4271. &.cir1 {
  4272. background: #007AFF;
  4273. }
  4274. &.cir2 {
  4275. background: #7897B8;
  4276. }
  4277. &.cir3 {
  4278. background: #FF9900;
  4279. }
  4280. }
  4281. }
  4282. }
  4283. }
  4284. .chart-wrap {
  4285. position: relative;
  4286. display: flex;
  4287. overflow: hidden;
  4288. height: 33.13rem;
  4289. border: 0.06rem solid #EBEBEB;
  4290. padding: 1.88rem;
  4291. &:after {
  4292. width: 1.88rem;
  4293. background: #fff;
  4294. top: 0;
  4295. right: 0;
  4296. bottom: 0;
  4297. content: "";
  4298. position: absolute;
  4299. }
  4300. .chart-wrap-fix {
  4301. position: absolute;
  4302. flex-shrink: 0;
  4303. left: 1.88rem;
  4304. top: 1.88rem;
  4305. background: #fff;
  4306. z-index: 0;
  4307. height: 29.38rem;
  4308. canvas {
  4309. height: 100%;
  4310. }
  4311. }
  4312. .scrl-chart {
  4313. overflow-x: scroll;
  4314. padding-bottom: 1.25rem;
  4315. overflow-y: hidden;
  4316. z-index: 1;
  4317. max-width: calc(100vw - 3.75rem);
  4318. margin-left: 1.25rem;
  4319. position: relative;
  4320. height: 29.38rem;
  4321. &::-webkit-scrollbar {
  4322. height: 0.5rem;
  4323. border-radius: 0.5rem;
  4324. }
  4325. &::-webkit-scrollbar-track {
  4326. background: #F8F8F8;
  4327. border-radius: 0.5rem;
  4328. }
  4329. &::-webkit-scrollbar-thumb {
  4330. border-radius: 0.5rem;
  4331. background: #D9D9D9;
  4332. }
  4333. .scrl-in {
  4334. height: 29.38rem;
  4335. }
  4336. canvas {
  4337. height: 100%;
  4338. }
  4339. }
  4340. }
  4341. .help-flex {
  4342. display: flex;
  4343. gap: 30px;
  4344. .help-list {
  4345. width: 300px;
  4346. ul {
  4347. display: flex;
  4348. flex-direction: column;
  4349. gap: 8px;
  4350. li {
  4351. border: 1px solid #ccc;
  4352. padding: 10px;
  4353. font-size: 14px;
  4354. font-weight: 400;
  4355. cursor: pointer;
  4356. &.active {
  4357. background: #ccc;
  4358. color: #fff;
  4359. font-weight: 700;
  4360. }
  4361. }
  4362. }
  4363. }
  4364. .help-cont {
  4365. width: calc(100% - 330px);
  4366. border: 1px solid #ccc;
  4367. .help-cont-tit {
  4368. display: block;
  4369. color: #000;
  4370. font-size: 16px;
  4371. font-weight: 700;
  4372. padding: 15px 24px;
  4373. border-bottom: 1px solid #ccc;
  4374. }
  4375. .help-acco {
  4376. .help-panel {
  4377. border-bottom: 1px solid #ccc;
  4378. &:after {
  4379. display: none;
  4380. }
  4381. &.v-expansion-panel--active {
  4382. .v-expansion-panel-title {
  4383. background: #f4f4f4;
  4384. }
  4385. }
  4386. .v-expansion-panel__shadow {
  4387. display: none;
  4388. }
  4389. .v-expansion-panel-title {
  4390. font-weight: 700;
  4391. color: #000;
  4392. .v-expansion-panel-title__overlay {
  4393. display: none;
  4394. }
  4395. }
  4396. .v-expansion-panel-text {
  4397. border-top: 1px solid #ccc;
  4398. .v-expansion-panel-text__wrapper {
  4399. overflow-y: auto;
  4400. padding: 16px 24px;
  4401. background: #fcfcfc;
  4402. .panel-cont {
  4403. padding: 10px 0;
  4404. height: 100%;
  4405. min-height: 250px;
  4406. max-height: 250px;
  4407. strong {
  4408. display: block;
  4409. text-align: left;
  4410. margin-bottom: 10px;
  4411. font-weight: 600;
  4412. font-size: 16px;
  4413. }
  4414. p {
  4415. text-align: left;
  4416. font-weight: 400;
  4417. font-size: 14px;
  4418. }
  4419. }
  4420. }
  4421. }
  4422. }
  4423. }
  4424. }
  4425. }
  4426. .menu-chk {
  4427. display: flex;
  4428. flex-direction: column;
  4429. gap: 10px;
  4430. }
  4431. .dashboard {
  4432. display: flex;
  4433. .dashboard-l {
  4434. width: 50%;
  4435. border-right: 1px solid rgba(224, 224, 224, 0.5);
  4436. .dashboard-core {
  4437. padding: 24px;
  4438. .core-box-wrap {
  4439. display: flex;
  4440. gap: 3px;
  4441. height: 380px;
  4442. .core-box {
  4443. width: 100%;
  4444. height: 380px;
  4445. background: rgba(51, 51, 51, 0.04);
  4446. display: flex;
  4447. flex-direction: column;
  4448. align-items: center;
  4449. justify-content: center;
  4450. .name {
  4451. display: block;
  4452. text-align: center;
  4453. color: #333333;
  4454. font-size: 40px;
  4455. font-weight: 700;
  4456. line-height: 24px;
  4457. margin-bottom: 15px;
  4458. }
  4459. .state {
  4460. text-align: center;
  4461. display: block;
  4462. font-size: 12px;
  4463. line-height: 24px;
  4464. color: #333;
  4465. font-weight: 400;
  4466. margin-bottom: 19px;
  4467. }
  4468. button {
  4469. width: 100px;
  4470. height: 30px;
  4471. display: flex;
  4472. align-items: center;
  4473. justify-content: center;
  4474. background: rgba(51, 51, 51, 0.35);
  4475. color: #fff;
  4476. font-size: 14px;
  4477. font-weight: 700;
  4478. margin-bottom: 33px;
  4479. }
  4480. .core-percent {
  4481. display: inline-block;
  4482. ul {
  4483. display: flex;
  4484. flex-direction: column;
  4485. gap: 7px;
  4486. li {
  4487. display: flex;
  4488. align-items: center;
  4489. gap: 3px;
  4490. strong {
  4491. width: 60px;
  4492. line-height: 24px;
  4493. color: #333;
  4494. font-size: 14px;
  4495. font-weight: 400;
  4496. text-align: left;
  4497. flex-shrink: 0;
  4498. }
  4499. p {
  4500. flex-shrink: 0;
  4501. width: 60px;
  4502. line-height: 24px;
  4503. color: #333;
  4504. font-size: 14px;
  4505. font-weight: 400;
  4506. text-align: left;
  4507. }
  4508. .cir {
  4509. width: 18px;
  4510. height: 18px;
  4511. border-radius: 100%;
  4512. &.blue {
  4513. background: #1EAEFF;
  4514. }
  4515. &.yellow {
  4516. background: #FFD643;
  4517. }
  4518. &.red {
  4519. background: #FF2426;
  4520. }
  4521. }
  4522. }
  4523. }
  4524. }
  4525. }
  4526. }
  4527. }
  4528. .dashboard-join {
  4529. padding: 24px;
  4530. border-top: 1px solid rgba(224, 224, 224, 0.5);
  4531. }
  4532. }
  4533. .dashboard-r {
  4534. width: 50%;
  4535. }
  4536. .dashboard-tit {
  4537. display: flex;
  4538. align-items: center;
  4539. margin-bottom: 14px;
  4540. strong {
  4541. color: #333;
  4542. font-weight: 700;
  4543. font-size: 18px;
  4544. }
  4545. .issue {
  4546. width: 100px;
  4547. height: 32px;
  4548. background: rgba(51, 51, 51, 0.35);
  4549. color: #fff;
  4550. font-size: 14px;
  4551. font-weight: 700;
  4552. display: flex;
  4553. align-items: center;
  4554. justify-content: center;
  4555. }
  4556. .core-tab {
  4557. margin-left: auto;
  4558. display: flex;
  4559. gap: 4px;
  4560. button {
  4561. width: 100px;
  4562. height: 32px;
  4563. display: flex;
  4564. color: #fff;
  4565. font-size: 14px;
  4566. font-weight: 700;
  4567. align-items: center;
  4568. justify-content: center;
  4569. background: rgba(51, 51, 51, 0.15);
  4570. cursor: pointer;
  4571. &.active {
  4572. background: rgba(51, 51, 51, 0.35);
  4573. }
  4574. }
  4575. }
  4576. .join-type {
  4577. margin-left: auto;
  4578. display: flex;
  4579. gap: 12px;
  4580. align-items: center;
  4581. width: 20px;
  4582. height: 20px;
  4583. background: no-repeat center / 100%;
  4584. button {
  4585. &.type1 {
  4586. background-image: url("");
  4587. &.active {
  4588. background-image: url("");
  4589. }
  4590. }
  4591. &.type2 {
  4592. background-image: url("");
  4593. &.active {
  4594. background-image: url("");
  4595. }
  4596. }
  4597. }
  4598. }
  4599. }
  4600. //.dashboard-r {}
  4601. }
  4602. .tab-style {
  4603. margin-top: 2.81rem;
  4604. .tab-style-h {
  4605. border-bottom: 1px solid #064F9E;
  4606. display: flex;
  4607. button {
  4608. position: relative;
  4609. width: 11.88rem;
  4610. height: 3.69rem;
  4611. border: 0.06rem solid #E1E1E1;
  4612. border-bottom: 0;
  4613. background: #fff;
  4614. display: flex;
  4615. align-items: center;
  4616. justify-content: center;
  4617. color: #888888;
  4618. font-size: 0.81rem;
  4619. font-weight: 400;
  4620. margin-right: -0.06rem;
  4621. &.active {
  4622. border-color: #064F9E;
  4623. margin: 0 0 -0.09rem 0;
  4624. color: #064F9E;
  4625. font-weight: 700;
  4626. height: 3.75rem;
  4627. z-index: 2;
  4628. }
  4629. }
  4630. }
  4631. .tab-style-c {
  4632. padding-top: 1.88rem;
  4633. }
  4634. }
  4635. .pop-radio {
  4636. margin-bottom: 1.56rem;
  4637. }
  4638. .mode-radio {
  4639. padding: 0.94rem 0.75rem;
  4640. .v-selection-control-group {
  4641. align-items: flex-start;
  4642. gap: 5rem;
  4643. .v-radio {
  4644. align-items: flex-start;
  4645. .v-selection-control__wrapper {
  4646. margin-top: 0.63rem;
  4647. }
  4648. .v-label {
  4649. flex-direction: column;
  4650. align-items: flex-start;
  4651. overflow: visible;
  4652. .radio-tit {
  4653. display: flex;
  4654. strong {
  4655. font-weight: 400;
  4656. font-size: 0.75rem;
  4657. display: block;
  4658. line-height: 2.25rem;
  4659. }
  4660. .term {
  4661. display: flex;
  4662. .term-tit {
  4663. color: #333333;
  4664. font-size: 0.75rem;
  4665. font-weight: 400;
  4666. display: flex;
  4667. margin-right: 1.25rem;
  4668. align-items: center;
  4669. &:before {
  4670. width: 0.06rem;
  4671. height: 0.88rem;
  4672. background: #C6C6C6;
  4673. content: "";
  4674. margin: 0 0.94rem;
  4675. }
  4676. }
  4677. }
  4678. }
  4679. .mode-img {
  4680. margin: 1.56rem 0 0 -1.81rem;
  4681. width: 23.25rem;
  4682. height: 13.13rem;
  4683. background: #F4F4F4;
  4684. img {
  4685. width: 100%;
  4686. height: 100%;
  4687. }
  4688. }
  4689. }
  4690. }
  4691. }
  4692. }
  4693. .editor {
  4694. height: 300px;
  4695. .ql-container {
  4696. height: calc(100% - 42px)
  4697. }
  4698. }
  4699. /* --- darkmode ---*/
  4700. body:has(.darkmode) {
  4701. background: #101011;
  4702. }
  4703. .darkmode {
  4704. .custom-btn.v-btn.v-btn--density-default {
  4705. &.btn-white {
  4706. border-color: #272B30;
  4707. background-color: #1B1E20;
  4708. .v-btn__content {
  4709. color: #606770;
  4710. }
  4711. }
  4712. &.btn-gray {
  4713. background: #272B30;
  4714. border-color: #272B30;
  4715. .v-btn__content {
  4716. color: #fff;
  4717. }
  4718. }
  4719. }
  4720. .custom-select.v-input {
  4721. .v-input__control {
  4722. .v-field {
  4723. .v-field__outline {
  4724. border-color: #272B30;
  4725. }
  4726. .v-field__field {
  4727. .v-field__input {
  4728. .v-select__selection {
  4729. color: #fff;
  4730. }
  4731. }
  4732. .v-label {
  4733. color: #fff;
  4734. }
  4735. }
  4736. }
  4737. }
  4738. }
  4739. .custom-input.v-text-field {
  4740. .v-input__control {
  4741. .v-field__field {
  4742. .v-field__input {
  4743. border-color: #272B30;
  4744. background: #1B1E20;
  4745. color: #fff;
  4746. }
  4747. }
  4748. .v-field__append-inner {
  4749. .v-icon {
  4750. &:before {
  4751. color: #fff;
  4752. }
  4753. }
  4754. }
  4755. }
  4756. }
  4757. .custom-table.v-table {
  4758. background: #1A1D1F;
  4759. &:before {
  4760. background: #2C2F31;
  4761. }
  4762. &:after {
  4763. background: #2C2F31;
  4764. }
  4765. .v-table__wrapper {
  4766. table {
  4767. thead {
  4768. tr {
  4769. th {
  4770. background: #272B30 !important;
  4771. border-color: #272B30;
  4772. .th-item {
  4773. .ico-sort-area {
  4774. .v-icon {
  4775. background-color: #272B30;
  4776. }
  4777. }
  4778. }
  4779. }
  4780. }
  4781. }
  4782. tbody {
  4783. tr {
  4784. td {
  4785. color: #fff;
  4786. border-color: #2C2F31 !important;
  4787. }
  4788. }
  4789. }
  4790. }
  4791. }
  4792. }
  4793. .custom-radio.v-input {
  4794. &.picker-terms {
  4795. .v-input__control {
  4796. .v-selection-control-group {
  4797. .v-radio {
  4798. &.v-selection-control--dirty {
  4799. .v-label {
  4800. color: #fff;
  4801. border-color: #272B30;
  4802. background: #272B30;
  4803. }
  4804. }
  4805. .v-label {
  4806. border-color: #272B30;
  4807. background: #1B1E20;
  4808. color: #9F9FA0;
  4809. }
  4810. }
  4811. }
  4812. }
  4813. }
  4814. }
  4815. .calendar-wrap {
  4816. .text {
  4817. color: #fff;
  4818. }
  4819. }
  4820. .calendar {
  4821. .dp__overlay {
  4822. background: #272B30;
  4823. }
  4824. .dp__overlay_container {
  4825. background: #272B30;
  4826. &::-webkit-scrollbar-track {
  4827. background-color: #272B30;
  4828. }
  4829. &::-webkit-scrollbar-thumb {
  4830. background-color: #91949B;
  4831. }
  4832. .dp__overlay_row {
  4833. .dp__overlay_col {
  4834. .dp__overlay_cell {
  4835. color: #fff;
  4836. &:hover {
  4837. background: rgba(16, 16, 17, 0.2);
  4838. }
  4839. }
  4840. }
  4841. }
  4842. }
  4843. .dp__input_wrap {
  4844. .dp__input {
  4845. border-color: #42484F;
  4846. background-color: #272B30;
  4847. color: #fff;
  4848. background-image: url("/assets/img/ico_calendar_w.png");
  4849. }
  4850. }
  4851. .dp__outer_menu_wrap {
  4852. .dp__menu {
  4853. border: 2px solid #42484F;
  4854. background-color: #272B30;
  4855. .dp__arrow_top {
  4856. border-color: #42484F;
  4857. border-width: 2px;
  4858. background-color: #272B30;
  4859. }
  4860. .dp__month_year_row {
  4861. .dp__btn {
  4862. &:hover {
  4863. span {
  4864. background: rgba(16, 16, 17, 0.2);
  4865. }
  4866. }
  4867. }
  4868. .dp__month_year_wrap {
  4869. .dp__btn {
  4870. color: #fff;
  4871. &:hover {
  4872. background: rgba(16, 16, 17, 0.2);
  4873. }
  4874. }
  4875. }
  4876. }
  4877. .dp__calendar {
  4878. .dp__calendar_header {
  4879. .dp__calendar_header_item {
  4880. color: #fff;
  4881. }
  4882. }
  4883. .dp__calendar_row {
  4884. .dp__calendar_item {
  4885. .dp__cell_inner {
  4886. color: #fff;
  4887. &.dp__cell_offset {
  4888. color: #606770;
  4889. }
  4890. &:hover {
  4891. background: rgba(16, 16, 17, 0.2);
  4892. }
  4893. }
  4894. }
  4895. }
  4896. }
  4897. .dp__action_row {
  4898. .dp__action_buttons {
  4899. .dp__action_button {
  4900. &.dp__action_cancel {
  4901. border-color: #606770;
  4902. color: #606770;
  4903. }
  4904. &.dp__action_select {
  4905. background: #42484F;
  4906. color: #fff;
  4907. }
  4908. }
  4909. }
  4910. }
  4911. }
  4912. }
  4913. }
  4914. }
  4915. .list--dell--btn{
  4916. background:#d50000!important;
  4917. color: #fff!important;
  4918. font-size: 13px;
  4919. font-style: normal;
  4920. font-weight: 500;
  4921. line-height: 100%; /* 13px */
  4922. border-radius: 0px!important;
  4923. &.small{
  4924. min-width:30px!important;
  4925. width:30px!important;
  4926. height:30px!important;
  4927. }
  4928. &.mid{
  4929. min-width:40px!important;
  4930. width:40px!important;
  4931. height:36px!important;
  4932. }
  4933. &.type--2{
  4934. font-size:12px!important;
  4935. }
  4936. }
  4937. .v-messages__message {
  4938. padding: 0 0.81rem;
  4939. margin-top: 0.25rem;
  4940. letter-spacing: -0.02rem;
  4941. line-height: 1rem;
  4942. white-space: nowrap;
  4943. font-size: 0.75rem;
  4944. font-weight: 600;
  4945. color: #E50A0A!important;
  4946. transition: none !important;
  4947. }
  4948. .v-input__details{
  4949. padding-left:0px!important;
  4950. }
  4951. .v-field--error:not(.v-field--disabled) .v-field__outline{
  4952. color:#FF8C8C!important;
  4953. border-color:#FF8C8C!important;
  4954. }
  4955. .v-input__details{
  4956. overflow: visible;
  4957. }
  4958. .log--btn{
  4959. cursor: pointer;
  4960. position: absolute;
  4961. right:10px;
  4962. z-index: 9;
  4963. }
  4964. .se-dialog-footer{
  4965. > div{
  4966. display: none!important;
  4967. }
  4968. }
  4969. .se-dialog-tabs{
  4970. display: none!important;
  4971. }
  4972. //** 룰렛 시작
  4973. .container{
  4974. .content{
  4975. .main{
  4976. .inner--headers{
  4977. > h2{
  4978. font-size: 1.5rem;
  4979. font-weight: 700;
  4980. color: #333;
  4981. display: inline-flex;
  4982. gap:10px;
  4983. .event--status{
  4984. font-size:16px;
  4985. font-weight: 700;
  4986. color: #fff;
  4987. background: #007AFF;
  4988. border-radius: 50px;
  4989. padding: 5px 20px;
  4990. line-height: 100%;
  4991. display: inline-flex;
  4992. align-items: center;
  4993. justify-content: center;
  4994. }
  4995. }
  4996. }
  4997. }
  4998. }
  4999. }
  5000. .winner--rank--wrapper{
  5001. border-top:1px solid #000;
  5002. display: flex;
  5003. width:100%;
  5004. flex-wrap:wrap;
  5005. dl{
  5006. display: flex;
  5007. align-items: center;
  5008. width: calc(100% / 4);
  5009. flex-wrap: wrap;
  5010. &:last-child{
  5011. dd{
  5012. border-right: 0;
  5013. }
  5014. }
  5015. dt{
  5016. background-color: #f8f8f8;
  5017. display: flex;
  5018. align-items: center;
  5019. height:50px;
  5020. padding:0 20px;
  5021. border-bottom: 1px solid #e2e2e2;
  5022. border-right: 1px solid #E2E2E2;
  5023. width:40%;
  5024. font-size:16px;
  5025. .rank, .name {
  5026. display: block;
  5027. overflow: hidden;
  5028. white-space: nowrap;
  5029. text-overflow: ellipsis;
  5030. min-width: 0;
  5031. max-width:120px;
  5032. font-size:16px;
  5033. }
  5034. i{
  5035. font-style: normal;
  5036. }
  5037. }
  5038. dd{
  5039. display: flex;
  5040. align-items: center;
  5041. height:50px;
  5042. padding:0 20px;
  5043. border-bottom: 1px solid #e2e2e2;
  5044. border-right: 1px solid #E2E2E2;
  5045. width:60%;
  5046. i{
  5047. font-style: normal;
  5048. }
  5049. }
  5050. }
  5051. }
  5052. .kakao--sms--button{
  5053. display: flex;
  5054. align-items: center;
  5055. justify-content: center;
  5056. padding:5px 10px;
  5057. border-radius: 50px;
  5058. background-color: #000;
  5059. color: #fff!important;
  5060. font-size: 0.75rem;
  5061. font-weight: 600;
  5062. line-height: 1.06rem;
  5063. }
  5064. .gap--10{
  5065. gap: 10px;
  5066. }
  5067. .caution--text{
  5068. font-size:16px;
  5069. color:red;
  5070. font-weight: 700;
  5071. }