style.scss 122 KB

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