style.scss 129 KB

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