style.scss 128 KB

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