style.scss 130 KB

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