style.scss 129 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445
  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. width: 50%;
  3121. max-width: 1200px;
  3122. margin: auto;
  3123. border-radius: 20px;
  3124. overflow: hidden;
  3125. box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  3126. backdrop-filter: blur(20px);
  3127. z-index: 10;
  3128. .login-l {
  3129. flex: 1;
  3130. background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  3131. backdrop-filter: blur(20px);
  3132. border: 1px solid rgba(255,255,255,0.1);
  3133. display: flex;
  3134. align-items: center;
  3135. justify-content: center;
  3136. position: relative;
  3137. overflow: hidden;
  3138. .login-l-center {
  3139. position: relative;
  3140. z-index: 2;
  3141. text-align: center;
  3142. padding: 3rem;
  3143. background: rgba(255,255,255,0.1);
  3144. backdrop-filter: blur(10px);
  3145. border-radius: 15px;
  3146. border: 1px solid rgba(255,255,255,0.2);
  3147. .logo {
  3148. color: white;
  3149. font-size: 2.5rem;
  3150. font-weight: 700;
  3151. letter-spacing: 0.1em;
  3152. display: block;
  3153. }
  3154. p {
  3155. color: rgba(255,255,255,0.8);
  3156. font-size: 1rem;
  3157. font-weight: 300;
  3158. letter-spacing: 0.05em;
  3159. }
  3160. }
  3161. }
  3162. .login-r {
  3163. flex: 1;
  3164. background: rgba(255,255,255,0.95);
  3165. backdrop-filter: blur(20px);
  3166. padding: 3rem;
  3167. display: flex;
  3168. flex-direction: column;
  3169. justify-content: center;
  3170. position: relative;
  3171. .custom-input.v-text-field .v-input__control .v-field__field .v-field__input{
  3172. border: none;
  3173. background-color: transparent;
  3174. }
  3175. .mk--title{
  3176. font-size: 35px;
  3177. font-weight: 900;
  3178. margin-bottom: 45px;
  3179. background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  3180. -webkit-background-clip: text;
  3181. background-clip: text;
  3182. -webkit-text-fill-color: transparent;
  3183. }
  3184. .tit-login {
  3185. margin-bottom: 1.5rem;
  3186. text-align: center;
  3187. strong {
  3188. color: #2d3748;
  3189. font-size: 1.8rem;
  3190. font-weight: 700;
  3191. background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  3192. -webkit-background-clip: text;
  3193. background-clip: text;
  3194. -webkit-text-fill-color: transparent;
  3195. }
  3196. }
  3197. .login-input-wrap {
  3198. margin-bottom: 1rem;
  3199. .txt-field-box {
  3200. margin-bottom: 0.5rem;
  3201. position: relative;
  3202. display: flex;
  3203. &:last-child{
  3204. margin-bottom: 0;
  3205. }
  3206. .custom-input {
  3207. .v-input__control {
  3208. .v-field {
  3209. background: rgba(255,255,255,0.8);
  3210. backdrop-filter: blur(10px);
  3211. border: 2px solid rgba(102, 126, 234, 0.2);
  3212. border-radius: 12px;
  3213. transition: all 0.3s ease;
  3214. &:hover {
  3215. border-color: rgba(102, 126, 234, 0.4);
  3216. background: rgba(255,255,255,0.9);
  3217. }
  3218. &.v-field--focused {
  3219. border-color: #667eea;
  3220. box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  3221. }
  3222. }
  3223. }
  3224. }
  3225. .ico {
  3226. position: absolute;
  3227. left: 15px;
  3228. top: 50%;
  3229. transform: translateY(-50%);
  3230. width: 20px;
  3231. height: 20px;
  3232. background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  3233. border-radius: 50%;
  3234. z-index: 10;
  3235. }
  3236. .ico-eye {
  3237. position: absolute;
  3238. right: 15px;
  3239. top: 50%;
  3240. transform: translateY(-50%);
  3241. cursor: pointer;
  3242. color: #667eea;
  3243. font-size: 1.2rem;
  3244. z-index: 10;
  3245. transition: all 0.3s ease;
  3246. &:hover {
  3247. color: #764ba2;
  3248. transform: translateY(-50%) scale(1.1);
  3249. }
  3250. }
  3251. }
  3252. }
  3253. .login-btn-wrap {
  3254. margin-bottom: 1.5rem;
  3255. .custom-btn {
  3256. width: 100%;
  3257. height: 50px;
  3258. background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  3259. border: none;
  3260. border-radius: 12px;
  3261. color: white;
  3262. font-size: 1.1rem;
  3263. font-weight: 600;
  3264. letter-spacing: 0.05em;
  3265. box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  3266. transition: all 0.3s ease;
  3267. &:hover {
  3268. transform: translateY(-2px);
  3269. box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
  3270. }
  3271. &:active {
  3272. transform: translateY(0);
  3273. }
  3274. }
  3275. }
  3276. .join--btn--wrap {
  3277. display: flex;
  3278. justify-content: center;
  3279. gap: 1rem;
  3280. margin-bottom: 1.5rem;
  3281. .text--btn {
  3282. background: none;
  3283. border: none;
  3284. color: #667eea;
  3285. font-size: 0.9rem;
  3286. font-weight: 500;
  3287. padding: 0.5rem 1rem;
  3288. border-radius: 8px;
  3289. transition: all 0.3s ease;
  3290. &:hover {
  3291. background: rgba(102, 126, 234, 0.1);
  3292. color: #764ba2;
  3293. }
  3294. }
  3295. }
  3296. .short--login--wrap {
  3297. display: flex;
  3298. justify-content: center;
  3299. gap: 1rem;
  3300. padding-top: 1.5rem;
  3301. border-top: 1px solid rgba(102, 126, 234, 0.2);
  3302. .btn--google,
  3303. .btn--kakao,
  3304. .btn--naver {
  3305. width: 50px;
  3306. height: 50px;
  3307. border-radius: 50%;
  3308. border: 2px solid rgba(102, 126, 234, 0.2);
  3309. background-color: white;
  3310. transition: all 0.3s ease;
  3311. position: relative;
  3312. &:hover {
  3313. transform: translateY(-2px);
  3314. box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  3315. border-color: #667eea;
  3316. }
  3317. }
  3318. }
  3319. }
  3320. }
  3321. .login-footer {
  3322. position: absolute;
  3323. bottom: 0;
  3324. left: 0;
  3325. right: 0;
  3326. height: 60px;
  3327. background: rgba(255,255,255,0.1);
  3328. backdrop-filter: blur(20px);
  3329. border-top: 1px solid rgba(255,255,255,0.1);
  3330. display: flex;
  3331. align-items: center;
  3332. justify-content: space-between;
  3333. padding: 0 2rem;
  3334. z-index: 100;
  3335. .login--footer--l {
  3336. p {
  3337. color: rgba(255,255,255,0.8);
  3338. font-size: 0.8rem;
  3339. margin: 0;
  3340. &:first-child {
  3341. font-weight: 500;
  3342. margin-bottom: 0.25rem;
  3343. }
  3344. }
  3345. }
  3346. }
  3347. }
  3348. /* --- content --- */
  3349. .content-tit {
  3350. display: flex;
  3351. align-items: center;
  3352. margin-bottom: 1.25rem;
  3353. h2 {
  3354. color: #333333;
  3355. font-weight: 700;
  3356. font-size: 1.13rem;
  3357. letter-spacing: -0.01rem;
  3358. }
  3359. >span {
  3360. color: #666666;
  3361. font-size: 0.88rem;
  3362. font-weight: 400;
  3363. letter-spacing: -0.01rem;
  3364. display: flex;
  3365. align-items: center;
  3366. &:before {
  3367. content: "";
  3368. margin: 0 0.94rem;
  3369. background: #ddd;
  3370. width: 0.06rem;
  3371. height: 1rem;
  3372. }
  3373. }
  3374. .location {
  3375. margin-left: auto;
  3376. display: flex;
  3377. gap: 0.31rem;
  3378. align-items: center;
  3379. span {
  3380. display: flex;
  3381. align-items: center;
  3382. color: #333;
  3383. font-size: 0.94rem;
  3384. font-weight: 400;
  3385. letter-spacing: -0.01rem;
  3386. line-height: 0.88rem;
  3387. }
  3388. .home {
  3389. &:before {
  3390. content: "";
  3391. margin-right: 0.63rem;
  3392. width: 0.88rem;
  3393. height: 0.88rem;
  3394. background: url("../img/ico_location_home.svg") no-repeat center / 100%;
  3395. }
  3396. }
  3397. .arr {
  3398. width: 0.88rem;
  3399. height: 0.88rem;
  3400. background: url("../img/ico_location_arr.svg") no-repeat center / 100%;
  3401. }
  3402. .now {
  3403. font-weight: 700;
  3404. }
  3405. }
  3406. }
  3407. .search-wrap {
  3408. background: #FAFAFA;
  3409. padding: 20px calc(1vw * (30 / 19.2)) 22px calc(1vw * (30 / 19.2));
  3410. display: flex;
  3411. margin-bottom: 1.56rem;
  3412. .search-line-wrap {
  3413. display: flex;
  3414. gap: 1.06rem;
  3415. flex-direction: column;
  3416. .search-line {
  3417. gap: calc(1vw * (50 / 19.2));
  3418. display: flex;
  3419. .search-box {
  3420. display: flex;
  3421. strong {
  3422. min-height: 2.25rem;
  3423. flex-shrink: 0;
  3424. display: flex;
  3425. color: #333;
  3426. font-size: 0.75rem;
  3427. font-weight: 400;
  3428. align-items: center;
  3429. }
  3430. .search-box-in {
  3431. display: flex;
  3432. .custom-radio {
  3433. height: 1.13rem;
  3434. align-self: center;
  3435. &.picker-terms {
  3436. height: 2.25rem;
  3437. }
  3438. }
  3439. }
  3440. }
  3441. }
  3442. }
  3443. .search-btn {
  3444. flex-shrink: 0;
  3445. width: calc(1vw * (100 / 19.2));
  3446. display: flex;
  3447. margin-left: auto;
  3448. flex-direction: column;
  3449. gap: 1.06rem;
  3450. &.row {
  3451. flex-direction: row;
  3452. width: auto;
  3453. gap: calc(1vw * (10 / 19.2));
  3454. .custom-btn.v-btn.v-btn--density-default {
  3455. width: calc(1vw * (100 / 19.2));
  3456. }
  3457. }
  3458. .custom-btn.v-btn.v-btn--density-default {
  3459. width: 100%;
  3460. }
  3461. }
  3462. }
  3463. .tbl-list-top {
  3464. display: flex;
  3465. align-items: flex-end;
  3466. justify-content: space-between;
  3467. margin-bottom: .8rem;
  3468. .total {
  3469. display: flex;
  3470. flex-direction: column;
  3471. .total-num {
  3472. display: flex;
  3473. align-items: center;
  3474. strong {
  3475. color: #333333;
  3476. font-size: 0.81rem;
  3477. font-weight: 400;
  3478. span {
  3479. color: #007AFF;
  3480. font-weight: 700;
  3481. }
  3482. }
  3483. .total-slt {
  3484. display: flex;
  3485. align-items: center;
  3486. &:before {
  3487. content: "";
  3488. background: #C1C1C1;
  3489. width: 0.06rem;
  3490. height: 0.75rem;
  3491. margin: 0 0.94rem;
  3492. display: inline-block;
  3493. }
  3494. .custom-select.v-input {
  3495. .v-input__control {
  3496. .v-field {
  3497. height: 0.81rem;
  3498. background: transparent;
  3499. .v-field__field {
  3500. height: 0.81rem;
  3501. overflow: visible;
  3502. padding: 0;
  3503. .v-label {
  3504. height: 0.81rem;
  3505. font-size: 0.81rem;
  3506. color: #333;
  3507. font-weight: 400;
  3508. }
  3509. .v-field__input {
  3510. height: 0.81rem;
  3511. min-height: 0.81rem;
  3512. .v-select__selection {
  3513. font-size: 0.81rem;
  3514. color: #333;
  3515. line-height: 0.81rem;
  3516. }
  3517. }
  3518. }
  3519. .v-field__append-inner {
  3520. .v-icon {
  3521. margin-right: 0;
  3522. min-width: 0.75rem;
  3523. background-image: url("../img/ico_slt2.svg")
  3524. }
  3525. }
  3526. .v-field__outline {
  3527. border: 0;
  3528. }
  3529. }
  3530. }
  3531. }
  3532. }
  3533. }
  3534. .total-btn {
  3535. display: flex;
  3536. gap: 0.63rem;
  3537. margin-top: 1.25rem;
  3538. align-items: center;
  3539. .custom-btn.v-btn.v-btn--density-default {
  3540. width: 5.13rem;
  3541. height: 2.25rem;
  3542. &.v-btn--disabled {
  3543. background: #C5CDD4 !important;
  3544. }
  3545. &.btn-reg {
  3546. background: #007AFF;
  3547. .v-btn__content {
  3548. .ico {
  3549. background-image: url("../img/ico_reg.svg");
  3550. }
  3551. }
  3552. }
  3553. &.btn-del {
  3554. background: #8F9FAF;
  3555. .v-btn__content {
  3556. .ico {
  3557. background-image: url("../img/ico_del.svg");
  3558. }
  3559. }
  3560. }
  3561. &.btn-all-end {
  3562. width: 8.38rem;
  3563. background: #2C3744;
  3564. .v-btn__content {
  3565. .ico {
  3566. background-image: url("../img/ico_end.svg");
  3567. }
  3568. }
  3569. }
  3570. &.btn-all-end-red {
  3571. width: 8.75rem;
  3572. border: 1px solid #F49A9A;
  3573. .v-btn__content {
  3574. color: #EC4242;
  3575. font-size: 14px;
  3576. font-weight: 500;
  3577. letter-spacing: -0.28px;
  3578. max-width: 9.75rem !important;
  3579. width: 9.75rem !important;
  3580. ;
  3581. .ico {
  3582. background-image: url(../img/ic_end_red.svg);
  3583. }
  3584. }
  3585. }
  3586. &.btn-excel {
  3587. width: 8.25rem;
  3588. &.v-btn--disabled {
  3589. background-color: #F4F6F9 !important;
  3590. border-color: #DFE4EA !important;
  3591. .ico {
  3592. background-image: url("../img/ico_excel_d.svg") !important;
  3593. }
  3594. .v-btn__content {
  3595. color: #9DAAB8 !important;
  3596. }
  3597. }
  3598. }
  3599. .v-btn__content {
  3600. color: #fff;
  3601. font-size: 0.81rem;
  3602. font-weight: 400;
  3603. letter-spacing: -0.01rem;
  3604. .ico {
  3605. width: 1.13rem;
  3606. height: 1.13rem;
  3607. margin-right: 0.63rem;
  3608. background: no-repeat center / 100%;
  3609. }
  3610. }
  3611. }
  3612. .custom-check.v-input {
  3613. margin-left: 0.94rem;
  3614. }
  3615. }
  3616. }
  3617. .excel-search {
  3618. display: flex;
  3619. gap: 0.63rem;
  3620. .tbl-search {
  3621. position: relative;
  3622. .custom-input.v-text-field {
  3623. .v-input__control {
  3624. .v-field__field {
  3625. .v-field__input {
  3626. padding-right: 2.50rem;
  3627. }
  3628. }
  3629. }
  3630. }
  3631. .ico {
  3632. width: 2.56rem;
  3633. height: 2.25rem;
  3634. top: 0;
  3635. right: 0;
  3636. z-index: 1;
  3637. position: absolute;
  3638. background: url("../img/ico_search.svg") no-repeat 0.63rem center / 1rem;
  3639. }
  3640. }
  3641. }
  3642. }
  3643. .page-list-item {
  3644. color: #222;
  3645. font-size: 0.81rem;
  3646. font-weight: 700;
  3647. .page {
  3648. color: #333;
  3649. font-weight: 400;
  3650. }
  3651. }
  3652. .form-style1 {
  3653. //border-top:0.06rem solid #ccc;
  3654. &.col4 {
  3655. margin-top: -0.63rem;
  3656. table {
  3657. th {
  3658. font-weight: 400;
  3659. &:nth-of-type(even) {
  3660. padding-left: 1.56rem;
  3661. }
  3662. }
  3663. td {
  3664. &:nth-of-type(odd) {
  3665. padding-right: 1.56rem;
  3666. }
  3667. }
  3668. }
  3669. }
  3670. &.row {
  3671. table {
  3672. th {
  3673. height: 3.06rem;
  3674. padding: 0.94rem;
  3675. background: #FAFAFA;
  3676. color: #222222;
  3677. font-size: 0.75rem;
  3678. font-weight: 600;
  3679. border-top: 0.06rem solid #ccc;
  3680. border-bottom: 0.06rem solid #EBEBEB;
  3681. text-align: center;
  3682. vertical-align: middle;
  3683. line-height: normal;
  3684. }
  3685. td {
  3686. padding: 0.63rem;
  3687. text-align: center;
  3688. color: #222222;
  3689. font-size: 0.75rem;
  3690. font-weight: 400;
  3691. border-bottom: 0.06rem solid #EBEBEB;
  3692. .custom-radio {
  3693. display: inline-flex;
  3694. }
  3695. .input-wrap.slt-btn {
  3696. width: 100%;
  3697. justify-content: center;
  3698. .custom-input {
  3699. width: 14.88rem;
  3700. flex: none;
  3701. height: 1.81rem;
  3702. min-height: 1.81rem;
  3703. .v-input__control {
  3704. min-height: 1.81rem;
  3705. height: 1.81rem;
  3706. .v-field {
  3707. height: 1.81rem;
  3708. .v-field__field {
  3709. height: 1.81rem;
  3710. .v-field__input {
  3711. height: 1.81rem;
  3712. min-height: 1.81rem;
  3713. .v-btn__content {
  3714. color: #6E7E8F;
  3715. }
  3716. }
  3717. }
  3718. }
  3719. }
  3720. }
  3721. .custom-btn {
  3722. padding: 0;
  3723. min-width: 2.94rem;
  3724. width: 2.94rem;
  3725. height: 1.81rem;
  3726. min-height: 1.81rem;
  3727. }
  3728. }
  3729. }
  3730. }
  3731. }
  3732. table {
  3733. width: 100%;
  3734. table-layout: fixed;
  3735. th {
  3736. padding: 0.63rem 0;
  3737. text-align: left;
  3738. font-size: 0.75rem;
  3739. color: #222222;
  3740. font-weight: 700;
  3741. vertical-align: middle;
  3742. line-height: 2.25rem;
  3743. .bul {
  3744. color: #007AFF;
  3745. font-weight: 700;
  3746. padding-left: 0.19rem;
  3747. }
  3748. }
  3749. td {
  3750. text-align: left;
  3751. color: #222222;
  3752. font-weight: 400;
  3753. font-size: 0.75rem;
  3754. vertical-align: middle;
  3755. padding: 0.63rem 0;
  3756. }
  3757. }
  3758. }
  3759. .form-style2 {
  3760. table {
  3761. width: 100%;
  3762. border-top: 0.06rem solid #E0E0E0;
  3763. tr {
  3764. th {
  3765. border-bottom: 0.06rem solid #E0E0E0;
  3766. border-right: 0.06rem solid #E0E0E0;
  3767. background: #F4F4F4;
  3768. padding: 0.63rem 0 0.63rem 1.88rem;
  3769. text-align: left;
  3770. color: #222222;
  3771. font-size: 0.75rem;
  3772. font-weight: 600;
  3773. vertical-align: middle;
  3774. .bullet {
  3775. color: #007AFF;
  3776. font-weight: 700;
  3777. }
  3778. }
  3779. td {
  3780. padding: 0.63rem 1.13rem;
  3781. border-bottom: 0.06rem solid #E0E0E0;
  3782. color: #444;
  3783. font-size: 0.75rem;
  3784. font-weight: 400;
  3785. }
  3786. }
  3787. }
  3788. }
  3789. .view-box {
  3790. margin-top: 1.88rem;
  3791. &:first-of-type {
  3792. margin-top: 0;
  3793. }
  3794. .view-box-top {
  3795. background: #F0F6FD;
  3796. border: 0.06rem solid #DBE7F4;
  3797. min-height: 3.19rem;
  3798. padding: 0 1.56rem;
  3799. display: flex;
  3800. align-items: center;
  3801. h3 {
  3802. color: #333333;
  3803. font-size: 0.88rem;
  3804. font-weight: 600;
  3805. letter-spacing: -0.01rem;
  3806. .bul {
  3807. color: #007AFF;
  3808. }
  3809. .txt1 {
  3810. padding-left: 1.25rem;
  3811. font-size: 0.81rem;
  3812. font-weight: 400;
  3813. }
  3814. }
  3815. .connect-state {
  3816. margin: 0 auto 0 1.56rem;
  3817. }
  3818. .custom-btn.v-btn.v-btn--density-default {
  3819. min-height: 1.81rem;
  3820. height: 1.81rem;
  3821. margin-left: 1.25rem;
  3822. }
  3823. }
  3824. .view-box-btm {
  3825. border: 0.06rem solid #EBEBEB;
  3826. border-top: 0;
  3827. background: #fff;
  3828. padding: 0.56rem 1.56rem;
  3829. .form-style1 {
  3830. padding: 0;
  3831. table {
  3832. th {
  3833. font-weight: 400;
  3834. &:nth-of-type(even) {
  3835. padding-left: 2.5rem;
  3836. }
  3837. }
  3838. td {
  3839. &:nth-of-type(odd) {
  3840. padding-right: 2.5rem;
  3841. }
  3842. .custom-radio {
  3843. padding: 0.56rem 0;
  3844. }
  3845. }
  3846. }
  3847. }
  3848. .no-data {
  3849. height: 9.38rem;
  3850. width: 100%;
  3851. display: flex;
  3852. align-items: center;
  3853. justify-content: center;
  3854. flex-direction: column;
  3855. .ico {
  3856. width: 2.25rem;
  3857. height: 2.25rem;
  3858. background: url("../img/ico_no_data.svg") no-repeat center / 100%;
  3859. margin-bottom: 1.25rem;
  3860. }
  3861. p {
  3862. text-align: center;
  3863. color: #444;
  3864. font-size: 0.88rem;
  3865. letter-spacing: -0.01rem;
  3866. font-weight: 400;
  3867. width: 100%;
  3868. &.txt1 {
  3869. margin-bottom: 2.19rem;
  3870. }
  3871. span {
  3872. color: #000;
  3873. display: block;
  3874. }
  3875. }
  3876. }
  3877. }
  3878. }
  3879. .view-btm-btn {
  3880. display: flex;
  3881. justify-content: space-between;
  3882. margin-top: 1.13rem;
  3883. padding-bottom: 1.19rem;
  3884. >div {
  3885. display: flex;
  3886. gap: 0.94rem;
  3887. }
  3888. .custom-btn.v-btn.v-btn--density-default {
  3889. height: 3.13rem;
  3890. width: 8.13rem;
  3891. &.btn-list {
  3892. background: #fff;
  3893. border: 0.06rem solid #C2C2C2;
  3894. .v-btn__content {
  3895. color: #48525C;
  3896. .ico {
  3897. background-image: url("../img/ico_view_list.svg");
  3898. }
  3899. }
  3900. }
  3901. &.btn-del {
  3902. background: #fff;
  3903. border: 0.06rem solid #FFBCBC;
  3904. .v-btn__content {
  3905. color: #EA5555;
  3906. .ico {
  3907. background-image: url("../img/ico_view_del.svg");
  3908. }
  3909. }
  3910. }
  3911. .v-btn__content {
  3912. font-size: 0.81rem;
  3913. font-weight: 600;
  3914. .ico {
  3915. width: 0.88rem;
  3916. height: 0.88rem;
  3917. margin-right: 2.5rem;
  3918. background: no-repeat center / 100%;
  3919. }
  3920. }
  3921. }
  3922. }
  3923. .list-flex {
  3924. display: flex;
  3925. gap: calc(1vw * (40 / 19.2));
  3926. .list-flex-l {
  3927. max-width: calc(1vw * (350 / 19.2));
  3928. width: calc(1vw * (350 / 19.2));
  3929. height: calc(1vh * (823 / 10.8));
  3930. min-height: 45.6rem;
  3931. border: 0.31rem solid #F7F8F9;
  3932. display: flex;
  3933. flex-direction: column;
  3934. .topology-top {
  3935. background: #F7F8F9;
  3936. min-height: 3.44rem;
  3937. display: flex;
  3938. align-items: center;
  3939. padding: 0.63rem 1.25rem 0.94rem 1.25rem;
  3940. flex-shrink: 0;
  3941. strong {
  3942. color: #333333;
  3943. font-size: 0.81rem;
  3944. font-weight: 700;
  3945. }
  3946. .btn-ne-del {
  3947. font-size: 0;
  3948. margin-left: auto;
  3949. display: flex;
  3950. align-items: center;
  3951. justify-content: center;
  3952. border: 0.05rem solid #FFBEBF;
  3953. width: 1.88rem;
  3954. height: 1.88rem;
  3955. border-radius: 0.5rem;
  3956. &:disabled {
  3957. border-color: #4C576B;
  3958. cursor: default;
  3959. pointer-events: none;
  3960. &:before {
  3961. background-image: url("../img/ico_ne_del_d.svg");
  3962. }
  3963. }
  3964. &:before {
  3965. content: "";
  3966. width: 0.75rem;
  3967. height: 0.75rem;
  3968. background: url("../img/ico_ne_del.svg") no-repeat center / 100%;
  3969. display: inline-block;
  3970. }
  3971. }
  3972. }
  3973. .topology-btm {
  3974. height: 100%;
  3975. max-height: calc(100% - 3.44rem);
  3976. padding: 1.56rem 0.63rem 1.56rem 1.25rem;
  3977. .no-data {
  3978. height: 100%;
  3979. width: 100%;
  3980. display: flex;
  3981. align-items: center;
  3982. justify-content: center;
  3983. flex-direction: column;
  3984. .ico {
  3985. width: 2.25rem;
  3986. height: 2.25rem;
  3987. background: url("../img/ico_no_data.svg") no-repeat center / 100%;
  3988. margin-bottom: 1.25rem;
  3989. }
  3990. p {
  3991. text-align: center;
  3992. color: #444;
  3993. font-size: 0.88rem;
  3994. letter-spacing: -0.01rem;
  3995. font-weight: 400;
  3996. width: 100%;
  3997. &.txt1 {
  3998. margin-bottom: 2.19rem;
  3999. }
  4000. span {
  4001. color: #000;
  4002. display: block;
  4003. }
  4004. }
  4005. }
  4006. }
  4007. }
  4008. .list-flex-r {
  4009. width: 100%;
  4010. max-width: calc(100% - (1vw * (350 / 19.2)));
  4011. }
  4012. }
  4013. .tree-area {
  4014. height: 100%;
  4015. overflow-y: scroll;
  4016. padding-right: 0.44rem;
  4017. .depth-item-tit {
  4018. display: flex;
  4019. align-items: center;
  4020. gap: 0.63rem;
  4021. &.down {
  4022. .arr {
  4023. transform: rotate(180deg);
  4024. }
  4025. }
  4026. .custom-input.v-text-field.mini {
  4027. flex: none;
  4028. min-height: 1.88rem;
  4029. width: calc(100% - 4.63rem);
  4030. .v-input__control {
  4031. height: 1.88rem;
  4032. .v-field__field {
  4033. .v-field__input {
  4034. min-height: 1.88rem;
  4035. height: 1.88rem;
  4036. padding: 0 0.56rem;
  4037. }
  4038. }
  4039. }
  4040. }
  4041. .arr {
  4042. display: flex;
  4043. align-items: center;
  4044. justify-content: center;
  4045. width: 0.75rem;
  4046. height: 0.75rem;
  4047. flex-shrink: 0;
  4048. background: url("../img/ico_tree_arr.svg") no-repeat center / 100%;
  4049. &.nor {
  4050. background: none;
  4051. &:before {
  4052. content: "-";
  4053. display: block;
  4054. font-weight: 600;
  4055. color: #222;
  4056. font-size: 0.75rem;
  4057. }
  4058. }
  4059. }
  4060. .ico {
  4061. width: 1rem;
  4062. height: 1rem;
  4063. flex-shrink: 0;
  4064. background: no-repeat center / 100%;
  4065. }
  4066. .custom-check.v-input {
  4067. .v-input__control {
  4068. display: block;
  4069. .v-selection-control {
  4070. .v-label {
  4071. font-size: 0.75rem;
  4072. margin-left: 0.63rem;
  4073. line-height: 1.06rem;
  4074. white-space: nowrap;
  4075. text-overflow: ellipsis;
  4076. overflow: hidden;
  4077. display: block;
  4078. }
  4079. }
  4080. }
  4081. }
  4082. .btn-tree {
  4083. width: 1rem;
  4084. height: 1rem;
  4085. flex-shrink: 0;
  4086. background: no-repeat center / 100%;
  4087. &.btn-save {
  4088. background-image: url("../img/ico_tree_save.svg");
  4089. }
  4090. }
  4091. }
  4092. .tree-depth1 {
  4093. margin-bottom: 1.25rem;
  4094. &:last-of-type {
  4095. margin-bottom: 0;
  4096. }
  4097. ul {
  4098. display: flex;
  4099. flex-direction: column;
  4100. gap: 0.63rem;
  4101. }
  4102. .depth1-item {
  4103. .depth1-item-tit {
  4104. .ico {
  4105. background-image: url("../img/ico_tree1.svg");
  4106. }
  4107. strong {
  4108. color: #222;
  4109. line-height: 1rem;
  4110. font-weight: 600;
  4111. font-size: 0.75rem;
  4112. text-align: left;
  4113. width: 100%;
  4114. white-space: nowrap;
  4115. text-overflow: ellipsis;
  4116. overflow: hidden;
  4117. }
  4118. .btn-add {
  4119. margin-left: auto;
  4120. font-size: 0;
  4121. background-image: url("../img/ico_tree_add.svg");
  4122. }
  4123. }
  4124. }
  4125. }
  4126. .tree-depth2 {
  4127. padding: 1.25rem 0 0 0.94rem;
  4128. ul {
  4129. display: flex;
  4130. flex-direction: column;
  4131. gap: 0.94rem;
  4132. }
  4133. .depth2-item {
  4134. .depth2-item-tit {
  4135. .ico {
  4136. background-image: url("../img/ico_tree2.svg");
  4137. }
  4138. .btn-ne-add {
  4139. width: 2.19rem;
  4140. height: 1rem;
  4141. display: flex;
  4142. flex-shrink: 0;
  4143. margin-left: auto;
  4144. border-radius: 0.19rem;
  4145. background: #00c2ff;
  4146. color: #fff;
  4147. align-items: center;
  4148. justify-content: center;
  4149. font-size: 0.56rem;
  4150. font-weight: 700;
  4151. line-height: 0.63rem;
  4152. .plus {
  4153. width: 0.56rem;
  4154. height: 0.56rem;
  4155. margin-right: 0.19rem;
  4156. background: url("../img/ico_ne_add.svg") no-repeat center / 100%;
  4157. }
  4158. }
  4159. .btn-pos {
  4160. background-image: url("../img/ico_pos.svg");
  4161. }
  4162. }
  4163. }
  4164. }
  4165. .tree-depth3 {
  4166. padding: 1.25rem 0 0.63rem 22px;
  4167. &:has(ul:empty) {
  4168. padding: 0;
  4169. }
  4170. .depth3-item {
  4171. .depth3-item-tit {
  4172. .ico {
  4173. background-image: url("../img/ico_tree3.svg");
  4174. &.core {
  4175. background-image: url("../img/ico_tree3_core.svg");
  4176. }
  4177. &.ran {
  4178. background-image: url("../img/ico_tree3_ran.svg");
  4179. }
  4180. }
  4181. .btn-mod {
  4182. background-image: url("../img/ico_mod.svg");
  4183. }
  4184. }
  4185. }
  4186. }
  4187. }
  4188. .tbl-col-wrap {
  4189. display: flex;
  4190. margin-bottom: 4rem;
  4191. .tbl-col-fix {
  4192. width: calc(1vw * (340 / 19.2));
  4193. table {
  4194. th {
  4195. border-right: 0.06rem solid #EBEBEB;
  4196. height: 6.12rem;
  4197. }
  4198. td {
  4199. height: 3.06rem;
  4200. background: #FAFAFA;
  4201. color: #222222;
  4202. font-size: 0.75rem;
  4203. font-weight: 600;
  4204. vertical-align: middle;
  4205. text-align: center;
  4206. border-bottom: 0.06rem solid #EBEBEB;
  4207. border-right: 0.06rem solid #EBEBEB;
  4208. }
  4209. }
  4210. }
  4211. .tbl-col-scrl {
  4212. width: calc(100% - (1vw * (340 / 19.2)));
  4213. overflow-x: auto;
  4214. padding-bottom: 0.44rem;
  4215. &::-webkit-scrollbar {
  4216. height: 0.5rem;
  4217. border-radius: 0.5rem;
  4218. }
  4219. &::-webkit-scrollbar-track {
  4220. background: #F8F8F8;
  4221. border-radius: 0.5rem;
  4222. }
  4223. &::-webkit-scrollbar-thumb {
  4224. border-radius: 0.5rem;
  4225. background: #D9D9D9;
  4226. }
  4227. .scrl-in {
  4228. white-space: nowrap;
  4229. .tbl-box {
  4230. display: inline-block;
  4231. vertical-align: top;
  4232. border-right: 0.06rem solid #EBEBEB;
  4233. &:last-of-type {
  4234. border-right: 0;
  4235. }
  4236. }
  4237. }
  4238. }
  4239. table {
  4240. width: 100%;
  4241. border-top: 0.06rem solid #CCCCCC;
  4242. th {
  4243. height: 3.06rem;
  4244. color: #222222;
  4245. font-size: 0.75rem;
  4246. font-weight: 600;
  4247. vertical-align: middle;
  4248. background: #FAFAFA;
  4249. box-shadow: none;
  4250. box-shadow: inset 0 -0.06rem 0 #EBEBEB;
  4251. padding: calc(1vh * (15 / 10.8)) 10px calc(1vh * (14 / 10.8));
  4252. }
  4253. td {
  4254. padding: 0.63rem 0.63rem 0.56rem 0.63rem;
  4255. color: #222222;
  4256. text-align: center;
  4257. font-size: 0.75rem;
  4258. font-weight: 400;
  4259. vertical-align: middle;
  4260. text-align: center;
  4261. height: 3.06rem;
  4262. width: calc(1vw * (138 / 19.2));
  4263. border-bottom: 0.06rem solid #EBEBEB !important;
  4264. }
  4265. }
  4266. }
  4267. .menu-flex-wrap {
  4268. display: flex;
  4269. gap: calc(1vw * (40 / 19.2));
  4270. .system-menu {
  4271. width: calc(1vw * (350 / 19.2));
  4272. border: 0.31rem solid #F7F8F9;
  4273. flex-shrink: 0;
  4274. .system-menu-tit {
  4275. padding: 0 1.56rem;
  4276. background: #F7F8F9;
  4277. color: #333;
  4278. font-weight: 700;
  4279. font-size: 0.81rem;
  4280. height: 3.44rem;
  4281. display: flex;
  4282. align-items: center;
  4283. }
  4284. .system-menu-in {
  4285. overflow-y: scroll;
  4286. height: calc(1vh * (768 / 10.8));
  4287. display: flex;
  4288. margin-top: -0.31rem;
  4289. flex-direction: column;
  4290. padding: 1.88rem 1.56rem;
  4291. gap: 1.25rem;
  4292. .system-box {
  4293. &.on {
  4294. .system-box-sub {
  4295. display: block;
  4296. }
  4297. }
  4298. .system-box-tit {
  4299. display: flex;
  4300. align-items: center;
  4301. gap: 0.94rem;
  4302. font-weight: 600;
  4303. cursor: pointer;
  4304. color: #000;
  4305. font-size: 0.81rem;
  4306. button {
  4307. width: 1.13rem;
  4308. height: 1.13rem;
  4309. background: url("../img/ico_menu_plus.svg") no-repeat center / 100%;
  4310. cursor: pointer;
  4311. &.open {
  4312. background-image: url("../img/ico_menu_minus.svg");
  4313. }
  4314. }
  4315. }
  4316. .system-box-sub {
  4317. padding: 1.25rem 0 1.25rem 1.25rem;
  4318. display: none;
  4319. ul {
  4320. display: flex;
  4321. flex-direction: column;
  4322. gap: 0.94rem;
  4323. li {
  4324. gap: 0.63rem;
  4325. display: flex;
  4326. align-items: center;
  4327. cursor: pointer;
  4328. font-size: 0.75rem;
  4329. font-weight: 400;
  4330. color: #333;
  4331. &.active {
  4332. color: #007AFF;
  4333. }
  4334. &:before {
  4335. width: 0.75rem;
  4336. height: 0.75rem;
  4337. background: url("../img/ico_menu_arr.svg") no-repeat center / 100%;
  4338. content: "";
  4339. }
  4340. }
  4341. }
  4342. }
  4343. }
  4344. }
  4345. }
  4346. .menu-info {
  4347. border: 0.31rem solid #F7F8F9;
  4348. width: 100%;
  4349. .info-tit {
  4350. padding: 0 1.56rem;
  4351. background: #F7F8F9;
  4352. color: #333;
  4353. font-weight: 700;
  4354. font-size: 0.81rem;
  4355. height: 3.44rem;
  4356. display: flex;
  4357. align-items: center;
  4358. }
  4359. .menu-info-view {
  4360. height: calc(1vh * (768 / 10.8));
  4361. padding: 1.88rem 1.56rem 1.56rem 1.56rem;
  4362. margin-top: -0.31rem;
  4363. .info-tbl-tit {
  4364. display: flex;
  4365. align-items: center;
  4366. margin-bottom: 1.56rem;
  4367. .ico {
  4368. width: 1.25rem;
  4369. height: 1.25rem;
  4370. background: url("../img/ico_menu.svg") no-repeat center / 100%;
  4371. margin-right: 0.63rem;
  4372. }
  4373. .menu {
  4374. color: #333;
  4375. font-size: 1rem;
  4376. font-weight: 400;
  4377. letter-spacing: -0.01rem;
  4378. }
  4379. .arr {
  4380. margin: 0 0.31rem;
  4381. width: 0.94rem;
  4382. height: 0.94rem;
  4383. background: url("../img/ico_menu_arr2.svg") no-repeat center / 100%;
  4384. }
  4385. .now {
  4386. color: #111111;
  4387. font-size: 1rem;
  4388. font-weight: 700;
  4389. letter-spacing: -0.01rem;
  4390. }
  4391. }
  4392. .form-style2 {
  4393. table {
  4394. tr {
  4395. th {
  4396. padding: 1.25rem 0 1.25rem 1.88rem;
  4397. }
  4398. td {
  4399. padding: 1.25rem 1.38rem;
  4400. }
  4401. }
  4402. }
  4403. }
  4404. .input-wrap {
  4405. gap: 1.88rem;
  4406. .custom-check {
  4407. flex: none;
  4408. }
  4409. }
  4410. .no-data {
  4411. display: flex;
  4412. align-items: center;
  4413. justify-content: center;
  4414. flex-direction: column;
  4415. height: 100%;
  4416. .ico {
  4417. width: 2.25rem;
  4418. height: 2.25rem;
  4419. background: url("../img/ico_menu_nodata.svg") no-repeat center / 100%;
  4420. }
  4421. p {
  4422. text-align: center;
  4423. margin-top: 1.56rem;
  4424. color: #444;
  4425. font-size: 0.94rem;
  4426. letter-spacing: -0.01rem;
  4427. font-weight: 400;
  4428. }
  4429. }
  4430. }
  4431. .menu-info-r {
  4432. display: flex;
  4433. justify-content: flex-end;
  4434. gap: 0.94rem;
  4435. margin-top: 3.13rem;
  4436. .custom-btn.v-btn.v-btn--density-default {
  4437. height: 3.13rem;
  4438. width: 8.13rem;
  4439. &.btn-list {
  4440. background: #F8F8F8;
  4441. border: 0.06rem solid #E9E9E9;
  4442. .v-btn__content {
  4443. color: #6E7E8F;
  4444. .ico {
  4445. background-image: url("../img/ico_view_list.svg");
  4446. }
  4447. }
  4448. }
  4449. &.btn-del {
  4450. background: #FFF4F4;
  4451. border: 0.06rem solid #FFE2E2;
  4452. .v-btn__content {
  4453. color: #EA5555;
  4454. .ico {
  4455. background-image: url("../img/ico_view_del.svg");
  4456. }
  4457. }
  4458. }
  4459. .v-btn__content {
  4460. font-size: 0.81rem;
  4461. font-weight: 600;
  4462. .ico {
  4463. width: 0.88rem;
  4464. height: 0.88rem;
  4465. margin-right: 2.5rem;
  4466. background: no-repeat center / 100%;
  4467. }
  4468. }
  4469. }
  4470. }
  4471. }
  4472. }
  4473. .perfor-tab {
  4474. width: 7.81rem;
  4475. margin-right: 2.5rem;
  4476. .v-radio-group {
  4477. .v-input__control {
  4478. .v-selection-control-group {
  4479. gap: 1.06rem;
  4480. }
  4481. .v-radio {
  4482. &.v-selection-control--dirty {
  4483. .v-label {
  4484. background: #007AFF;
  4485. }
  4486. }
  4487. .v-selection-control__wrapper {
  4488. display: none;
  4489. }
  4490. .v-label {
  4491. width: 100%;
  4492. height: 2.25rem;
  4493. background: #C5CDD4;
  4494. justify-content: center;
  4495. align-items: center;
  4496. opacity: 1;
  4497. font-size: 0.75rem;
  4498. font-weight: 600;
  4499. color: #fff;
  4500. .ico {
  4501. width: 1.13rem;
  4502. height: 1.13rem;
  4503. margin-right: 0.75rem;
  4504. background: no-repeat center / 100%;
  4505. &.ico1 {
  4506. background-image: url("../img/ico_performance1.svg");
  4507. }
  4508. &.ico2 {
  4509. background-image: url("../img/ico_performance2.svg");
  4510. }
  4511. }
  4512. }
  4513. }
  4514. }
  4515. }
  4516. }
  4517. .chart-total {
  4518. text-align: left;
  4519. margin: 2.5rem 0 1.69rem;
  4520. display: flex;
  4521. p {
  4522. color: #333;
  4523. font-size: 0.88rem;
  4524. font-weight: 600;
  4525. flex-shrink: 0;
  4526. span {
  4527. color: #111;
  4528. font-weight: 700;
  4529. }
  4530. }
  4531. .legend-area {
  4532. display: flex;
  4533. justify-content: flex-end;
  4534. width: 100%;
  4535. gap: 1.88rem;
  4536. margin-left: auto;
  4537. .legend-box {
  4538. display: flex;
  4539. align-items: center;
  4540. gap: 0.75rem;
  4541. font-size: 0.81rem;
  4542. font-weight: 400;
  4543. color: #333;
  4544. .cir {
  4545. width: 0.75rem;
  4546. border-radius: 100%;
  4547. height: 0.75rem;
  4548. &.cir1 {
  4549. background: #007AFF;
  4550. }
  4551. &.cir2 {
  4552. background: #7897B8;
  4553. }
  4554. &.cir3 {
  4555. background: #FF9900;
  4556. }
  4557. }
  4558. }
  4559. }
  4560. }
  4561. .chart-wrap {
  4562. position: relative;
  4563. display: flex;
  4564. overflow: hidden;
  4565. height: 33.13rem;
  4566. border: 0.06rem solid #EBEBEB;
  4567. padding: 1.88rem;
  4568. &:after {
  4569. width: 1.88rem;
  4570. background: #fff;
  4571. top: 0;
  4572. right: 0;
  4573. bottom: 0;
  4574. content: "";
  4575. position: absolute;
  4576. }
  4577. .chart-wrap-fix {
  4578. position: absolute;
  4579. flex-shrink: 0;
  4580. left: 1.88rem;
  4581. top: 1.88rem;
  4582. background: #fff;
  4583. z-index: 0;
  4584. height: 29.38rem;
  4585. canvas {
  4586. height: 100%;
  4587. }
  4588. }
  4589. .scrl-chart {
  4590. overflow-x: scroll;
  4591. padding-bottom: 1.25rem;
  4592. overflow-y: hidden;
  4593. z-index: 1;
  4594. max-width: calc(100vw - 3.75rem);
  4595. margin-left: 1.25rem;
  4596. position: relative;
  4597. height: 29.38rem;
  4598. &::-webkit-scrollbar {
  4599. height: 0.5rem;
  4600. border-radius: 0.5rem;
  4601. }
  4602. &::-webkit-scrollbar-track {
  4603. background: #F8F8F8;
  4604. border-radius: 0.5rem;
  4605. }
  4606. &::-webkit-scrollbar-thumb {
  4607. border-radius: 0.5rem;
  4608. background: #D9D9D9;
  4609. }
  4610. .scrl-in {
  4611. height: 29.38rem;
  4612. }
  4613. canvas {
  4614. height: 100%;
  4615. }
  4616. }
  4617. }
  4618. .help-flex {
  4619. display: flex;
  4620. gap: 30px;
  4621. .help-list {
  4622. width: 300px;
  4623. ul {
  4624. display: flex;
  4625. flex-direction: column;
  4626. gap: 8px;
  4627. li {
  4628. border: 1px solid #ccc;
  4629. padding: 10px;
  4630. font-size: 14px;
  4631. font-weight: 400;
  4632. cursor: pointer;
  4633. &.active {
  4634. background: #ccc;
  4635. color: #fff;
  4636. font-weight: 700;
  4637. }
  4638. }
  4639. }
  4640. }
  4641. .help-cont {
  4642. width: calc(100% - 330px);
  4643. border: 1px solid #ccc;
  4644. .help-cont-tit {
  4645. display: block;
  4646. color: #000;
  4647. font-size: 16px;
  4648. font-weight: 700;
  4649. padding: 15px 24px;
  4650. border-bottom: 1px solid #ccc;
  4651. }
  4652. .help-acco {
  4653. .help-panel {
  4654. border-bottom: 1px solid #ccc;
  4655. &:after {
  4656. display: none;
  4657. }
  4658. &.v-expansion-panel--active {
  4659. .v-expansion-panel-title {
  4660. background: #f4f4f4;
  4661. }
  4662. }
  4663. .v-expansion-panel__shadow {
  4664. display: none;
  4665. }
  4666. .v-expansion-panel-title {
  4667. font-weight: 700;
  4668. color: #000;
  4669. .v-expansion-panel-title__overlay {
  4670. display: none;
  4671. }
  4672. }
  4673. .v-expansion-panel-text {
  4674. border-top: 1px solid #ccc;
  4675. .v-expansion-panel-text__wrapper {
  4676. overflow-y: auto;
  4677. padding: 16px 24px;
  4678. background: #fcfcfc;
  4679. .panel-cont {
  4680. padding: 10px 0;
  4681. height: 100%;
  4682. min-height: 250px;
  4683. max-height: 250px;
  4684. strong {
  4685. display: block;
  4686. text-align: left;
  4687. margin-bottom: 10px;
  4688. font-weight: 600;
  4689. font-size: 16px;
  4690. }
  4691. p {
  4692. text-align: left;
  4693. font-weight: 400;
  4694. font-size: 14px;
  4695. }
  4696. }
  4697. }
  4698. }
  4699. }
  4700. }
  4701. }
  4702. }
  4703. .menu-chk {
  4704. display: flex;
  4705. flex-direction: column;
  4706. gap: 10px;
  4707. }
  4708. .dashboard {
  4709. display: flex;
  4710. .dashboard-l {
  4711. width: 50%;
  4712. border-right: 1px solid rgba(224, 224, 224, 0.5);
  4713. .dashboard-core {
  4714. padding: 24px;
  4715. .core-box-wrap {
  4716. display: flex;
  4717. gap: 3px;
  4718. height: 380px;
  4719. .core-box {
  4720. width: 100%;
  4721. height: 380px;
  4722. background: rgba(51, 51, 51, 0.04);
  4723. display: flex;
  4724. flex-direction: column;
  4725. align-items: center;
  4726. justify-content: center;
  4727. .name {
  4728. display: block;
  4729. text-align: center;
  4730. color: #333333;
  4731. font-size: 40px;
  4732. font-weight: 700;
  4733. line-height: 24px;
  4734. margin-bottom: 15px;
  4735. }
  4736. .state {
  4737. text-align: center;
  4738. display: block;
  4739. font-size: 12px;
  4740. line-height: 24px;
  4741. color: #333;
  4742. font-weight: 400;
  4743. margin-bottom: 19px;
  4744. }
  4745. button {
  4746. width: 100px;
  4747. height: 30px;
  4748. display: flex;
  4749. align-items: center;
  4750. justify-content: center;
  4751. background: rgba(51, 51, 51, 0.35);
  4752. color: #fff;
  4753. font-size: 14px;
  4754. font-weight: 700;
  4755. margin-bottom: 33px;
  4756. }
  4757. .core-percent {
  4758. display: inline-block;
  4759. ul {
  4760. display: flex;
  4761. flex-direction: column;
  4762. gap: 7px;
  4763. li {
  4764. display: flex;
  4765. align-items: center;
  4766. gap: 3px;
  4767. strong {
  4768. width: 60px;
  4769. line-height: 24px;
  4770. color: #333;
  4771. font-size: 14px;
  4772. font-weight: 400;
  4773. text-align: left;
  4774. flex-shrink: 0;
  4775. }
  4776. p {
  4777. flex-shrink: 0;
  4778. width: 60px;
  4779. line-height: 24px;
  4780. color: #333;
  4781. font-size: 14px;
  4782. font-weight: 400;
  4783. text-align: left;
  4784. }
  4785. .cir {
  4786. width: 18px;
  4787. height: 18px;
  4788. border-radius: 100%;
  4789. &.blue {
  4790. background: #1EAEFF;
  4791. }
  4792. &.yellow {
  4793. background: #FFD643;
  4794. }
  4795. &.red {
  4796. background: #FF2426;
  4797. }
  4798. }
  4799. }
  4800. }
  4801. }
  4802. }
  4803. }
  4804. }
  4805. .dashboard-join {
  4806. padding: 24px;
  4807. border-top: 1px solid rgba(224, 224, 224, 0.5);
  4808. }
  4809. }
  4810. .dashboard-r {
  4811. width: 50%;
  4812. }
  4813. .dashboard-tit {
  4814. display: flex;
  4815. align-items: center;
  4816. margin-bottom: 14px;
  4817. strong {
  4818. color: #333;
  4819. font-weight: 700;
  4820. font-size: 18px;
  4821. }
  4822. .issue {
  4823. width: 100px;
  4824. height: 32px;
  4825. background: rgba(51, 51, 51, 0.35);
  4826. color: #fff;
  4827. font-size: 14px;
  4828. font-weight: 700;
  4829. display: flex;
  4830. align-items: center;
  4831. justify-content: center;
  4832. }
  4833. .core-tab {
  4834. margin-left: auto;
  4835. display: flex;
  4836. gap: 4px;
  4837. button {
  4838. width: 100px;
  4839. height: 32px;
  4840. display: flex;
  4841. color: #fff;
  4842. font-size: 14px;
  4843. font-weight: 700;
  4844. align-items: center;
  4845. justify-content: center;
  4846. background: rgba(51, 51, 51, 0.15);
  4847. cursor: pointer;
  4848. &.active {
  4849. background: rgba(51, 51, 51, 0.35);
  4850. }
  4851. }
  4852. }
  4853. .join-type {
  4854. margin-left: auto;
  4855. display: flex;
  4856. gap: 12px;
  4857. align-items: center;
  4858. width: 20px;
  4859. height: 20px;
  4860. background: no-repeat center / 100%;
  4861. button {
  4862. &.type1 {
  4863. background-image: url("");
  4864. &.active {
  4865. background-image: url("");
  4866. }
  4867. }
  4868. &.type2 {
  4869. background-image: url("");
  4870. &.active {
  4871. background-image: url("");
  4872. }
  4873. }
  4874. }
  4875. }
  4876. }
  4877. //.dashboard-r {}
  4878. }
  4879. .tab-style {
  4880. margin-top: 2.81rem;
  4881. .tab-style-h {
  4882. border-bottom: 1px solid #064F9E;
  4883. display: flex;
  4884. button {
  4885. position: relative;
  4886. width: 11.88rem;
  4887. height: 3.69rem;
  4888. border: 0.06rem solid #E1E1E1;
  4889. border-bottom: 0;
  4890. background: #fff;
  4891. display: flex;
  4892. align-items: center;
  4893. justify-content: center;
  4894. color: #888888;
  4895. font-size: 0.81rem;
  4896. font-weight: 400;
  4897. margin-right: -0.06rem;
  4898. &.active {
  4899. border-color: #064F9E;
  4900. margin: 0 0 -0.09rem 0;
  4901. color: #064F9E;
  4902. font-weight: 700;
  4903. height: 3.75rem;
  4904. z-index: 2;
  4905. }
  4906. }
  4907. }
  4908. .tab-style-c {
  4909. padding-top: 1.88rem;
  4910. }
  4911. }
  4912. .pop-radio {
  4913. margin-bottom: 1.56rem;
  4914. }
  4915. .mode-radio {
  4916. padding: 0.94rem 0.75rem;
  4917. .v-selection-control-group {
  4918. align-items: flex-start;
  4919. gap: 5rem;
  4920. .v-radio {
  4921. align-items: flex-start;
  4922. .v-selection-control__wrapper {
  4923. margin-top: 0.63rem;
  4924. }
  4925. .v-label {
  4926. flex-direction: column;
  4927. align-items: flex-start;
  4928. overflow: visible;
  4929. .radio-tit {
  4930. display: flex;
  4931. strong {
  4932. font-weight: 400;
  4933. font-size: 0.75rem;
  4934. display: block;
  4935. line-height: 2.25rem;
  4936. }
  4937. .term {
  4938. display: flex;
  4939. .term-tit {
  4940. color: #333333;
  4941. font-size: 0.75rem;
  4942. font-weight: 400;
  4943. display: flex;
  4944. margin-right: 1.25rem;
  4945. align-items: center;
  4946. &:before {
  4947. width: 0.06rem;
  4948. height: 0.88rem;
  4949. background: #C6C6C6;
  4950. content: "";
  4951. margin: 0 0.94rem;
  4952. }
  4953. }
  4954. }
  4955. }
  4956. .mode-img {
  4957. margin: 1.56rem 0 0 -1.81rem;
  4958. width: 23.25rem;
  4959. height: 13.13rem;
  4960. background: #F4F4F4;
  4961. img {
  4962. width: 100%;
  4963. height: 100%;
  4964. }
  4965. }
  4966. }
  4967. }
  4968. }
  4969. }
  4970. .editor {
  4971. height: 300px;
  4972. .ql-container {
  4973. height: calc(100% - 42px)
  4974. }
  4975. }
  4976. /* --- darkmode ---*/
  4977. body:has(.darkmode) {
  4978. background: #101011;
  4979. }
  4980. .darkmode {
  4981. .custom-btn.v-btn.v-btn--density-default {
  4982. &.btn-white {
  4983. border-color: #272B30;
  4984. background-color: #1B1E20;
  4985. .v-btn__content {
  4986. color: #606770;
  4987. }
  4988. }
  4989. &.btn-gray {
  4990. background: #272B30;
  4991. border-color: #272B30;
  4992. .v-btn__content {
  4993. color: #fff;
  4994. }
  4995. }
  4996. }
  4997. .custom-select.v-input {
  4998. .v-input__control {
  4999. .v-field {
  5000. .v-field__outline {
  5001. border-color: #272B30;
  5002. }
  5003. .v-field__field {
  5004. .v-field__input {
  5005. .v-select__selection {
  5006. color: #fff;
  5007. }
  5008. }
  5009. .v-label {
  5010. color: #fff;
  5011. }
  5012. }
  5013. }
  5014. }
  5015. }
  5016. .custom-input.v-text-field {
  5017. .v-input__control {
  5018. .v-field__field {
  5019. .v-field__input {
  5020. border-color: #272B30;
  5021. background: #1B1E20;
  5022. color: #fff;
  5023. }
  5024. }
  5025. .v-field__append-inner {
  5026. .v-icon {
  5027. &:before {
  5028. color: #fff;
  5029. }
  5030. }
  5031. }
  5032. }
  5033. }
  5034. .custom-table.v-table {
  5035. background: #1A1D1F;
  5036. &:before {
  5037. background: #2C2F31;
  5038. }
  5039. &:after {
  5040. background: #2C2F31;
  5041. }
  5042. .v-table__wrapper {
  5043. table {
  5044. thead {
  5045. tr {
  5046. th {
  5047. background: #272B30 !important;
  5048. border-color: #272B30;
  5049. .th-item {
  5050. .ico-sort-area {
  5051. .v-icon {
  5052. background-color: #272B30;
  5053. }
  5054. }
  5055. }
  5056. }
  5057. }
  5058. }
  5059. tbody {
  5060. tr {
  5061. td {
  5062. color: #fff;
  5063. border-color: #2C2F31 !important;
  5064. }
  5065. }
  5066. }
  5067. }
  5068. }
  5069. }
  5070. .custom-radio.v-input {
  5071. &.picker-terms {
  5072. .v-input__control {
  5073. .v-selection-control-group {
  5074. .v-radio {
  5075. &.v-selection-control--dirty {
  5076. .v-label {
  5077. color: #fff;
  5078. border-color: #272B30;
  5079. background: #272B30;
  5080. }
  5081. }
  5082. .v-label {
  5083. border-color: #272B30;
  5084. background: #1B1E20;
  5085. color: #9F9FA0;
  5086. }
  5087. }
  5088. }
  5089. }
  5090. }
  5091. }
  5092. .calendar-wrap {
  5093. .text {
  5094. color: #fff;
  5095. }
  5096. }
  5097. .calendar {
  5098. .dp__overlay {
  5099. background: #272B30;
  5100. }
  5101. .dp__overlay_container {
  5102. background: #272B30;
  5103. &::-webkit-scrollbar-track {
  5104. background-color: #272B30;
  5105. }
  5106. &::-webkit-scrollbar-thumb {
  5107. background-color: #91949B;
  5108. }
  5109. .dp__overlay_row {
  5110. .dp__overlay_col {
  5111. .dp__overlay_cell {
  5112. color: #fff;
  5113. &:hover {
  5114. background: rgba(16, 16, 17, 0.2);
  5115. }
  5116. }
  5117. }
  5118. }
  5119. }
  5120. .dp__input_wrap {
  5121. .dp__input {
  5122. border-color: #42484F;
  5123. background-color: #272B30;
  5124. color: #fff;
  5125. background-image: url("/assets/img/ico_calendar_w.png");
  5126. }
  5127. }
  5128. .dp__outer_menu_wrap {
  5129. .dp__menu {
  5130. border: 2px solid #42484F;
  5131. background-color: #272B30;
  5132. .dp__arrow_top {
  5133. border-color: #42484F;
  5134. border-width: 2px;
  5135. background-color: #272B30;
  5136. }
  5137. .dp__month_year_row {
  5138. .dp__btn {
  5139. &:hover {
  5140. span {
  5141. background: rgba(16, 16, 17, 0.2);
  5142. }
  5143. }
  5144. }
  5145. .dp__month_year_wrap {
  5146. .dp__btn {
  5147. color: #fff;
  5148. &:hover {
  5149. background: rgba(16, 16, 17, 0.2);
  5150. }
  5151. }
  5152. }
  5153. }
  5154. .dp__calendar {
  5155. .dp__calendar_header {
  5156. .dp__calendar_header_item {
  5157. color: #fff;
  5158. }
  5159. }
  5160. .dp__calendar_row {
  5161. .dp__calendar_item {
  5162. .dp__cell_inner {
  5163. color: #fff;
  5164. &.dp__cell_offset {
  5165. color: #606770;
  5166. }
  5167. &:hover {
  5168. background: rgba(16, 16, 17, 0.2);
  5169. }
  5170. }
  5171. }
  5172. }
  5173. }
  5174. .dp__action_row {
  5175. .dp__action_buttons {
  5176. .dp__action_button {
  5177. &.dp__action_cancel {
  5178. border-color: #606770;
  5179. color: #606770;
  5180. }
  5181. &.dp__action_select {
  5182. background: #42484F;
  5183. color: #fff;
  5184. }
  5185. }
  5186. }
  5187. }
  5188. }
  5189. }
  5190. }
  5191. }
  5192. .list--dell--btn{
  5193. background:#d50000!important;
  5194. color: #fff!important;
  5195. font-size: 13px;
  5196. font-style: normal;
  5197. font-weight: 500;
  5198. line-height: 100%; /* 13px */
  5199. border-radius: 0px!important;
  5200. &.small{
  5201. min-width:30px!important;
  5202. width:30px!important;
  5203. height:30px!important;
  5204. }
  5205. &.mid{
  5206. min-width:40px!important;
  5207. width:40px!important;
  5208. height:36px!important;
  5209. }
  5210. &.type--2{
  5211. font-size:12px!important;
  5212. }
  5213. }
  5214. .v-messages__message {
  5215. padding: 0 0.81rem;
  5216. margin-top: 0.25rem;
  5217. letter-spacing: -0.02rem;
  5218. line-height: 1rem;
  5219. white-space: nowrap;
  5220. font-size: 0.75rem;
  5221. font-weight: 600;
  5222. color: #E50A0A!important;
  5223. transition: none !important;
  5224. }
  5225. .v-input__details{
  5226. padding-left:0px!important;
  5227. }
  5228. .v-field--error:not(.v-field--disabled) .v-field__outline{
  5229. color:#FF8C8C!important;
  5230. border-color:#FF8C8C!important;
  5231. }
  5232. .v-input__details{
  5233. overflow: visible;
  5234. }
  5235. .log--btn{
  5236. cursor: pointer;
  5237. position: absolute;
  5238. right:10px;
  5239. z-index: 9;
  5240. }
  5241. .se-dialog-footer{
  5242. > div{
  5243. display: none!important;
  5244. }
  5245. }
  5246. .se-dialog-tabs{
  5247. display: none!important;
  5248. }
  5249. //** 룰렛 시작
  5250. .container{
  5251. .content{
  5252. .main{
  5253. .inner--headers{
  5254. > h2{
  5255. font-size: 1.5rem;
  5256. font-weight: 700;
  5257. color: #333;
  5258. display: inline-flex;
  5259. gap:10px;
  5260. .event--status{
  5261. font-size:16px;
  5262. font-weight: 700;
  5263. color: #fff;
  5264. background: #007AFF;
  5265. border-radius: 50px;
  5266. padding: 5px 20px;
  5267. line-height: 100%;
  5268. display: inline-flex;
  5269. align-items: center;
  5270. justify-content: center;
  5271. }
  5272. }
  5273. }
  5274. }
  5275. }
  5276. }
  5277. .winner--rank--wrapper{
  5278. border-top:1px solid #000;
  5279. display: flex;
  5280. width:100%;
  5281. flex-wrap:wrap;
  5282. dl{
  5283. display: flex;
  5284. align-items: center;
  5285. width: calc(100% / 4);
  5286. flex-wrap: wrap;
  5287. &:last-child{
  5288. dd{
  5289. border-right: 0;
  5290. }
  5291. }
  5292. dt{
  5293. background-color: #f8f8f8;
  5294. display: flex;
  5295. align-items: center;
  5296. height:50px;
  5297. padding:0 20px;
  5298. border-bottom: 1px solid #e2e2e2;
  5299. border-right: 1px solid #E2E2E2;
  5300. width:40%;
  5301. font-size:16px;
  5302. .rank, .name {
  5303. display: block;
  5304. overflow: hidden;
  5305. white-space: nowrap;
  5306. text-overflow: ellipsis;
  5307. min-width: 0;
  5308. max-width:120px;
  5309. font-size:16px;
  5310. }
  5311. i{
  5312. font-style: normal;
  5313. }
  5314. }
  5315. dd{
  5316. display: flex;
  5317. align-items: center;
  5318. height:50px;
  5319. padding:0 20px;
  5320. border-bottom: 1px solid #e2e2e2;
  5321. border-right: 1px solid #E2E2E2;
  5322. width:60%;
  5323. i{
  5324. font-style: normal;
  5325. }
  5326. }
  5327. }
  5328. }
  5329. .kakao--sms--button{
  5330. display: flex;
  5331. align-items: center;
  5332. justify-content: center;
  5333. padding:5px 10px;
  5334. border-radius: 50px;
  5335. background-color: #000;
  5336. color: #fff!important;
  5337. font-size: 0.75rem;
  5338. font-weight: 600;
  5339. line-height: 1.06rem;
  5340. }
  5341. .gap--10{
  5342. gap: 10px;
  5343. }
  5344. .caution--text{
  5345. font-size:16px;
  5346. color:red;
  5347. font-weight: 700;
  5348. }
  5349. .short--login--wrap{
  5350. border-top: 1px solid #ddd;
  5351. margin-top:55px;
  5352. padding-top:35px;
  5353. position: relative;
  5354. display: flex;
  5355. align-items: center;
  5356. justify-content: center;
  5357. gap:20px;
  5358. &:after{
  5359. content:'간편 로그인';
  5360. display: inline-block;
  5361. padding:5px 10px;
  5362. background: #F8F7FC;
  5363. position: absolute;
  5364. top: -13px;
  5365. left: 50%;
  5366. transform: translateX(-50%);
  5367. font-size: 15px;
  5368. font-weight: 700;
  5369. color: #333;
  5370. z-index: 1;
  5371. }
  5372. .v-btn{
  5373. display: flex;
  5374. align-items: center;
  5375. justify-content: center;
  5376. border-radius: 100px;
  5377. padding:0px!important;
  5378. min-width: 70px;
  5379. width:70px;
  5380. height:70px!important;
  5381. box-shadow: none;
  5382. background-size: contain!important;
  5383. &.btn--google{
  5384. background: url(../img/ic_google.svg) no-repeat center;
  5385. }
  5386. &.btn--kakao{
  5387. background: url(../img/ic_kakao.svg) no-repeat center;
  5388. }
  5389. &.btn--naver{
  5390. background: url(../img/ic_naver.svg) no-repeat center;
  5391. }
  5392. }
  5393. }
  5394. .join--btn--wrap{
  5395. margin-top:10px;
  5396. display: flex;
  5397. align-items: center;
  5398. justify-content: center;
  5399. gap:20px;
  5400. .v-btn{
  5401. position: relative;
  5402. &:before{
  5403. content: '';
  5404. display: block;
  5405. width:1px!important;
  5406. height:10px!important;
  5407. border:0px;
  5408. background: #ccc!important;
  5409. position: absolute;
  5410. top: 50%;
  5411. left:calc(100% + 9px);
  5412. transform: translateY(-50%);
  5413. opacity: 1;
  5414. }
  5415. &:last-child{
  5416. &:before{
  5417. display: none;
  5418. }
  5419. }
  5420. &.text--btn{
  5421. border-radius: 0px!important;
  5422. padding:0px!important;
  5423. font-weight: bold;
  5424. width: auto!important;
  5425. box-shadow: none!important;
  5426. *{
  5427. color:#222!important;
  5428. }
  5429. &:hover{
  5430. opacity: .6;
  5431. }
  5432. }
  5433. }
  5434. }
  5435. .join--type{
  5436. padding:20px 0px;
  5437. .v-label{
  5438. font-size:16px!important;
  5439. font-weight: 700;
  5440. color: #333;
  5441. }
  5442. }