admin.scss 145 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498
  1. @charset "UTF-8";
  2. @use "sass:math";
  3. // Utility classes for padding and margin (1-100)
  4. @for $i from 1 through 200 {
  5. // Padding
  6. .pt--#{$i} {
  7. padding-top: #{$i}px !important;
  8. }
  9. .pr--#{$i} {
  10. padding-right: #{$i}px !important;
  11. }
  12. .pb--#{$i} {
  13. padding-bottom: #{$i}px !important;
  14. }
  15. .pl--#{$i} {
  16. padding-left: #{$i}px !important;
  17. }
  18. .p--#{$i} {
  19. padding: #{$i}px !important;
  20. }
  21. // Margin
  22. .mt--#{$i} {
  23. margin-top: #{$i}px !important;
  24. }
  25. .mr--#{$i} {
  26. margin-right: #{$i}px !important;
  27. }
  28. .mb--#{$i} {
  29. margin-bottom: #{$i}px !important;
  30. }
  31. .ml--#{$i} {
  32. margin-left: #{$i}px !important;
  33. }
  34. .m--#{$i} {
  35. margin: #{$i}px !important;
  36. }
  37. @media (max-width: 720px) {
  38. .pt--#{$i} {
  39. padding-top: #{math.div($i, 2)}px !important;
  40. }
  41. .pr--#{$i} {
  42. padding-right: #{math.div($i, 2)}px !important;
  43. }
  44. .pb--#{$i} {
  45. padding-bottom: #{math.div($i, 2)}px !important;
  46. }
  47. .pl--#{$i} {
  48. padding-left: #{math.div($i, 2)}px !important;
  49. }
  50. .p--#{$i} {
  51. padding: #{math.div($i, 2)}px !important;
  52. }
  53. .mt--#{$i} {
  54. margin-top: #{math.div($i, 2)}px !important;
  55. }
  56. .mr--#{$i} {
  57. margin-right: #{math.div($i, 2)}px !important;
  58. }
  59. .mb--#{$i} {
  60. margin-bottom: #{math.div($i, 2)}px !important;
  61. }
  62. .ml--#{$i} {
  63. margin-left: #{math.div($i, 2)}px !important;
  64. }
  65. .m--#{$i} {
  66. margin: #{math.div($i, 2)}px !important;
  67. }
  68. }
  69. }
  70. @for $i from 12 through 40 {
  71. .ft--#{$i} {
  72. font-size : #{$i}px !important;
  73. }
  74. }
  75. html {
  76. scroll-behavior: smooth;
  77. }
  78. :root {
  79. --max-content-width: 1920px;
  80. --page-margin: 16px;
  81. @media (min-width: 375px) {
  82. --page-margin: 28px;
  83. }
  84. @media (min-width: 768px) {
  85. --page-margin: 40px;
  86. }
  87. @media (min-width: 1024px) {
  88. --page-margin: 60px;
  89. }
  90. @media (min-width: 1440px) {
  91. --page-margin: 96px;
  92. }
  93. @media (min-width: 1920px) {
  94. --page-margin: 96px;
  95. }
  96. @property --gradient-start {
  97. syntax: '<color>';
  98. initial-value: transparent;
  99. inherits: false;
  100. }
  101. @property --gradient-end {
  102. syntax: '<color>';
  103. initial-value: transparent;
  104. inherits: false;
  105. }
  106. --spacing-relative-2xs: 4px;
  107. --spacing-relative-xs: 8px;
  108. --spacing-relative-sm: 12px;
  109. --spacing-relative-md: 16px;
  110. --spacing-relative-lg: 24px;
  111. --spacing-relative-xl: 28px;
  112. --spacing-relative-2xl: 36px;
  113. --spacing-relative-3xl: 40px;
  114. --spacing-relative-4xl: 48px;
  115. --spacing-relative-5xl: 64px;
  116. --spacing-relative-6xl: 80px;
  117. --spacing-relative-7xl: 96px;
  118. --spacing-relative-8xl: 120px;
  119. @media (min-width: 768px) {
  120. --spacing-relative-3xl: 48px;
  121. --spacing-relative-4xl: 64px;
  122. --spacing-relative-5xl: 72px;
  123. --spacing-relative-6xl: 88px;
  124. --spacing-relative-7xl: 104px;
  125. --spacing-relative-8xl: 136px;
  126. }
  127. @media (min-width: 1024px) {
  128. --spacing-relative-2xl: 40px;
  129. --spacing-relative-3xl: 56px;
  130. --spacing-relative-4xl: 72px;
  131. --spacing-relative-5xl: 88px;
  132. --spacing-relative-6xl: 104px;
  133. --spacing-relative-7xl: 128px;
  134. --spacing-relative-8xl: 168px;
  135. }
  136. @media (min-width: 1440px) {
  137. --spacing-relative-xl: 32px;
  138. --spacing-relative-2xl: 56px;
  139. --spacing-relative-3xl: 72px;
  140. --spacing-relative-4xl: 88px;
  141. --spacing-relative-5xl: 104px;
  142. --spacing-relative-6xl: 120px;
  143. --spacing-relative-7xl: 160px;
  144. --spacing-relative-8xl: 216px;
  145. }
  146. @media (min-width: 1920px) {
  147. --spacing-relative-xl: 40px;
  148. --spacing-relative-2xl: 72px;
  149. --spacing-relative-3xl: 88px;
  150. --spacing-relative-4xl: 104px;
  151. --spacing-relative-5xl: 120px;
  152. --spacing-relative-6xl: 136px;
  153. --spacing-relative-7xl: 176px;
  154. --spacing-relative-8xl: 248px;
  155. }
  156. }
  157. /*=================================================
  158. |컴포넌트 별 css
  159. |START
  160. =================================================*/
  161. /*=================================================
  162. |컴포넌트 별 css
  163. |END
  164. =================================================*/
  165. .radius--img--wrap {
  166. overflow: hidden;
  167. border-radius: 20px;
  168. }
  169. // 딜러 검색 드롭다운 스타일
  170. .dealer--search--section {
  171. width: 100%;
  172. max-width: 1920px;
  173. margin: 0 auto;
  174. padding: 80px 96px;
  175. background-color: hsla(216, 23%, 8%, 1);
  176. }
  177. .dealer--search--container {
  178. display: flex;
  179. flex-direction: column;
  180. gap: 48px;
  181. border-top: 1px solid rgba(252, 252, 253, 0.15);
  182. }
  183. .dealer--category--wrap {
  184. display: flex;
  185. flex-direction: column;
  186. }
  187. .dealer--category--title {
  188. font-size: 28px;
  189. font-weight: 600;
  190. margin: 0 0 24px 0;
  191. color: rgb(252, 252, 253);
  192. padding-bottom: 16px;
  193. border-bottom: 2px solid rgba(252, 252, 253, 0.3);
  194. }
  195. .dealer--region--item {
  196. border-bottom: 1px solid rgba(252, 252, 253, 0.15);
  197. }
  198. .dealer--region--header {
  199. width: 100%;
  200. display: flex;
  201. justify-content: space-between;
  202. align-items: center;
  203. padding: 20px 24px;
  204. background-color: transparent;
  205. border: none;
  206. color: rgb(252, 252, 253);
  207. cursor: pointer;
  208. transition: all 0.3s ease;
  209. &:hover {
  210. background-color: rgba(252, 252, 253, 0.05);
  211. }
  212. &.active {
  213. background-color: rgba(252, 252, 253, 0.08);
  214. }
  215. }
  216. .dealer--region--name {
  217. font-size: 18px;
  218. font-weight: 500;
  219. }
  220. .dealer--toggle--icon {
  221. font-size: 28px;
  222. line-height: 1;
  223. transition: transform 0.3s ease;
  224. }
  225. .dealer--list--content {
  226. padding: 0 24px 24px;
  227. animation: slideDown 0.3s ease;
  228. }
  229. @keyframes slideDown {
  230. from {
  231. opacity: 0;
  232. transform: translateY(-10px);
  233. }
  234. to {
  235. opacity: 1;
  236. transform: translateY(0);
  237. }
  238. }
  239. .dealer--list {
  240. list-style: none;
  241. padding: 0;
  242. padding-left: 10px;
  243. margin: 0;
  244. display: flex;
  245. flex-direction: column;
  246. gap: 0px;
  247. li {
  248. margin: 0;
  249. position: relative;
  250. &:before {
  251. content: '>';
  252. font-size: 12px;
  253. margin-right: 10px;
  254. }
  255. a {
  256. text-decoration: underline;
  257. }
  258. }
  259. }
  260. .dealer--link {
  261. display: inline-block;
  262. color: rgba(252, 252, 253, 0.7);
  263. text-decoration: none;
  264. font-size: 16px;
  265. transition: all 0.2s ease;
  266. padding: 8px 0;
  267. &:hover {
  268. color: rgb(252, 252, 253);
  269. text-decoration: underline;
  270. }
  271. }
  272. // 반응형 처리
  273. @media (max-width: 1024px) {
  274. .dealer--search--section {
  275. padding: 60px 48px;
  276. }
  277. .dealer--search--container {
  278. gap: 40px;
  279. }
  280. .dealer--category--title {
  281. font-size: 24px;
  282. margin-bottom: 20px;
  283. padding-bottom: 12px;
  284. }
  285. .dealer--region--header {
  286. padding: 16px 20px;
  287. }
  288. .dealer--region--name {
  289. font-size: 16px;
  290. }
  291. .dealer--list--content {
  292. padding: 0 20px 20px;
  293. }
  294. .dealer--list {
  295. gap: 6px;
  296. }
  297. }
  298. @media (max-width: 768px) {
  299. .dealer--search--section {
  300. padding: 40px 24px;
  301. }
  302. .dealer--search--container {
  303. gap: 32px;
  304. }
  305. .dealer--category--title {
  306. font-size: 20px;
  307. margin-bottom: 16px;
  308. padding-bottom: 10px;
  309. }
  310. .dealer--region--header {
  311. padding: 14px 16px;
  312. }
  313. .dealer--region--name {
  314. font-size: 15px;
  315. }
  316. .dealer--toggle--icon {
  317. font-size: 24px;
  318. }
  319. .dealer--list--content {
  320. padding: 0 16px 16px;
  321. }
  322. .dealer--list {
  323. gap: 6px;
  324. }
  325. .dealer--link {
  326. font-size: 14px;
  327. padding: 6px 0;
  328. }
  329. }
  330. // 딜러 검색 페이지 스타일
  331. .dealer--search--section {
  332. padding: 64px 96px;
  333. .dealer--search--container {
  334. margin: 0 auto;
  335. }
  336. .dealer--category--wrap {
  337. display: flex;
  338. flex-direction: column;
  339. //gap: 16px;
  340. }
  341. .dealer--region--item {
  342. border-bottom: 1px solid rgba(252, 252, 253, 0.1);
  343. }
  344. .dealer--region--header {
  345. width: 100%;
  346. display: flex;
  347. justify-content: space-between;
  348. align-items: center;
  349. padding: 24px 0;
  350. background: transparent;
  351. border: none;
  352. color: #fcfcfd;
  353. font-size: 24px;
  354. font-weight: 400;
  355. transition: all 0.3s;
  356. &:hover {
  357. color: rgba(252, 252, 253, 0.7);
  358. }
  359. &.active {
  360. color: #fcfcfd;
  361. }
  362. }
  363. .dealer--region--name {
  364. font-size: 24px;
  365. }
  366. .dealer--toggle--icon {
  367. font-size: 32px;
  368. line-height: 1;
  369. font-weight: 300;
  370. }
  371. .dealer--list--content {
  372. padding-bottom: 24px;
  373. }
  374. .dealer--list {
  375. display: flex;
  376. flex-direction: column;
  377. gap: 16px;
  378. >li {
  379. list-style: none;
  380. }
  381. }
  382. .dealer--link {
  383. display: inline-block;
  384. color: rgba(252, 252, 253, 0.7);
  385. font-size: 16px;
  386. text-decoration: underline;
  387. text-underline-offset: 4px;
  388. transition: all 0.3s;
  389. background: transparent;
  390. border: none;
  391. font-weight: 400;
  392. padding: 0;
  393. cursor: pointer;
  394. &:hover {
  395. color: #fcfcfd;
  396. }
  397. }
  398. }
  399. // 딜러 팝업 스타일
  400. .dealer--popup--overlay {
  401. position: fixed;
  402. top: 0;
  403. left: 0;
  404. width: 100%;
  405. height: 100%;
  406. background-color: rgba(0, 0, 0, 0.5);
  407. display: flex;
  408. justify-content: center;
  409. align-items: center;
  410. z-index: 9999;
  411. padding: 20px;
  412. }
  413. .dealer--popup--container {
  414. position: relative;
  415. background-color: #ffffff;
  416. border-radius: 20px;
  417. max-width: 1024px;
  418. width: 100%;
  419. max-height: 90vh;
  420. overflow-y: auto;
  421. box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
  422. &::-webkit-scrollbar {
  423. width: 8px;
  424. }
  425. &::-webkit-scrollbar-track {
  426. background: transparent;
  427. }
  428. &::-webkit-scrollbar-thumb {
  429. background: rgba(0, 0, 0, 0.2);
  430. border-radius: 4px;
  431. &:hover {
  432. background: rgba(0, 0, 0, 0.3);
  433. }
  434. }
  435. @media (min-width: 320px) {
  436. padding: 16px;
  437. }
  438. @media (min-width: 375px) {
  439. padding: 28px;
  440. }
  441. @media (min-width: 768px) {
  442. padding: 48px;
  443. }
  444. @media (min-width: 1024px) {
  445. padding: 56px;
  446. }
  447. @media (min-width: 1440px) {
  448. padding: 64px;
  449. }
  450. }
  451. .dealer--popup--close {
  452. position: absolute;
  453. top: 24px;
  454. right: 24px;
  455. width: 40px;
  456. height: 40px;
  457. background: transparent;
  458. border: none;
  459. cursor: pointer;
  460. z-index: 1;
  461. display: flex;
  462. justify-content: center;
  463. align-items: center;
  464. border-radius: 50%;
  465. transition: all 0.3s;
  466. &:hover {
  467. background-color: rgba(0, 0, 0, 0.05);
  468. }
  469. .close--icon {
  470. width: 24px;
  471. height: 24px;
  472. position: relative;
  473. &::before,
  474. &::after {
  475. content: '';
  476. position: absolute;
  477. top: 50%;
  478. left: 50%;
  479. width: 20px;
  480. height: 2px;
  481. background-color: #333333;
  482. }
  483. &::before {
  484. transform: translate(-50%, -50%) rotate(45deg);
  485. }
  486. &::after {
  487. transform: translate(-50%, -50%) rotate(-45deg);
  488. }
  489. }
  490. }
  491. .dealer--popup--content {
  492. margin: auto;
  493. max-width: var(--max-content-width);
  494. display: grid;
  495. grid-template-columns: 1fr;
  496. grid-template-rows: 1fr;
  497. grid-template-areas: "media" "textarea";
  498. padding: var(--spacing-relative-xl) var(--spacing-relative-md);
  499. @media (min-width: 1024px) {
  500. grid-template-columns: 1fr 1fr;
  501. grid-template-areas: "media textarea";
  502. }
  503. @media (min-width: 1440px) {
  504. grid-template-columns: 1fr 1fr;
  505. grid-template-areas: "media textarea";
  506. }
  507. .dealer--thumb--wrap {
  508. border-radius: 20px;
  509. overflow: hidden;
  510. }
  511. .dealer--infos--wrap {
  512. grid-area: textarea;
  513. align-self: center;
  514. @media screen and (min-width: 320px) {
  515. padding-block-start: var(--spacing-relative-lg);
  516. }
  517. @media screen and (min-width: 1024px) {
  518. display: flex;
  519. flex-direction: column;
  520. -webkit-box-pack: center;
  521. justify-content: center;
  522. align-items: flex-start;
  523. padding-inline-start: var(--spacing-relative-2xl);
  524. padding-inline-end: var(--spacing-relative-2xl);
  525. padding-block-start: 0px;
  526. }
  527. }
  528. }
  529. .dealer--popup--header {
  530. .dealer--name {
  531. margin: 0px;
  532. color: #1a1a1a;
  533. letter-spacing: 0px;
  534. font-weight: 400;
  535. text-decoration: none;
  536. font-size: 24px;
  537. line-height: 36px;
  538. font-stretch: 130%;
  539. @media (min-width: 1024px) {
  540. font-size: 28px;
  541. line-height: 40px;
  542. }
  543. @media (min-width: 1440px) {
  544. font-size: 32px;
  545. line-height: 44px;
  546. }
  547. @media (min-width: 1920px) {
  548. font-size: 36px;
  549. line-height: 52px;
  550. }
  551. }
  552. .dealer--type {
  553. display: inline-block;
  554. font-size: 14px;
  555. color: #666666;
  556. padding: 4px 12px;
  557. background-color: rgba(0, 0, 0, 0.05);
  558. border-radius: 100px;
  559. }
  560. }
  561. .dealer--popup--body {
  562. display: flex;
  563. flex-direction: column;
  564. gap: 8px;
  565. padding-top: 8px;
  566. }
  567. .dealer--info--section {
  568. display: flex;
  569. flex-direction: column;
  570. gap: 8px;
  571. .info--label {
  572. margin: 0px;
  573. color: #666666;
  574. letter-spacing: 0px;
  575. font-weight: 400;
  576. text-decoration: none;
  577. font-size: 16px;
  578. line-height: 24px;
  579. font-stretch: 105%;
  580. a {
  581. word-break: break-all;
  582. }
  583. }
  584. .phone--link,
  585. .email--link,
  586. .website--link {
  587. color: #2563eb;
  588. text-decoration: underline;
  589. text-underline-offset: 4px;
  590. transition: all 0.3s;
  591. &:hover {
  592. color: #1d4ed8;
  593. }
  594. }
  595. .business--hours--item {
  596. line-height: 1.8;
  597. }
  598. }
  599. .dealer--popup--footer {
  600. margin-top: 40px;
  601. padding-top: 24px;
  602. border-top: 1px solid #e0e0e0;
  603. display: flex;
  604. justify-content: center;
  605. }
  606. .dealer--popup--empty {
  607. padding: 80px 48px;
  608. text-align: center;
  609. >p {
  610. font-size: 16px;
  611. color: #666666;
  612. }
  613. }
  614. // 팝업 페이드 애니메이션
  615. .dealer--popup--fade-enter-active,
  616. .dealer--popup--fade-leave-active {
  617. transition: opacity 0.3s ease;
  618. .dealer--popup--container {
  619. transition: transform 0.3s ease, opacity 0.3s ease;
  620. }
  621. }
  622. .dealer--popup--fade-enter-from,
  623. .dealer--popup--fade-leave-to {
  624. opacity: 0;
  625. .dealer--popup--container {
  626. transform: scale(0.95);
  627. opacity: 0;
  628. }
  629. }
  630. .dealer--popup--fade-enter-to,
  631. .dealer--popup--fade-leave-from {
  632. opacity: 1;
  633. .dealer--popup--container {
  634. transform: scale(1);
  635. opacity: 1;
  636. }
  637. }
  638. /*=================================================
  639. |버튼 리스트 css
  640. |end
  641. =================================================*/
  642. header {
  643. position: sticky;
  644. top: 0px;
  645. z-index: 1000;
  646. background-color: #ffffff;
  647. border-bottom: 1px solid #E9E9E9;
  648. .header--wrap {
  649. max-width: 1440px;
  650. // padding:25px 0px;
  651. background-color: #fff;
  652. align-items: center;
  653. margin: 0 auto;
  654. display: flex;
  655. justify-content: space-between;
  656. position: relative;
  657. z-index: 1001;
  658. nav {
  659. display: flex;
  660. align-items: center;
  661. >ul {
  662. display: flex;
  663. align-items: center;
  664. >li {
  665. width: 200px;
  666. white-space: nowrap;
  667. height: 90px;
  668. display: flex;
  669. position: relative;
  670. align-items: center;
  671. justify-content: center;
  672. cursor: pointer;
  673. >a {
  674. width: 100%;
  675. color: #222;
  676. text-align: center;
  677. // padding: 0 60px;
  678. display: inline-block;
  679. font-size: 16px;
  680. font-style: normal;
  681. font-weight: 700 !important;
  682. text-transform: uppercase;
  683. transition: color 0.3s;
  684. &:hover {
  685. color: #076FED;
  686. }
  687. }
  688. &:hover {
  689. .sub--menu--wrap {
  690. max-height: 550px;
  691. }
  692. }
  693. .sub--menu--wrap {
  694. max-height: 0px;
  695. overflow: hidden;
  696. transition: max-height 0.3s;
  697. background-color: #fff;
  698. top: 90.5px;
  699. &.sub1 {
  700. position: fixed;
  701. border-bottom-left-radius: 30px;
  702. border-bottom-right-radius: 30px;
  703. max-width: 1440px;
  704. left: 50%;
  705. transform: translateX(-50%);
  706. width: 100%;
  707. >div {
  708. padding: 60px 0;
  709. display: flex;
  710. justify-content: center;
  711. align-items: center;
  712. gap: 70px;
  713. &.active {
  714. max-height: 300px;
  715. }
  716. li {
  717. a {
  718. display: flex;
  719. gap: 25px;
  720. flex-direction: column;
  721. max-width: 180px;
  722. text-align: center;
  723. color: #000;
  724. font-size: 16px;
  725. font-weight: 500;
  726. text-transform: uppercase;
  727. img {
  728. transition: all 0.3s;
  729. }
  730. &:hover {
  731. color: #076fed;
  732. img {
  733. transform: scale(1.1);
  734. }
  735. }
  736. }
  737. }
  738. }
  739. }
  740. &.sub2 {
  741. position: absolute;
  742. border-bottom-left-radius: 20px;
  743. border-bottom-right-radius: 20px;
  744. width: 280px;
  745. left: calc(50% - 140px);
  746. >div {
  747. padding: 20px 40px;
  748. display: flex;
  749. flex-direction: column;
  750. //height: 550px;
  751. line-height: 1;
  752. li {
  753. a {
  754. cursor: pointer;
  755. color: #000;
  756. padding: 20px 0;
  757. font-size: 16px;
  758. font-weight: 500;
  759. display: flex;
  760. justify-content: space-between;
  761. align-items: center;
  762. transition: color 0.3s;
  763. &:hover {
  764. color: #076fed;
  765. }
  766. }
  767. }
  768. }
  769. }
  770. &.sub3 {
  771. position: absolute;
  772. border-bottom-left-radius: 20px;
  773. border-bottom-right-radius: 20px;
  774. width: 280px;
  775. left: calc(50% - 140px);
  776. //left: -32px;
  777. transition: all 0.3s;
  778. &:has(.active) {
  779. width: 630px;
  780. }
  781. &.h--200 {
  782. >div {
  783. height: 320px;
  784. }
  785. }
  786. &.h--400 {
  787. >div {
  788. height: 432px;
  789. }
  790. }
  791. >div {
  792. height: 375px;
  793. // max-height: 550px;
  794. background-color: #fff;
  795. position: relative;
  796. .sub--menu--left {
  797. width: 280px;
  798. padding: 20px 40px;
  799. line-height: 1;
  800. li {
  801. padding: 20px 0;
  802. cursor: pointer;
  803. color: #000;
  804. font-size: 16px;
  805. font-weight: 500;
  806. display: flex;
  807. justify-content: space-between;
  808. align-items: center;
  809. transition: color 0.3s;
  810. &:hover,
  811. &.active {
  812. color: #076fed;
  813. .ico {
  814. background-image: url(/img/ico--header--arrow--blue.svg);
  815. }
  816. }
  817. .ico {
  818. width: 18px;
  819. background-image: url(/img/ico--header--arrow.svg);
  820. height: 18px;
  821. }
  822. }
  823. }
  824. .sub--menu--right {
  825. position: absolute;
  826. left: 280px;
  827. border-left: 1px solid #E5E5E5;
  828. width: 350px;
  829. padding: 40px 35px;
  830. height: 100%;
  831. top: 0;
  832. >div {
  833. opacity: 0;
  834. transition: opacity 0.3s;
  835. display: none;
  836. pointer-events: none;
  837. flex-direction: column;
  838. gap: 40px;
  839. li {
  840. line-height: 1;
  841. a {
  842. display: inline-block;
  843. color: #333;
  844. font-size: 16px;
  845. font-weight: 400;
  846. width: 100%;
  847. transition: all 0.3s;
  848. &:hover {
  849. color: #076fed;
  850. }
  851. }
  852. }
  853. &.active {
  854. display: flex;
  855. pointer-events: all;
  856. opacity: 1;
  857. }
  858. }
  859. }
  860. }
  861. }
  862. }
  863. }
  864. }
  865. }
  866. }
  867. }
  868. footer {
  869. width: 100%;
  870. //--one-footer-color-black: hsla(216, 26%, 1%, 1);
  871. --one-footer-color-white: hsla(216, 33%, 99%, 1);
  872. --one-footer-neutral-5: hsla(216, 26%, 1%, 0.6);
  873. --one-footer-neutral-10: hsla(216, 17%, 26%, 1);
  874. --one-footer-neutral-20: hsla(216, 14%, 35%, 1);
  875. --one-footer-neutral-70: hsla(216, 33%, 99%, 0.6);
  876. --one-footer-side-spacing: 16px;
  877. --one-footer-space-xs: var(--spacing-relative-xs);
  878. --one-footer-space-s: var(--spacing-relative-sm);
  879. --one-footer-space-m: var(--spacing-relative-md);
  880. --one-footer-space-l: var(--spacing-relative-lg);
  881. --one-footer-space-xl: var(--spacing-relative-xl);
  882. --one-footer-space-xxl: var(--spacing-relative-2xl);
  883. --one-footer-space-xxxl: var(--spacing-relative-3xl);
  884. background: var(--one-footer-color-black);
  885. box-sizing: border-box;
  886. color: var(--one-footer-color-white);
  887. @media (min-width: 375px) {
  888. --one-footer-side-spacing: 28px;
  889. }
  890. @media (min-width: 768px) {
  891. --one-footer-side-spacing: 40px;
  892. }
  893. @media (min-width: 1024px) {
  894. --one-footer-side-spacing: 60px;
  895. }
  896. .footer--wrap {
  897. max-width: 1440px;
  898. width: 100%;
  899. margin: 0 auto;
  900. display: flex;
  901. flex-direction: column;
  902. .footer--site--map {
  903. width: 100%;
  904. max-width: 1440px;
  905. margin: 0 auto;
  906. padding: 70px 0px 40px;
  907. >ul {
  908. display: block;
  909. list-style: none;
  910. row-gap: 40px;
  911. padding: 0px;
  912. width: 100%;
  913. @media (min-width: 768px) {
  914. display: flex;
  915. flex-flow: wrap;
  916. width: 100%;
  917. }
  918. >li {
  919. margin-bottom: -1px;
  920. @media (min-width: 768px) {
  921. //margin: 0px 24px 40px 0px;
  922. width: calc(33.333%);
  923. &:first-of-type {
  924. margin-top: 0px;
  925. }
  926. >h2 {
  927. border: none !important;
  928. }
  929. >ul {
  930. >h3 {
  931. color: #E9E9E9;
  932. font-size: 14px;
  933. font-style: normal;
  934. font-weight: 500;
  935. line-height: 100%;
  936. /* 14px */
  937. text-transform: uppercase;
  938. display: flex;
  939. }
  940. >li {
  941. padding-left: 0;
  942. padding-right: 0;
  943. margin-bottom: 25px;
  944. a {
  945. color: #E9E9E9;
  946. font-size: 14px;
  947. font-style: normal;
  948. font-weight: 500;
  949. line-height: 100%;
  950. /* 14px */
  951. text-transform: uppercase;
  952. display: flex;
  953. }
  954. }
  955. }
  956. }
  957. @media (min-width: 1440px) {
  958. width: calc(100% / 6);
  959. }
  960. >h2 {
  961. color: var(--one-footer-color-white);
  962. display: flex;
  963. flex-flow: row;
  964. -webkit-box-pack: justify;
  965. justify-content: space-between;
  966. padding: var(--one-footer-space-m) 20px;
  967. width: 100%;
  968. margin: 0px;
  969. color: #FFF;
  970. font-size: 18px;
  971. font-style: normal;
  972. font-weight: 700;
  973. line-height: 100%;
  974. /* 18px */
  975. text-transform: uppercase;
  976. text-decoration: none;
  977. border-top: 1px solid #4A4A4A;
  978. border-bottom: 1px solid #4A4A4A;
  979. @media (min-width: 768px) {
  980. padding: 0px;
  981. width: auto;
  982. margin-bottom: 30px;
  983. }
  984. @media (min-width: 1440px) {
  985. font-size: 18px;
  986. line-height: 28px;
  987. }
  988. @media (min-width: 1920px) {
  989. font-size: 20px;
  990. line-height: 32px;
  991. }
  992. }
  993. }
  994. }
  995. }
  996. }
  997. }
  998. // ============================================
  999. // Admin Panel Dark Theme Styles
  1000. // ============================================
  1001. // Light Theme Color Variables
  1002. :root {
  1003. --admin-yellow: #e8b546;
  1004. --admin-red: #E85D3F;
  1005. --admin-blue: #3c80f2;
  1006. --admin-bg-navy: #1a2332;
  1007. --admin-bg-primary: rgba(246, 247, 248, 1);
  1008. --admin-bg-secondary: #ffffff;
  1009. --admin-bg-tertiary: #f6f7f8;
  1010. --admin-text-primary: #181d29;
  1011. --admin-text-secondary: #666b75;
  1012. --admin-text-muted: #a8adb8;
  1013. --admin-border-color: #e0e0e0;
  1014. --admin-accent-primary: #1A2332;
  1015. --admin-accent-hover: #1A2332;
  1016. --admin-success: #10b981;
  1017. --admin-warning: #f59e0b;
  1018. --admin-error: #ef4444;
  1019. --admin-shadow: rgba(0, 0, 0, 0.1);
  1020. }
  1021. // Admin Login Page
  1022. .admin--login {
  1023. min-height: 100vh;
  1024. width: 100%;
  1025. min-width: 1680px;
  1026. background: var(--admin-bg-primary);
  1027. .login--container {
  1028. display: flex;
  1029. width: 100%;
  1030. min-width: 1680px;
  1031. min-height: 100vh;
  1032. }
  1033. // 왼쪽 영역 (50%) - 로고 + 설명
  1034. .login--layout {
  1035. flex: 0 0 50%;
  1036. max-width: 50%;
  1037. min-height: 100vh;
  1038. background: #1A2332;
  1039. color: #fcfcfd;
  1040. display: flex;
  1041. align-items: center;
  1042. justify-content: center;
  1043. padding: 80px 96px;
  1044. position: relative;
  1045. overflow: hidden;
  1046. &::before {
  1047. content: '';
  1048. position: absolute;
  1049. top: -200px;
  1050. right: -200px;
  1051. width: 600px;
  1052. height: 600px;
  1053. border-radius: 50%;
  1054. opacity: 0.08;
  1055. background: var(--admin-yellow);
  1056. pointer-events: none;
  1057. }
  1058. &::after {
  1059. content: '';
  1060. position: absolute;
  1061. bottom: 100px;
  1062. left: 80px;
  1063. width: 300px;
  1064. height: 300px;
  1065. border-radius: 50%;
  1066. background: #e85c3f;
  1067. opacity: 0.08;
  1068. pointer-events: none;
  1069. }
  1070. .login--layout-inner {
  1071. position: relative;
  1072. z-index: 1;
  1073. width: 100%;
  1074. max-width: 560px;
  1075. display: flex;
  1076. flex-direction: column;
  1077. gap: 48px;
  1078. }
  1079. .login--brand {
  1080. display: flex;
  1081. gap: 16px;
  1082. align-items: center;
  1083. .login--brand--logo{
  1084. width: 56px;
  1085. height: 56px;
  1086. border-radius: 12px;
  1087. background-color: var(--admin-yellow);
  1088. font-size: 28px;
  1089. text-align: center;
  1090. display: flex;
  1091. align-items: center;
  1092. justify-content: center;
  1093. }
  1094. .login--brand-title {
  1095. font-size: 22px;
  1096. font-weight: 600;
  1097. color: #fcfcfd;
  1098. letter-spacing: -0.11px;
  1099. }
  1100. .login--brand-tagline {
  1101. font-size: 10px;
  1102. letter-spacing: 1px;
  1103. text-transform: uppercase;
  1104. color: var(--admin-yellow);
  1105. margin: 0;
  1106. font-weight: 500;
  1107. }
  1108. }
  1109. .login--deco--line{
  1110. position: relative;
  1111. width: 240px;
  1112. height: 240px;
  1113. margin: 0 auto;
  1114. .circle1{
  1115. position: absolute;
  1116. width: 100%;
  1117. height: 100%;
  1118. border-radius: 50%;
  1119. border: 1.5px solid var(--admin-yellow);
  1120. opacity: 0.3;
  1121. }
  1122. .circle2{
  1123. position: absolute;
  1124. width: 160px;
  1125. height: 160px;
  1126. top: calc(50% - 80px);
  1127. left: calc(50% - 80px);
  1128. border-radius: 50%;
  1129. border: 1px solid var(--admin-yellow);
  1130. opacity: 0.3;
  1131. }
  1132. .circle3{
  1133. font-size: 100px;
  1134. width: 160px;
  1135. height: 160px;
  1136. position: absolute;
  1137. top: calc(50% - 80px);
  1138. left: calc(50% - 80px);
  1139. display: flex;
  1140. align-items: center;
  1141. justify-content: center;
  1142. }
  1143. }
  1144. .login--intro {
  1145. .login--intro-title {
  1146. font-size: 36px;
  1147. font-weight: 600;
  1148. color: #fff;
  1149. }
  1150. .login--intro-desc {
  1151. font-size: 14px;
  1152. letter-spacing: 2.1px;
  1153. line-height: 1.7;
  1154. margin-bottom: 15px;
  1155. color: var(--admin-yellow);
  1156. }
  1157. .login--intro-list {
  1158. color: #b2bdcc;
  1159. font-size: 13px;
  1160. font-weight: 400;
  1161. }
  1162. }
  1163. .login--copyright {
  1164. font-size: 13px;
  1165. color: rgba(252, 252, 253, 0.4);
  1166. letter-spacing: 0.5px;
  1167. }
  1168. }
  1169. // 오른쪽 영역 (50%) - 로그인 폼
  1170. .login--panel {
  1171. flex: 0 0 50%;
  1172. max-width: 50%;
  1173. min-height: 100vh;
  1174. display: flex;
  1175. align-items: center;
  1176. justify-content: center;
  1177. padding: 80px 96px;
  1178. background: var(--admin-bg-secondary);
  1179. }
  1180. .login--box {
  1181. width: 100%;
  1182. max-width: 480px;
  1183. background: var(--admin-bg-secondary);
  1184. padding: 0;
  1185. border: none;
  1186. box-shadow: none;
  1187. border-radius: 0;
  1188. }
  1189. .login--logo {
  1190. margin-bottom: 48px;
  1191. > span{
  1192. color: var(--admin-yellow);
  1193. font-size: 12px;
  1194. font-weight: 700;
  1195. letter-spacing: 0.96px;
  1196. }
  1197. h1 {
  1198. font-size: 40px;
  1199. font-weight: 700;
  1200. color: var(--admin-text-primary);
  1201. margin: 0 0 8px 0;
  1202. }
  1203. .subtitle {
  1204. font-size: 14px;
  1205. color: var(--admin-text-secondary);
  1206. margin: 0;
  1207. }
  1208. }
  1209. .login--error {
  1210. background: rgba(239, 68, 68, 0.1);
  1211. border: 1px solid var(--admin-error);
  1212. color: var(--admin-error);
  1213. padding: 12px 16px;
  1214. border-radius: 6px;
  1215. margin-bottom: 20px;
  1216. font-size: 14px;
  1217. }
  1218. .login--form {
  1219. .form--group {
  1220. margin-bottom: 20px;
  1221. }
  1222. .form--input {
  1223. width: 100%;
  1224. padding: 14px 16px;
  1225. background: var(--admin-bg-tertiary);
  1226. border: 1px solid var(--admin-border-color);
  1227. border-radius: 6px;
  1228. color: var(--admin-text-primary);
  1229. font-size: 14px;
  1230. transition: all 0.3s ease;
  1231. &:focus {
  1232. outline: none;
  1233. border-color: var(--admin-accent-primary);
  1234. box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  1235. }
  1236. &::placeholder {
  1237. color: var(--admin-text-muted);
  1238. }
  1239. &:disabled {
  1240. opacity: 0.5;
  1241. cursor: not-allowed;
  1242. }
  1243. }
  1244. .form--options {
  1245. display: flex;
  1246. justify-content: space-between;
  1247. align-items: center;
  1248. margin-bottom: 24px;
  1249. .checkbox--label {
  1250. display: flex;
  1251. align-items: center;
  1252. cursor: pointer;
  1253. font-size: 14px;
  1254. color: var(--admin-text-secondary);
  1255. input[type="checkbox"] {
  1256. margin-right: 8px;
  1257. cursor: pointer;
  1258. }
  1259. }
  1260. .forgot--password {
  1261. font-size: 14px;
  1262. color: var(--admin-accent-primary);
  1263. text-decoration: none;
  1264. transition: color 0.3s ease;
  1265. &:hover {
  1266. color: var(--admin-accent-hover);
  1267. }
  1268. }
  1269. }
  1270. .login--button {
  1271. width: 100%;
  1272. height: 56px;
  1273. line-height: 56px;
  1274. background: var(--admin-accent-primary);
  1275. color: var(--admin-yellow);
  1276. border: none;
  1277. border-radius: 10px;
  1278. font-size: 15px;
  1279. font-weight: 600;
  1280. cursor: pointer;
  1281. transition: all 0.3s ease;
  1282. &:hover:not(:disabled) {
  1283. background: var(--admin-accent-hover);
  1284. transform: translateY(-2px);
  1285. box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  1286. }
  1287. &:active:not(:disabled) {
  1288. transform: translateY(0);
  1289. }
  1290. &:disabled {
  1291. opacity: 0.6;
  1292. cursor: not-allowed;
  1293. }
  1294. }
  1295. }
  1296. .login--footer {
  1297. margin-top: 32px;
  1298. text-align: center;
  1299. p {
  1300. font-size: 12px;
  1301. color: var(--admin-text-muted);
  1302. margin: 0;
  1303. }
  1304. }
  1305. }
  1306. // Admin Layout
  1307. .admin--layout {
  1308. background: var(--admin-bg-primary);
  1309. }
  1310. // Admin Header
  1311. .admin--header {
  1312. position: fixed;
  1313. top: 0;
  1314. left: 240px;
  1315. right: 0;
  1316. height: 64px;
  1317. background: var(--admin-bg-secondary);
  1318. border-bottom: 1px solid var(--admin-border-color);
  1319. display: flex;
  1320. justify-content: space-between;
  1321. align-items: center;
  1322. padding: 0 32px;
  1323. z-index: 1000;
  1324. .admin--header-left {
  1325. display: flex;
  1326. flex-direction: column;
  1327. h1 {
  1328. font-size: 18px;
  1329. font-weight: 700;
  1330. color: var(--admin-text-primary);
  1331. margin: 0;
  1332. }
  1333. }
  1334. .admin--header-right {
  1335. display: flex;
  1336. gap: 12px;
  1337. }
  1338. .admin--header-btn {
  1339. padding: 8px 20px;
  1340. background: var(--admin-bg-tertiary);
  1341. color: var(--admin-text-primary);
  1342. border: 1px solid var(--admin-border-color);
  1343. border-radius: 6px;
  1344. font-size: 14px;
  1345. font-weight: 500;
  1346. cursor: pointer;
  1347. transition: all 0.3s ease;
  1348. &:hover {
  1349. background: var(--admin-bg-primary);
  1350. border-color: var(--admin-accent-primary);
  1351. }
  1352. &.admin--header-btn-logout {
  1353. background: var(--admin-accent-primary);
  1354. border-color: var(--admin-accent-primary);
  1355. color: #ffffff !important;
  1356. &:hover {
  1357. background: var(--admin-accent-hover);
  1358. border-color: var(--admin-accent-hover);
  1359. color: #ffffff !important;
  1360. }
  1361. }
  1362. }
  1363. }
  1364. // Admin Content Wrapper
  1365. .admin--content--wrapper {
  1366. display: flex;
  1367. margin-top: 64px;
  1368. min-height: calc(100vh - 64px);
  1369. }
  1370. // Admin Sidebar
  1371. .admin--sidebar {
  1372. width: 240px;
  1373. position: fixed;
  1374. left: 0;
  1375. top: 0px;
  1376. bottom: 0;
  1377. overflow-y: auto;
  1378. background-color: var(--admin-bg-navy);
  1379. padding: 24px 16px;
  1380. .admin--brand{
  1381. display: flex;
  1382. gap: 12px;
  1383. align-items: center;
  1384. .brand--logo{
  1385. width: 36px;
  1386. height: 36px;
  1387. border-radius: 8px;
  1388. display: flex;
  1389. align-items: center;
  1390. justify-content: center;
  1391. text-align: center;
  1392. background-color: var(--admin-yellow);
  1393. }
  1394. .brand--title{
  1395. color: #fff;
  1396. font-size: 15px;
  1397. display: flex;
  1398. flex-direction: column;
  1399. font-weight: 700;
  1400. span{
  1401. color: var(--admin-yellow);
  1402. font-size: 10px;
  1403. font-weight: 600;
  1404. letter-spacing: 1.2px;
  1405. }
  1406. }
  1407. }
  1408. &::-webkit-scrollbar {
  1409. width: 6px;
  1410. }
  1411. &::-webkit-scrollbar-track {
  1412. background: var(--admin-bg-primary);
  1413. }
  1414. &::-webkit-scrollbar-thumb {
  1415. background: var(--admin-border-color);
  1416. border-radius: 3px;
  1417. &:hover {
  1418. background: var(--admin-text-muted);
  1419. }
  1420. }
  1421. }
  1422. // Admin GNB
  1423. .admin--gnb {
  1424. margin-top: 28px;
  1425. .admin--gnb-group {
  1426. margin-bottom: 8px;
  1427. }
  1428. .admin--gnb-title {
  1429. padding: 12px 24px;
  1430. font-size: 13px;
  1431. font-weight: 400;
  1432. color: var(--admin-text-muted);
  1433. cursor: pointer;
  1434. display: flex;
  1435. justify-content: space-between;
  1436. align-items: center;
  1437. transition: all 0.3s ease;
  1438. user-select: none;
  1439. font-weight: 400;
  1440. &:has(.admin--gnb-arrow.is-open){
  1441. color: #fff;
  1442. font-weight: 600;
  1443. }
  1444. &:hover {
  1445. color: #fff;
  1446. }
  1447. .admin--gnb-arrow {
  1448. font-size: 10px;
  1449. transition: transform 0.3s ease;
  1450. &.is-open {
  1451. transform: rotate(-180deg);
  1452. }
  1453. }
  1454. }
  1455. // children 없는 단일 링크 메뉴
  1456. .admin--gnb-title-link {
  1457. position: relative;
  1458. border-radius: 6px;
  1459. color: var(--admin-text-muted);
  1460. font-size: 13px;
  1461. font-weight: 400;
  1462. &.is-active {
  1463. color: #fff;
  1464. background: #262f40;
  1465. font-weight: 600;
  1466. &::before{
  1467. content: '';
  1468. display: inline-block;
  1469. position: absolute;
  1470. top: 0;
  1471. left: 0;
  1472. height: 100%;
  1473. width: 3px;
  1474. border-radius: 6px;
  1475. background-color: var(--admin-yellow);
  1476. }
  1477. }
  1478. }
  1479. .admin--gnb-submenu {
  1480. list-style: none;
  1481. padding: 0;
  1482. margin: 0;
  1483. }
  1484. .admin--gnb-item {
  1485. position: relative;
  1486. border-radius: 6px;
  1487. color: var(--admin-text-muted);
  1488. font-size: 13px;
  1489. font-weight: 400;
  1490. &.is-active {
  1491. .admin--gnb-link {
  1492. color: #fff;
  1493. background: #262f40;
  1494. font-weight: 600;
  1495. &::before{
  1496. content: '';
  1497. display: inline-block;
  1498. position: absolute;
  1499. top: 0;
  1500. left: 20px;
  1501. height: 100%;
  1502. width: 3px;
  1503. border-radius: 6px;
  1504. background-color: var(--admin-yellow);
  1505. }
  1506. }
  1507. }
  1508. }
  1509. .admin--gnb-link {
  1510. display: block;
  1511. margin-left: 20px;
  1512. padding: 12px 24px;
  1513. font-size: 13px;
  1514. color: #78808c;
  1515. border-radius: 6px;
  1516. text-decoration: none;
  1517. transition: all 0.3s ease;
  1518. &:hover {
  1519. color: #fff;
  1520. background: #262f40;
  1521. }
  1522. }
  1523. }
  1524. // Submenu Animation
  1525. .admin--submenu-enter-active,
  1526. .admin--submenu-leave-active {
  1527. transition: all 0.3s ease;
  1528. overflow: hidden;
  1529. }
  1530. .admin--submenu-enter-from,
  1531. .admin--submenu-leave-to {
  1532. opacity: 0;
  1533. max-height: 0;
  1534. }
  1535. .admin--submenu-enter-to,
  1536. .admin--submenu-leave-from {
  1537. opacity: 1;
  1538. max-height: 500px;
  1539. }
  1540. // Admin Main Content
  1541. .admin--main {
  1542. flex: 1;
  1543. margin-left: 240px;
  1544. padding: 32px;
  1545. background: var(--admin-bg-primary);
  1546. }
  1547. // Admin Page Header
  1548. .admin--page-header {
  1549. display: flex;
  1550. justify-content: space-between;
  1551. align-items: center;
  1552. }
  1553. .admin--page-title {
  1554. font-size: 28px;
  1555. font-weight: 700;
  1556. color: var(--admin-text-primary);
  1557. margin: 0;
  1558. }
  1559. // Admin Breadcrumb
  1560. .admin--breadcrumb {
  1561. display: flex;
  1562. align-items: center;
  1563. font-size: 12px;
  1564. .admin--breadcrumb-link {
  1565. color: var(--admin-text-secondary);
  1566. text-decoration: none;
  1567. transition: color 0.3s ease;
  1568. &:hover {
  1569. color: var(--admin-accent-primary);
  1570. }
  1571. }
  1572. .admin--breadcrumb-current {
  1573. color: #666b75;
  1574. font-weight: 400;
  1575. }
  1576. .admin--breadcrumb-separator {
  1577. color: #666b75;
  1578. font-weight: 400;
  1579. }
  1580. }
  1581. // Admin Page Content
  1582. .admin--page-content {
  1583. background: var(--admin-bg-secondary);
  1584. border-radius: 8px;
  1585. padding: 24px;
  1586. border: 1px solid var(--admin-border-color);
  1587. }
  1588. // Admin Dashboard
  1589. .admin--dashboard {
  1590. .admin--dashboard-welcome {
  1591. margin-bottom: 32px;
  1592. h3 {
  1593. font-size: 24px;
  1594. color: var(--admin-text-primary);
  1595. margin: 0 0 8px 0;
  1596. }
  1597. p {
  1598. font-size: 14px;
  1599. color: var(--admin-text-secondary);
  1600. margin: 0;
  1601. }
  1602. }
  1603. .admin--dashboard-stats {
  1604. display: grid;
  1605. grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  1606. gap: 20px;
  1607. margin-bottom: 32px;
  1608. }
  1609. .admin--stat-card {
  1610. background: var(--admin-bg-tertiary);
  1611. border: 1px solid var(--admin-border-color);
  1612. border-radius: 8px;
  1613. padding: 24px;
  1614. display: flex;
  1615. align-items: center;
  1616. gap: 16px;
  1617. transition: all 0.3s ease;
  1618. &:hover {
  1619. border-color: var(--admin-accent-primary);
  1620. transform: translateY(-2px);
  1621. box-shadow: 0 4px 12px var(--admin-shadow);
  1622. }
  1623. .admin--stat-icon {
  1624. font-size: 36px;
  1625. }
  1626. .admin--stat-content {
  1627. flex: 1;
  1628. h4 {
  1629. font-size: 14px;
  1630. color: var(--admin-text-secondary);
  1631. margin: 0 0 8px 0;
  1632. font-weight: 500;
  1633. }
  1634. .admin--stat-number {
  1635. font-size: 28px;
  1636. color: var(--admin-text-primary);
  1637. margin: 0;
  1638. font-weight: 700;
  1639. }
  1640. }
  1641. }
  1642. .admin--dashboard-recent {
  1643. h4 {
  1644. font-size: 18px;
  1645. color: var(--admin-text-primary);
  1646. margin: 0 0 16px 0;
  1647. }
  1648. .admin--recent-list {
  1649. background: var(--admin-bg-tertiary);
  1650. border: 1px solid var(--admin-border-color);
  1651. border-radius: 8px;
  1652. padding: 24px;
  1653. .admin--no-data {
  1654. text-align: center;
  1655. color: var(--admin-text-muted);
  1656. margin: 0;
  1657. }
  1658. }
  1659. }
  1660. }
  1661. // Admin Form Styles
  1662. .admin--form {
  1663. .admin--form-group {
  1664. margin-bottom: 24px;
  1665. }
  1666. .admin--form-label {
  1667. display: block;
  1668. font-size: 14px;
  1669. font-weight: 500;
  1670. color: var(--admin-text-primary);
  1671. margin-bottom: 8px;
  1672. .admin--required {
  1673. color: var(--admin-error);
  1674. margin-left: 4px;
  1675. }
  1676. }
  1677. .admin--form-input,
  1678. .admin--form-textarea,
  1679. .admin--form-select {
  1680. width: 100%;
  1681. padding: 12px;
  1682. background: #fff;
  1683. border: 1px solid var(--admin-border-color);
  1684. border-radius: 6px;
  1685. color: var(--admin-text-primary);
  1686. font-size: 13px;
  1687. transition: all 0.3s ease;
  1688. &:focus {
  1689. // outline: none;
  1690. // border-color: var(--admin-accent-primary);
  1691. // box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  1692. }
  1693. &::placeholder {
  1694. color: var(--admin-text-muted);
  1695. }
  1696. &:disabled {
  1697. opacity: 0.5;
  1698. cursor: not-allowed;
  1699. background-color: var(--admin-bg-tertiary);
  1700. }
  1701. }
  1702. .admin--form-textarea {
  1703. min-height: 120px;
  1704. resize: vertical;
  1705. }
  1706. .admin--form-select {
  1707. cursor: pointer;
  1708. appearance: none;
  1709. -webkit-appearance: none;
  1710. -moz-appearance: none;
  1711. padding-right: 36px;
  1712. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666B75' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  1713. background-repeat: no-repeat;
  1714. background-position: right 12px center;
  1715. }
  1716. // 다중 입력 필드
  1717. .admin--multi-input-wrapper {
  1718. .admin--multi-input-item {
  1719. display: flex;
  1720. gap: 12px;
  1721. margin-bottom: 12px;
  1722. align-items: flex-start;
  1723. .admin--sender-row {
  1724. display: flex;
  1725. gap: 10px;
  1726. flex: 1;
  1727. }
  1728. .admin--form-input {
  1729. flex: 1;
  1730. }
  1731. .admin--btn-remove {
  1732. padding: 12px 20px;
  1733. background: var(--admin-error);
  1734. color: #fff;
  1735. border: none;
  1736. border-radius: 6px;
  1737. font-size: 14px;
  1738. font-weight: 500;
  1739. cursor: pointer;
  1740. transition: all 0.3s ease;
  1741. white-space: nowrap;
  1742. &:hover {
  1743. background: #dc2626;
  1744. }
  1745. }
  1746. }
  1747. .admin--btn-add {
  1748. padding: 10px 20px;
  1749. background: var(--admin-bg-tertiary);
  1750. color: var(--admin-text-secondary);
  1751. border: 1px dashed var(--admin-border-color);
  1752. border-radius: 6px;
  1753. font-size: 14px;
  1754. font-weight: 500;
  1755. cursor: pointer;
  1756. transition: all 0.3s ease;
  1757. &:hover {
  1758. background: var(--admin-bg-primary);
  1759. border-color: var(--admin-accent-primary);
  1760. color: var(--admin-text-primary);
  1761. }
  1762. }
  1763. }
  1764. // 폼 액션 버튼
  1765. .admin--form-actions {
  1766. display: flex;
  1767. gap: 12px;
  1768. margin-top: 32px;
  1769. padding-top: 24px;
  1770. border-top: 1px solid var(--admin-border-color);
  1771. }
  1772. .admin--btn {
  1773. padding: 12px;
  1774. border: none;
  1775. border-radius: 4px;
  1776. font-size: 13px;
  1777. font-weight: 600;
  1778. cursor: pointer;
  1779. transition: all 0.3s ease;
  1780. min-width: 100px;
  1781. color: #666b75;
  1782. border: 1px solid #e8eaef;
  1783. &:disabled {
  1784. opacity: 0.5;
  1785. cursor: not-allowed;
  1786. }
  1787. }
  1788. .ml--auto{
  1789. margin-left: auto;
  1790. }
  1791. .mr--auto{
  1792. margin-right: auto;
  1793. }
  1794. .admin--btn-red{
  1795. background-color: #e85d3f;
  1796. color: #fff;
  1797. }
  1798. .admin--btn-blue{
  1799. background-color: #3c80f2;
  1800. color: #fff;
  1801. }
  1802. .admin--btn-red-border{
  1803. border-color: #e85d3f;
  1804. color: #e85d3f;
  1805. }
  1806. .admin--btn-primary {
  1807. background: var(--admin-accent-primary);
  1808. color: #ffffff;
  1809. &:hover:not(:disabled) {
  1810. background: var(--admin-accent-hover);
  1811. transform: translateY(-2px);
  1812. box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  1813. }
  1814. }
  1815. .admin--btn-secondary {
  1816. background: var(--admin-bg-tertiary);
  1817. color: var(--admin-text-primary);
  1818. border: 1px solid var(--admin-border-color);
  1819. &:hover:not(:disabled) {
  1820. background: var(--admin-bg-primary);
  1821. border-color: var(--admin-accent-primary);
  1822. }
  1823. }
  1824. // 알림 메시지
  1825. .admin--alert {
  1826. padding: 12px 16px;
  1827. border-radius: 6px;
  1828. margin-top: 20px;
  1829. font-size: 14px;
  1830. }
  1831. .admin--alert-success {
  1832. background: rgba(16, 185, 129, 0.1);
  1833. border: 1px solid var(--admin-success);
  1834. color: var(--admin-success);
  1835. }
  1836. .admin--alert-error {
  1837. background: rgba(239, 68, 68, 0.1);
  1838. border: 1px solid var(--admin-error);
  1839. color: var(--admin-error);
  1840. }
  1841. .admin--alert-warning {
  1842. background: rgba(245, 158, 11, 0.1);
  1843. border: 1px solid var(--admin-warning);
  1844. color: var(--admin-warning);
  1845. }
  1846. }
  1847. // 로딩
  1848. .admin--loading {
  1849. display: flex;
  1850. align-items: center;
  1851. justify-content: center;
  1852. padding: 60px 20px;
  1853. color: var(--admin-text-secondary);
  1854. font-size: 16px;
  1855. }
  1856. // 전역 로딩 오버레이
  1857. .admin--loading-overlay {
  1858. position: fixed;
  1859. top: 0;
  1860. left: 0;
  1861. right: 0;
  1862. bottom: 0;
  1863. background: rgba(0, 0, 0, 0.5);
  1864. display: flex;
  1865. align-items: center;
  1866. justify-content: center;
  1867. z-index: 99999;
  1868. }
  1869. // 스피너
  1870. .admin--spinner {
  1871. width: 50px;
  1872. height: 50px;
  1873. border: 4px solid rgba(255, 255, 255, 0.3);
  1874. border-top-color: #fff;
  1875. border-radius: 50%;
  1876. animation: admin-spin 0.8s linear infinite;
  1877. }
  1878. @keyframes admin-spin {
  1879. to {
  1880. transform: rotate(360deg);
  1881. }
  1882. }
  1883. // 검색 박스
  1884. .admin--search-box {
  1885. background: var(--admin-bg-secondary);
  1886. border: 1px solid var(--admin-border-color);
  1887. border-radius: 8px;
  1888. padding: 20px;
  1889. margin-bottom: 20px;
  1890. display: flex;
  1891. justify-content: space-between;
  1892. align-items: center;
  1893. gap: 20px;
  1894. &.type2{
  1895. flex-direction: column;
  1896. align-items: start;
  1897. gap: 8px;
  1898. }
  1899. .admin--search--inner--box{
  1900. display: flex;
  1901. justify-content: space-between;
  1902. align-items: center;
  1903. width: 100%;
  1904. gap: 20px;
  1905. }
  1906. .admin--search-form {
  1907. display: flex;
  1908. gap: 12px;
  1909. align-items: center;
  1910. flex: 1;
  1911. .admin--quick-range{
  1912. display: flex;
  1913. gap: 8px;
  1914. .range--btn{
  1915. width: 60px;
  1916. font-weight: 400;
  1917. min-width: 60px;
  1918. padding: 12px 0;
  1919. color: #1a2b4a;
  1920. }
  1921. }
  1922. }
  1923. // 검색 박스 내 모든 select, input 통일된 스타일
  1924. .admin--search-select,
  1925. .admin--form-select,
  1926. .admin--form-input,
  1927. .admin--search-input {
  1928. border: 1px solid #e8eaef !important;
  1929. border-radius: 4px;
  1930. padding: 12px;
  1931. font-size: 13px !important;
  1932. background-color: #fff;
  1933. line-height: normal;
  1934. &::placeholder{
  1935. color: #a8adb8;
  1936. }
  1937. }
  1938. .admin--form-select{
  1939. cursor: pointer;
  1940. appearance: none;
  1941. -webkit-appearance: none;
  1942. -moz-appearance: none;
  1943. padding-right: 36px;
  1944. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666B75' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  1945. background-repeat: no-repeat;
  1946. background-position: right 12px center;
  1947. }
  1948. .admin--search-select,
  1949. .admin--form-select {
  1950. width: 140px;
  1951. }
  1952. .admin--form-input,
  1953. .admin--search-input {
  1954. flex: 1;
  1955. max-width: 400px;
  1956. }
  1957. .admin--btn-add{
  1958. width: 140px;
  1959. background-color: #e85d3f;
  1960. border-radius: 6px;
  1961. color: #fff;
  1962. font-weight: 600;
  1963. font-size: 13px;
  1964. padding: 12px;
  1965. cursor: pointer;
  1966. }
  1967. }
  1968. // 날짜 입력 필드
  1969. .admin--date-input {
  1970. cursor: pointer;
  1971. &::-webkit-calendar-picker-indicator {
  1972. cursor: pointer;
  1973. opacity: 0.7;
  1974. transition: opacity 0.2s;
  1975. &:hover {
  1976. opacity: 1;
  1977. }
  1978. }
  1979. }
  1980. // 날짜 범위
  1981. .admin--date-range {
  1982. display: flex;
  1983. align-items: center;
  1984. gap: 12px;
  1985. .admin--date-separator {
  1986. color: var(--admin-text-secondary);
  1987. font-size: 14px;
  1988. }
  1989. .admin--form-input {
  1990. flex: 1;
  1991. max-width: 200px;
  1992. }
  1993. }
  1994. // 테이블
  1995. .admin--table-wrapper {
  1996. background: var(--admin-bg-secondary);
  1997. border: 1px solid var(--admin-border-color);
  1998. border-radius: 8px;
  1999. overflow-x: auto;
  2000. }
  2001. .admin--table {
  2002. width: 100%;
  2003. border-collapse: collapse;
  2004. thead {
  2005. background: #F8F9FB;
  2006. border-bottom: 1px solid #E8EAEF;
  2007. th {
  2008. padding: 14px 16px;
  2009. text-align: center;
  2010. font-size: 12px;
  2011. font-weight: 600;
  2012. color: #666b75;
  2013. white-space: nowrap;
  2014. letter-spacing: 0.36px;
  2015. }
  2016. }
  2017. tbody {
  2018. tr {
  2019. border-bottom: 1px solid #E8EAEF;
  2020. transition: background 0.3s ease;
  2021. &:hover {
  2022. background: var(--admin-bg-tertiary);
  2023. }
  2024. &:last-child {
  2025. border-bottom: none;
  2026. }
  2027. &.admin--table-row-clickable {
  2028. cursor: pointer;
  2029. &:hover {
  2030. background: var(--admin-bg-primary);
  2031. }
  2032. }
  2033. }
  2034. td {
  2035. padding: 14px 16px;
  2036. font-size: 13px;
  2037. font-weight: 500;
  2038. color: #1a2b4a;
  2039. vertical-align: middle;
  2040. text-align: center;
  2041. &.left{
  2042. text-align: left;
  2043. }
  2044. &.color--yellow{
  2045. color: var(--admin-yellow);
  2046. font-weight: 700;
  2047. }
  2048. &.date{
  2049. color: #666b75;
  2050. font-size: 12px;
  2051. font-weight: 400;
  2052. }
  2053. }
  2054. .admin--table-title {
  2055. color: var(--admin-text-primary);
  2056. font-weight: 500;
  2057. max-width: 300px;
  2058. overflow: hidden;
  2059. text-overflow: ellipsis;
  2060. white-space: nowrap;
  2061. }
  2062. .admin--table-loading,
  2063. .admin--table-empty {
  2064. text-align: center;
  2065. padding: 60px 20px;
  2066. color: var(--admin-text-muted);
  2067. }
  2068. }
  2069. .admin--table-actions {
  2070. display: flex;
  2071. gap: 8px;
  2072. .admin--btn-blue{
  2073. background-color: #3c80f2;
  2074. color: #fff;
  2075. font-size: 12px;
  2076. }
  2077. }
  2078. }
  2079. // 배지
  2080. .admin--badge {
  2081. display: inline-block;
  2082. padding: 4px 12px;
  2083. border-radius: 12px;
  2084. font-size: 12px;
  2085. font-weight: 600;
  2086. white-space: nowrap;
  2087. &.admin--badge-html {
  2088. background: rgba(59, 130, 246, 0.1);
  2089. color: #3b82f6;
  2090. }
  2091. &.admin--badge-image {
  2092. background: rgba(16, 185, 129, 0.1);
  2093. color: #10b981;
  2094. }
  2095. &.admin--badge-active {
  2096. background: rgba(16, 185, 129, 0.1);
  2097. color: var(--admin-success);
  2098. }
  2099. &.admin--badge-scheduled {
  2100. background: rgba(245, 158, 11, 0.1);
  2101. color: var(--admin-warning);
  2102. }
  2103. &.admin--badge-ended {
  2104. background: rgba(107, 114, 128, 0.1);
  2105. color: #6b7280;
  2106. }
  2107. }
  2108. // 작은 버튼
  2109. .admin--btn-small {
  2110. padding: 12px 24px;
  2111. border: none;
  2112. border-radius: 4px;
  2113. font-size: 13px;
  2114. font-weight: 500;
  2115. cursor: pointer;
  2116. transition: all 0.3s ease;
  2117. white-space: nowrap;
  2118. line-height: normal;
  2119. min-width: 100px;
  2120. &.admin--btn-small-primary {
  2121. background: var(--admin-accent-primary);
  2122. color: #fff;
  2123. &:hover {
  2124. background: var(--admin-accent-hover);
  2125. }
  2126. }
  2127. &.admin--btn-small-danger {
  2128. background: var(--admin-error);
  2129. color: #fff;
  2130. &:hover {
  2131. background: #dc2626;
  2132. }
  2133. }
  2134. }
  2135. // 페이지네이션
  2136. .admin--pagination {
  2137. display: flex;
  2138. justify-content: flex-end;
  2139. align-items: center;
  2140. gap: 8px;
  2141. margin-top: 24px;
  2142. .admin--pagination-btn {
  2143. min-width: 32px;
  2144. height: 32px;
  2145. max-width: 32px;
  2146. border-radius: 6px;
  2147. cursor: pointer;
  2148. transition: all 0.3s ease;
  2149. background-color: #fff;
  2150. border: 1px solid #e8eaef;
  2151. font-size: 11px;
  2152. font-weight: 400;
  2153. color: #666b75;
  2154. &.is-active {
  2155. color: #fff;
  2156. font-weight: 700;
  2157. background-color: var(--admin-blue);
  2158. pointer-events: none;
  2159. }
  2160. &:disabled {
  2161. opacity: 0.5;
  2162. cursor: not-allowed;
  2163. }
  2164. }
  2165. }
  2166. // 라디오 그룹
  2167. .admin--radio-group {
  2168. display: flex;
  2169. gap: 20px;
  2170. flex-wrap: wrap;
  2171. }
  2172. .admin--radio-label {
  2173. display: flex;
  2174. align-items: center;
  2175. gap: 8px;
  2176. cursor: pointer;
  2177. font-size: 13px;
  2178. color: #666b75;
  2179. transition: color 0.3s ease;
  2180. input[type="radio"] {
  2181. cursor: pointer;
  2182. margin: 0;
  2183. }
  2184. &:hover {
  2185. color: var(--admin-text-primary);
  2186. }
  2187. }
  2188. // 날짜 범위
  2189. .admin--date-range {
  2190. display: flex;
  2191. align-items: center;
  2192. gap: 12px;
  2193. .admin--date-separator {
  2194. color: var(--admin-text-secondary);
  2195. font-weight: 500;
  2196. }
  2197. }
  2198. // 시간 입력 그룹 (AM/PM + 시 + 분)
  2199. .admin--time-group {
  2200. display: flex;
  2201. align-items: center;
  2202. gap: 10px;
  2203. flex-wrap: wrap;
  2204. .admin--time-input {
  2205. width: 80px;
  2206. text-align: center;
  2207. }
  2208. }
  2209. .admin--hint {
  2210. margin-left: 6px;
  2211. color: var(--admin-text-secondary);
  2212. font-size: 12px;
  2213. font-weight: 400;
  2214. }
  2215. // 사이즈 그룹
  2216. .admin--size-group {
  2217. display: flex;
  2218. gap: 20px;
  2219. .admin--size-item {
  2220. display: flex;
  2221. align-items: center;
  2222. gap: 8px;
  2223. label {
  2224. font-size: 14px;
  2225. color: var(--admin-text-secondary);
  2226. min-width: 40px;
  2227. }
  2228. .admin--form-input {
  2229. max-width: 120px;
  2230. }
  2231. span {
  2232. font-size: 14px;
  2233. color: var(--admin-text-secondary);
  2234. }
  2235. }
  2236. }
  2237. // 파일 입력
  2238. .admin--form-file {
  2239. width: 100%;
  2240. padding: 12px 16px;
  2241. background: var(--admin-bg-tertiary);
  2242. border: 1px solid var(--admin-border-color);
  2243. border-radius: 6px;
  2244. color: #fff;
  2245. font-size: 14px;
  2246. cursor: pointer;
  2247. &::-webkit-file-upload-button {
  2248. padding: 8px 16px;
  2249. background: var(--admin-accent-primary);
  2250. color: #fff;
  2251. border: none;
  2252. border-radius: 4px;
  2253. font-size: 13px;
  2254. font-weight: 500;
  2255. cursor: pointer;
  2256. margin-right: 12px;
  2257. }
  2258. }
  2259. // 이미지 미리보기
  2260. .admin--image-preview {
  2261. margin-top: 16px;
  2262. position: relative;
  2263. display: inline-block;
  2264. max-width: 400px;
  2265. img {
  2266. max-width: 100%;
  2267. border-radius: 8px;
  2268. border: 1px solid var(--admin-border-color);
  2269. display: block;
  2270. }
  2271. .admin--btn-remove-image {
  2272. position: absolute;
  2273. top: 12px;
  2274. right: 12px;
  2275. padding: 8px 16px;
  2276. background: var(--admin-error);
  2277. color: #fff;
  2278. border: none;
  2279. border-radius: 4px;
  2280. font-size: 13px;
  2281. font-weight: 500;
  2282. cursor: pointer;
  2283. transition: all 0.3s ease;
  2284. &:hover {
  2285. background: #dc2626;
  2286. }
  2287. }
  2288. }
  2289. // 비밀번호 입력 래퍼
  2290. .admin--password-input-wrapper {
  2291. position: relative;
  2292. .admin--form-input {
  2293. padding-right: 50px;
  2294. }
  2295. .admin--password-toggle {
  2296. position: absolute;
  2297. right: 12px;
  2298. top: 50%;
  2299. transform: translateY(-50%);
  2300. background: none;
  2301. border: none;
  2302. font-size: 20px;
  2303. cursor: pointer;
  2304. padding: 4px;
  2305. line-height: 1;
  2306. transition: opacity 0.3s ease;
  2307. &:hover {
  2308. opacity: 0.7;
  2309. }
  2310. }
  2311. }
  2312. // 폼 도움말
  2313. .admin--form-help {
  2314. margin: 8px 0 0 0;
  2315. font-size: 13px;
  2316. color: var(--admin-text-muted);
  2317. font-style: italic;
  2318. }
  2319. // 폼 경고 (좌표 미검출 등)
  2320. .admin--form-warning {
  2321. margin: 8px 0 0 0;
  2322. font-size: 13px;
  2323. color: var(--admin-red);
  2324. }
  2325. // 검색 박스 (큰 버전 - 여러 필터)
  2326. .admin--search-box-large {
  2327. .admin--search-filters {
  2328. flex: 1;
  2329. display: flex;
  2330. flex-direction: column;
  2331. gap: 12px;
  2332. .admin--filter-row {
  2333. display: flex;
  2334. align-items: center;
  2335. gap: 12px;
  2336. flex-wrap: wrap;
  2337. .admin--filter-label {
  2338. font-size: 14px;
  2339. color: var(--admin-text-secondary);
  2340. min-width: 60px;
  2341. }
  2342. .admin--form-select,
  2343. .admin--form-input {
  2344. flex: 1;
  2345. min-width: 150px;
  2346. }
  2347. }
  2348. }
  2349. }
  2350. // 테이블 사진
  2351. .admin--table-photo {
  2352. width: 80px;
  2353. height: 120px;
  2354. border-radius: 4px;
  2355. overflow: hidden;
  2356. display: flex;
  2357. align-items: center;
  2358. justify-content: center;
  2359. background: var(--admin-bg-tertiary);
  2360. img {
  2361. width: 100%;
  2362. height: 100%;
  2363. object-fit: cover;
  2364. }
  2365. .admin--table-photo-empty {
  2366. font-size: 11px;
  2367. color: var(--admin-text-muted);
  2368. text-align: center;
  2369. }
  2370. }
  2371. // 테이블 액션 (세로 배치)
  2372. .admin--table-actions-col {
  2373. flex-direction: column;
  2374. gap: 6px;
  2375. .admin--btn-small {
  2376. width: 100%;
  2377. }
  2378. }
  2379. // 작은 버튼 (secondary 추가)
  2380. .admin--btn-small{
  2381. &.admin--btn-small-secondary {
  2382. border-radius: 6px;
  2383. border: 1px solid #E8EAEF;
  2384. background: #FFF;
  2385. &:hover{
  2386. border: 1px solid #e8eaef!important;
  2387. }
  2388. }
  2389. }
  2390. // 엑셀 버튼 (녹색 배경)
  2391. .admin--btn-small-excel {
  2392. background: #217346;
  2393. color: #ffffff;
  2394. border: 1px solid #1a5c37;
  2395. &:hover {
  2396. background: #185c37;
  2397. border-color: #144d2d;
  2398. }
  2399. }
  2400. // Responsive
  2401. @media (max-width: 1024px) {
  2402. .admin--sidebar {
  2403. width: 220px;
  2404. }
  2405. .admin--main {
  2406. margin-left: 220px;
  2407. }
  2408. }
  2409. @media (max-width: 768px) {
  2410. .admin--header {
  2411. padding: 0 16px;
  2412. }
  2413. .admin--sidebar {
  2414. transform: translateX(-100%);
  2415. transition: transform 0.3s ease;
  2416. &.is-open {
  2417. transform: translateX(0);
  2418. }
  2419. }
  2420. .admin--main {
  2421. margin-left: 0;
  2422. padding: 16px;
  2423. }
  2424. .admin--page-header {
  2425. flex-direction: column;
  2426. align-items: flex-start;
  2427. gap: 12px;
  2428. }
  2429. .admin--form {
  2430. .admin--form-actions {
  2431. flex-direction: column;
  2432. .admin--btn {
  2433. width: 100%;
  2434. }
  2435. }
  2436. .admin--multi-input-wrapper {
  2437. .admin--multi-input-item {
  2438. flex-direction: column;
  2439. .admin--btn-remove {
  2440. width: 100%;
  2441. }
  2442. }
  2443. }
  2444. }
  2445. }
  2446. // File Attachment Styles
  2447. .admin--form-file-hidden {
  2448. display: none;
  2449. }
  2450. .admin--file-list {
  2451. margin-bottom: 12px;
  2452. border: 1px solid var(--admin-border-color);
  2453. border-radius: 4px;
  2454. background-color: var(--admin-bg-secondary);
  2455. }
  2456. .admin--file-item {
  2457. display: flex;
  2458. align-items: center;
  2459. padding: 12px 16px;
  2460. border-bottom: 1px solid var(--admin-border-color);
  2461. &:last-child {
  2462. border-bottom: none;
  2463. }
  2464. &:hover {
  2465. background-color: rgba(255, 255, 255, 0.03);
  2466. }
  2467. }
  2468. .admin--file-name {
  2469. flex: 1;
  2470. color: var(--admin-text-primary);
  2471. font-size: 14px;
  2472. overflow: hidden;
  2473. text-overflow: ellipsis;
  2474. white-space: nowrap;
  2475. margin-right: 8px;
  2476. &:hover {
  2477. text-decoration: underline;
  2478. }
  2479. }
  2480. .admin--file-size {
  2481. color: var(--admin-text-secondary);
  2482. font-size: 13px;
  2483. margin-right: 12px;
  2484. white-space: nowrap;
  2485. }
  2486. .admin--btn-remove-file {
  2487. padding: 4px 12px;
  2488. background-color: transparent;
  2489. color: var(--admin-danger-color);
  2490. border: 1px solid var(--admin-danger-color);
  2491. border-radius: 4px;
  2492. font-size: 13px;
  2493. cursor: pointer;
  2494. transition: all 0.2s ease;
  2495. white-space: nowrap;
  2496. &:hover {
  2497. background-color: var(--admin-danger-color);
  2498. color: white;
  2499. }
  2500. }
  2501. // Checkbox Group Styles
  2502. .admin--checkbox-group {
  2503. display: flex;
  2504. gap: 20px;
  2505. }
  2506. .admin--checkbox-label {
  2507. display: flex;
  2508. align-items: center;
  2509. gap: 8px;
  2510. color: var(--admin-text-primary);
  2511. font-size: 14px;
  2512. cursor: pointer;
  2513. input[type="checkbox"] {
  2514. width: 18px;
  2515. height: 18px;
  2516. cursor: pointer;
  2517. accent-color: var(--admin-accent-primary);
  2518. }
  2519. span {
  2520. user-select: none;
  2521. }
  2522. &:hover {
  2523. opacity: 0.8;
  2524. }
  2525. }
  2526. // Admin Footer
  2527. .admin--footer {
  2528. margin-top: 64px;
  2529. padding: 24px 0;
  2530. border-top: 1px solid var(--admin-border-color);
  2531. text-align: center;
  2532. p {
  2533. color: var(--admin-text-muted);
  2534. font-size: 14px;
  2535. margin: 0;
  2536. }
  2537. }
  2538. // IMPORTANT: Force display admin header and footer
  2539. .admin--header {
  2540. display: flex !important;
  2541. min-height: 64px !important;
  2542. background: #ffffff !important;
  2543. visibility: visible !important;
  2544. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  2545. }
  2546. .admin--footer {
  2547. display: block !important;
  2548. min-height: 60px !important;
  2549. background: #ffffff !important;
  2550. visibility: visible !important;
  2551. }
  2552. // Alert Modal Styles
  2553. .admin--modal-overlay {
  2554. position: fixed;
  2555. top: 0;
  2556. left: 0;
  2557. right: 0;
  2558. bottom: 0;
  2559. background: rgba(0, 0, 0, 0.7);
  2560. z-index: 9999;
  2561. display: flex;
  2562. align-items: center;
  2563. justify-content: center;
  2564. }
  2565. .admin--alert-modal {
  2566. background: #ffffff;
  2567. padding: 0;
  2568. border-radius: 8px;
  2569. min-width: 400px;
  2570. max-width: 500px;
  2571. box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  2572. }
  2573. .admin--alert-modal .admin--modal-header {
  2574. padding: 20px;
  2575. border-bottom: 1px solid #e0e0e0;
  2576. display: flex;
  2577. justify-content: space-between;
  2578. align-items: center;
  2579. h4 {
  2580. margin: 0;
  2581. font-size: 18px;
  2582. font-weight: 600;
  2583. color: #1a1a1a;
  2584. }
  2585. }
  2586. .admin--alert-modal .admin--modal-close {
  2587. background: none;
  2588. border: none;
  2589. font-size: 24px;
  2590. cursor: pointer;
  2591. color: #999;
  2592. line-height: 1;
  2593. transition: color 0.2s;
  2594. &:hover {
  2595. color: #333;
  2596. }
  2597. }
  2598. .admin--alert-modal .admin--modal-body {
  2599. padding: 30px 20px;
  2600. .admin--alert-content p {
  2601. margin: 0;
  2602. font-size: 15px;
  2603. line-height: 1.6;
  2604. color: #333333;
  2605. }
  2606. }
  2607. .admin--alert-modal .admin--modal-footer {
  2608. padding: 15px 20px;
  2609. border-top: 1px solid #e0e0e0;
  2610. display: flex;
  2611. gap: 10px;
  2612. justify-content: flex-end;
  2613. }
  2614. .admin--alert-modal .admin--btn-secondary {
  2615. padding: 8px 20px;
  2616. border: 1px solid #e0e0e0;
  2617. background: #f5f5f5;
  2618. color: #333333;
  2619. border-radius: 4px;
  2620. cursor: pointer;
  2621. font-size: 14px;
  2622. transition: all 0.2s;
  2623. &:hover {
  2624. background: #eeeeee;
  2625. }
  2626. }
  2627. .admin--alert-modal .admin--btn-primary {
  2628. padding: 8px 20px;
  2629. border: none;
  2630. background: var(--admin-accent-primary);
  2631. color: white;
  2632. border-radius: 4px;
  2633. cursor: pointer;
  2634. font-size: 14px;
  2635. transition: all 0.2s;
  2636. &:hover {
  2637. background: var(--admin-accent-hover);
  2638. }
  2639. }
  2640. // Modal Animation
  2641. @keyframes slideUp {
  2642. from {
  2643. opacity: 0;
  2644. transform: translateY(30px);
  2645. }
  2646. to {
  2647. opacity: 1;
  2648. transform: translateY(0);
  2649. }
  2650. }
  2651. .modal-fade-enter-active {
  2652. transition: opacity 0.3s ease;
  2653. .admin--alert-modal {
  2654. animation: slideUp 0.3s ease-out;
  2655. }
  2656. }
  2657. .modal-fade-leave-active {
  2658. transition: opacity 0.2s ease;
  2659. }
  2660. .modal-fade-enter-from,
  2661. .modal-fade-leave-to {
  2662. opacity: 0;
  2663. }
  2664. // ScrollCanvasAnimation Component Styles
  2665. .scroll--canvas--animation {
  2666. position: relative;
  2667. width: 100%;
  2668. // 가상 스크롤 공간 (보이지 않음, 스크롤 영역만 확보)
  2669. .scroll--spacer {
  2670. width: 100%;
  2671. pointer-events: none;
  2672. }
  2673. // 고정될 캔버스 영역 (100vh)
  2674. .scroll--canvas--sticky {
  2675. position: absolute;
  2676. top: 0;
  2677. left: 0;
  2678. width: 100%;
  2679. height: 100vh;
  2680. overflow: hidden;
  2681. transition: background-color 0.3s ease;
  2682. // 고정 상태일 때
  2683. &.is--fixed {
  2684. position: fixed;
  2685. top: 0;
  2686. left: 0;
  2687. right: 0;
  2688. z-index: 100;
  2689. }
  2690. // 완료 상태일 때
  2691. &.is--completed {
  2692. position: absolute;
  2693. top: auto;
  2694. bottom: 0;
  2695. }
  2696. }
  2697. // 헤드라인 컨테이너
  2698. .headline--container {
  2699. position: absolute;
  2700. top: 0;
  2701. left: 0;
  2702. right: 0;
  2703. bottom: 0;
  2704. z-index: 10;
  2705. display: flex;
  2706. align-items: center;
  2707. justify-content: center;
  2708. padding: 40px 20px;
  2709. pointer-events: none;
  2710. transition: opacity 0.3s ease;
  2711. .content--container {
  2712. text-align: left;
  2713. padding: 0 var(--spacing-relative-3xl);
  2714. width: 100%;
  2715. }
  2716. .headline--text {
  2717. font-size: clamp(32px, 5vw, 64px);
  2718. font-weight: 700;
  2719. line-height: 1.2;
  2720. margin: 0 0 20px 0;
  2721. letter-spacing: -0.02em;
  2722. animation: fadeInUp 0.8s cubic-bezier(0.15, 0, 0.25, 1) forwards;
  2723. opacity: 0;
  2724. color: rgb(252, 252, 253);
  2725. letter-spacing: 0px;
  2726. font-weight: 400;
  2727. text-decoration: none;
  2728. font-size: 36px;
  2729. line-height: 52px;
  2730. font-stretch: 130%;
  2731. @media (min-width: 768px) {
  2732. font-size: 44px;
  2733. line-height: 60px;
  2734. }
  2735. @media (min-width: 1024px) {
  2736. font-size: 52px;
  2737. line-height: 76px;
  2738. }
  2739. @media (min-width: 1440px) {
  2740. font-size: 60px;
  2741. line-height: 84px;
  2742. }
  2743. @media (min-width: 1920px) {
  2744. font-size: 72px;
  2745. line-height: 100px;
  2746. }
  2747. }
  2748. .subheadline--text {
  2749. font-size: clamp(16px, 2.5vw, 24px);
  2750. font-weight: 400;
  2751. line-height: 1.5;
  2752. margin: 0;
  2753. color: rgba(252, 252, 253, 0.8);
  2754. animation: fadeInUp 0.8s cubic-bezier(0.15, 0, 0.25, 1) 0.2s forwards;
  2755. opacity: 0;
  2756. }
  2757. }
  2758. // 이미지 컨테이너
  2759. .scroll--images--container {
  2760. position: absolute;
  2761. top: 0;
  2762. left: 0;
  2763. width: 100%;
  2764. height: 100%;
  2765. display: flex;
  2766. align-items: center;
  2767. justify-content: center;
  2768. }
  2769. // 캔버스
  2770. .scroll--canvas {
  2771. display: block;
  2772. position: absolute;
  2773. top: 50%;
  2774. left: 50%;
  2775. transform: translate(-50%, -50%);
  2776. max-width: 100%;
  2777. max-height: 100%;
  2778. object-fit: cover;
  2779. }
  2780. }
  2781. // 페이드인 애니메이션
  2782. @keyframes fadeInUp {
  2783. from {
  2784. opacity: 0;
  2785. transform: translateY(40px);
  2786. }
  2787. to {
  2788. opacity: 1;
  2789. transform: translateY(0);
  2790. }
  2791. }
  2792. // 반응형 스타일
  2793. @media (max-width: 1024px) {
  2794. .scroll--canvas--animation {
  2795. .headline--container {
  2796. padding: 30px 15px;
  2797. .headline--text {
  2798. margin-bottom: 15px;
  2799. }
  2800. }
  2801. }
  2802. }
  2803. @media (max-width: 768px) {
  2804. .scroll--canvas--animation {
  2805. .headline--container {
  2806. padding: 20px 15px;
  2807. .headline--text {
  2808. margin-bottom: 12px;
  2809. }
  2810. }
  2811. }
  2812. }
  2813. @media (max-width: 480px) {
  2814. .scroll--canvas--animation {
  2815. .headline--container {
  2816. padding: 15px 10px;
  2817. .content--container {
  2818. max-width: 100%;
  2819. }
  2820. }
  2821. }
  2822. }
  2823. .iframe--wrapper {
  2824. position: relative;
  2825. padding-top: 55.6%;
  2826. iframe {
  2827. position: absolute;
  2828. width: 100%;
  2829. height: 100%;
  2830. top: 0px;
  2831. }
  2832. }
  2833. .sign--wrapper {
  2834. display: flex;
  2835. align-items: center;
  2836. gap: 30px;
  2837. width: 100%;
  2838. justify-content: flex-end;
  2839. }
  2840. // 중복 체크 버튼 스타일
  2841. .admin--input-with-button {
  2842. display: flex;
  2843. gap: 8px;
  2844. align-items: stretch;
  2845. .admin--form-input {
  2846. flex: 1;
  2847. }
  2848. .admin--btn {
  2849. flex-shrink: 0;
  2850. white-space: nowrap;
  2851. height: auto;
  2852. }
  2853. }
  2854. .admin--btn-check {
  2855. background: #2563eb !important;
  2856. color: #ffffff !important;
  2857. border: none;
  2858. padding: 10px 16px;
  2859. border-radius: 4px;
  2860. font-size: 13px;
  2861. font-weight: 500;
  2862. cursor: pointer;
  2863. transition: all 0.3s ease;
  2864. &:hover:not(:disabled) {
  2865. background: #1d4ed8 !important;
  2866. }
  2867. &:disabled {
  2868. opacity: 0.5;
  2869. cursor: not-allowed;
  2870. }
  2871. }
  2872. .admin--form-help {
  2873. margin-top: 6px;
  2874. font-size: 12px;
  2875. line-height: 1.4;
  2876. color: #999;
  2877. }
  2878. .admin--text-success {
  2879. color: #4caf50 !important;
  2880. }
  2881. .admin--text-error {
  2882. color: #f44336 !important;
  2883. }
  2884. .file--item {
  2885. display: flex;
  2886. align-items: center;
  2887. }
  2888. footer {
  2889. position: relative;
  2890. background: #252525;
  2891. .footer--wrap {
  2892. //position: relative;
  2893. .footer--btn--wrap {
  2894. display: flex;
  2895. flex-direction: column;
  2896. position: fixed;
  2897. bottom: 120px;
  2898. //left: calc(100% + 60px);
  2899. right: 110px;
  2900. gap: 12px;
  2901. opacity: 0;
  2902. z-index: 10;
  2903. pointer-events: none;
  2904. transition: all 0.3s;
  2905. &.active {
  2906. pointer-events: all;
  2907. opacity: 1;
  2908. }
  2909. .quick--wrap {
  2910. position: fixed;
  2911. right: 49px;
  2912. border-radius: 20px;
  2913. background: #F5FAFF;
  2914. box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.20);
  2915. width: 192px;
  2916. overflow: hidden;
  2917. transition: all 0.3s;
  2918. border: 1px solid rgba(7, 111, 237, 0.50);
  2919. opacity: 0;
  2920. bottom: 330px;
  2921. pointer-events: none;
  2922. &.active {
  2923. pointer-events: all;
  2924. opacity: 1;
  2925. bottom: 317px;
  2926. }
  2927. .inner--wrap {
  2928. padding: 5px 30px;
  2929. display: flex;
  2930. flex-direction: column;
  2931. li {
  2932. text-align: center;
  2933. display: flex;
  2934. a {
  2935. width: 100%;
  2936. color: #333;
  2937. white-space: nowrap;
  2938. padding: 12.5px 0;
  2939. font-size: 13px;
  2940. text-transform: uppercase;
  2941. font-weight: 500;
  2942. transition: all 0.3s;
  2943. line-height: 1;
  2944. &:hover {
  2945. color: #076FED;
  2946. text-decoration-line: underline;
  2947. text-decoration-style: solid;
  2948. text-decoration-skip-ink: auto;
  2949. text-decoration-thickness: auto;
  2950. text-underline-offset: auto;
  2951. text-underline-position: from-font;
  2952. font-weight: 700;
  2953. }
  2954. }
  2955. }
  2956. }
  2957. }
  2958. .quick--menu {
  2959. display: flex;
  2960. flex-direction: column;
  2961. background-color: #076fed;
  2962. border-radius: 100px;
  2963. box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.20);
  2964. align-items: center;
  2965. justify-content: center;
  2966. width: 70px;
  2967. height: 100px;
  2968. gap: 10px;
  2969. font-size: 12px;
  2970. font-weight: 700;
  2971. color: #fff;
  2972. &.active {
  2973. .ico {
  2974. background-image: url(/img/ico--quick--close.svg);
  2975. }
  2976. }
  2977. .ico {
  2978. width: 24px;
  2979. height: 24px;
  2980. background-image: url(/img/ico--quick.svg);
  2981. }
  2982. }
  2983. .scroll--to--top {
  2984. display: flex;
  2985. flex-direction: column;
  2986. box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.20);
  2987. width: 70px;
  2988. height: 70px;
  2989. border-radius: 50%;
  2990. background-color: #282828;
  2991. gap: 2px;
  2992. justify-content: center;
  2993. font-size: 13px;
  2994. font-weight: 700;
  2995. align-items: center;
  2996. .ico {
  2997. width: 24px;
  2998. height: 24px;
  2999. background-image: url(/img/ico--top--arrow.svg);
  3000. }
  3001. }
  3002. }
  3003. .footer--site--map {
  3004. >ul {
  3005. >li {
  3006. >ul {
  3007. >h3,
  3008. >a {
  3009. position: relative;
  3010. padding-left: 13px;
  3011. margin-bottom: 15px;
  3012. text-transform: capitalize;
  3013. display: block;
  3014. &:before {
  3015. content: '';
  3016. width: 3px;
  3017. height: 3px;
  3018. position: absolute;
  3019. display: block;
  3020. background: #E9E9E9;
  3021. top: 50%;
  3022. left: 0;
  3023. transform: translateY(-50%);
  3024. }
  3025. }
  3026. >li {
  3027. position: relative;
  3028. padding-left: 13px;
  3029. &:before {
  3030. content: '';
  3031. width: 3px;
  3032. height: 3px;
  3033. position: absolute;
  3034. display: block;
  3035. background: #E9E9E9;
  3036. top: 50%;
  3037. left: 0;
  3038. transform: translateY(-50%);
  3039. }
  3040. >a {
  3041. color: #E9E9E9;
  3042. font-size: 14px;
  3043. }
  3044. &.inner--style {
  3045. margin-bottom: 15px;
  3046. &:last-child {
  3047. margin-bottom: 30px;
  3048. }
  3049. &:before {
  3050. display: none;
  3051. }
  3052. a {
  3053. color: #B7B7B7;
  3054. font-size: 14px;
  3055. font-style: normal;
  3056. font-weight: 400;
  3057. line-height: 100%;
  3058. /* 14px */
  3059. text-transform: capitalize;
  3060. }
  3061. }
  3062. }
  3063. }
  3064. }
  3065. }
  3066. }
  3067. }
  3068. .footer--info--wrapper {
  3069. background: #161616;
  3070. .footer--info--wrap {
  3071. position: relative;
  3072. .sns--wrap {
  3073. display: flex;
  3074. justify-content: flex-end;
  3075. margin-bottom: 12px;
  3076. gap: 15px;
  3077. position: absolute;
  3078. top: 50%;
  3079. transform: translateY(-50%);
  3080. right: 0px;
  3081. >a {
  3082. width: 40px;
  3083. height: 40px;
  3084. display: inline-block;
  3085. border-radius: 50%;
  3086. display: flex;
  3087. align-items: center;
  3088. justify-content: center;
  3089. cursor: pointer;
  3090. box-sizing: border-box;
  3091. background: #fff;
  3092. }
  3093. }
  3094. .copy--wrap {
  3095. font-size: 14px;
  3096. color: #fcfcfdb2;
  3097. max-width: 1440px;
  3098. margin: 0 auto;
  3099. padding: 30px 0px;
  3100. position: relative;
  3101. .link--list {
  3102. display: flex;
  3103. flex-wrap: wrap;
  3104. gap: 37px;
  3105. >li {
  3106. position: relative;
  3107. &::after {
  3108. content: '';
  3109. height: 15px;
  3110. width: 1px;
  3111. background: rgba(255, 255, 255, 0.50);
  3112. display: block;
  3113. position: absolute;
  3114. right: -18px;
  3115. top: 50%;
  3116. transform: translateY(-50%);
  3117. }
  3118. &:last-child {
  3119. &::after {
  3120. display: none;
  3121. }
  3122. }
  3123. >a {
  3124. display: inline-block;
  3125. color: rgb(252, 252, 253);
  3126. transition: all 0.3s;
  3127. color: #FFF;
  3128. font-size: 15px;
  3129. font-style: normal;
  3130. font-weight: 700;
  3131. line-height: 100%;
  3132. /* 15px */
  3133. letter-spacing: -0.3px;
  3134. text-transform: capitalize;
  3135. &:hover {
  3136. opacity: 0.7;
  3137. }
  3138. }
  3139. }
  3140. }
  3141. >p {
  3142. //margin-top: 25px;
  3143. }
  3144. }
  3145. }
  3146. }
  3147. @media (max-width: 768px) {
  3148. .footer--wrap {
  3149. .footer--site--map {
  3150. >ul {
  3151. >li {
  3152. >h2 {
  3153. cursor: pointer;
  3154. user-select: none;
  3155. position: relative;
  3156. padding-right: 20px;
  3157. &::after {
  3158. content: '';
  3159. position: absolute;
  3160. right: 20px;
  3161. background-image: url(/img/ico--footer.svg);
  3162. width: 18px;
  3163. min-width: 18px;
  3164. margin-left: 20px;
  3165. height: 18px;
  3166. transition: transform 0.3s ease;
  3167. }
  3168. }
  3169. >ul {
  3170. max-height: 0;
  3171. overflow: hidden;
  3172. transition: max-height 0.3s ease;
  3173. &.active {
  3174. max-height: 1000px;
  3175. }
  3176. }
  3177. }
  3178. }
  3179. }
  3180. }
  3181. }
  3182. }
  3183. .swiper--banner--wrapper {
  3184. width: 100%;
  3185. overflow: hidden;
  3186. .swiper--banner--container {
  3187. position: relative;
  3188. .swiper-button-next,
  3189. .swiper-button-prev {
  3190. display: flex;
  3191. width: 65px;
  3192. height: 65px;
  3193. padding: 21px 20px 20px 21px;
  3194. justify-content: center;
  3195. align-items: center;
  3196. flex-shrink: 0;
  3197. position: absolute;
  3198. top: 50%;
  3199. background: none;
  3200. border-radius: 1000px;
  3201. border: 1px solid #FFF;
  3202. z-index: 9;
  3203. cursor: pointer;
  3204. transition: all 0.3s ease;
  3205. &:hover {
  3206. background: rgba(0, 0, 0, 0.5);
  3207. }
  3208. &::after {
  3209. display: none; // Swiper 기본 화살표 숨김
  3210. }
  3211. svg {
  3212. width: 24px;
  3213. height: 24px;
  3214. fill: none;
  3215. pointer-events: none; // SVG가 클릭을 방해하지 않도록
  3216. }
  3217. }
  3218. .swiper-button-next {
  3219. right: 50%;
  3220. transform: translate(calc(1440px / 2), -50%);
  3221. }
  3222. .swiper-button-prev {
  3223. left: 50%;
  3224. transform: translate(calc(-1440px / 2), -50%);
  3225. }
  3226. // Pagination wrapper with progress and fractions
  3227. .swiper--pagination--wrapper {
  3228. position: absolute;
  3229. bottom: 20px;
  3230. left: 50%;
  3231. transform: translateX(-50%);
  3232. z-index: 9;
  3233. display: flex;
  3234. flex-direction: column;
  3235. align-items: center;
  3236. gap: 12px;
  3237. .swiper-pagination {
  3238. position: relative;
  3239. bottom: auto;
  3240. left: auto;
  3241. transform: none;
  3242. .swiper-pagination-bullet {
  3243. opacity: 1;
  3244. width: 12px;
  3245. height: 12px;
  3246. background: rgba(255, 255, 255, 0.5);
  3247. transition: all 0.3s ease;
  3248. &.swiper-pagination-bullet-active {
  3249. background: #fff;
  3250. }
  3251. }
  3252. }
  3253. .swiper--fraction {
  3254. display: flex;
  3255. align-items: center;
  3256. gap: 4px;
  3257. color: #fff;
  3258. font-size: 16px;
  3259. font-weight: 600;
  3260. .separator {
  3261. opacity: 0.7;
  3262. }
  3263. .total {
  3264. opacity: 0.7;
  3265. }
  3266. }
  3267. .swiper--progressbar {
  3268. width: 200px;
  3269. height: 3px;
  3270. background: rgba(255, 255, 255, 0.3);
  3271. border-radius: 10px;
  3272. overflow: hidden;
  3273. .swiper--progressbar-fill {
  3274. height: 100%;
  3275. background: #fff;
  3276. transition: width 0.3s ease;
  3277. border-radius: 10px;
  3278. }
  3279. }
  3280. }
  3281. // 기존 pagination (호환성 유지)
  3282. .swiper-pagination {
  3283. position: absolute;
  3284. bottom: 20px;
  3285. z-index: 8;
  3286. .swiper-pagination-bullet {
  3287. opacity: 1;
  3288. &.swiper-pagination-bullet-active {
  3289. background: #FFF;
  3290. }
  3291. width:12px;
  3292. height:12px;
  3293. background: rgba(255, 255, 255, 0.50);
  3294. }
  3295. }
  3296. .swiper--banner--section {
  3297. .swiper--container {
  3298. .swiper-wrapper {
  3299. .slide--image {
  3300. height: 550px;
  3301. position: relative;
  3302. img {
  3303. margin: 0 auto;
  3304. width: 100%;
  3305. height: 100%;
  3306. object-fit: cover;
  3307. }
  3308. // 확대 버튼
  3309. .zoom--btn {
  3310. position: absolute;
  3311. top: 20px;
  3312. right: 20px;
  3313. width: 50px;
  3314. height: 50px;
  3315. background: rgba(0, 0, 0, 0.5);
  3316. border: 1px solid rgba(255, 255, 255, 0.3);
  3317. border-radius: 50%;
  3318. display: flex;
  3319. align-items: center;
  3320. justify-content: center;
  3321. cursor: pointer;
  3322. z-index: 10;
  3323. transition: all 0.3s ease;
  3324. &:hover {
  3325. background: rgba(0, 0, 0, 0.7);
  3326. border-color: rgba(255, 255, 255, 0.6);
  3327. transform: scale(1.1);
  3328. }
  3329. svg {
  3330. width: 24px;
  3331. height: 24px;
  3332. }
  3333. }
  3334. .desc--wrapper {
  3335. position: absolute;
  3336. top: 100px;
  3337. left: 50%;
  3338. transform: translateX(-50%);
  3339. width: 100%;
  3340. display: flex;
  3341. align-items: center;
  3342. flex-direction: column;
  3343. h2 {
  3344. color: #FFF;
  3345. text-align: center;
  3346. font-size: 45px;
  3347. font-style: normal;
  3348. font-weight: 700;
  3349. line-height: 1.2;
  3350. text-transform: uppercase;
  3351. }
  3352. h3 {
  3353. color: #FFF;
  3354. text-align: center;
  3355. font-size: 20px;
  3356. font-style: normal;
  3357. font-weight: 400;
  3358. //line-height: 100%; /* 20px */
  3359. text-transform: uppercase;
  3360. margin-top: 25px;
  3361. }
  3362. .more--detail--href {
  3363. border-radius: 100px;
  3364. border: 1px solid #FFF;
  3365. color: #FFF;
  3366. text-align: center;
  3367. font-size: 15px;
  3368. font-style: normal;
  3369. font-weight: 700;
  3370. line-height: 100%;
  3371. /* 15px */
  3372. letter-spacing: -0.3px;
  3373. text-transform: uppercase;
  3374. padding: 18px 20px;
  3375. min-width: 150px;
  3376. }
  3377. }
  3378. }
  3379. }
  3380. }
  3381. }
  3382. }
  3383. }
  3384. .swiper--banner--wrapper2 {
  3385. width: 100%;
  3386. overflow: hidden;
  3387. border-radius: 30px;
  3388. max-height: 600px;
  3389. .swiper--banner--container {
  3390. position: relative;
  3391. .type--connection {
  3392. position: absolute;
  3393. top: 45px;
  3394. right: 45px;
  3395. z-index: 10;
  3396. &.exterior {
  3397. color: #FFF;
  3398. font-size: 14px;
  3399. font-style: normal;
  3400. font-weight: 700;
  3401. line-height: 100%;
  3402. /* 14px */
  3403. text-transform: uppercase;
  3404. border-radius: 1000px;
  3405. background: #076FED;
  3406. padding: 15px 20px;
  3407. gap: 10px;
  3408. display: flex;
  3409. align-items: center;
  3410. }
  3411. &.interior {
  3412. color: #FFF;
  3413. font-size: 14px;
  3414. font-style: normal;
  3415. font-weight: 700;
  3416. line-height: 100%;
  3417. /* 14px */
  3418. text-transform: uppercase;
  3419. border-radius: 1000px;
  3420. background: #0AF;
  3421. padding: 15px 20px;
  3422. gap: 10px;
  3423. display: flex;
  3424. align-items: center;
  3425. }
  3426. }
  3427. // Pagination wrapper with progress and fractions
  3428. .swiper--pagination--wrapper {
  3429. position: absolute;
  3430. bottom: 65px;
  3431. right: 45px;
  3432. z-index: 9;
  3433. display: flex;
  3434. align-items: center;
  3435. gap: 12px;
  3436. .swiper-pagination {
  3437. display: none;
  3438. position: relative;
  3439. bottom: auto;
  3440. left: auto;
  3441. transform: none;
  3442. .swiper-pagination-bullet {
  3443. opacity: 1;
  3444. width: 12px;
  3445. height: 12px;
  3446. background: rgba(255, 255, 255, 0.5);
  3447. transition: all 0.3s ease;
  3448. &.swiper-pagination-bullet-active {
  3449. background: #fff;
  3450. }
  3451. }
  3452. }
  3453. .swiper--fraction {
  3454. display: flex;
  3455. align-items: center;
  3456. gap: 4px;
  3457. color: #fff;
  3458. font-size: 14px;
  3459. font-weight: 700;
  3460. .separator {
  3461. color: rgba(255, 255, 255, 0.60);
  3462. font-weight: 400;
  3463. }
  3464. .total {
  3465. color: rgba(255, 255, 255, 0.60);
  3466. font-weight: 400;
  3467. }
  3468. }
  3469. .swiper--progressbar {
  3470. width: 200px;
  3471. height: 3px;
  3472. background: rgba(255, 255, 255, 0.3);
  3473. border-radius: 10px;
  3474. overflow: hidden;
  3475. .swiper--progressbar-fill {
  3476. height: 100%;
  3477. background: #fff;
  3478. transition: width 0.3s ease;
  3479. border-radius: 10px;
  3480. }
  3481. }
  3482. }
  3483. .swiper--banner--section {
  3484. .swiper--container {
  3485. .swiper-wrapper {
  3486. .slide--image {
  3487. position: relative;
  3488. z-index: 1;
  3489. padding-top: 56.5%;
  3490. min-height: 600px;
  3491. >img {
  3492. position: absolute;
  3493. top: 0px;
  3494. width: 100%;
  3495. height: 100%;
  3496. z-index: 1;
  3497. object-fit: cover;
  3498. }
  3499. // 확대 버튼
  3500. .zoom--btn {
  3501. position: absolute;
  3502. bottom: 45px;
  3503. left: 45px;
  3504. display: flex;
  3505. height: 60px;
  3506. padding: 20px 25px;
  3507. justify-content: center;
  3508. align-items: center;
  3509. gap: 10px;
  3510. cursor: pointer;
  3511. z-index: 10;
  3512. transition: all 0.3s ease;
  3513. border-radius: 1000px;
  3514. border: 1px solid #FFF;
  3515. color: #FFF;
  3516. font-size: 14px;
  3517. font-style: normal;
  3518. font-weight: 400;
  3519. line-height: 100%;
  3520. /* 14px */
  3521. text-transform: capitalize;
  3522. svg {
  3523. width: 12px;
  3524. height: 12px;
  3525. }
  3526. }
  3527. .desc--wrapper {
  3528. position: absolute;
  3529. top: 0px;
  3530. left: 0px;
  3531. width: 100%;
  3532. height: 100%;
  3533. display: flex;
  3534. align-items: center;
  3535. justify-content: center;
  3536. flex-direction: column;
  3537. h2 {
  3538. color: #FFF;
  3539. text-align: center;
  3540. font-size: 45px;
  3541. font-style: normal;
  3542. font-weight: 700;
  3543. line-height: 100%;
  3544. /* 45px */
  3545. text-transform: uppercase;
  3546. }
  3547. h3 {
  3548. color: #FFF;
  3549. text-align: center;
  3550. font-size: 20px;
  3551. font-style: normal;
  3552. font-weight: 400;
  3553. line-height: 100%;
  3554. /* 20px */
  3555. text-transform: uppercase;
  3556. margin-top: 25px;
  3557. }
  3558. .more--detail--href {
  3559. border-radius: 100px;
  3560. border: 1px solid #FFF;
  3561. color: #FFF;
  3562. text-align: center;
  3563. font-size: 15px;
  3564. font-style: normal;
  3565. font-weight: 700;
  3566. line-height: 100%;
  3567. /* 15px */
  3568. letter-spacing: -0.3px;
  3569. text-transform: uppercase;
  3570. padding: 18px 20px;
  3571. min-width: 150px;
  3572. }
  3573. }
  3574. }
  3575. }
  3576. }
  3577. }
  3578. }
  3579. }
  3580. .swiper--banner--wrapper3 {
  3581. width: 100%;
  3582. overflow: hidden;
  3583. background: #111;
  3584. .top--text--wrap {
  3585. padding: 80px 0px;
  3586. h2 {
  3587. color: #FFF;
  3588. text-align: center;
  3589. font-size: 40px;
  3590. font-style: normal;
  3591. font-weight: 500;
  3592. line-height: 100%;
  3593. /* 40px */
  3594. text-transform: capitalize;
  3595. }
  3596. >div {
  3597. color: #FFF;
  3598. text-align: center;
  3599. font-size: 18px;
  3600. font-style: normal;
  3601. font-weight: 300;
  3602. line-height: 1.7;
  3603. text-transform: uppercase;
  3604. }
  3605. }
  3606. .swiper--banner--container {
  3607. position: relative;
  3608. .btn--actions {
  3609. display: flex;
  3610. position: absolute;
  3611. top: -27.5px;
  3612. right: 25px;
  3613. height: 55px;
  3614. justify-content: flex-end;
  3615. gap: 15px;
  3616. z-index: 10;
  3617. .swiper-button-next,
  3618. .swiper-button-prev {
  3619. margin-top: 0;
  3620. display: flex;
  3621. width: 55px;
  3622. height: 55px;
  3623. justify-content: center;
  3624. align-items: center;
  3625. flex-shrink: 0;
  3626. background: none;
  3627. border-radius: 1000px;
  3628. border: 0px;
  3629. background: #fff;
  3630. cursor: pointer;
  3631. transition: all 0.3s ease;
  3632. position: static;
  3633. &:hover {
  3634. background: rgba(0, 0, 0, 0.5);
  3635. }
  3636. &::after {
  3637. display: none; // Swiper 기본 화살표 숨김
  3638. }
  3639. svg {
  3640. width: 24px;
  3641. height: 24px;
  3642. fill: none;
  3643. pointer-events: none; // SVG가 클릭을 방해하지 않도록
  3644. }
  3645. }
  3646. }
  3647. // Pagination wrapper with progress and fractions
  3648. .swiper--pagination--wrapper {
  3649. position: absolute;
  3650. bottom: 20px;
  3651. left: 50%;
  3652. transform: translateX(-50%);
  3653. z-index: 9;
  3654. display: flex;
  3655. flex-direction: column;
  3656. align-items: center;
  3657. gap: 12px;
  3658. .swiper-pagination {
  3659. position: relative;
  3660. bottom: auto;
  3661. left: auto;
  3662. transform: none;
  3663. .swiper-pagination-bullet {
  3664. opacity: 1;
  3665. width: 12px;
  3666. height: 12px;
  3667. background: rgba(255, 255, 255, 0.5);
  3668. transition: all 0.3s ease;
  3669. &.swiper-pagination-bullet-active {
  3670. background: #fff;
  3671. }
  3672. }
  3673. }
  3674. }
  3675. // 기존 pagination (호환성 유지)
  3676. .swiper-pagination {
  3677. position: absolute;
  3678. bottom: 20px;
  3679. z-index: 9;
  3680. display: none;
  3681. .swiper-pagination-bullet {
  3682. opacity: 1;
  3683. &.swiper-pagination-bullet-active {
  3684. background: #FFF;
  3685. }
  3686. width:12px;
  3687. height:12px;
  3688. background: rgba(255, 255, 255, 0.50);
  3689. }
  3690. }
  3691. .swiper--banner--section {
  3692. .swiper--container {
  3693. .swiper-wrapper {
  3694. .slide--image {
  3695. position: relative;
  3696. img {
  3697. width: 100%;
  3698. margin: 0 auto;
  3699. object-fit: cover;
  3700. }
  3701. .desc--wrapper {
  3702. position: absolute;
  3703. bottom: 0;
  3704. width: 100%;
  3705. max-width: 1440px;
  3706. margin: 0 auto;
  3707. left: 50%;
  3708. transform: translateX(-50%);
  3709. background: rgba(0, 0, 0, 0.50);
  3710. .desc--wrap {
  3711. padding: 50px 60px;
  3712. align-self: stretch;
  3713. gap: 25px;
  3714. flex-direction: column;
  3715. display: flex;
  3716. position: relative;
  3717. height: 100%;
  3718. width: 100%;
  3719. }
  3720. h2 {
  3721. color: #FFF;
  3722. font-size: 22px;
  3723. font-style: normal;
  3724. font-weight: 500;
  3725. line-height: 100%;
  3726. /* 22px */
  3727. text-transform: uppercase;
  3728. }
  3729. h4 {
  3730. color: #FFF;
  3731. font-size: 17px;
  3732. font-style: normal;
  3733. font-weight: 400;
  3734. line-height: 1.9;
  3735. }
  3736. }
  3737. }
  3738. }
  3739. }
  3740. }
  3741. }
  3742. }
  3743. /* 차량 상세 정보 스팩 */
  3744. .trim--spec--wrap {
  3745. width: 100%;
  3746. max-width: 1440px;
  3747. margin: 0 auto;
  3748. ul {
  3749. display: flex;
  3750. width: 100%;
  3751. align-items: flex-start;
  3752. justify-content: center;
  3753. padding: 40px 0px;
  3754. border-radius: 30px;
  3755. background: #F9F9F9;
  3756. li {
  3757. width: calc(100% / 3);
  3758. display: flex;
  3759. flex-direction: column;
  3760. justify-content: center;
  3761. align-items: center;
  3762. border-right: 1px solid #DEDEDE;
  3763. padding: 15px 20px;
  3764. &:last-child {
  3765. border-right: 0px;
  3766. }
  3767. >span {
  3768. color: #000;
  3769. text-align: center;
  3770. font-size: 16px;
  3771. font-style: normal;
  3772. font-weight: 400;
  3773. line-height: 100%;
  3774. /* 16px */
  3775. text-transform: uppercase;
  3776. }
  3777. >div {
  3778. color: #000;
  3779. font-size: 22px;
  3780. font-style: normal;
  3781. font-weight: 700;
  3782. text-align: center;
  3783. //line-height: 100%; /* 22px */
  3784. flex-wrap: wrap;
  3785. //text-transform: uppercase;
  3786. justify-content: center;
  3787. display: flex;
  3788. align-items: center;
  3789. margin-top: 25px;
  3790. >u {
  3791. text-decoration: none;
  3792. color: #000;
  3793. font-size: 16px;
  3794. font-style: normal;
  3795. font-weight: 500;
  3796. line-height: 1.3;
  3797. text-align: left;
  3798. width: 90px;
  3799. margin-right: 20px;
  3800. display: flex;
  3801. align-items: center;
  3802. }
  3803. >i {
  3804. margin: 0 5px;
  3805. text-transform: lowercase;
  3806. color: #000;
  3807. text-align: center;
  3808. font-size: 22px;
  3809. font-style: normal;
  3810. font-weight: 700;
  3811. line-height: 100%;
  3812. /* 22px */
  3813. }
  3814. span {
  3815. display: inline-flex;
  3816. width: 1px;
  3817. height: 18px;
  3818. background: #CACACA;
  3819. margin: 0 10px;
  3820. }
  3821. em {
  3822. font-style: normal;
  3823. color: #000;
  3824. font-size: 16px;
  3825. font-style: normal;
  3826. font-weight: 400;
  3827. line-height: 100%;
  3828. /* 16px */
  3829. text-transform: uppercase;
  3830. margin-left: 5px;
  3831. position: relative;
  3832. i {
  3833. font-style: normal;
  3834. color: #076FED;
  3835. font-size: 12px;
  3836. font-style: normal;
  3837. font-weight: 700;
  3838. line-height: 100%;
  3839. /* 12px */
  3840. text-transform: uppercase;
  3841. position: absolute;
  3842. top: -1px;
  3843. right: -10px;
  3844. }
  3845. }
  3846. }
  3847. }
  3848. }
  3849. }
  3850. .title--visual {
  3851. margin-top: 120px;
  3852. &.dark--type {
  3853. background: #FAFAFA;
  3854. margin-top: 0px;
  3855. padding: 80px 0px;
  3856. }
  3857. h2 {
  3858. color: #000;
  3859. text-align: center;
  3860. font-size: 45px;
  3861. font-style: normal;
  3862. font-weight: 500;
  3863. //line-height: 100%; /* 45px */
  3864. text-transform: capitalize;
  3865. span {
  3866. font-weight: 400;
  3867. }
  3868. &.side--title {
  3869. color: #111;
  3870. text-align: center;
  3871. font-size: 35px;
  3872. font-style: normal;
  3873. font-weight: 500;
  3874. //line-height: 100%; /* 30px */
  3875. text-transform: uppercase;
  3876. }
  3877. &.side--title2 {
  3878. color: #111;
  3879. text-align: center;
  3880. font-size: 25px;
  3881. font-style: normal;
  3882. font-weight: 500;
  3883. line-height: 100%;
  3884. /* 25px */
  3885. letter-spacing: -0.5px;
  3886. text-transform: uppercase;
  3887. }
  3888. &.side--title3 {
  3889. color: #000;
  3890. font-size: 30px;
  3891. font-weight: 700;
  3892. }
  3893. }
  3894. .middle--title {
  3895. color: #00095B;
  3896. text-align: center;
  3897. font-size: 20px;
  3898. font-style: normal;
  3899. font-weight: 500;
  3900. //line-height: 100%; /* 20px */
  3901. text-transform: uppercase;
  3902. margin-top: 40px;
  3903. }
  3904. .sub--title {
  3905. margin-top: 45px;
  3906. color: #222;
  3907. text-align: center;
  3908. font-size: 18px;
  3909. font-style: normal;
  3910. font-weight: 300;
  3911. line-height: 1.7;
  3912. // text-transform: uppercase;
  3913. }
  3914. .sub--title2 {
  3915. margin-top: 40px;
  3916. text-align: center;
  3917. color: #111;
  3918. font-size: 25px;
  3919. font-weight: 700;
  3920. @media(max-width: 1024px) {
  3921. margin-top: 20px;
  3922. font-size: 20px;
  3923. }
  3924. }
  3925. }
  3926. .models--visual--01 {
  3927. width: 100%;
  3928. max-width: 1440px;
  3929. margin: 0 auto;
  3930. overflow: hidden;
  3931. border-radius: 20px;
  3932. position: relative;
  3933. aspect-ratio: 1440 / 530; // 비율 유지
  3934. &.type--5 {
  3935. aspect-ratio: 1440 / 650; // 비율 유지
  3936. .thumb--wrap {
  3937. top: 0%;
  3938. }
  3939. }
  3940. &.type--4 {
  3941. aspect-ratio: 1440 / 530; // 비율 유지
  3942. .thumb--wrap {
  3943. top: 0%;
  3944. img {
  3945. width: 100%;
  3946. height: 100%;
  3947. max-height: 530px;
  3948. }
  3949. }
  3950. }
  3951. &.type--3 {
  3952. aspect-ratio: 1440 / 530; // 비율 유지
  3953. .thumb--wrap {
  3954. top: 0%;
  3955. img {
  3956. width: 100%;
  3957. height: auto;
  3958. }
  3959. }
  3960. }
  3961. &.type--2 {
  3962. //aspect-ratio: 1440 / 650; // 비율 유지
  3963. .thumb--wrap {
  3964. top: -20%;
  3965. img {
  3966. width: 100%;
  3967. height: auto;
  3968. }
  3969. }
  3970. }
  3971. .thumb--wrap {
  3972. width: 100%;
  3973. height: 150%; // 높이를 늘려서 여유 공간 확보
  3974. position: relative;
  3975. top: -50%; // 위로 이동
  3976. img {
  3977. object-fit: cover;
  3978. object-position: center top; // 이미지 상단 기준으로 정렬
  3979. width: 100%;
  3980. height: 100%;
  3981. }
  3982. }
  3983. }
  3984. .car--price--small--pic--wrap {
  3985. >div {
  3986. h2 {
  3987. color: #000;
  3988. text-align: center;
  3989. font-size: 30px;
  3990. font-style: normal;
  3991. font-weight: 500;
  3992. line-height: 1.4;
  3993. text-transform: capitalize;
  3994. }
  3995. .car--list--wrap {
  3996. padding-top: 60px;
  3997. ;
  3998. ul {
  3999. display: flex;
  4000. align-items: flex-start;
  4001. justify-content: center;
  4002. gap: 100px;
  4003. li {
  4004. display: flex;
  4005. flex-direction: column;
  4006. align-items: center;
  4007. justify-content: flex-start;
  4008. text-align: center;
  4009. .desc--wrap {
  4010. padding-top: 30px;
  4011. h2 {
  4012. color: #00095B;
  4013. text-align: center;
  4014. font-size: 22px;
  4015. font-style: normal;
  4016. font-weight: 500;
  4017. //line-height: 100%; /* 22px */
  4018. text-transform: capitalize;
  4019. .trim--desc {
  4020. color: #00095B;
  4021. font-weight: 500;
  4022. font-size: 16px;
  4023. }
  4024. &.black {
  4025. color: #22292B;
  4026. font-weight: 700;
  4027. }
  4028. }
  4029. .price--wrap {
  4030. color: #000;
  4031. text-align: center;
  4032. font-size: 18px;
  4033. font-style: normal;
  4034. font-weight: 300;
  4035. // line-height: 100%; /* 18px */
  4036. text-transform: uppercase;
  4037. position: relative;
  4038. display: flex;
  4039. flex-wrap: wrap;
  4040. justify-content: center;
  4041. align-items: center;
  4042. margin-top: 25px;
  4043. &.flex--column {
  4044. flex-direction: column;
  4045. }
  4046. em {
  4047. color: #000;
  4048. font-size: 18px;
  4049. font-style: normal;
  4050. font-weight: 500;
  4051. line-height: 100%;
  4052. text-transform: uppercase;
  4053. position: relative;
  4054. margin-left: 3px;
  4055. i {
  4056. position: absolute;
  4057. top: -1px;
  4058. right: -10px;
  4059. color: #1700F4;
  4060. text-align: center;
  4061. font-size: 12px;
  4062. font-style: normal;
  4063. font-weight: 500;
  4064. line-height: 100%;
  4065. /* 12px */
  4066. text-transform: uppercase;
  4067. }
  4068. }
  4069. }
  4070. }
  4071. }
  4072. }
  4073. }
  4074. }
  4075. }
  4076. // Lightbox Styles
  4077. .lightbox--overlay {
  4078. position: fixed;
  4079. top: 0;
  4080. left: 0;
  4081. right: 0;
  4082. bottom: 0;
  4083. background: rgba(0, 0, 0, 0.95);
  4084. z-index: 10000;
  4085. display: flex;
  4086. align-items: center;
  4087. justify-content: center;
  4088. padding: 20px;
  4089. .lightbox--close {
  4090. position: absolute;
  4091. top: 20px;
  4092. right: 20px;
  4093. width: 50px;
  4094. height: 50px;
  4095. background: rgba(255, 255, 255, 0.1);
  4096. border: 1px solid rgba(255, 255, 255, 0.3);
  4097. border-radius: 50%;
  4098. display: flex;
  4099. align-items: center;
  4100. justify-content: center;
  4101. cursor: pointer;
  4102. z-index: 10001;
  4103. transition: all 0.3s ease;
  4104. &:hover {
  4105. background: rgba(255, 255, 255, 0.2);
  4106. transform: rotate(90deg);
  4107. }
  4108. svg {
  4109. width: 32px;
  4110. height: 32px;
  4111. }
  4112. }
  4113. .lightbox--prev,
  4114. .lightbox--next {
  4115. position: absolute;
  4116. top: 50%;
  4117. transform: translateY(-50%);
  4118. width: 60px;
  4119. height: 60px;
  4120. background: rgba(255, 255, 255, 0.1);
  4121. border: 1px solid rgba(255, 255, 255, 0.3);
  4122. border-radius: 50%;
  4123. display: flex;
  4124. align-items: center;
  4125. justify-content: center;
  4126. cursor: pointer;
  4127. z-index: 10001;
  4128. transition: all 0.3s ease;
  4129. &:hover {
  4130. background: rgba(255, 255, 255, 0.2);
  4131. transform: translateY(-50%) scale(1.1);
  4132. }
  4133. &:disabled {
  4134. opacity: 0.3;
  4135. cursor: not-allowed;
  4136. &:hover {
  4137. transform: translateY(-50%);
  4138. }
  4139. }
  4140. svg {
  4141. width: 40px;
  4142. height: 40px;
  4143. }
  4144. }
  4145. .lightbox--prev {
  4146. left: 20px;
  4147. }
  4148. .lightbox--next {
  4149. right: 20px;
  4150. }
  4151. .lightbox--content {
  4152. width: 100%;
  4153. height: 100%;
  4154. display: flex;
  4155. align-items: center;
  4156. justify-content: center;
  4157. position: relative;
  4158. .lightbox--swiper {
  4159. width: 100%;
  4160. height: 100%;
  4161. max-width: 90vw;
  4162. max-height: 90vh;
  4163. .swiper-wrapper {
  4164. .swiper-slide {
  4165. display: flex;
  4166. align-items: center;
  4167. justify-content: center;
  4168. img {
  4169. max-width: 100%;
  4170. max-height: 90vh;
  4171. width: auto;
  4172. height: auto;
  4173. object-fit: contain;
  4174. border-radius: 8px;
  4175. }
  4176. }
  4177. }
  4178. }
  4179. .lightbox--info {
  4180. position: absolute;
  4181. bottom: 30px;
  4182. left: 50%;
  4183. transform: translateX(-50%);
  4184. z-index: 10001;
  4185. .lightbox--fraction {
  4186. display: flex;
  4187. align-items: center;
  4188. gap: 8px;
  4189. padding: 12px 24px;
  4190. background: rgba(0, 0, 0, 0.6);
  4191. border-radius: 30px;
  4192. color: #fff;
  4193. font-size: 18px;
  4194. font-weight: 600;
  4195. backdrop-filter: blur(10px);
  4196. }
  4197. }
  4198. }
  4199. }
  4200. // Lightbox Animation
  4201. .lightbox-fade-enter-active,
  4202. .lightbox-fade-leave-active {
  4203. transition: opacity 0.3s ease;
  4204. }
  4205. .lightbox-fade-enter-from,
  4206. .lightbox-fade-leave-to {
  4207. opacity: 0;
  4208. }
  4209. .caution--text--foot {
  4210. display: flex;
  4211. width: 100%;
  4212. gap: 10px;
  4213. background: #F7F7F7;
  4214. padding: 70px 0px;
  4215. .caution--text {
  4216. max-width: 1440px;
  4217. margin: 0 auto;
  4218. color: #000;
  4219. font-size: 17px;
  4220. font-style: normal;
  4221. font-weight: 300;
  4222. line-height: 1.8;
  4223. letter-spacing: -0.34px;
  4224. text-transform: uppercase;
  4225. }
  4226. }
  4227. // 반응형
  4228. @media (max-width: 768px) {
  4229. .swiper--banner--wrapper {
  4230. .swiper--banner--container {
  4231. .swiper--pagination--wrapper {
  4232. .swiper--progressbar {
  4233. width: 150px;
  4234. }
  4235. .swiper--fraction {
  4236. font-size: 14px;
  4237. }
  4238. }
  4239. .zoom--btn {
  4240. width: 40px;
  4241. height: 40px;
  4242. top: 10px;
  4243. right: 10px;
  4244. svg {
  4245. width: 20px;
  4246. height: 20px;
  4247. }
  4248. }
  4249. }
  4250. }
  4251. .lightbox--overlay {
  4252. .lightbox--prev,
  4253. .lightbox--next {
  4254. width: 50px;
  4255. height: 50px;
  4256. svg {
  4257. width: 30px;
  4258. height: 30px;
  4259. }
  4260. }
  4261. .lightbox--prev {
  4262. left: 10px;
  4263. }
  4264. .lightbox--next {
  4265. right: 10px;
  4266. }
  4267. .lightbox--content {
  4268. .lightbox--info {
  4269. bottom: 20px;
  4270. .lightbox--fraction {
  4271. font-size: 16px;
  4272. padding: 10px 20px;
  4273. }
  4274. }
  4275. }
  4276. }
  4277. }
  4278. .theme--wrap {
  4279. display: flex;
  4280. flex-direction: column;
  4281. margin: 0 auto;
  4282. max-width: 1440px;
  4283. align-items: center;
  4284. justify-content: center;
  4285. gap: 120px;
  4286. .theme--img {
  4287. >p {
  4288. margin-bottom: 35px;
  4289. color: #000;
  4290. font-size: 19px;
  4291. font-weight: 400;
  4292. text-align: center;
  4293. text-transform: capitalize;
  4294. @media(max-width: 500px) {
  4295. margin-bottom: 10px;
  4296. }
  4297. }
  4298. .img--wrap {
  4299. border-radius: 20px;
  4300. overflow: hidden;
  4301. img {
  4302. width: 100%;
  4303. }
  4304. }
  4305. }
  4306. .theme--top {
  4307. display: flex;
  4308. gap: 40px;
  4309. }
  4310. .theme--bot {
  4311. gap: 30px;
  4312. display: flex;
  4313. .theme--img {
  4314. border-radius: 20px;
  4315. overflow: hidden;
  4316. img {
  4317. width: 100%;
  4318. }
  4319. }
  4320. }
  4321. }
  4322. .gallery--wrap {
  4323. margin: 0 auto;
  4324. max-width: 1440px;
  4325. display: flex;
  4326. align-items: center;
  4327. justify-content: space-between;
  4328. .thumb--wrap {
  4329. // width:calc(50% - 20px);
  4330. width: 100%;
  4331. .slide--image {
  4332. padding-top: 0px !important;
  4333. }
  4334. }
  4335. }
  4336. .models--visual--grid {
  4337. width: 100%;
  4338. ul {
  4339. max-width: 1440px;
  4340. margin: 0 auto;
  4341. display: flex;
  4342. align-items: flex-start;
  4343. justify-content: center;
  4344. gap: 30px;
  4345. li {
  4346. width: calc((100% - 60px) / 3);
  4347. .desc--wrap {
  4348. padding-top: 50px;
  4349. h2 {
  4350. color: #111;
  4351. text-align: center;
  4352. font-size: 25px;
  4353. font-style: normal;
  4354. font-weight: 500;
  4355. line-height: 1.3;
  4356. //text-transform: uppercase;
  4357. }
  4358. .captions {
  4359. color: #222;
  4360. text-align: center;
  4361. font-size: 17px;
  4362. font-style: normal;
  4363. font-weight: 300;
  4364. line-height: 1.7;
  4365. //text-transform: uppercase;
  4366. margin-top: 40px;
  4367. }
  4368. }
  4369. .thumb--wrap {
  4370. position: relative;
  4371. aspect-ratio: 46/35;
  4372. overflow: hidden;
  4373. border-radius: 20px;
  4374. img {
  4375. width: 100%;
  4376. height: 100%;
  4377. position: absolute;
  4378. top: 50%;
  4379. transform: translateY(-50%);
  4380. object-fit: cover;
  4381. }
  4382. }
  4383. }
  4384. }
  4385. }
  4386. .ovwner--wrapper {
  4387. width: 100%;
  4388. max-width: 1440px;
  4389. margin: 0 auto;
  4390. padding-bottom: 120px;
  4391. &.type--2 {
  4392. max-width: 100%;
  4393. .inner--wrap {
  4394. max-width: 1440px;
  4395. margin: 0 auto;
  4396. }
  4397. }
  4398. .title--visual {
  4399. text-align: center;
  4400. .desc {
  4401. color: #333;
  4402. text-align: center;
  4403. font-size: 18px;
  4404. font-style: normal;
  4405. font-weight: 300;
  4406. line-height: 1.7;
  4407. /* 18px */
  4408. letter-spacing: -0.36px;
  4409. text-transform: uppercase;
  4410. &.type2 {
  4411. color: #00095b;
  4412. margin-top: 50px;
  4413. font-weight: 500;
  4414. font-size: 22px;
  4415. letter-spacing: -0.44px;
  4416. }
  4417. }
  4418. }
  4419. .nav--desc--wrap {
  4420. margin-top: 80px;
  4421. margin-bottom: 240px;
  4422. @media(max-width: 1024px) {
  4423. margin-bottom: 120px;
  4424. }
  4425. p {
  4426. color: #333;
  4427. font-size: 22px;
  4428. font-weight: 400;
  4429. @media(max-width: 1024px) {
  4430. font-size: 18px;
  4431. }
  4432. b {
  4433. font-weight: 700;
  4434. color: #00095b;
  4435. }
  4436. }
  4437. }
  4438. .contact--wrap {
  4439. display: flex;
  4440. justify-content: space-between;
  4441. gap: 50px;
  4442. text-align: center;
  4443. margin-top: 100px;
  4444. .contact {
  4445. background-color: #fafafa;
  4446. padding: 60px 20px 80px;
  4447. width: 33%;
  4448. display: flex;
  4449. flex-direction: column;
  4450. align-items: center;
  4451. .quick--more {
  4452. border-radius: 10px;
  4453. border: 1px solid rgba(0, 9, 91, 0.50);
  4454. display: inline-flex;
  4455. padding: 20px;
  4456. justify-content: center;
  4457. align-items: center;
  4458. gap: 10px;
  4459. color: #00095B;
  4460. text-align: center;
  4461. font-size: 14px;
  4462. font-style: normal;
  4463. font-weight: 500;
  4464. line-height: 100%;
  4465. /* 14px */
  4466. letter-spacing: -0.28px;
  4467. text-transform: uppercase;
  4468. }
  4469. .mailto--type {
  4470. font-size: 20px;
  4471. font-weight: 400;
  4472. color: #00095B;
  4473. @media(max-width: 768px) {
  4474. font-size: 18px;
  4475. }
  4476. }
  4477. .ico {
  4478. margin-bottom: 40px;
  4479. width: 100px;
  4480. height: 100px;
  4481. background-color: #f3f3f3;
  4482. border-radius: 50%;
  4483. background-image: url(/img/ico--contact1.svg);
  4484. }
  4485. &:nth-of-type(2) {
  4486. .ico {
  4487. background-image: url(/img/ico--contact2.svg);
  4488. }
  4489. }
  4490. &:nth-of-type(3) {
  4491. .ico {
  4492. background-image: url(/img/ico--contact4.svg);
  4493. }
  4494. }
  4495. }
  4496. h3 {
  4497. color: #000;
  4498. font-size: 18px;
  4499. letter-spacing: -0.36px;
  4500. margin-bottom: 30px;
  4501. font-weight: 500;
  4502. }
  4503. span {
  4504. margin-bottom: 30px;
  4505. font-size: 20px;
  4506. font-weight: 500;
  4507. letter-spacing: -0.4px;
  4508. color: #00095b;
  4509. }
  4510. p {
  4511. color: #333;
  4512. font-size: 16px;
  4513. font-weight: 400;
  4514. letter-spacing: -0.32px;
  4515. }
  4516. }
  4517. .contact--wrap2 {
  4518. margin-top: 100px;
  4519. display: flex;
  4520. gap: 50px;
  4521. .contact {
  4522. width: 33%;
  4523. display: flex;
  4524. padding: 60px 35px;
  4525. align-items: center;
  4526. background-color: #fafafa;
  4527. gap: 30px;
  4528. border-radius: 30px;
  4529. .ico {
  4530. min-width: 120px;
  4531. width: 120px;
  4532. height: 120px;
  4533. background-color: #fff;
  4534. border-radius: 50%;
  4535. background-image: url(/img/owner/ico--contact1.svg);
  4536. background-repeat: no-repeat;
  4537. background-position: center;
  4538. background-size: 55px 55px;
  4539. }
  4540. &:nth-child(2) {
  4541. .ico {
  4542. background-image: url(/img/owner/ico--contact2.svg);
  4543. }
  4544. }
  4545. &:nth-child(3) {
  4546. .ico {
  4547. background-image: url(/img/owner/ico--contact4.svg);
  4548. }
  4549. }
  4550. .info--wrap {
  4551. display: flex;
  4552. flex-direction: column;
  4553. gap: 20px;
  4554. .quick--more {
  4555. border-radius: 10px;
  4556. border: 1px solid rgba(34, 41, 43, 0.50);
  4557. display: inline-flex;
  4558. padding: 20px 25px;
  4559. justify-content: center;
  4560. align-items: center;
  4561. gap: 10px;
  4562. color: #22292B;
  4563. text-align: center;
  4564. font-size: 14px;
  4565. font-style: normal;
  4566. font-weight: 500;
  4567. line-height: 100%;
  4568. /* 14px */
  4569. letter-spacing: -0.28px;
  4570. text-transform: uppercase;
  4571. }
  4572. .mailto--type {
  4573. font-size: 16px;
  4574. color: #222;
  4575. }
  4576. >h3 {
  4577. color: #111;
  4578. font-size: 17px;
  4579. font-weight: 400;
  4580. line-height: 1;
  4581. }
  4582. >span {
  4583. font-size: 28px;
  4584. font-weight: 700;
  4585. color: #111;
  4586. line-height: 1;
  4587. }
  4588. >p {
  4589. color: #444;
  4590. font-size: 17px;
  4591. font-weight: 400;
  4592. }
  4593. }
  4594. }
  4595. }
  4596. .text--tab--layout {
  4597. position: sticky;
  4598. top: 0px;
  4599. z-index: 20;
  4600. ul {
  4601. display: flex;
  4602. align-items: center;
  4603. overflow-x: auto;
  4604. justify-content: flex-start;
  4605. gap: 15px;
  4606. li {
  4607. cursor: pointer;
  4608. &.actv {
  4609. a {
  4610. background-color: #000;
  4611. border-color: #000;
  4612. color: #fff;
  4613. }
  4614. }
  4615. a {
  4616. border-radius: 100px;
  4617. border: 1px solid #E8E8E8;
  4618. background: #FFF;
  4619. display: flex;
  4620. padding: 22px 30px;
  4621. align-items: center;
  4622. justify-content: center;
  4623. color: #444;
  4624. white-space: nowrap;
  4625. font-size: 16px;
  4626. font-style: normal;
  4627. font-weight: 400;
  4628. line-height: 100%;
  4629. /* 16px */
  4630. letter-spacing: -0.32px;
  4631. text-transform: uppercase;
  4632. }
  4633. }
  4634. }
  4635. }
  4636. .owner--inner--content {
  4637. .thumb {
  4638. img {
  4639. width: 100%;
  4640. object-fit: contain;
  4641. }
  4642. }
  4643. .desc--wrapper {
  4644. >h2 {
  4645. color: #111;
  4646. font-size: 30px;
  4647. font-style: normal;
  4648. font-weight: 500;
  4649. letter-spacing: -0.6px;
  4650. text-transform: uppercase;
  4651. }
  4652. >h3 {
  4653. color: #111;
  4654. font-size: 19px;
  4655. font-weight: 500;
  4656. letter-spacing: -0.38px;
  4657. }
  4658. .captions {
  4659. padding-top: 40px;
  4660. color: #333;
  4661. font-size: 18px;
  4662. font-style: normal;
  4663. font-weight: 300;
  4664. line-height: 1.7;
  4665. /* 18px */
  4666. letter-spacing: -0.36px;
  4667. text-transform: uppercase;
  4668. &.fz--17 {
  4669. font-size: 17px;
  4670. }
  4671. >h3 {
  4672. color: #111;
  4673. font-size: 18px;
  4674. font-style: normal;
  4675. font-weight: 400;
  4676. letter-spacing: -0.36px;
  4677. text-transform: uppercase;
  4678. }
  4679. >ul {
  4680. padding-top: 60px;
  4681. li {
  4682. position: relative;
  4683. color: #111;
  4684. font-size: 17px;
  4685. font-style: normal;
  4686. font-weight: 400;
  4687. //line-height: 100%; /* 17px */
  4688. line-height: 1.4;
  4689. letter-spacing: -0.34px;
  4690. text-transform: uppercase;
  4691. padding-left: 20px;
  4692. margin-bottom: 15px;
  4693. &:before {
  4694. content: '';
  4695. display: block;
  4696. width: 3px;
  4697. height: 3px;
  4698. background: #111;
  4699. position: absolute;
  4700. left: 10px;
  4701. top: 9px;
  4702. }
  4703. }
  4704. }
  4705. .add--text {
  4706. color: #333;
  4707. font-size: 18px;
  4708. font-style: normal;
  4709. font-weight: 300;
  4710. letter-spacing: -0.36px;
  4711. text-transform: uppercase;
  4712. padding-top: 60px;
  4713. }
  4714. }
  4715. }
  4716. }
  4717. .owner--part--wrap {
  4718. display: flex;
  4719. flex-direction: column;
  4720. margin-top: 150px;
  4721. gap: 50px;
  4722. .owner--part {
  4723. padding: 120px 100px;
  4724. background-color: #252525;
  4725. display: flex;
  4726. align-items: center;
  4727. gap: 100px;
  4728. .ico {
  4729. width: 200px;
  4730. background-size: 70px 70px;
  4731. min-width: 200px;
  4732. border-radius: 100px;
  4733. background-color: #fff;
  4734. height: 200px;
  4735. background-image: url(/img/owner/ico--parts1.svg);
  4736. }
  4737. &:nth-of-type(2) {
  4738. .ico {
  4739. background-image: url(/img/owner/ico--parts2.svg);
  4740. }
  4741. }
  4742. .part--content {
  4743. >h3 {
  4744. margin-bottom: 40px;
  4745. color: #fff;
  4746. font-size: 30px;
  4747. font-weight: 500;
  4748. letter-spacing: -0.6px;
  4749. }
  4750. >p {
  4751. color: #fff;
  4752. font-size: 17px;
  4753. font-weight: 300;
  4754. letter-spacing: -0.34px;
  4755. line-height: 1.7;
  4756. }
  4757. }
  4758. }
  4759. }
  4760. }
  4761. .nav--dis--wrap {
  4762. &.active {
  4763. .dis--cont {
  4764. max-height: 1000px;
  4765. }
  4766. .dis--btn {
  4767. .ico {
  4768. transform: rotate(0deg);
  4769. }
  4770. }
  4771. }
  4772. .dis--btn {
  4773. border-top: 1px solid #D3D3D3;
  4774. border-bottom: 1px solid #D3D3D3;
  4775. text-align: center;
  4776. display: flex;
  4777. align-items: center;
  4778. justify-content: center;
  4779. gap: 15px;
  4780. color: #076fed;
  4781. font-size: 16px;
  4782. cursor: pointer;
  4783. font-weight: 500;
  4784. text-transform: uppercase;
  4785. padding: 30px;
  4786. line-height: 1;
  4787. .ico {
  4788. width: 20px;
  4789. height: 20px;
  4790. transition: all 0.3s;
  4791. transform: rotate(180deg);
  4792. background-image: url(/img/owner/ico--arrow--blue.svg);
  4793. }
  4794. }
  4795. .dis--cont {
  4796. background-color: #f9f9f9;
  4797. color: #111;
  4798. max-height: 0;
  4799. overflow: hidden;
  4800. transition: max-height 0.3s;
  4801. font-size: 16px;
  4802. font-weight: 300;
  4803. p {
  4804. padding: 60px 0;
  4805. }
  4806. }
  4807. }
  4808. .consumable--parts--wrap {
  4809. .prm--service {
  4810. >h2 {
  4811. color: #111;
  4812. text-align: center;
  4813. font-size: 30px;
  4814. font-style: normal;
  4815. margin-bottom: 40px;
  4816. font-weight: 500;
  4817. //line-height: 100%; /* 30px */
  4818. letter-spacing: -0.6px;
  4819. text-transform: capitalize;
  4820. }
  4821. .sub--title {
  4822. color: #333;
  4823. text-align: center;
  4824. font-size: 18px;
  4825. font-style: normal;
  4826. font-weight: 300;
  4827. line-height: 1.7;
  4828. text-transform: uppercase;
  4829. }
  4830. .sub--list {
  4831. gap: 15px;
  4832. flex-direction: column;
  4833. align-items: center;
  4834. max-width: 1024px;
  4835. margin: 0 auto 70px;
  4836. >li {
  4837. width: 100%;
  4838. text-align: left;
  4839. color: #111;
  4840. align-items: start;
  4841. font-size: 17px;
  4842. font-weight: 300;
  4843. letter-spacing: -0.34px;
  4844. position: relative;
  4845. padding-left: 15px;
  4846. &::before {
  4847. position: absolute;
  4848. top: 10px;
  4849. left: 0;
  4850. background-color: #111;
  4851. content: '';
  4852. width: 3px;
  4853. height: 3px;
  4854. display: inline-block;
  4855. }
  4856. }
  4857. }
  4858. >ul {
  4859. display: flex;
  4860. align-items: flex-start;
  4861. justify-content: center;
  4862. padding-top: 70px;
  4863. >li {
  4864. width: calc(100% / 3);
  4865. display: flex;
  4866. align-items: center;
  4867. justify-content: center;
  4868. flex-direction: column;
  4869. .thumb {
  4870. width: 150px;
  4871. height: 150px;
  4872. display: flex;
  4873. align-items: center;
  4874. justify-content: center;
  4875. border-radius: 1000px;
  4876. background: #F6F6F6;
  4877. }
  4878. .captions {
  4879. color: #000;
  4880. text-align: center;
  4881. font-size: 17px;
  4882. font-style: normal;
  4883. font-weight: 300;
  4884. line-height: 1.7;
  4885. padding-top: 35px;
  4886. text-transform: uppercase;
  4887. }
  4888. }
  4889. }
  4890. }
  4891. .dbl--contents {
  4892. >ul {
  4893. display: flex;
  4894. align-items: flex-start;
  4895. justify-content: center;
  4896. gap: 50px;
  4897. li {
  4898. width: calc(50% - 25px);
  4899. .thumb {
  4900. overflow: hidden;
  4901. border-radius: 30px;
  4902. }
  4903. .desc--wrap {
  4904. h2 {
  4905. text-align: left;
  4906. color: #000;
  4907. font-size: 20px;
  4908. font-style: normal;
  4909. font-weight: 500;
  4910. //line-height: 100%; /* 20px */
  4911. text-transform: uppercase;
  4912. }
  4913. >ul {
  4914. width: 100%;
  4915. padding-top: 30px;
  4916. li {
  4917. position: relative;
  4918. text-align: left;
  4919. padding-left: 20px;
  4920. width: 100%;
  4921. margin-bottom: 10px;
  4922. color: #222;
  4923. font-size: 17px;
  4924. font-style: normal;
  4925. font-weight: 300;
  4926. line-height: 1.7;
  4927. /* 17px */
  4928. text-transform: uppercase;
  4929. &:before {
  4930. content: '';
  4931. display: block;
  4932. width: 3px;
  4933. height: 3px;
  4934. background-color: #000;
  4935. position: absolute;
  4936. left: 10px;
  4937. top: 12px;
  4938. }
  4939. }
  4940. }
  4941. }
  4942. }
  4943. }
  4944. }
  4945. .essential--maintenace--wrap {
  4946. background: #FAFAFA;
  4947. .inner--wrap {
  4948. .title--visual {
  4949. >h2 {
  4950. color: #111;
  4951. text-align: center;
  4952. font-size: 30px;
  4953. font-style: normal;
  4954. font-weight: 500;
  4955. //line-height: 100%; /* 30px */
  4956. letter-spacing: -0.6px;
  4957. text-transform: capitalize;
  4958. }
  4959. >.captions {
  4960. color: #333;
  4961. text-align: center;
  4962. font-size: 18px;
  4963. font-style: normal;
  4964. font-weight: 300;
  4965. line-height: 1.7;
  4966. text-transform: uppercase;
  4967. }
  4968. }
  4969. }
  4970. .columb--thume--3 {
  4971. >ul {
  4972. display: flex;
  4973. align-items: flex-start;
  4974. justify-content: center;
  4975. gap: 50px;
  4976. >li {
  4977. width: calc((100% - 100px) / 3);
  4978. text-align: center;
  4979. .thumb {
  4980. overflow: hidden;
  4981. border-radius: 30px;
  4982. }
  4983. .captions {
  4984. padding-top: 30px;
  4985. color: #000;
  4986. text-align: center;
  4987. font-size: 18px;
  4988. font-style: normal;
  4989. font-weight: 500;
  4990. //line-height: 100%; /* 18px */
  4991. text-transform: uppercase;
  4992. }
  4993. }
  4994. }
  4995. }
  4996. .column--3 {
  4997. >ul {
  4998. display: flex;
  4999. align-items: flex-start;
  5000. justify-content: center;
  5001. >li {
  5002. width: calc(100% / 3);
  5003. display: flex;
  5004. align-items: center;
  5005. justify-content: center;
  5006. flex-direction: column;
  5007. .thumb {
  5008. width: 150px;
  5009. height: 150px;
  5010. display: flex;
  5011. align-items: center;
  5012. justify-content: center;
  5013. border-radius: 1000px;
  5014. background: #F3F3F3;
  5015. }
  5016. .caption {
  5017. padding-top: 35px;
  5018. color: #000;
  5019. text-align: center;
  5020. font-size: 17px;
  5021. font-style: normal;
  5022. font-weight: 300;
  5023. //line-height: 100%; /* 17px */
  5024. }
  5025. }
  5026. }
  5027. }
  5028. }
  5029. .used--essential--wrap {
  5030. width: 100%;
  5031. margin: 0 auto;
  5032. max-width: 1440px;
  5033. padding-bottom: 150px;
  5034. .title--visual {
  5035. >h2 {
  5036. color: #111;
  5037. text-align: center;
  5038. font-size: 30px;
  5039. font-style: normal;
  5040. font-weight: 500;
  5041. //line-height: 100%; /* 30px */
  5042. letter-spacing: -0.6px;
  5043. text-transform: capitalize;
  5044. }
  5045. .captions {
  5046. color: #333;
  5047. text-align: center;
  5048. font-size: 18px;
  5049. font-style: normal;
  5050. font-weight: 300;
  5051. line-height: 1.7;
  5052. /* 18px */
  5053. text-transform: uppercase;
  5054. padding-top: 40px;
  5055. }
  5056. }
  5057. .column--3 {
  5058. padding-top: 70px;
  5059. >ul {
  5060. display: flex;
  5061. align-items: flex-start;
  5062. justify-content: center;
  5063. >li {
  5064. display: flex;
  5065. align-items: center;
  5066. justify-content: center;
  5067. flex-direction: column;
  5068. text-align: center;
  5069. width: calc(100% / 3);
  5070. .thumb {
  5071. width: 150px;
  5072. height: 150px;
  5073. border-radius: 1000px;
  5074. background: #F6F6F6;
  5075. display: flex;
  5076. align-items: center;
  5077. justify-content: center;
  5078. }
  5079. .caption {
  5080. padding-top: 35px;
  5081. color: #000;
  5082. text-align: center;
  5083. font-size: 17px;
  5084. font-style: normal;
  5085. font-weight: 300;
  5086. line-height: 1.7;
  5087. /* 17px */
  5088. text-transform: uppercase;
  5089. }
  5090. }
  5091. }
  5092. }
  5093. }
  5094. .column--4 {
  5095. >h2 {
  5096. color: #111;
  5097. text-align: center;
  5098. font-size: 30px;
  5099. font-style: normal;
  5100. font-weight: 700;
  5101. //line-height: 100%; /* 30px */
  5102. text-transform: uppercase;
  5103. }
  5104. >ul {
  5105. padding-top: 70px;
  5106. display: flex;
  5107. gap: 20px;
  5108. li {
  5109. width: calc((100% - 60px) / 3);
  5110. border-radius: 30px;
  5111. border: 1px solid #E0E0E0;
  5112. background: #FFF;
  5113. padding: 45px;
  5114. .thumb {
  5115. width: 56px;
  5116. height: 56px;
  5117. }
  5118. >h2 {
  5119. padding-top: 50px;
  5120. color: #000;
  5121. font-size: 20px;
  5122. font-style: normal;
  5123. font-weight: 500;
  5124. line-height: 1.7;
  5125. /* 20px */
  5126. letter-spacing: -0.4px;
  5127. text-transform: uppercase;
  5128. margin-bottom: 30px;
  5129. }
  5130. >div {
  5131. color: #000;
  5132. font-size: 16px;
  5133. font-style: normal;
  5134. font-weight: 300;
  5135. line-height: 1.7;
  5136. /* 16px */
  5137. letter-spacing: -0.32px;
  5138. text-transform: uppercase;
  5139. }
  5140. }
  5141. }
  5142. }
  5143. }
  5144. .service--card--wrap {
  5145. display: flex;
  5146. gap: 100px;
  5147. align-items: center;
  5148. .img--wrap {
  5149. width: 50%;
  5150. }
  5151. .desc--wrap {
  5152. width: 50%;
  5153. >h3 {
  5154. margin-bottom: 25px;
  5155. color: #000;
  5156. font-size: 30px;
  5157. font-weight: 500;
  5158. }
  5159. >p {
  5160. color: #000;
  5161. font-size: 18px;
  5162. font-weight: 400;
  5163. letter-spacing: -0.36px;
  5164. margin-bottom: 25px;
  5165. }
  5166. >ul {
  5167. display: flex;
  5168. flex-direction: column;
  5169. gap: 25px;
  5170. >li {
  5171. color: #222;
  5172. font-size: 17px;
  5173. font-weight: 300;
  5174. position: relative;
  5175. padding-left: 13px;
  5176. &::before {
  5177. top: 10px;
  5178. left: 0;
  5179. position: absolute;
  5180. content: '';
  5181. width: 3px;
  5182. height: 3px;
  5183. background-color: #595959;
  5184. display: inline-block;
  5185. }
  5186. }
  5187. }
  5188. }
  5189. }
  5190. .dbl--info--cont {
  5191. >ul {
  5192. display: flex;
  5193. gap: 50px;
  5194. >li {
  5195. background: #FAFAFA;
  5196. border-radius: 30px;
  5197. width: 100%;
  5198. max-width: calc((100% - 25px) / 2);
  5199. padding: 50px 70px;
  5200. display: flex;
  5201. align-items: center;
  5202. gap: 50px;
  5203. .thumb {
  5204. width: 100px;
  5205. height: 100px;
  5206. min-width: 100px;
  5207. border-radius: 100px;
  5208. background: #0AF;
  5209. display: inline-flex;
  5210. align-items: center;
  5211. justify-content: center;
  5212. }
  5213. .desc {
  5214. >h2 {
  5215. color: #111;
  5216. font-size: 20px;
  5217. font-style: normal;
  5218. font-weight: 700;
  5219. //line-height: 100%; /* 20px */
  5220. letter-spacing: -0.4px;
  5221. text-transform: uppercase;
  5222. margin-bottom: 24px;
  5223. }
  5224. .phone {
  5225. color: #00095B;
  5226. font-size: 20px;
  5227. font-style: normal;
  5228. font-weight: 700;
  5229. //line-height: 100%; /* 20px */
  5230. letter-spacing: -0.4px;
  5231. text-transform: uppercase;
  5232. }
  5233. }
  5234. }
  5235. }
  5236. }
  5237. .tfs--drop--menus {
  5238. >ul {
  5239. >li {
  5240. .title {
  5241. margin-top: -1px;
  5242. width: 100%;
  5243. display: flex;
  5244. align-items: center;
  5245. justify-content: flex-start;
  5246. font-weight: 700;
  5247. border-top: 1px solid #DBDBDB;
  5248. border-bottom: 1px solid #DBDBDB;
  5249. background: #F8F8F8;
  5250. padding: 32px 25px;
  5251. position: relative;
  5252. cursor: pointer;
  5253. &:after {
  5254. content: '';
  5255. display: block;
  5256. width: 24px;
  5257. height: 24px;
  5258. background: url(/img/ico--chv--down.svg) no-repeat center;
  5259. position: absolute;
  5260. top: 50%;
  5261. transform: translateY(-50%) rotate(180deg);
  5262. right: 25px;
  5263. }
  5264. }
  5265. &.open {
  5266. .title {
  5267. &:after {
  5268. transform: translateY(-50%) rotate(0deg);
  5269. }
  5270. }
  5271. .drop--contents {
  5272. display: block;
  5273. }
  5274. }
  5275. .drop--contents {
  5276. padding: 50px 25px;
  5277. display: none;
  5278. &.type2 {
  5279. padding: 50px;
  5280. }
  5281. h2 {
  5282. color: #111;
  5283. font-size: 18px;
  5284. font-style: normal;
  5285. font-weight: 500;
  5286. line-height: 100%;
  5287. /* 18px */
  5288. letter-spacing: -0.36px;
  5289. text-transform: uppercase;
  5290. margin-bottom: 20px;
  5291. position: relative;
  5292. padding-left: 20px;
  5293. &::before {
  5294. content: '';
  5295. display: block;
  5296. width: 3px;
  5297. height: 3px;
  5298. background-color: #111;
  5299. position: absolute;
  5300. top: 7px;
  5301. left: 10px;
  5302. }
  5303. }
  5304. h3 {
  5305. color: #111;
  5306. font-size: 18px;
  5307. font-style: normal;
  5308. font-weight: 500;
  5309. //line-height: 100%; /* 18px */
  5310. letter-spacing: -0.36px;
  5311. text-transform: uppercase;
  5312. margin-bottom: 20px;
  5313. }
  5314. ul {
  5315. >li {
  5316. color: #333;
  5317. font-size: 17px;
  5318. font-style: normal;
  5319. font-weight: 300;
  5320. //line-height: 100%; /* 17px */
  5321. letter-spacing: -0.34px;
  5322. text-transform: lowercase;
  5323. margin-bottom: 20px;
  5324. position: relative;
  5325. padding-left: 20px;
  5326. &:before {
  5327. content: '';
  5328. display: block;
  5329. width: 3px;
  5330. height: 3px;
  5331. background-color: #333;
  5332. position: absolute;
  5333. top: 10px;
  5334. left: 10px;
  5335. }
  5336. &:last-child {
  5337. margin-bottom: 0px;
  5338. }
  5339. }
  5340. }
  5341. div {
  5342. color: #333;
  5343. font-size: 17px;
  5344. font-style: normal;
  5345. font-weight: 300;
  5346. line-height: 1.7;
  5347. /* 17px */
  5348. letter-spacing: -0.34px;
  5349. text-transform: lowercase;
  5350. margin-bottom: 55px;
  5351. padding-left: 20px;
  5352. &.solo {
  5353. margin-bottom: 0px;
  5354. padding-left: 0px;
  5355. }
  5356. }
  5357. p {
  5358. color: #333;
  5359. font-size: 17px;
  5360. font-style: normal;
  5361. font-weight: 300;
  5362. line-height: 1.7;
  5363. letter-spacing: -0.34px;
  5364. text-transform: lowercase;
  5365. position: relative;
  5366. padding-left: 25px;
  5367. &:before {
  5368. content: '*';
  5369. display: block;
  5370. position: absolute;
  5371. left: 10px;
  5372. top: 2px;
  5373. }
  5374. }
  5375. .drop--part--wrap {
  5376. padding: 0;
  5377. margin-bottom: 0;
  5378. align-items: center;
  5379. display: flex;
  5380. gap: 55px;
  5381. .img--wrap {
  5382. width: 258px;
  5383. min-width: 258px;
  5384. padding: 0;
  5385. margin: 0;
  5386. }
  5387. .desc--wrap {
  5388. padding: 0;
  5389. margin: 0;
  5390. ul {
  5391. li {
  5392. color: #111;
  5393. line-height: 1.7;
  5394. &::before {
  5395. top: 12px;
  5396. }
  5397. }
  5398. }
  5399. }
  5400. }
  5401. }
  5402. }
  5403. }
  5404. }
  5405. /* 버튼 리스트 */
  5406. .location--btn {
  5407. color: #111;
  5408. font-size: 15px;
  5409. font-style: normal;
  5410. font-weight: 500;
  5411. line-height: 100%;
  5412. /* 15px */
  5413. letter-spacing: -0.3px;
  5414. text-transform: uppercase;
  5415. border-radius: 10px;
  5416. border: 1px solid rgba(0, 0, 0, 0.50);
  5417. display: inline-flex;
  5418. align-items: center;
  5419. border-radius: 10px;
  5420. justify-content: center;
  5421. padding: 13px 18px;
  5422. gap: 7px;
  5423. }
  5424. .sticky--banner {
  5425. position: sticky;
  5426. top: 0px;
  5427. z-index: 1;
  5428. }
  5429. .outer--wrapper {
  5430. position: relative;
  5431. z-index: 2;
  5432. background-color: #fff;
  5433. padding-top: 100px;
  5434. @media (max-width: 768px) {
  5435. padding-top: 50px;
  5436. }
  5437. }
  5438. .about--wrap {
  5439. .visual--banner--02 {
  5440. .thumb--wrap {
  5441. width: 100%;
  5442. display: flex;
  5443. align-items: flex-start;
  5444. gap: 50px;
  5445. row-gap: 120px;
  5446. flex-wrap: wrap;
  5447. @media (max-width: 768px) {
  5448. row-gap: 50px;
  5449. }
  5450. .thumb--item {
  5451. width: calc(50% - 25px);
  5452. @media (max-width: 768px) {
  5453. width: 100%;
  5454. }
  5455. .desc {
  5456. .t--title {
  5457. color: #000;
  5458. font-size: 20px;
  5459. font-style: normal;
  5460. font-weight: 500;
  5461. line-height: 100%;
  5462. /* 20px */
  5463. text-transform: uppercase;
  5464. padding-top: 30px;
  5465. }
  5466. .captions {
  5467. margin-top: 30px;
  5468. color: #222;
  5469. font-size: 17px;
  5470. font-style: normal;
  5471. font-weight: 300;
  5472. line-height: 1.7;
  5473. text-transform: uppercase;
  5474. }
  5475. }
  5476. .thumb {
  5477. border-radius: 30px;
  5478. overflow: hidden;
  5479. width: 100%;
  5480. img {
  5481. width: 100%;
  5482. height: 100%;
  5483. object-fit: cover;
  5484. }
  5485. }
  5486. }
  5487. }
  5488. }
  5489. .our--vision {
  5490. background: #FAFAFA;
  5491. padding-bottom: 150px;
  5492. @media (max-width:768px) {
  5493. padding-bottom: 50px;
  5494. }
  5495. .vision--wrap {
  5496. padding-top: 70px;
  5497. >ul {
  5498. max-width: 1440px;
  5499. display: flex;
  5500. margin: 0 auto;
  5501. gap: 50px;
  5502. row-gap: 50px;
  5503. li {
  5504. width: calc((100% - 150px) / 4);
  5505. @media(max-width:1440px) {
  5506. width: calc((100% - 50px) / 2);
  5507. }
  5508. text-align: center;
  5509. display: flex;
  5510. flex-direction: column;
  5511. justify-content: flex-start;
  5512. align-items: center;
  5513. .thumb {
  5514. border-radius: 1000px;
  5515. background: #F3F3F3;
  5516. width: 150px;
  5517. height: 150px;
  5518. display: flex;
  5519. align-items: center;
  5520. justify-content: center;
  5521. }
  5522. .desc {
  5523. padding-top: 40px;
  5524. h2 {
  5525. color: #000;
  5526. text-align: center;
  5527. font-size: 19px;
  5528. font-style: normal;
  5529. font-weight: 500;
  5530. line-height: 100%;
  5531. /* 19px */
  5532. text-transform: uppercase;
  5533. }
  5534. .captions {
  5535. color: #333;
  5536. text-align: center;
  5537. font-size: 16px;
  5538. font-style: normal;
  5539. font-weight: 300;
  5540. line-height: 1.7;
  5541. padding-top: 30px;
  5542. }
  5543. }
  5544. }
  5545. }
  5546. }
  5547. }
  5548. .strong--business {
  5549. text-align: center;
  5550. padding-bottom: 150px;
  5551. @media(max-width:768px) {
  5552. padding-bottom: 50px;
  5553. }
  5554. .invest--more--btn {
  5555. color: #FFF;
  5556. font-size: 16px;
  5557. font-style: normal;
  5558. font-weight: 500;
  5559. line-height: 100%;
  5560. /* 16px */
  5561. text-transform: capitalize;
  5562. display: inline-flex;
  5563. padding: 23px 40px;
  5564. justify-content: center;
  5565. align-items: center;
  5566. gap: 10px;
  5567. border-radius: 100px;
  5568. background: #0AF;
  5569. margin-top: 70px;
  5570. @media(max-width:768px) {
  5571. margin-top: 35px;
  5572. }
  5573. }
  5574. }
  5575. }
  5576. .grid--list--items {
  5577. display: flex;
  5578. flex-wrap: wrap;
  5579. gap: 60px;
  5580. .grid--items {
  5581. width: calc((100% - 120px) / 3);
  5582. border: 1px solid #E5E5E5;
  5583. background: #FFF;
  5584. display: flex;
  5585. padding: 70px 50px;
  5586. flex-direction: column;
  5587. align-items: center;
  5588. gap: 40px;
  5589. align-self: stretch;
  5590. .thumb {
  5591. border-radius: 1000px;
  5592. background: #F3F3F3;
  5593. width: 110px;
  5594. height: 110px;
  5595. border-radius: 110px;
  5596. display: flex;
  5597. align-items: center;
  5598. justify-content: center;
  5599. }
  5600. .desc {
  5601. >h2 {
  5602. color: #000;
  5603. text-align: center;
  5604. font-size: 22px;
  5605. font-style: normal;
  5606. font-weight: 700;
  5607. line-height: 100%;
  5608. /* 22px */
  5609. letter-spacing: -0.44px;
  5610. text-transform: capitalize;
  5611. }
  5612. >div {
  5613. color: #444;
  5614. text-align: center;
  5615. font-size: 16px;
  5616. font-style: normal;
  5617. font-weight: 400;
  5618. line-height: 1.7;
  5619. letter-spacing: -0.32px;
  5620. text-transform: capitalize;
  5621. margin-top: 25px;
  5622. }
  5623. }
  5624. }
  5625. }
  5626. .grid--banner--wrapper {
  5627. &.type--2 {
  5628. padding: 95px 60px;
  5629. .grid--items {
  5630. padding: 0px;
  5631. }
  5632. }
  5633. .grid--items {
  5634. display: flex;
  5635. align-items: center;
  5636. justify-content: center;
  5637. gap: 80px;
  5638. padding-top: 80px;
  5639. padding-bottom: 110px;
  5640. width: 100%;
  5641. @media(max-width:1024px) {
  5642. flex-direction: column;
  5643. .grid--desc {
  5644. max-width: 100% !important;
  5645. }
  5646. .grid--banner {
  5647. max-width: 100% !important;
  5648. min-width: 100% !important;
  5649. img {
  5650. width: 100%;
  5651. }
  5652. }
  5653. }
  5654. @media(max-width:1440px) {
  5655. padding-left: 0px;
  5656. padding-right: 0px;
  5657. }
  5658. &.dark {
  5659. background: #FAFAFA;
  5660. }
  5661. &.revers {
  5662. flex-direction: row-reverse;
  5663. @media(max-width:1024px) {
  5664. flex-direction: column;
  5665. }
  5666. }
  5667. @media(max-width:768px) {
  5668. gap: 40px;
  5669. }
  5670. .grid--banner {
  5671. max-width: 650px;
  5672. min-width: 650px;
  5673. }
  5674. .grid--desc {
  5675. max-width: 710px;
  5676. h2 {
  5677. color: #000;
  5678. font-size: 30px;
  5679. font-style: normal;
  5680. font-weight: 500;
  5681. line-height: 100%;
  5682. /* 30px */
  5683. text-transform: uppercase;
  5684. margin-bottom: 35px;
  5685. }
  5686. .captions {
  5687. color: #000;
  5688. font-size: 18px;
  5689. font-style: normal;
  5690. font-weight: 300;
  5691. line-height: 1.7;
  5692. white-space: normal;
  5693. text-transform: uppercase;
  5694. >ul {
  5695. >li {
  5696. color: #333;
  5697. font-size: 18px;
  5698. font-style: normal;
  5699. font-weight: 700;
  5700. //line-height: 100%; /* 18px */
  5701. text-transform: uppercase;
  5702. position: relative;
  5703. padding-left: 10px;
  5704. margin-bottom: 15px;
  5705. &.not--sq {
  5706. li {
  5707. color: #444;
  5708. font-size: 17px;
  5709. font-style: normal;
  5710. font-weight: 400;
  5711. //line-height: 100%; /* 17px */
  5712. text-transform: uppercase;
  5713. }
  5714. &::before {
  5715. display: none;
  5716. }
  5717. }
  5718. &:before {
  5719. content: '';
  5720. display: inline-flex;
  5721. width: 3px;
  5722. height: 3px;
  5723. background: #595959;
  5724. position: absolute;
  5725. left: 0px;
  5726. top: 10px;
  5727. }
  5728. }
  5729. }
  5730. }
  5731. .list--content {
  5732. >ul {
  5733. >li {
  5734. color: #444;
  5735. font-size: 18px;
  5736. font-style: normal;
  5737. font-weight: 400;
  5738. line-height: 1.5;
  5739. text-transform: lowercase;
  5740. margin-bottom: 10px;
  5741. position: relative;
  5742. display: flex;
  5743. align-items: center;
  5744. justify-content: flex-start;
  5745. padding-left: 10px;
  5746. &:before {
  5747. content: '';
  5748. display: inline-flex;
  5749. width: 3px;
  5750. height: 3px;
  5751. background: #595959;
  5752. position: absolute;
  5753. left: 0px;
  5754. top: 12px;
  5755. }
  5756. &:last-child {
  5757. margin-bottom: 0px;
  5758. }
  5759. }
  5760. }
  5761. }
  5762. }
  5763. }
  5764. }
  5765. .g-layout {
  5766. &.active {
  5767. position: relative;
  5768. z-index: 1100;
  5769. }
  5770. }
  5771. .owner--service {
  5772. display: flex;
  5773. align-items: center;
  5774. justify-content: center;
  5775. gap: 65px;
  5776. padding: 60px;
  5777. background: #FAFAFA;
  5778. .thumb {}
  5779. ;
  5780. .desc {
  5781. max-width: 580px;
  5782. h2 {
  5783. color: #111;
  5784. font-size: 30px;
  5785. font-style: normal;
  5786. font-weight: 700;
  5787. line-height: 100%;
  5788. /* 30px */
  5789. letter-spacing: -0.6px;
  5790. text-transform: uppercase;
  5791. }
  5792. >div {
  5793. color: #444;
  5794. font-size: 17px;
  5795. font-style: normal;
  5796. font-weight: 400;
  5797. line-height: 1.7;
  5798. letter-spacing: -0.34px;
  5799. margin-top: 20px;
  5800. }
  5801. }
  5802. }
  5803. .owner--list--content {
  5804. .title {
  5805. display: flex;
  5806. align-items: center;
  5807. justify-content: center;
  5808. h2 {
  5809. color: #222;
  5810. text-align: center;
  5811. font-size: 35px;
  5812. font-style: normal;
  5813. font-weight: 700;
  5814. //line-height: 100%; /* 35px */
  5815. letter-spacing: -0.7px;
  5816. text-transform: uppercase;
  5817. }
  5818. }
  5819. .list--content {
  5820. display: flex;
  5821. align-items: flex-start;
  5822. justify-content: space-between;
  5823. padding-top: 70px;
  5824. gap: 80px;
  5825. >ul {
  5826. width: calc((100% - 160px) / 3);
  5827. @media(max-width:1024px) {
  5828. width: 100%;
  5829. }
  5830. >li {
  5831. position: relative;
  5832. display: flex;
  5833. align-items: center;
  5834. justify-content: flex-start;
  5835. gap: 10px;
  5836. margin-bottom: 15px;
  5837. &:last-child {
  5838. margin-bottom: 0px;
  5839. }
  5840. &:before {
  5841. content: '';
  5842. width: 3px;
  5843. height: 3px;
  5844. display: inline-flex;
  5845. background: #595959;
  5846. }
  5847. }
  5848. }
  5849. }
  5850. }
  5851. .outer--desc {
  5852. padding-top: 70px;
  5853. >ul {
  5854. >li {
  5855. position: relative;
  5856. color: #444;
  5857. font-size: 18px;
  5858. font-style: normal;
  5859. font-weight: 400;
  5860. //line-height: 100%; /* 18px */
  5861. text-transform: lowercase;
  5862. padding-left: 10px;
  5863. margin-bottom: 40px;
  5864. &:last-child {
  5865. margin-bottom: 0px;
  5866. }
  5867. &:before {
  5868. content: '';
  5869. display: inline-flex;
  5870. width: 3px;
  5871. height: 3px;
  5872. background: #595959;
  5873. position: absolute;
  5874. top: 8px;
  5875. left: 0px;
  5876. }
  5877. }
  5878. }
  5879. }
  5880. .column--caption3 {
  5881. max-width: 1440px;
  5882. margin: 0 auto;
  5883. display: flex;
  5884. align-items: flex-start;
  5885. justify-content: space-between;
  5886. >ul {
  5887. width: calc((100% - 160px) / 3);
  5888. >li {
  5889. position: relative;
  5890. padding-left: 12px;
  5891. margin-bottom: 20px;
  5892. &:last-child {
  5893. margin-bottom: 0px;
  5894. }
  5895. &.not--sq {
  5896. padding-left: 10px;
  5897. &::before {
  5898. display: none;
  5899. }
  5900. >ul {
  5901. li {
  5902. padding-left: 12px;
  5903. color: #444;
  5904. font-size: 17px;
  5905. font-style: normal;
  5906. font-weight: 400;
  5907. line-height: 1.7;
  5908. text-transform: uppercase;
  5909. position: relative;
  5910. &:before {
  5911. content: '-';
  5912. position: absolute;
  5913. top: -1px;
  5914. left: 0px;
  5915. }
  5916. }
  5917. }
  5918. }
  5919. &:before {
  5920. content: '';
  5921. display: block;
  5922. width: 3px;
  5923. height: 3px;
  5924. background: #595959;
  5925. position: absolute;
  5926. top: 9px;
  5927. left: 0px;
  5928. }
  5929. }
  5930. }
  5931. }
  5932. .inner--dbl--content {
  5933. padding-top: 50px;
  5934. >ul {
  5935. display: flex;
  5936. align-items: flex-start;
  5937. justify-content: center;
  5938. gap: 80px;
  5939. li {
  5940. .thumb {
  5941. border-radius: 20px;
  5942. border-radius: 20px;
  5943. border: 1px solid #D9D9D9;
  5944. background: #FFF;
  5945. overflow: hidden;
  5946. }
  5947. a {
  5948. margin-top: 30px;
  5949. display: inline-flex;
  5950. align-items: center;
  5951. justify-content: center;
  5952. height: 40px;
  5953. padding: 15px 20px;
  5954. justify-content: center;
  5955. align-items: center;
  5956. gap: 5px;
  5957. border-radius: 100px;
  5958. background: #111;
  5959. color: #FFF;
  5960. font-size: 14px;
  5961. font-style: normal;
  5962. font-weight: 700;
  5963. line-height: 100%;
  5964. /* 14px */
  5965. text-transform: capitalize;
  5966. }
  5967. }
  5968. }
  5969. }
  5970. // 전체 메뉴 (사이트맵)
  5971. .all--menu--wrapper {
  5972. position: fixed;
  5973. top: 0;
  5974. left: 0;
  5975. width: 100%;
  5976. background: #fff;
  5977. z-index: 1002;
  5978. transform: translateY(-100%);
  5979. transition: transform 0.4s ease;
  5980. overflow-y: auto;
  5981. &.active {
  5982. transform: translateY(0);
  5983. }
  5984. .close--btn {
  5985. position: absolute;
  5986. top: 25px;
  5987. right: 0px;
  5988. width: 40px;
  5989. height: 40px;
  5990. background: none;
  5991. border: none;
  5992. cursor: pointer;
  5993. z-index: 10;
  5994. svg {
  5995. width: 100%;
  5996. height: 100%;
  5997. }
  5998. }
  5999. .all--menu--inner {
  6000. max-width: 1440px;
  6001. margin: 0 auto;
  6002. position: relative;
  6003. padding: 35px 0 100px;
  6004. .main--menu--list {
  6005. display: flex;
  6006. gap: 60px;
  6007. li {
  6008. width: 20%;
  6009. h3 {
  6010. font-size: 16px;
  6011. font-weight: 700;
  6012. margin-bottom: 50px;
  6013. line-height: 1;
  6014. color: #00095B;
  6015. text-transform: uppercase;
  6016. }
  6017. }
  6018. }
  6019. .sitemap--list {
  6020. display: flex;
  6021. gap: 60px;
  6022. max-height: 60vh;
  6023. overflow-y: auto;
  6024. >ul {
  6025. width: 20%;
  6026. display: flex;
  6027. flex-direction: column;
  6028. gap: 20px;
  6029. li {
  6030. width: 100%;
  6031. display: flex;
  6032. &:first-child {
  6033. a {
  6034. padding-top: 0;
  6035. &::before {
  6036. top: 10px;
  6037. }
  6038. }
  6039. }
  6040. a {
  6041. padding-top: 15px;
  6042. color: #000;
  6043. font-size: 16px;
  6044. padding-left: 20px;
  6045. width: 100%;
  6046. font-weight: 500;
  6047. position: relative;
  6048. &::before {
  6049. position: absolute;
  6050. content: '';
  6051. display: inline-block;
  6052. width: 5px;
  6053. height: 5px;
  6054. background-color: #333;
  6055. top: 25px;
  6056. left: 0;
  6057. }
  6058. &.sub--type {
  6059. color: #444;
  6060. font-size: 15px;
  6061. padding: 0 20px;
  6062. font-weight: 400;
  6063. &::before {
  6064. display: none;
  6065. }
  6066. }
  6067. }
  6068. }
  6069. }
  6070. }
  6071. }
  6072. }
  6073. // 햄버거 버튼 active 상태 (X 모양)
  6074. .hmb--btn {
  6075. position: relative;
  6076. z-index: 1002;
  6077. svg line {
  6078. transition: all 0.3s ease;
  6079. }
  6080. &.active {
  6081. svg {
  6082. line:nth-child(1) {
  6083. transform: translateY(11px) rotate(45deg);
  6084. transform-origin: 20px 8px;
  6085. }
  6086. line:nth-child(2) {
  6087. opacity: 0;
  6088. }
  6089. line:nth-child(3) {
  6090. transform: translateY(-11px) rotate(-45deg);
  6091. transform-origin: 20px 30px;
  6092. }
  6093. }
  6094. }
  6095. }
  6096. // 모바일 메뉴
  6097. .mobile--menu--wrapper {
  6098. display: none;
  6099. position: fixed;
  6100. top: 0;
  6101. right: 0;
  6102. width: 100%;
  6103. height: 100vh;
  6104. background: #fff;
  6105. z-index: 999;
  6106. transform: translateX(100%);
  6107. transition: transform 0.4s ease;
  6108. overflow-y: auto;
  6109. &.active {
  6110. transform: translateX(0);
  6111. }
  6112. .mobile--menu--inner {
  6113. padding: 72px 20px 60px;
  6114. .mobile--menu--list {
  6115. >li {
  6116. &.active {
  6117. .menu--title {
  6118. span {
  6119. color: #076FED;
  6120. }
  6121. .arrow {
  6122. background-image: url(/img/ico--minus.svg);
  6123. }
  6124. }
  6125. .mobile--sub--menu {
  6126. max-height: 1000px;
  6127. padding: 25px 0;
  6128. border-bottom: 1px solid #b2b2b2;
  6129. }
  6130. }
  6131. .menu--title {
  6132. border-bottom: 1px solid #b2b2b2;
  6133. display: flex;
  6134. justify-content: space-between;
  6135. align-items: center;
  6136. padding: 30px 0;
  6137. cursor: pointer;
  6138. span {
  6139. font-size: 15px;
  6140. font-weight: 700;
  6141. color: #000;
  6142. text-transform: uppercase;
  6143. }
  6144. .arrow {
  6145. width: 22px;
  6146. height: 22px;
  6147. transition: all 0.3s;
  6148. background-image: url(/img/ico--plus.svg);
  6149. }
  6150. }
  6151. .mobile--sub--menu {
  6152. max-height: 0;
  6153. overflow: hidden;
  6154. transition: max-height 0.3s ease, padding 0.3s ease;
  6155. padding: 0;
  6156. display: flex;
  6157. flex-direction: column;
  6158. gap: 15px;
  6159. &.car--menu {
  6160. text-align: center;
  6161. flex-direction: row;
  6162. flex-wrap: wrap;
  6163. gap: 15px;
  6164. li {
  6165. width: calc((100% - 30px) / 3);
  6166. a {
  6167. display: flex;
  6168. flex-direction: column;
  6169. gap: 15px;
  6170. font-size: 14px;
  6171. color: #000;
  6172. font-weight: 400;
  6173. padding: 0;
  6174. }
  6175. }
  6176. }
  6177. li {
  6178. display: flex;
  6179. width: 100%;
  6180. &:first-child {
  6181. h4 {
  6182. margin-top: 0;
  6183. }
  6184. }
  6185. h4 {
  6186. padding-left: 20px;
  6187. position: relative;
  6188. font-size: 16px;
  6189. font-weight: 500;
  6190. margin-bottom: 5px;
  6191. margin-top: 20px;
  6192. >a {
  6193. color: #000;
  6194. font-size: 16px;
  6195. font-weight: 500;
  6196. }
  6197. &::before {
  6198. content: '';
  6199. position: absolute;
  6200. width: 5px;
  6201. top: 8px;
  6202. left: 0;
  6203. height: 5px;
  6204. background-color: #333;
  6205. }
  6206. }
  6207. a {
  6208. font-size: 15px;
  6209. width: 100%;
  6210. padding-left: 20px;
  6211. color: #444;
  6212. font-weight: 400;
  6213. &:hover {}
  6214. }
  6215. }
  6216. }
  6217. }
  6218. }
  6219. }
  6220. }
  6221. .text--justify--left {
  6222. text-align: left !important;
  6223. }
  6224. .text--center {
  6225. text-align: center !important;
  6226. }
  6227. .service--center--ford {
  6228. td {
  6229. text-align: left !important;
  6230. padding-left: 20px !important;
  6231. &.text--center,
  6232. &:last-child {
  6233. text-align: center !important;
  6234. &.text--justify--left {
  6235. text-align: left !important;
  6236. }
  6237. }
  6238. }
  6239. a {
  6240. display: inline-flex;
  6241. align-items: center;
  6242. justify-content: center;
  6243. border-radius: 50px;
  6244. background: #076FED;
  6245. color: #FFF;
  6246. height: 30px;
  6247. font-size: 13px;
  6248. font-style: normal;
  6249. font-weight: 500;
  6250. letter-spacing: -0.26px;
  6251. text-transform: uppercase;
  6252. padding: 0 16px;
  6253. gap: 9px;
  6254. &:before {
  6255. content: "";
  6256. width: 15px;
  6257. min-width: 15px;
  6258. height: 14px;
  6259. display: inline-flex;
  6260. background: url(/img/ico--res--service.svg);
  6261. background-size: contain;
  6262. position: relative;
  6263. top: -1px;
  6264. }
  6265. }
  6266. }
  6267. .admin--form--table{
  6268. width: 100%;
  6269. color: #666b75;
  6270. font-weight: 400;
  6271. font-size: 12px;
  6272. p{
  6273. color: #666b75;
  6274. font-weight: 400;
  6275. font-size: 12px;
  6276. }
  6277. tr{
  6278. border-top: 1px solid #F0F2F6;
  6279. &:last-child{
  6280. border-bottom: 1px solid #F0F2F6;
  6281. }
  6282. }
  6283. th{
  6284. padding: 20px 16px;
  6285. text-align: left;
  6286. color: #1a2b4a;
  6287. font-weight: 700;
  6288. font-size: 13px;
  6289. background-color: #F8f9fb;
  6290. .admin--required{
  6291. color: var(--admin-red);
  6292. }
  6293. }
  6294. td{
  6295. padding: 12px 16px;
  6296. .input--wrap{
  6297. display: flex;
  6298. align-items: center;
  6299. gap: 12px;
  6300. input, select{
  6301. width: 320px;
  6302. &[type=radio]{
  6303. width: auto;
  6304. }
  6305. &.w--full{
  6306. width: 100%;
  6307. }
  6308. &.w--120{
  6309. width: 120px;
  6310. }
  6311. &.w--160{
  6312. width: 160px;
  6313. }
  6314. &.w--200{
  6315. width: 200px;
  6316. }
  6317. &.w--240{
  6318. width: 240px;
  6319. }
  6320. &.w--300{
  6321. width: 300px;
  6322. }
  6323. }
  6324. }
  6325. }
  6326. }
  6327. .admin--form-section-title{
  6328. font-size: 15px;
  6329. font-weight: 700;
  6330. color: #1a2b4a;
  6331. margin: 28px 0 12px;
  6332. &:first-child{
  6333. margin-top: 0;
  6334. }
  6335. }
  6336. .admin--info--box,
  6337. .admin--inf--box{
  6338. background-color: #fff8de;
  6339. border-radius: 6px;
  6340. margin-top: 32px;
  6341. padding: 20px;
  6342. h3{
  6343. color: #e8b547;
  6344. font-size: 14px;
  6345. font-weight: 600;
  6346. letter-spacing: 0.55px;
  6347. margin-bottom: 10px;
  6348. }
  6349. ul{
  6350. li{
  6351. position: relative;
  6352. color: #1a2b4a;
  6353. font-size: 13px;
  6354. font-weight: 400;
  6355. padding-left: 14px;
  6356. &::before{
  6357. content: '';
  6358. position: absolute;
  6359. width: 4px;
  6360. height: 4px;
  6361. border-radius: 50%;
  6362. background-color: #1a2b4a;
  6363. left: 4px;
  6364. top: 8px;
  6365. }
  6366. }
  6367. }
  6368. }
  6369. .admin--inf--box{
  6370. margin-top: 16px;
  6371. background-color: #F8F9FB;
  6372. h3{
  6373. color: #666B75;
  6374. }
  6375. }
  6376. // 선상 & 낚시터 사진 추가
  6377. .onboard--photo-grid {
  6378. display: flex;
  6379. flex-wrap: wrap;
  6380. gap: 12px;
  6381. }
  6382. .onboard--photo-item {
  6383. position: relative;
  6384. width: 120px;
  6385. height: 120px;
  6386. border-radius: 8px;
  6387. overflow: hidden;
  6388. border: 1px solid #e8eaef;
  6389. }
  6390. .onboard--photo-item img {
  6391. width: 100%;
  6392. height: 100%;
  6393. object-fit: cover;
  6394. display: block;
  6395. }
  6396. .onboard--photo-remove {
  6397. position: absolute;
  6398. top: 4px;
  6399. right: 4px;
  6400. width: 22px;
  6401. height: 22px;
  6402. border: none;
  6403. border-radius: 50%;
  6404. background: rgba(0, 0, 0, 0.6);
  6405. cursor: pointer;
  6406. &::before{
  6407. content: '×';
  6408. top: -1px;
  6409. right: 6.5px;
  6410. position: absolute;
  6411. font-size: 15px;
  6412. color: #fff;
  6413. }
  6414. }
  6415. .onboard--photo-remove:hover {
  6416. background: rgba(0, 0, 0, 0.85);
  6417. }
  6418. .onboard--photo-badge {
  6419. position: absolute;
  6420. bottom: 4px;
  6421. left: 4px;
  6422. padding: 2px 8px;
  6423. border-radius: 4px;
  6424. background: var(--admin-red);
  6425. color: #fff;
  6426. font-size: 11px;
  6427. font-weight: 600;
  6428. }