admin.scss 120 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494
  1. @charset "UTF-8";
  2. @use "sass:math";
  3. @font-face {
  4. font-family: 'AudiType';
  5. src: url('/fonts/AudiTypeVF.woff2') format('woff2-variations');
  6. font-display: swap;
  7. font-style: normal;
  8. font-stretch: 130%;
  9. }
  10. // Utility classes for padding and margin (1-100)
  11. @for $i from 1 through 200 {
  12. // Padding
  13. .pt--#{$i} { padding-top: #{$i}px !important; }
  14. .pr--#{$i} { padding-right: #{$i}px !important; }
  15. .pb--#{$i} { padding-bottom: #{$i}px !important; }
  16. .pl--#{$i} { padding-left: #{$i}px !important; }
  17. .p--#{$i} { padding: #{$i}px !important; }
  18. // Margin
  19. .mt--#{$i} { margin-top: #{$i}px !important; }
  20. .mr--#{$i} { margin-right: #{$i}px !important; }
  21. .mb--#{$i} { margin-bottom: #{$i}px !important; }
  22. .ml--#{$i} { margin-left: #{$i}px !important; }
  23. .m--#{$i} { margin: #{$i}px !important; }
  24. @media (max-width: 720px) {
  25. .pt--#{$i} { padding-top: #{math.div($i, 2)}px !important; }
  26. .pr--#{$i} { padding-right: #{math.div($i, 2)}px !important; }
  27. .pb--#{$i} { padding-bottom: #{math.div($i, 2)}px !important; }
  28. .pl--#{$i} { padding-left: #{math.div($i, 2)}px !important; }
  29. .p--#{$i} { padding: #{math.div($i, 2)}px !important; }
  30. .mt--#{$i} { margin-top: #{math.div($i, 2)}px !important; }
  31. .mr--#{$i} { margin-right: #{math.div($i, 2)}px !important; }
  32. .mb--#{$i} { margin-bottom: #{math.div($i, 2)}px !important; }
  33. .ml--#{$i} { margin-left: #{math.div($i, 2)}px !important; }
  34. .m--#{$i} { margin: #{math.div($i, 2)}px !important; }
  35. }
  36. }
  37. @for $i from 14 through 40 {
  38. .ft--#{$i} {font-size : #{$i}px !important;}
  39. }
  40. html {
  41. scroll-behavior: smooth;
  42. }
  43. :root {
  44. --max-content-width: 1920px;
  45. --page-margin: 16px;
  46. @media (min-width: 375px) {
  47. --page-margin: 28px;
  48. }
  49. @media (min-width: 768px) {
  50. --page-margin: 40px;
  51. }
  52. @media (min-width: 1024px) {
  53. --page-margin: 60px;
  54. }
  55. @media (min-width: 1440px) {
  56. --page-margin: 96px;
  57. }
  58. @media (min-width: 1920px) {
  59. --page-margin: 96px;
  60. }
  61. @property --gradient-start {
  62. syntax: '<color>';
  63. initial-value: transparent;
  64. inherits: false;
  65. }
  66. @property --gradient-end {
  67. syntax: '<color>';
  68. initial-value: transparent;
  69. inherits: false;
  70. }
  71. --spacing-relative-2xs: 4px;
  72. --spacing-relative-xs: 8px;
  73. --spacing-relative-sm: 12px;
  74. --spacing-relative-md: 16px;
  75. --spacing-relative-lg: 24px;
  76. --spacing-relative-xl: 28px;
  77. --spacing-relative-2xl: 36px;
  78. --spacing-relative-3xl: 40px;
  79. --spacing-relative-4xl: 48px;
  80. --spacing-relative-5xl: 64px;
  81. --spacing-relative-6xl: 80px;
  82. --spacing-relative-7xl: 96px;
  83. --spacing-relative-8xl: 120px;
  84. @media (min-width: 768px) {
  85. --spacing-relative-3xl: 48px;
  86. --spacing-relative-4xl: 64px;
  87. --spacing-relative-5xl: 72px;
  88. --spacing-relative-6xl: 88px;
  89. --spacing-relative-7xl: 104px;
  90. --spacing-relative-8xl: 136px;
  91. }
  92. @media (min-width: 1024px) {
  93. --spacing-relative-2xl: 40px;
  94. --spacing-relative-3xl: 56px;
  95. --spacing-relative-4xl: 72px;
  96. --spacing-relative-5xl: 88px;
  97. --spacing-relative-6xl: 104px;
  98. --spacing-relative-7xl: 128px;
  99. --spacing-relative-8xl: 168px;
  100. }
  101. @media (min-width: 1440px) {
  102. --spacing-relative-xl: 32px;
  103. --spacing-relative-2xl: 56px;
  104. --spacing-relative-3xl: 72px;
  105. --spacing-relative-4xl: 88px;
  106. --spacing-relative-5xl: 104px;
  107. --spacing-relative-6xl: 120px;
  108. --spacing-relative-7xl: 160px;
  109. --spacing-relative-8xl: 216px;
  110. }
  111. @media (min-width: 1920px) {
  112. --spacing-relative-xl: 40px;
  113. --spacing-relative-2xl: 72px;
  114. --spacing-relative-3xl: 88px;
  115. --spacing-relative-4xl: 104px;
  116. --spacing-relative-5xl: 120px;
  117. --spacing-relative-6xl: 136px;
  118. --spacing-relative-7xl: 176px;
  119. --spacing-relative-8xl: 248px;
  120. }
  121. }
  122. //풀사이즈 레이아웃 구성
  123. .detail--container--full{
  124. max-width:1920px;
  125. margin:0 auto;
  126. .thumb--solo{
  127. overflow: hidden;
  128. border-radius: 20px;
  129. img{
  130. width:100%;
  131. max-width:100%;
  132. }
  133. }
  134. .inner--wrapper{
  135. padding:0 var(--spacing-relative-3xl);
  136. .service--detail{
  137. padding:45px 0px;
  138. h1{
  139. margin: 0 0 var(--spacing-relative-md) 0;
  140. color: rgb(252, 252, 253);
  141. letter-spacing: 0px;
  142. font-weight: 400;
  143. text-decoration: none;
  144. font-size: 28px;
  145. line-height: 40px;
  146. font-stretch: 130%;
  147. @media (min-width: 1024px) {
  148. font-size: 36px;
  149. line-height: 52px;
  150. }
  151. @media (min-width: 1440px) {
  152. font-size: 40px;
  153. line-height: 60px;
  154. }
  155. @media (min-width: 1920px) {
  156. font-size: 44px;
  157. line-height: 64px;
  158. }
  159. }
  160. h2{
  161. margin: 0 0 var(--spacing-relative-md) 0;
  162. color: rgb(252, 252, 253);
  163. font-family: AudiType, sans-serif;
  164. letter-spacing: 0px;
  165. font-weight: 400;
  166. text-decoration: none;
  167. font-size: 24px;
  168. line-height: 36px;
  169. font-stretch: 130%;
  170. &.middle{
  171. font-size:26px;
  172. }
  173. @media (min-width: 1024px) {
  174. font-size: 28px;
  175. line-height: 40px;
  176. }
  177. @media (min-width: 1440px) {
  178. font-size: 32px;
  179. line-height: 44px;
  180. }
  181. @media (min-width: 1920px) {
  182. font-size: 36px;
  183. line-height: 52px;
  184. }
  185. }
  186. h3{
  187. margin: 20px 0 var(--spacing-relative-md) 0;
  188. color: rgba(252, 252, 253, 0.7);
  189. letter-spacing: 0px;
  190. font-weight: 400;
  191. text-decoration: none;
  192. font-size: 16px;
  193. line-height: 24px;
  194. font-stretch: 105%;
  195. }
  196. >h4{
  197. margin: 0 0 var(--spacing-relative-md) 0;
  198. color: rgb(252, 252, 253);
  199. letter-spacing: 0px;
  200. font-weight: 400;
  201. text-decoration: none;
  202. font-size: 16px;
  203. line-height: 24px;
  204. font-stretch: 130%;
  205. @media (min-width: 1440px) {
  206. font-size: 18px;
  207. line-height: 28px;
  208. }
  209. @media (min-width: 1920px) {
  210. font-size: 20px;
  211. line-height: 32px;
  212. }
  213. }
  214. >p{
  215. margin: 0px;
  216. color: rgba(252, 252, 253, 0.7);
  217. letter-spacing: 0px;
  218. font-weight: 400;
  219. text-decoration: none;
  220. font-size: 16px;
  221. line-height: 24px;
  222. font-stretch: 105%;
  223. }
  224. .service--process--list{
  225. padding-top:80px;
  226. >li{
  227. position: relative;
  228. padding-left:20px;
  229. margin-bottom:80px;
  230. &.not--before{
  231. padding-left:0px;
  232. &::before{
  233. display: none;
  234. }
  235. }
  236. &::before{
  237. content: ">";
  238. display: block;
  239. width: 100%;
  240. height: 100%;
  241. background-size: contain;
  242. position: absolute;
  243. top: 0;
  244. left: 0;
  245. }
  246. >p{
  247. margin: 0 0 var(--spacing-relative-md) 0;
  248. color: rgba(252, 252, 253, 0.7);
  249. font-family: AudiType, sans-serif;
  250. letter-spacing: 0px;
  251. font-weight: 400;
  252. }
  253. }
  254. }
  255. .data--table--wrap{
  256. @media (min-width: 768px) {
  257. table tbody tr:first-child th,
  258. table tbody tr:first-child td {
  259. border-top: 1px solid rgb(255, 255, 255) !important;
  260. border-right-color: rgb(255, 255, 255) !important;
  261. border-bottom-color: rgb(255, 255, 255) !important;
  262. border-left-color: rgb(255, 255, 255) !important;
  263. }
  264. }
  265. table{
  266. display: block;
  267. width: 100%;
  268. border-spacing: 8px 0px;
  269. border-collapse: separate;
  270. @media (min-width: 768px) {
  271. width: 100%;
  272. }
  273. @media (min-width: 768px) {
  274. display: table;
  275. }
  276. tbody{
  277. @media (min-width: 768px) {
  278. display: table-row-group;
  279. thead{
  280. display: table-header-group;
  281. }
  282. }
  283. td{
  284. letter-spacing: 0px;
  285. font-weight: 400;
  286. text-decoration: none;
  287. font-size: 16px;
  288. line-height: 24px;
  289. font-stretch: 105%;
  290. color: rgba(252, 252, 253, 0.7);
  291. padding: 16px 4px 8px;
  292. vertical-align: top;
  293. display: table-cell;
  294. border-bottom: 1px solid rgb(252, 252, 253);
  295. @media (min-width: 768px) {
  296. padding: 12px 4px 24px;
  297. }
  298. &:not(:last-child) {
  299. margin-bottom: 4px;
  300. }
  301. }
  302. }
  303. }
  304. }
  305. .desc--caution--text{
  306. margin: 0px;
  307. color: rgba(252, 252, 253, 0.7);
  308. letter-spacing: 0px;
  309. font-weight: 400;
  310. text-decoration: none;
  311. font-size: 16px;
  312. line-height: 24px;
  313. font-stretch: 105%;
  314. }
  315. }
  316. }
  317. }
  318. /*=================================================
  319. |컴포넌트 별 css
  320. |START
  321. =================================================*/
  322. //풀사이즈 배너 텍스트1 형
  323. .img--section--full{
  324. width:100%;
  325. position: relative;
  326. &.mask--hidden{
  327. &:before{
  328. display: none;
  329. }
  330. }
  331. &[data-type="cover"] {
  332. >div {
  333. position: relative;
  334. overflow: hidden;
  335. &:nth-of-type(1){
  336. height:100vh;
  337. }
  338. }
  339. img{
  340. object-fit: cover;
  341. height:auto;
  342. position: absolute;
  343. top:50%;
  344. transform: translateY(-50%);
  345. }
  346. }
  347. &:before{
  348. content:'';
  349. display: block;
  350. width:100%;
  351. height:100%;
  352. position: absolute;
  353. z-index: 2;
  354. pointer-events: none;
  355. inset: 0px;
  356. z-index: 1;
  357. background: linear-gradient(rgba(0, 0, 0, 0) 46.66%, rgb(0, 0, 0) 100%);
  358. }
  359. img{
  360. width:100%;
  361. max-width:100%;
  362. height:100vh;
  363. }
  364. &[data-text-location="topright"]{
  365. &:before{
  366. background: linear-gradient(rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
  367. }
  368. .alt--text{
  369. bottom:auto;
  370. left:auto;
  371. right:0px;
  372. top:40px;
  373. }
  374. .sub--title{
  375. bottom:auto;
  376. left:auto;
  377. right:0px;
  378. top:90px;
  379. }
  380. .btn--wrapper{
  381. bottom:auto;
  382. left:auto;
  383. right:0px;
  384. top:150px;
  385. }
  386. }
  387. &[data-text-location="top"]{
  388. &:before{
  389. background: linear-gradient(rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
  390. }
  391. .alt--text{
  392. bottom:auto;
  393. top:40px;
  394. }
  395. .sub--title{
  396. bottom:auto;
  397. top:90px;
  398. }
  399. .btn--wrapper{
  400. bottom:auto;
  401. top:150px;
  402. }
  403. }
  404. &[data-text-location="topleft"]{
  405. }
  406. &[data-text-location="bottomleft"]{
  407. &:before{
  408. background: linear-gradient(rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
  409. }
  410. .alt--text{
  411. bottom:auto;
  412. top:40px;
  413. }
  414. .sub--title{
  415. bottom:auto;
  416. top:90px;
  417. }
  418. .btn--wrapper{
  419. bottom:auto;
  420. top:150px;
  421. }
  422. }
  423. &[data-text-location="bottomleft2"]{
  424. &:before{
  425. background: linear-gradient(rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
  426. }
  427. .alt--text{
  428. top:auto;
  429. bottom:120px;
  430. }
  431. .sub--title{
  432. top:auto;
  433. bottom:90px;
  434. }
  435. .btn--wrapper{
  436. top:auto;
  437. bottom:40px;
  438. .default--round--btn{
  439. background: rgb(101, 112, 129);
  440. color: rgb(252, 252, 253);
  441. box-shadow: rgba(101, 112, 129, 0) 0px 0px 0px 1px inset;
  442. transition-property: color, background, box-shadow;
  443. &:hover{
  444. background: rgb(44, 52, 63);
  445. color: rgb(252, 252, 253);
  446. box-shadow: rgba(219, 223, 230, 0.2) 0px 0px 0px 1px inset;
  447. }
  448. &.reverse{
  449. background-color: rgb(24, 29, 37);
  450. color: rgb(252, 252, 253);
  451. box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
  452. transition-property: color, box-shadow, background-color;
  453. &:hover{
  454. background-color: rgb(44, 52, 63);
  455. color: rgb(252, 252, 253);
  456. box-shadow: rgba(219, 223, 230, 0.2) 0px 0px 0px 1px inset;
  457. }
  458. }
  459. }
  460. }
  461. }
  462. .caution--text--small{
  463. margin: 0px;
  464. color: rgba(252, 252, 253, 0.7);
  465. letter-spacing: 0px;
  466. font-weight: 400;
  467. text-decoration: none;
  468. font-size: 12px;
  469. line-height: 20px;
  470. font-stretch: 105%;
  471. padding: 0 var(--page-margin) var(--spacing-relative-xl) var(--page-margin);
  472. @media (min-width: 768px) {
  473. background: transparent;
  474. pointer-events: auto;
  475. padding: var(--spacing-relative-lg) var(--page-margin) var(--spacing-relative-xl) var(--page-margin);
  476. }
  477. }
  478. .alt--text{
  479. color: rgb(252, 252, 253);
  480. letter-spacing: 0px;
  481. font-weight: 400;
  482. text-decoration: none;
  483. font-size: 28px;
  484. line-height: 40px;
  485. position: absolute;
  486. bottom:40px;
  487. left:0px;
  488. overflow: hidden;
  489. padding: 0 96px;
  490. white-space: pre-wrap;
  491. z-index: 2;
  492. }
  493. .sub--title{
  494. position: absolute;
  495. bottom:40px;
  496. left:0px;
  497. margin: 0px;
  498. color: rgb(252, 252, 253);
  499. letter-spacing: 0px;
  500. font-weight: 400;
  501. text-decoration: none;
  502. font-size: 16px;
  503. line-height: 24px;
  504. font-stretch: 130%;
  505. padding: 0 96px;
  506. z-index: 2;
  507. @media (min-width: 1440px) {
  508. font-size: 18px;
  509. line-height: 28px;
  510. }
  511. @media (min-width: 1920px) {
  512. font-size: 20px;
  513. line-height: 32px;
  514. }
  515. }
  516. .btn--wrapper{
  517. position: absolute;
  518. bottom:150px;
  519. left:0px;
  520. padding: 0 96px;
  521. z-index: 2;
  522. display: flex;
  523. gap:10px;
  524. }
  525. &.video{
  526. &[data-text-location="bottomleft2"]{
  527. &:before{
  528. background: linear-gradient(rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
  529. }
  530. .alt--text{
  531. top:auto;
  532. bottom:120px;
  533. }
  534. .sub--title{
  535. top:auto;
  536. bottom:90px;
  537. }
  538. .btn--wrapper{
  539. top:auto;
  540. bottom:40px;
  541. .default--round--btn{
  542. background: rgb(101, 112, 129);
  543. color: rgb(252, 252, 253);
  544. box-shadow: rgba(101, 112, 129, 0) 0px 0px 0px 1px inset;
  545. transition-property: color, background, box-shadow;
  546. &:hover{
  547. background: rgb(44, 52, 63);
  548. color: rgb(252, 252, 253);
  549. box-shadow: rgba(219, 223, 230, 0.2) 0px 0px 0px 1px inset;
  550. }
  551. &.reverse{
  552. background-color: rgb(24, 29, 37);
  553. color: rgb(252, 252, 253);
  554. box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
  555. transition-property: color, box-shadow, background-color;
  556. &:hover{
  557. background-color: rgb(44, 52, 63);
  558. color: rgb(252, 252, 253);
  559. box-shadow: rgba(219, 223, 230, 0.2) 0px 0px 0px 1px inset;
  560. }
  561. }
  562. }
  563. }
  564. }
  565. &[data-text-location="bottomleft"]{
  566. &:before{
  567. background: linear-gradient(rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
  568. }
  569. .alt--text{
  570. top:auto;
  571. bottom:330px;
  572. }
  573. .sub--title{
  574. top:auto;
  575. bottom:90px;
  576. }
  577. .btn--wrapper{
  578. top:auto;
  579. bottom:250px;
  580. .default--round--btn{
  581. background: rgb(101, 112, 129);
  582. color: rgb(252, 252, 253);
  583. box-shadow: rgba(101, 112, 129, 0) 0px 0px 0px 1px inset;
  584. transition-property: color, background, box-shadow;
  585. &:hover{
  586. background: rgb(44, 52, 63);
  587. color: rgb(252, 252, 253);
  588. box-shadow: rgba(219, 223, 230, 0.2) 0px 0px 0px 1px inset;
  589. }
  590. &.reverse{
  591. background-color: rgb(24, 29, 37);
  592. color: rgb(252, 252, 253);
  593. box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
  594. transition-property: color, box-shadow, background-color;
  595. &:hover{
  596. background-color: rgb(44, 52, 63);
  597. color: rgb(252, 252, 253);
  598. box-shadow: rgba(219, 223, 230, 0.2) 0px 0px 0px 1px inset;
  599. }
  600. }
  601. }
  602. }
  603. }
  604. }
  605. }
  606. //풀사이즈 패럴렉스 1형
  607. .prallax--banner--wrappers{
  608. width:100%;
  609. .prallax--banner--wrapper{
  610. position: relative;
  611. overflow: hidden;
  612. width:100%;
  613. height:1000px;
  614. .prallax--banner{
  615. width: 100%;
  616. height: 120%;
  617. transform: translate3d(0, 0, 0); // 초기값 GPU 레이어 생성
  618. -webkit-transform: translate3d(0, 0, 0);
  619. backface-visibility: hidden;
  620. -webkit-backface-visibility: hidden;
  621. //perspective: 1000px;
  622. //-webkit-perspective: 1000px;
  623. position: absolute;
  624. top: -17%;
  625. left: 50%;
  626. will-change: transform;
  627. backface-visibility: hidden;
  628. picture {
  629. width: 100%;
  630. height: 100%;
  631. display: block;
  632. }
  633. img {
  634. width: 100%;
  635. height: 100%;
  636. object-fit: cover;
  637. object-position: center;
  638. transform: translateZ(0); // GPU 가속
  639. -webkit-transform: translateZ(0);
  640. }
  641. }
  642. .text--box--wrapper{
  643. position: absolute;
  644. backface-visibility: hidden;
  645. -webkit-backface-visibility: hidden;
  646. width: 100%;
  647. top:147px;
  648. left: 0px;
  649. z-index: 1;
  650. will-change: transform, opacity;
  651. transform: translate3d(0, 0, 0); // 초기값 GPU 레이어 생성
  652. -webkit-transform: translate3d(0, 0, 0);
  653. display: flex;
  654. -webkit-box-pack: center;
  655. justify-content: center;
  656. transition: opacity 0.1s ease-out;
  657. perspective: 1000px;
  658. -webkit-perspective: 1000px;
  659. .text--container{
  660. max-width:50%;
  661. position: relative;
  662. box-sizing: border-box;
  663. background: linear-gradient(134deg, rgb(44, 52, 63) 0%, rgb(35, 42, 52) 100%);
  664. backdrop-filter: blur(60px);
  665. display: flex;
  666. flex-direction: column;
  667. gap: 24px;
  668. flex-shrink: 0;
  669. flex-basis: 86%;
  670. margin: 88px auto 0 auto;
  671. padding: 40px;
  672. border-radius: 20px;
  673. left: 4%;
  674. flex-basis: 44%;
  675. h2{
  676. margin: 0px;
  677. color: rgb(252, 252, 253);
  678. letter-spacing: 0px;
  679. font-weight: 400;
  680. text-decoration: none;
  681. font-size: 24px;
  682. line-height: 36px;
  683. font-stretch: 130%;
  684. }
  685. p{
  686. margin: 0px;
  687. color: rgba(252, 252, 253, 0.7);
  688. font-family: AudiType, sans-serif;
  689. letter-spacing: 0px;
  690. font-weight: 400;
  691. text-decoration: none;
  692. font-size: 16px;
  693. line-height: 24px;
  694. font-stretch: 105%;
  695. }
  696. a{
  697. transition-timing-function:
  698. cubic-bezier(0.75, 0.02, 0.5, 1);
  699. transition-duration: 250ms;
  700. transition-property: color, text-decoration-color;
  701. display: inline-flex ;
  702. -webkit-box-align: center;
  703. align-items: center;
  704. font-family: AudiType, sans-serif;
  705. letter-spacing: 0px;
  706. font-weight: 400;
  707. text-decoration: underline 1px rgb(252, 252, 253);
  708. font-size: 16px;
  709. line-height: 24px;
  710. font-stretch: 105%;
  711. color: rgb(252, 252, 253);
  712. box-sizing: border-box;
  713. text-underline-offset: 7px;
  714. padding-bottom: 2px;
  715. min-height: 24px;
  716. }
  717. }
  718. }
  719. }
  720. .caution--text{
  721. padding:0 var(--spacing-relative-3xl);
  722. margin: 0px;
  723. margin: var(--spacing-relative-md) 0 var(--spacing-relative-xl) 0;
  724. color: rgba(252, 252, 253, 0.7);
  725. letter-spacing: 0px;
  726. font-weight: 400;
  727. text-decoration: none;
  728. font-size: 14px;
  729. line-height: 24px;
  730. font-stretch: 105%;
  731. }
  732. }
  733. //Swiper 배너 컴포넌트 (30% + 70% 레이아웃)
  734. .swiper--banner--wrapper {
  735. width: 100%;
  736. padding: 40px 96px;
  737. &[data-fit="contain"]{
  738. .swiper--banner--container{
  739. .swiper--banner--section{
  740. .swiper--container{
  741. .swiper-slide{
  742. .slide--image{
  743. img{
  744. object-fit: contain;
  745. }
  746. }
  747. }
  748. }
  749. }
  750. }
  751. }
  752. &[data-type="vertical"]{
  753. padding:0px;
  754. .swiper--banner--container{
  755. flex-direction: column-reverse;
  756. height:auto;
  757. .swiper--controls--section{
  758. flex-direction: row-reverse;
  759. @media(min-width:768px){
  760. padding: 0px 96px;
  761. }
  762. @media(min-width:1024px){
  763. padding: 0px 96px;
  764. }
  765. @media(min-width:1440px){
  766. padding: 0px 96px;
  767. }
  768. @media(min-width:1920px){
  769. padding:24px 96px;
  770. }
  771. .text--content{
  772. width:100%;
  773. .main--title{
  774. margin: 0px;
  775. color: rgb(252, 252, 253);
  776. font-family: AudiType, sans-serif;
  777. letter-spacing: 0px;
  778. font-weight: 400;
  779. text-decoration: none;
  780. font-size: 20px;
  781. line-height: 32px;
  782. font-stretch: 130%;
  783. @media(min-width:1440px){
  784. font-size: 24px;
  785. line-height: 36px;
  786. }
  787. }
  788. .sub--title{
  789. margin: 0px;
  790. color: rgba(252, 252, 253, 0.7);
  791. letter-spacing: 0px;
  792. font-weight: 400;
  793. text-decoration: none;
  794. font-size: 16px;
  795. line-height: 24px;
  796. font-stretch: 105%;
  797. }
  798. }
  799. }
  800. > div{
  801. width:100%;
  802. max-height:100vh;
  803. .swiper--container {
  804. .swiper-slide {
  805. .slide--image {
  806. border-radius: 0px;
  807. }
  808. }
  809. }
  810. }
  811. }
  812. }
  813. .swiper--banner--container {
  814. max-width: 1920px;
  815. height: 70vh;
  816. margin: 0 auto;
  817. display: flex;
  818. min-height: 600px;
  819. // 30% 영역: 컨트롤 및 텍스트
  820. .swiper--controls--section {
  821. width: 30%;
  822. padding: 40px;
  823. display: flex;
  824. flex-direction: column;
  825. justify-content: flex-end;
  826. .controls--top {
  827. margin-bottom: 40px;
  828. .pagination--nav--wrapper {
  829. display: flex;
  830. align-items: flex-start;
  831. justify-content: flex-start;
  832. flex-direction: column;
  833. gap: 20px;
  834. .swiper-pagination {
  835. position: relative;
  836. width: auto;
  837. display: flex;
  838. justify-content: center;
  839. align-items: center;
  840. gap: 12px;
  841. .swiper-pagination-bullet {
  842. width: 24px;
  843. height: 24px;
  844. background: transparent;
  845. border-radius: 50%;
  846. color: rgba(255, 255, 255, 0.6);
  847. font-size: 14px;
  848. font-weight: 400;
  849. display: flex;
  850. align-items: center;
  851. justify-content: center;
  852. cursor: pointer;
  853. transition: all 0.3s ease;
  854. opacity: 1;
  855. margin:0px;
  856. &:hover {
  857. background:rgba(252,252,253,.3)!important;
  858. color: rgba(255, 255, 255, 0.8);
  859. }
  860. &.swiper-pagination-bullet-active {
  861. background: transparent;
  862. color: #fff;
  863. font-weight: 600;
  864. }
  865. }
  866. }
  867. .navigation--buttons {
  868. display: flex;
  869. align-items: center;
  870. justify-content: center;
  871. gap: 16px;
  872. .swiper-pagination{
  873. top:0px;
  874. bottom:0px;
  875. }
  876. .swiper-button-prev{
  877. background: url(/img/ico--back--s.svg) no-repeat center;
  878. }
  879. .swiper-button-next{
  880. background: url(/img/ico--forward--s.svg) no-repeat center;
  881. }
  882. .swiper-button-prev,
  883. .swiper-button-next {
  884. position: relative;
  885. width: 24px;
  886. height: 24px;
  887. border-radius: 50%;
  888. color: white;
  889. margin: 0;
  890. transition: all 0.3s ease;
  891. cursor: pointer;
  892. &:hover{
  893. background:rgba(252,252,253,.3) ;
  894. }
  895. &.swiper-button-disabled {
  896. opacity: 0.3;
  897. cursor: not-allowed;
  898. &:hover {
  899. transform: none;
  900. }
  901. }
  902. }
  903. }
  904. }
  905. }
  906. .text--content {
  907. text-align: center;
  908. height:60%;
  909. .text--slider {
  910. position: relative;
  911. overflow: hidden;
  912. height:100%;
  913. .text--slide {
  914. position: absolute;
  915. top: 0;
  916. left: 0;
  917. width: 100%;
  918. opacity: 0;
  919. transform: translateX(-100%);
  920. transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  921. text-align: left;
  922. visibility: hidden;
  923. &.active {
  924. opacity: 1;
  925. transform: translateX(0);
  926. visibility: visible;
  927. position: relative; // 활성 슬라이드는 relative로 높이 확보
  928. }
  929. // 이전 슬라이드는 오른쪽으로 사라짐
  930. &:not(.active) {
  931. transform: translateX(-100%);
  932. position: absolute; // 비활성 슬라이드는 absolute로 겹침
  933. }
  934. }
  935. }
  936. .main--title {
  937. margin:0px;
  938. color: rgb(252, 252, 253);
  939. letter-spacing: 0px;
  940. font-weight: 400;
  941. text-decoration: none;
  942. font-size: 20px;
  943. line-height: 32px;
  944. font-stretch: 130%;
  945. padding-bottom:12px;
  946. }
  947. .sub--title {
  948. margin: 0px;
  949. color: rgba(252, 252, 253, 0.7);
  950. letter-spacing: 0px;
  951. font-weight: 400;
  952. text-decoration: none;
  953. font-size: 16px;
  954. line-height: 24px;
  955. font-stretch: 105%;
  956. }
  957. .desc--title{
  958. margin-top:25px;
  959. color: rgba(252, 252, 253, 0.7);
  960. letter-spacing: 0px;
  961. font-weight: 400;
  962. text-decoration: none;
  963. font-size: 15px;
  964. line-height: 24px;
  965. font-stretch: 105%;
  966. }
  967. .caution--title{
  968. margin-top:25px;
  969. color: rgba(252, 252, 253, 0.7);
  970. letter-spacing: 0px;
  971. font-weight: 400;
  972. text-decoration: none;
  973. font-size: 12px;
  974. line-height: 24px;
  975. font-stretch: 105%;
  976. }
  977. .notice--text {
  978. margin-top: 40px;
  979. padding-top: 20px;
  980. // border-top: 1px solid rgba(255, 255, 255, 0.1);
  981. text-align: left;
  982. p {
  983. margin: 0;
  984. color: rgba(252, 252, 253, 0.5);
  985. font-size: 14px;
  986. line-height: 20px;
  987. font-style: italic;
  988. }
  989. }
  990. }
  991. }
  992. // 70% 영역: 단일 배너
  993. .swiper--banner--section {
  994. width: 70%;
  995. position: relative;
  996. overflow: hidden;
  997. .swiper--container {
  998. width: 100%;
  999. height: 100%;
  1000. .swiper-slide {
  1001. .slide--image {
  1002. width: 100%;
  1003. height: 100%;
  1004. border-radius: 20px;
  1005. overflow: hidden;
  1006. img {
  1007. width: 100%;
  1008. height: 100%;
  1009. max-height:100vh;
  1010. object-fit: cover;
  1011. object-position: center;
  1012. transition: transform 0.8s ease;
  1013. }
  1014. }
  1015. &.swiper-slide-active {
  1016. .slide--image img {
  1017. //transform: scale(1.02);
  1018. }
  1019. }
  1020. }
  1021. }
  1022. }
  1023. }
  1024. // 반응형 처리
  1025. @media (max-width: 1024px) {
  1026. .swiper--banner--container {
  1027. flex-direction: column;
  1028. .swiper--controls--section {
  1029. width: 100%;
  1030. order: 2;
  1031. padding: 30px 20px;
  1032. }
  1033. .swiper--banner--section {
  1034. width: 100%;
  1035. height: 400px;
  1036. order: 1;
  1037. }
  1038. }
  1039. }
  1040. @media (max-width: 768px) {
  1041. padding: 40px 0;
  1042. .swiper--banner--container {
  1043. .swiper--controls--section {
  1044. padding: 20px;
  1045. .text--content {
  1046. .text--slider {
  1047. height: 100px; // 모바일에서는 높이 조정
  1048. }
  1049. .main--title {
  1050. font-size: 24px;
  1051. line-height: 32px;
  1052. }
  1053. .sub--title {
  1054. font-size: 16px;
  1055. line-height: 22px;
  1056. }
  1057. }
  1058. }
  1059. .swiper--banner--section {
  1060. height: 300px;
  1061. }
  1062. }
  1063. }
  1064. }
  1065. .title--visual {
  1066. position: relative;
  1067. width: 100%;
  1068. overflow: hidden;
  1069. padding:40px 0px;
  1070. &[data-type="small"] {
  1071. .title--visual--wrapper{
  1072. max-width:100%;
  1073. padding:0px 96px;
  1074. .title--visual--content{
  1075. h2{
  1076. color: rgb(252, 252, 253);
  1077. letter-spacing: 0px;
  1078. font-weight: 400;
  1079. text-decoration: none;
  1080. font-size: 24px;
  1081. line-height: 36px;
  1082. font-stretch: 130%;
  1083. @media (max-width: 1024px) {
  1084. font-size: 20px;
  1085. line-height: 40px;
  1086. }
  1087. }
  1088. }
  1089. }
  1090. }
  1091. &[data-type="middle"] {
  1092. .title--visual--wrapper{
  1093. max-width:100%;
  1094. padding:0px 96px;
  1095. .title--visual--content{
  1096. h2{
  1097. color: rgb(252, 252, 253);
  1098. letter-spacing: 0px;
  1099. font-weight: 400;
  1100. text-decoration: none;
  1101. font-size: 24px;
  1102. line-height: 36px;
  1103. font-stretch: 130%;
  1104. @media (min-width: 1024px) {
  1105. font-size: 28px;
  1106. line-height: 40px;
  1107. }
  1108. @media (min-width: 1440px) {
  1109. font-size: 32px;
  1110. line-height: 44px;
  1111. }
  1112. @media (min-width: 1920px) {
  1113. font-size: 36px;
  1114. line-height: 52px;
  1115. }
  1116. }
  1117. }
  1118. }
  1119. }
  1120. &[data-type="middle2"] {
  1121. .title--visual--wrapper{
  1122. padding:0px 96px;
  1123. .title--visual--content{
  1124. h2{
  1125. color: rgb(252, 252, 253);
  1126. letter-spacing: 0px;
  1127. font-weight: 400;
  1128. text-decoration: none;
  1129. font-size: 24px;
  1130. line-height: 36px;
  1131. font-stretch: 130%;
  1132. @media (min-width: 1024px) {
  1133. font-size: 28px;
  1134. line-height: 40px;
  1135. }
  1136. @media (min-width: 1440px) {
  1137. font-size: 32px;
  1138. line-height: 44px;
  1139. }
  1140. @media (min-width: 1920px) {
  1141. font-size: 36px;
  1142. line-height: 52px;
  1143. }
  1144. }
  1145. }
  1146. }
  1147. }
  1148. // 테마별 스타일
  1149. &[data-theme="dark"] {
  1150. color: rgb(252, 252, 253);
  1151. .title--description {
  1152. color: rgba(252, 252, 253, 0.8);
  1153. }
  1154. }
  1155. &[data-theme="light"] {
  1156. background: rgb(252, 252, 253);
  1157. color: #000;
  1158. .title--description {
  1159. color: rgba(0, 0, 0, 0.7);
  1160. }
  1161. }
  1162. .title--visual--wrapper {
  1163. margin: 0 auto;
  1164. padding: 0 60px;
  1165. align-content: center;
  1166. box-sizing: content-box;
  1167. display: grid;
  1168. grid-template-columns: 100%;
  1169. padding-bottom: 0px;
  1170. padding-top: 0px;
  1171. @media (min-width:1920px){
  1172. margin: 0 auto;
  1173. max-width:1248px;
  1174. }
  1175. @media (max-width: 1024px) {
  1176. padding: 0 40px;
  1177. }
  1178. @media (max-width: 768px) {
  1179. padding: 0 20px;
  1180. }
  1181. }
  1182. .title--visual--content {
  1183. margin: 0 auto;
  1184. &[data-align="left"] {
  1185. margin-left: 0;
  1186. text-align: left;
  1187. .title--main{
  1188. text-align: left;
  1189. }
  1190. }
  1191. &[data-align="center"] {
  1192. text-align: center;
  1193. }
  1194. &[data-align="right"] {
  1195. margin-right: 0;
  1196. margin-left: auto;
  1197. text-align: right;
  1198. .title--main{
  1199. text-align: right;
  1200. }
  1201. }
  1202. // 애니메이션 상태
  1203. &[data-animated="true"] {
  1204. opacity: 0;
  1205. transform: translateY(40px);
  1206. transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  1207. &.visible {
  1208. opacity: 1;
  1209. transform: translateY(0);
  1210. }
  1211. }
  1212. }
  1213. .title--main {
  1214. margin: 0 0 24px 0;
  1215. color: rgb(252, 252, 253);
  1216. letter-spacing: 0px;
  1217. font-weight: 400;
  1218. text-decoration: none;
  1219. font-size: 36px;
  1220. line-height: 52px;
  1221. font-stretch: 130%;
  1222. overflow-wrap: break-word;
  1223. text-align: center;
  1224. @media (max-width: 1920px) {
  1225. font-size: 72px;
  1226. line-height: 100px;
  1227. }
  1228. @media (max-width: 1440px) {
  1229. font-size: 60px;
  1230. line-height: 84px;
  1231. }
  1232. @media (max-width: 1024px) {
  1233. font-size: 52px;
  1234. line-height: 76px;
  1235. }
  1236. @media (max-width: 768px) {
  1237. font-size: 44px;
  1238. line-height: 60px;
  1239. }
  1240. }
  1241. .sub--title{
  1242. margin: 0 0 var(--spacing-relative-md) 0;
  1243. color: rgb(252, 252, 253);
  1244. letter-spacing: 0px;
  1245. font-weight: 400;
  1246. text-decoration: none;
  1247. font-size: 16px;
  1248. line-height: 24px;
  1249. font-stretch: 130%;
  1250. display: flex;
  1251. padding-bottom:20px;
  1252. @media (min-width: 1440px) {
  1253. font-size: 18px;
  1254. line-height: 28px;
  1255. }
  1256. @media (min-width: 1920px) {
  1257. font-size: 20px;
  1258. line-height: 32px;
  1259. }
  1260. }
  1261. .title--description {
  1262. margin: 0;
  1263. color: rgba(252, 252, 253, 0.7);
  1264. letter-spacing: 0px;
  1265. font-weight: 400;
  1266. text-decoration: none;
  1267. font-size: 16px;
  1268. line-height: 24px;
  1269. font-stretch: 105%;
  1270. }
  1271. .title--additional {
  1272. margin-top: 40px;
  1273. @media (max-width: 768px) {
  1274. margin-top: 32px;
  1275. }
  1276. }
  1277. }
  1278. .caution--text--wrapper{
  1279. padding:120px 96px;
  1280. p{
  1281. margin: 0 0 26px 0;
  1282. color: rgba(252, 252, 253, 0.7);
  1283. font-family: AudiType, sans-serif;
  1284. letter-spacing: 0px;
  1285. font-weight: 400;
  1286. text-decoration: none;
  1287. font-size: 16px;
  1288. line-height: 24px;
  1289. font-stretch: 105%;
  1290. }
  1291. }
  1292. //좌우 2배열 배너
  1293. .grid--banner--type2{
  1294. width: 100%;
  1295. padding:0 var(--spacing-relative-3xl);
  1296. @media(min-width:1024px){
  1297. padding:0 var(--spacing-relative-xl);
  1298. }
  1299. @media(min-width:1440px){
  1300. padding:0 var(--spacing-relative-2xl);
  1301. }
  1302. @media(min-width:1920px){
  1303. padding:0 var(--spacing-relative-3xl);
  1304. }
  1305. >ul{
  1306. width:100%;
  1307. display: flex;
  1308. flex-wrap: wrap;
  1309. gap:16px;
  1310. >li{
  1311. width:calc( (100% - 16px)/2);
  1312. padding-bottom:40px;
  1313. @media(max-width:720px){
  1314. width:100%;
  1315. }
  1316. .thumb{
  1317. border-radius: 20px;
  1318. overflow: hidden;
  1319. img{
  1320. width: 100%;;
  1321. object-fit: cover;
  1322. }
  1323. }
  1324. .desc--wrapper{
  1325. @media screen and (min-width: 768px) {
  1326. padding-block-start: var(--spacing-relative-lg);
  1327. padding-inline-end: var(--spacing-relative-xl);
  1328. }
  1329. @media screen and (min-width: 1920px) {
  1330. padding-block-start: var(--spacing-relative-lg);
  1331. padding-inline-end: var(--spacing-relative-xl);
  1332. }
  1333. h2{
  1334. margin: 0px;
  1335. color: rgb(252, 252, 253);
  1336. letter-spacing: 0px;
  1337. font-weight: 400;
  1338. text-decoration: none;
  1339. font-size: 20px;
  1340. line-height: 32px;
  1341. font-stretch: 130%;
  1342. @media(min-width:1440px){
  1343. font-size: 24px;
  1344. line-height: 36px;
  1345. }
  1346. }
  1347. h3{
  1348. margin: var(--spacing-relative-xs) 0 0 0;
  1349. color: rgba(252, 252, 253, 0.7);
  1350. letter-spacing: 0px;
  1351. font-weight: 400;
  1352. text-decoration: none;
  1353. font-size: 16px;
  1354. line-height: 24px;
  1355. font-stretch: 105%;
  1356. }
  1357. }
  1358. }
  1359. }
  1360. }
  1361. .row--block--wrapper{
  1362. &[data-type-row="3"]{
  1363. >div{
  1364. >ul{
  1365. > li{
  1366. width:calc( (100% - 40px) / 3);
  1367. .thumb{
  1368. img{
  1369. width:100%;
  1370. object-fit: cover;
  1371. }
  1372. }
  1373. }
  1374. }
  1375. }
  1376. }
  1377. > div{
  1378. padding:0 var(--spacing-relative-3xl);
  1379. >ul {
  1380. display: flex;
  1381. flex-wrap: wrap;
  1382. gap:20px;
  1383. > li{
  1384. width:calc(50% - 10px);
  1385. padding-bottom:40px;
  1386. .thumb{
  1387. border-radius: 20px;
  1388. position: relative;
  1389. height:0px;
  1390. overflow: hidden;
  1391. padding-top:56.25%;
  1392. img{
  1393. position: absolute;
  1394. height:100%;
  1395. inset: 0px;
  1396. }
  1397. }
  1398. .desc--wrap{
  1399. @media screen and (min-width: 768px) {
  1400. padding-block-start: var(--spacing-relative-lg);
  1401. padding-inline-end: var(--spacing-relative-xl);
  1402. }
  1403. @media screen and (min-width: 1920px) {
  1404. padding-block-start: var(--spacing-relative-lg);
  1405. padding-inline-end: var(--spacing-relative-xl);
  1406. }
  1407. .title{
  1408. margin: 0px;
  1409. color: rgb(252, 252, 253);
  1410. letter-spacing: 0px;
  1411. font-weight: 400;
  1412. text-decoration: none;
  1413. font-size: 20px;
  1414. line-height: 32px;
  1415. font-stretch: 130%;
  1416. @media (min-width: 1440px) {
  1417. font-size: 24px;
  1418. line-height: 36px;
  1419. }
  1420. }
  1421. .captions{
  1422. margin: var(--spacing-relative-xs) 0 0 0;
  1423. color: rgba(252, 252, 253, 0.7);
  1424. letter-spacing: 0px;
  1425. font-weight: 400;
  1426. text-decoration: none;
  1427. font-size: 16px;
  1428. line-height: 24px;
  1429. font-stretch: 105%;
  1430. }
  1431. .small--text{
  1432. color: rgba(252, 252, 253, 0.7);
  1433. font-size:12px;
  1434. white-space: pre-line;
  1435. padding-top:20px;
  1436. }
  1437. .captions--text{
  1438. padding-top:30px;
  1439. font-weight: 400;
  1440. text-decoration: none;
  1441. font-size: 16px;
  1442. line-height: 24px;
  1443. font-stretch: 105%;
  1444. color: rgba(252, 252, 253, 0.7);
  1445. }
  1446. }
  1447. }
  1448. }
  1449. }
  1450. }
  1451. // FAQ Accordion Styles
  1452. .faq--accordion--wrapper {
  1453. max-width: 1920px;
  1454. margin: 0 auto;
  1455. padding: 40px 96px;
  1456. @media (max-width: 1024px) {
  1457. padding: 32px 60px;
  1458. }
  1459. @media (max-width: 768px) {
  1460. padding: 24px 40px;
  1461. }
  1462. @media (max-width: 375px) {
  1463. padding: 20px 28px;
  1464. }
  1465. }
  1466. .faq--accordion--container {
  1467. display: flex;
  1468. flex-direction: column;
  1469. border-top: 1px solid rgba(101, 112, 129, 0.3);
  1470. }
  1471. .faq--accordion--item {
  1472. border-bottom: 1px solid rgba(101, 112, 129, 0.3);
  1473. }
  1474. .faq--accordion--header {
  1475. width: 100%;
  1476. display: flex;
  1477. justify-content: space-between;
  1478. align-items: center;
  1479. padding: 12px 0;
  1480. background: transparent;
  1481. border: none;
  1482. cursor: pointer;
  1483. transition: all 0.3s ease;
  1484. &:hover {
  1485. .faq--question {
  1486. color: rgba(252, 252, 253, 0.8);
  1487. }
  1488. }
  1489. &.active {
  1490. background-color: rgb(64, 74, 89);
  1491. color: rgba(252, 252, 253, 0.7);
  1492. .faq--question {
  1493. color: rgb(252, 252, 253);
  1494. font-weight: 500;
  1495. }
  1496. .faq--toggle--icon {
  1497. color: rgb(252, 252, 253);
  1498. }
  1499. }
  1500. }
  1501. .faq--question {
  1502. flex: 1;
  1503. text-align: left;
  1504. font-size: 18px;
  1505. line-height: 1.5;
  1506. color: rgba(252, 252, 253, 0.7);
  1507. transition: all 0.3s ease;
  1508. padding-right: 24px;
  1509. padding-left:20px;
  1510. @media (max-width: 768px) {
  1511. font-size: 16px;
  1512. }
  1513. }
  1514. .faq--toggle--icon {
  1515. font-size: 28px;
  1516. font-weight: 300;
  1517. color: rgba(252, 252, 253, 0.5);
  1518. transition: all 0.3s ease;
  1519. min-width: 32px;
  1520. text-align: center;
  1521. margin-right:20px;
  1522. }
  1523. .faq--accordion--content {
  1524. overflow: hidden;
  1525. animation: slideDown 0.3s ease;
  1526. }
  1527. .faq--answer {
  1528. padding: 20px 50px 32px 20px;
  1529. font-size: 16px;
  1530. line-height: 1.7;
  1531. color: rgba(252, 252, 253, 0.8);
  1532. @media (max-width: 768px) {
  1533. font-size: 14px;
  1534. padding: 0 0 24px 0;
  1535. }
  1536. }
  1537. @keyframes slideDown {
  1538. from {
  1539. opacity: 0;
  1540. transform: translateY(-10px);
  1541. }
  1542. to {
  1543. opacity: 1;
  1544. transform: translateY(0);
  1545. }
  1546. }
  1547. .etronms--thumb--wrap{
  1548. padding:0 var(--spacing-relative-3xl);
  1549. .thumb{
  1550. overflow: hidden;
  1551. border-radius: 20px;
  1552. }
  1553. .small--text{
  1554. margin: 0px;
  1555. color: rgb(255, 255, 255);
  1556. letter-spacing: 0px;
  1557. font-weight: 400;
  1558. text-decoration: none;
  1559. font-size: 12px;
  1560. line-height: 32px;
  1561. font-stretch: 130%;
  1562. }
  1563. .caution--text{
  1564. margin: 0 0 var(--spacing-relative-md) 0;
  1565. color: rgba(252, 252, 253, 0.7);
  1566. letter-spacing: 0px;
  1567. font-weight: 400;
  1568. text-decoration: none;
  1569. font-size: 16px;
  1570. line-height: 24px;
  1571. font-stretch: 105%;
  1572. }
  1573. .btn--wrapper{
  1574. display: flex;
  1575. align-items: center;
  1576. justify-content: center;
  1577. }
  1578. }
  1579. .etron--card{
  1580. padding:0 var(--spacing-relative-3xl);
  1581. > ul{
  1582. display: flex;
  1583. flex-wrap:wrap;
  1584. gap:20px;
  1585. li{
  1586. width:calc( (100% - 40px) / 3);
  1587. .thumb{
  1588. position: relative;
  1589. height: 0px;
  1590. overflow: hidden;
  1591. border-radius: 20px;
  1592. padding-top: 56.25%;
  1593. img{
  1594. position: absolute;
  1595. inset: 0px;
  1596. height: 100%;
  1597. }
  1598. }
  1599. .desc--wrap{
  1600. padding-top:30px;
  1601. h2{
  1602. margin: 0px;
  1603. color: rgb(252, 252, 253);
  1604. letter-spacing: 0px;
  1605. font-weight: 400;
  1606. text-decoration: none;
  1607. font-size: 20px;
  1608. line-height: 32px;
  1609. font-stretch: 130%;
  1610. @media (min-width: 1440px) {
  1611. font-size: 24px;
  1612. line-height: 36px;
  1613. }
  1614. }
  1615. h3{
  1616. margin: var(--spacing-relative-xs) 0 0 0;
  1617. color: rgba(252, 252, 253, 0.7);
  1618. letter-spacing: 0px;
  1619. font-weight: 400;
  1620. text-decoration: none;
  1621. font-size: 16px;
  1622. line-height: 24px;
  1623. font-stretch: 105%;
  1624. }
  1625. }
  1626. }
  1627. }
  1628. }
  1629. /*=================================================
  1630. |컴포넌트 별 css
  1631. |END
  1632. =================================================*/
  1633. // 로그인 폼 기본 디폴트 디자인
  1634. .admin--login {
  1635. min-height: 100vh;
  1636. background: #000000;
  1637. display: flex;
  1638. align-items: center;
  1639. justify-content: center;
  1640. font-family: 'AudiType', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  1641. .login--container {
  1642. width: 100%;
  1643. max-width: 480px;
  1644. padding: 20px;
  1645. }
  1646. .login--box {
  1647. background: #0a0a0a;
  1648. border: 1px solid rgba(255, 255, 255, 0.1);
  1649. border-radius: 12px;
  1650. padding: 60px 40px;
  1651. box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  1652. }
  1653. .login--logo {
  1654. text-align: center;
  1655. margin-bottom: 50px;
  1656. h1 {
  1657. font-size: 48px;
  1658. font-weight: 700;
  1659. color: #ffffff;
  1660. letter-spacing: 8px;
  1661. margin: 0;
  1662. font-stretch: 130%;
  1663. }
  1664. .subtitle {
  1665. color: rgba(255, 255, 255, 0.4);
  1666. font-size: 14px;
  1667. text-transform: uppercase;
  1668. letter-spacing: 3px;
  1669. margin-top: 10px;
  1670. }
  1671. }
  1672. .login--form {
  1673. .form--group {
  1674. margin-bottom: 24px;
  1675. }
  1676. .form--input {
  1677. width: 100%;
  1678. height: 52px;
  1679. background: #000000;
  1680. border: 1px solid rgba(255, 255, 255, 0.15);
  1681. border-radius: 8px;
  1682. padding: 0 20px;
  1683. font-size: 15px;
  1684. color: #ffffff;
  1685. transition: all 0.3s ease;
  1686. &::placeholder {
  1687. color: rgba(255, 255, 255, 0.6);
  1688. }
  1689. &:focus {
  1690. outline: none;
  1691. border-color: rgba(255, 255, 255, 0.4);
  1692. background: rgba(255, 255, 255, 0.02);
  1693. }
  1694. &:hover {
  1695. border-color: rgba(255, 255, 255, 0.25);
  1696. }
  1697. }
  1698. .form--options {
  1699. display: flex;
  1700. justify-content: space-between;
  1701. align-items: center;
  1702. margin-bottom: 32px;
  1703. .checkbox--label {
  1704. display: flex;
  1705. align-items: center;
  1706. cursor: pointer;
  1707. color: rgba(255, 255, 255, 0.6);
  1708. font-size: 14px;
  1709. input[type="checkbox"] {
  1710. width: 18px;
  1711. height: 18px;
  1712. margin-right: 10px;
  1713. background: #000000;
  1714. border: 1px solid rgba(255, 255, 255, 0.3);
  1715. border-radius: 4px;
  1716. cursor: pointer;
  1717. accent-color: #ffffff;
  1718. }
  1719. &:hover {
  1720. color: rgba(255, 255, 255, 0.8);
  1721. }
  1722. }
  1723. .forgot--password {
  1724. color: rgba(255, 255, 255, 0.6);
  1725. font-size: 14px;
  1726. text-decoration: none;
  1727. transition: color 0.3s ease;
  1728. &:hover {
  1729. color: #ffffff;
  1730. }
  1731. }
  1732. }
  1733. .login--button {
  1734. width: 100%;
  1735. height: 52px;
  1736. background: #ffffff;
  1737. color: #000000;
  1738. border: none;
  1739. border-radius: 8px;
  1740. font-size: 16px;
  1741. font-weight: 600;
  1742. letter-spacing: 1px;
  1743. cursor: pointer;
  1744. transition: all 0.3s ease;
  1745. &:hover {
  1746. background: rgba(255, 255, 255, 0.9);
  1747. transform: translateY(-2px);
  1748. box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
  1749. }
  1750. &:active {
  1751. transform: translateY(0);
  1752. }
  1753. }
  1754. }
  1755. .login--footer {
  1756. text-align: center;
  1757. margin-top: 40px;
  1758. p {
  1759. color: rgba(255, 255, 255, 0.3);
  1760. font-size: 12px;
  1761. letter-spacing: 0.5px;
  1762. }
  1763. }
  1764. }
  1765. //자세히 보기
  1766. .more--detail--href{
  1767. display: inline-flex;
  1768. align-items: center;
  1769. position: relative;
  1770. letter-spacing: 0px;
  1771. font-weight: 400;
  1772. font-size: 14px;
  1773. min-height:24px;
  1774. &:after{
  1775. content:'';
  1776. display: block;
  1777. width:calc(100% - 24px);
  1778. height:1px;
  1779. background: rgb(252, 252, 253);
  1780. position: absolute;
  1781. bottom:0px;
  1782. left:0px;
  1783. }
  1784. .ico{
  1785. width: 24px;
  1786. height: 24px;
  1787. background-image: url(/img/ico--arrow.svg);
  1788. }
  1789. }
  1790. //탭 링크
  1791. .text--tab--layout{
  1792. display: flex;
  1793. background: linear-gradient(134deg, rgb(44, 52, 63) 0%, rgb(35, 42, 52) 100%);
  1794. position: sticky;
  1795. top: 0;
  1796. z-index: 100;
  1797. @media(min-width:1440px){
  1798. display: grid;
  1799. grid-auto-flow: column;
  1800. grid-template-columns: max-content 1fr auto;
  1801. gap: 28px;
  1802. width: 100%;
  1803. box-sizing: border-box;
  1804. overflow: hidden;
  1805. }
  1806. @media(min-width:1025px){
  1807. padding-block:12px;
  1808. }
  1809. ul{
  1810. display: flex;
  1811. position: relative;
  1812. padding-inline:96px;
  1813. -webkit-box-align: center;
  1814. align-items: center;
  1815. -webkit-box-pack: justify;
  1816. justify-content: space-between;
  1817. li {
  1818. &.anch--location{
  1819. a{
  1820. margin-left:-12px;
  1821. pointer-events: inherit!important;
  1822. }
  1823. }
  1824. &:first-child{
  1825. &.link--force{
  1826. a{
  1827. pointer-events: inherit!important;
  1828. }
  1829. }
  1830. a{
  1831. margin-left:-12px;
  1832. pointer-events: none;
  1833. }
  1834. }
  1835. a{
  1836. cursor: pointer;
  1837. display: flex;
  1838. -webkit-box-align: center;
  1839. align-items: center;
  1840. -webkit-box-pack: center;
  1841. justify-content: center;
  1842. text-decoration: none;
  1843. border-radius: 10px;
  1844. background: rgba(44, 52, 63, 0);
  1845. box-shadow: rgba(219, 223, 230, 0) 0px 0px 0px 1px inset;
  1846. outline-offset: -3px;
  1847. box-sizing: border-box;
  1848. transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
  1849. transition-duration: 250ms;
  1850. transition-property: color, background, box-shadow;
  1851. min-height: 48px;
  1852. min-width: 64px;
  1853. color: rgba(252, 252, 253, 0.7);
  1854. padding: 0px 16px;
  1855. text-align: center;
  1856. letter-spacing: 0px;
  1857. font-weight: 400;
  1858. text-decoration: none;
  1859. font-size: 14px;
  1860. line-height: 20px;
  1861. font-stretch: 105%;
  1862. &.actv,
  1863. &:hover{
  1864. color:rgb(252,252,253)!important;
  1865. background-color: rgb(44,52,63)!important;
  1866. box-shadow: rgba(219, 223,230, .2) 0px 0px 0px 1px inset!important;
  1867. }
  1868. }
  1869. }
  1870. }
  1871. }
  1872. .inner--link--contents {
  1873. width: 100%;
  1874. padding: 40px 0;
  1875. ul {
  1876. list-style: none;
  1877. margin: 0;
  1878. padding: 0;
  1879. display: flex;
  1880. flex-wrap: wrap;
  1881. gap: 24px;
  1882. width: 100%;
  1883. padding:0 96px;
  1884. li {
  1885. width:calc( (100% - 48px) / 3);
  1886. --gradient-start: hsla(216, 20%, 17%, 1);
  1887. --gradient-end: hsla(216, 21%, 12%, 1);
  1888. transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
  1889. transition-duration: 250ms;
  1890. transition-property: --gradient-start, --gradient-end, box-shadow;
  1891. padding:28px 16px;
  1892. overflow: hidden;
  1893. border-radius: 20px;
  1894. border: none;
  1895. cursor: pointer;
  1896. box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
  1897. backdrop-filter: blur(40px);
  1898. background: linear-gradient(180deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  1899. display: flex;
  1900. text-decoration: none;
  1901. &:hover{
  1902. --gradient-start: hsla(216, 18%, 21%, 1);
  1903. --gradient-end: hsla(216, 18%, 21%, 1);
  1904. box-shadow: rgb(42,57,64) 0px 0px 0px 1px inset;
  1905. }
  1906. a {
  1907. display: inline-flex;
  1908. align-items: center;
  1909. color: rgba(252, 252, 253, 0.7);;
  1910. letter-spacing: 0px;
  1911. font-weight: 400;
  1912. text-decoration: none;
  1913. font-size: 12px;
  1914. line-height: 24px;
  1915. font-stretch: 105%;
  1916. padding-left:40px;
  1917. position: relative;
  1918. width:100%;
  1919. >span{
  1920. position: absolute;
  1921. top:50%;
  1922. left:0px;
  1923. transform: translateY(-50%);
  1924. }
  1925. > svg{
  1926. position: absolute;
  1927. top:50%;
  1928. transform: translateY(-50%);
  1929. right:0px;
  1930. }
  1931. }
  1932. }
  1933. }
  1934. }
  1935. .product--card--wrapper{
  1936. margin: auto;
  1937. max-width: var(--max-content-width);
  1938. padding: var(--spacing-relative-xl) var(--spacing-relative-md);
  1939. padding-inline: var(--page-margin);
  1940. padding-block-end: var(--spacing-relative-2xl);
  1941. @media (min-width: 375px) {
  1942. padding-inline: var(--page-margin);
  1943. }
  1944. @media (min-width: 768px) {
  1945. padding-inline: var(--page-margin);
  1946. }
  1947. @media (min-width: 1024px) {
  1948. padding-inline: var(--spacing-relative-3xl);
  1949. padding-block-end: var(--spacing-relative-2xl);
  1950. }
  1951. @media (min-width: 1440px) {
  1952. padding-inline: var(--page-margin);
  1953. padding-block-end: var(--spacing-relative-2xl);
  1954. }
  1955. &[data-type="square"] {
  1956. max-height:100%!important;
  1957. .product--card{
  1958. max-height:100%!important;
  1959. .product--card--thumb{
  1960. max-height: 100%!important;
  1961. padding-top:50%;
  1962. .product--card--thumb--inner{
  1963. position: absolute;
  1964. inset: 0px;
  1965. height: 100%;
  1966. img{
  1967. position: relative;
  1968. }
  1969. }
  1970. }
  1971. }
  1972. }
  1973. .product--card {
  1974. display: flex;
  1975. overflow: hidden;
  1976. max-height: 50vh;
  1977. // 가로 레이아웃
  1978. &[data-layout="horizontal"] {
  1979. flex-direction: row;
  1980. align-items: center;
  1981. .product--card--thumb {
  1982. flex: 0 0 40%;
  1983. max-width: 600px;
  1984. }
  1985. .product--card--content {
  1986. flex: 1;
  1987. }
  1988. // 이미지 오른쪽 배치
  1989. &[data-image-position="right"] {
  1990. flex-direction: row-reverse;
  1991. }
  1992. @media (max-width: 1024px) {
  1993. flex-direction: column;
  1994. .product--card--thumb {
  1995. flex: 1;
  1996. max-width: 100%;
  1997. }
  1998. .product--card--content {
  1999. padding-left: 0;
  2000. padding-right: 0;
  2001. padding-top: 20px;
  2002. }
  2003. // 모바일에서는 이미지 위치 상관없이 세로 배치
  2004. &[data-image-position="right"] {
  2005. flex-direction: column;
  2006. .product--card--content {
  2007. padding-right: 0;
  2008. padding-top: 20px;
  2009. }
  2010. }
  2011. }
  2012. }
  2013. // 세로 레이아웃
  2014. &[data-layout="vertical"] {
  2015. flex-direction: column;
  2016. max-width: 600px;
  2017. .product--card--thumb {
  2018. width: 100%;
  2019. }
  2020. .product--card--content {
  2021. padding-top: 24px;
  2022. }
  2023. }
  2024. .product--card--thumb {
  2025. background: rgba(255, 255, 255, 0.05);
  2026. min-width:50%;
  2027. position: relative;
  2028. max-height: 50vh;
  2029. border-radius: 20px;
  2030. position: relative;
  2031. overflow: hidden;
  2032. .product--card--thumb--inner{
  2033. height:100%;
  2034. min-height:50vh;
  2035. img {
  2036. width: 100%;
  2037. height: 100%;
  2038. object-fit: cover;
  2039. display: block;
  2040. transition: transform 0.6s ease;
  2041. position: absolute;
  2042. height: 100%;
  2043. }
  2044. &:hover img {
  2045. transform: scale(1.05);
  2046. }
  2047. }
  2048. }
  2049. .product--card--content {
  2050. display: flex;
  2051. flex-direction: column;
  2052. gap: 16px;
  2053. @media screen and (min-width: 320px) {
  2054. padding-block-start: var(--spacing-relative-lg);
  2055. }
  2056. @media screen and (min-width: 1024px) {
  2057. -webkit-box-pack: center;
  2058. justify-content: center;
  2059. align-items: flex-start;
  2060. padding-inline-start: var(--spacing-relative-2xl);
  2061. padding-inline-end: var(--spacing-relative-2xl);
  2062. padding-block-start: 0px;
  2063. }
  2064. }
  2065. .product--card--title {
  2066. margin: 0px;
  2067. color: rgb(252, 252, 253);
  2068. letter-spacing: 0px;
  2069. font-weight: 400;
  2070. text-decoration: none;
  2071. font-size: 24px;
  2072. line-height: 36px;
  2073. font-stretch: 130%;
  2074. @media (min-width: 1024px) {
  2075. font-size: 28px;
  2076. line-height: 40px;
  2077. }
  2078. @media (min-width: 1440px) {
  2079. font-size: 32px;
  2080. line-height: 44px;
  2081. }
  2082. @media (min-width: 1920px) {
  2083. font-size: 36px;
  2084. line-height: 52px;
  2085. }
  2086. }
  2087. .product--card--smalltitle {
  2088. margin: 0px;
  2089. color: rgb(252, 252, 253);
  2090. letter-spacing: 0px;
  2091. font-weight: 400;
  2092. text-decoration: none;
  2093. font-size: 20px;
  2094. line-height: 32px;
  2095. font-stretch: 130%;
  2096. @media (min-width: 1440px) {
  2097. font-size: 24px;
  2098. line-height: 36px;
  2099. }
  2100. }
  2101. .product--card--subtitle {
  2102. margin: 0;
  2103. color: rgba(252, 252, 253, 0.8);
  2104. font-size: 16px;
  2105. line-height: 24px;
  2106. }
  2107. .product--card--description {
  2108. margin-top: 8px;
  2109. p {
  2110. margin: 0px;
  2111. color: rgba(252, 252, 253, 0.7);
  2112. letter-spacing: 0px;
  2113. font-weight: 400;
  2114. text-decoration: none;
  2115. font-size: 16px;
  2116. line-height: 24px;
  2117. font-stretch: 105%;
  2118. }
  2119. }
  2120. .product--card--small--description{
  2121. margin-top:20px;
  2122. p {
  2123. margin: 0px;
  2124. color: rgba(252, 252, 253, 0.7);
  2125. letter-spacing: 0px;
  2126. font-weight: 400;
  2127. text-decoration: none;
  2128. font-size: 12px;
  2129. line-height: 20px;
  2130. font-stretch: 105%;
  2131. }
  2132. }
  2133. .product--card--actions {
  2134. margin-top: 24px;
  2135. display: flex;
  2136. gap: 16px;
  2137. flex-wrap: wrap;
  2138. }
  2139. @media (max-width: 768px) {
  2140. padding: 24px;
  2141. gap: 24px;
  2142. }
  2143. }
  2144. }
  2145. .radius--img--wrap{
  2146. overflow: hidden;
  2147. border-radius: 20px;
  2148. }
  2149. // 딜러 검색 드롭다운 스타일
  2150. .dealer--search--section {
  2151. width: 100%;
  2152. max-width: 1920px;
  2153. margin: 0 auto;
  2154. padding: 80px 96px;
  2155. background-color: hsla(216, 23%, 8%, 1);
  2156. }
  2157. .dealer--search--container {
  2158. display: flex;
  2159. flex-direction: column;
  2160. gap: 48px;
  2161. border-top: 1px solid rgba(252, 252, 253, 0.15);
  2162. }
  2163. .dealer--category--wrap {
  2164. display: flex;
  2165. flex-direction: column;
  2166. }
  2167. .dealer--category--title {
  2168. font-size: 28px;
  2169. font-weight: 600;
  2170. margin: 0 0 24px 0;
  2171. color: rgb(252, 252, 253);
  2172. padding-bottom: 16px;
  2173. border-bottom: 2px solid rgba(252, 252, 253, 0.3);
  2174. }
  2175. .dealer--region--item {
  2176. border-bottom: 1px solid rgba(252, 252, 253, 0.15);
  2177. }
  2178. .dealer--region--header {
  2179. width: 100%;
  2180. display: flex;
  2181. justify-content: space-between;
  2182. align-items: center;
  2183. padding: 20px 24px;
  2184. background-color: transparent;
  2185. border: none;
  2186. color: rgb(252, 252, 253);
  2187. cursor: pointer;
  2188. transition: all 0.3s ease;
  2189. &:hover {
  2190. background-color: rgba(252, 252, 253, 0.05);
  2191. }
  2192. &.active {
  2193. background-color: rgba(252, 252, 253, 0.08);
  2194. }
  2195. }
  2196. .dealer--region--name {
  2197. font-size: 18px;
  2198. font-weight: 500;
  2199. }
  2200. .dealer--toggle--icon {
  2201. font-size: 28px;
  2202. line-height: 1;
  2203. transition: transform 0.3s ease;
  2204. }
  2205. .dealer--list--content {
  2206. padding: 0 24px 24px;
  2207. animation: slideDown 0.3s ease;
  2208. }
  2209. @keyframes slideDown {
  2210. from {
  2211. opacity: 0;
  2212. transform: translateY(-10px);
  2213. }
  2214. to {
  2215. opacity: 1;
  2216. transform: translateY(0);
  2217. }
  2218. }
  2219. .dealer--list {
  2220. list-style: none;
  2221. padding: 0;
  2222. padding-left:10px;
  2223. margin: 0;
  2224. display: flex;
  2225. flex-direction: column;
  2226. gap: 0px;
  2227. li {
  2228. margin: 0;
  2229. position: relative;
  2230. &:before{
  2231. content:'>';
  2232. font-size:12px;
  2233. margin-right:10px;
  2234. }
  2235. a{
  2236. text-decoration: underline;
  2237. }
  2238. }
  2239. }
  2240. .dealer--link {
  2241. display: inline-block;
  2242. color: rgba(252, 252, 253, 0.7);
  2243. text-decoration: none;
  2244. font-size: 16px;
  2245. transition: all 0.2s ease;
  2246. padding: 8px 0;
  2247. &:hover {
  2248. color: rgb(252, 252, 253);
  2249. text-decoration: underline;
  2250. }
  2251. }
  2252. // 반응형 처리
  2253. @media (max-width: 1024px) {
  2254. .dealer--search--section {
  2255. padding: 60px 48px;
  2256. }
  2257. .dealer--search--container {
  2258. gap: 40px;
  2259. }
  2260. .dealer--category--title {
  2261. font-size: 24px;
  2262. margin-bottom: 20px;
  2263. padding-bottom: 12px;
  2264. }
  2265. .dealer--region--header {
  2266. padding: 16px 20px;
  2267. }
  2268. .dealer--region--name {
  2269. font-size: 16px;
  2270. }
  2271. .dealer--list--content {
  2272. padding: 0 20px 20px;
  2273. }
  2274. .dealer--list {
  2275. gap: 6px;
  2276. }
  2277. }
  2278. @media (max-width: 768px) {
  2279. .dealer--search--section {
  2280. padding: 40px 24px;
  2281. }
  2282. .dealer--search--container {
  2283. gap: 32px;
  2284. }
  2285. .dealer--category--title {
  2286. font-size: 20px;
  2287. margin-bottom: 16px;
  2288. padding-bottom: 10px;
  2289. }
  2290. .dealer--region--header {
  2291. padding: 14px 16px;
  2292. }
  2293. .dealer--region--name {
  2294. font-size: 15px;
  2295. }
  2296. .dealer--toggle--icon {
  2297. font-size: 24px;
  2298. }
  2299. .dealer--list--content {
  2300. padding: 0 16px 16px;
  2301. }
  2302. .dealer--list {
  2303. gap: 6px;
  2304. }
  2305. .dealer--link {
  2306. font-size: 14px;
  2307. padding: 6px 0;
  2308. }
  2309. }
  2310. // 딜러 검색 페이지 스타일
  2311. .dealer--search--section{
  2312. padding: 64px 96px;
  2313. .dealer--search--container{
  2314. margin: 0 auto;
  2315. }
  2316. .dealer--category--wrap{
  2317. display: flex;
  2318. flex-direction: column;
  2319. //gap: 16px;
  2320. }
  2321. .dealer--region--item{
  2322. border-bottom: 1px solid rgba(252, 252, 253, 0.1);
  2323. }
  2324. .dealer--region--header{
  2325. width: 100%;
  2326. display: flex;
  2327. justify-content: space-between;
  2328. align-items: center;
  2329. padding: 24px 0;
  2330. background: transparent;
  2331. border: none;
  2332. color: #fcfcfd;
  2333. font-size: 24px;
  2334. font-family: 'AudiType';
  2335. font-weight: 400;
  2336. transition: all 0.3s;
  2337. &:hover{
  2338. color: rgba(252, 252, 253, 0.7);
  2339. }
  2340. &.active{
  2341. color: #fcfcfd;
  2342. }
  2343. }
  2344. .dealer--region--name{
  2345. font-size: 24px;
  2346. }
  2347. .dealer--toggle--icon{
  2348. font-size: 32px;
  2349. line-height: 1;
  2350. font-weight: 300;
  2351. }
  2352. .dealer--list--content{
  2353. padding-bottom: 24px;
  2354. }
  2355. .dealer--list{
  2356. display: flex;
  2357. flex-direction: column;
  2358. gap: 16px;
  2359. >li{
  2360. list-style: none;
  2361. }
  2362. }
  2363. .dealer--link{
  2364. display: inline-block;
  2365. color: rgba(252, 252, 253, 0.7);
  2366. font-size: 16px;
  2367. text-decoration: underline;
  2368. text-underline-offset: 4px;
  2369. transition: all 0.3s;
  2370. background: transparent;
  2371. border: none;
  2372. font-family: 'AudiType';
  2373. font-weight: 400;
  2374. padding: 0;
  2375. cursor: pointer;
  2376. &:hover{
  2377. color: #fcfcfd;
  2378. }
  2379. }
  2380. }
  2381. // 딜러 팝업 스타일
  2382. .dealer--popup--overlay{
  2383. position: fixed;
  2384. top: 0;
  2385. left: 0;
  2386. width: 100%;
  2387. height: 100%;
  2388. background-color: rgba(2, 2, 3, 0.85);
  2389. display: flex;
  2390. justify-content: center;
  2391. align-items: center;
  2392. z-index: 9999;
  2393. padding: 20px;
  2394. }
  2395. .dealer--popup--container{
  2396. position: relative;
  2397. background-color: #1a1d23;
  2398. border-radius: 20px;
  2399. max-width: 1024px;
  2400. width: 100%;
  2401. max-height: 90vh;
  2402. overflow-y: auto;
  2403. box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
  2404. &::-webkit-scrollbar{
  2405. width: 8px;
  2406. }
  2407. &::-webkit-scrollbar-track{
  2408. background: transparent;
  2409. }
  2410. &::-webkit-scrollbar-thumb{
  2411. background: rgba(252, 252, 253, 0.2);
  2412. border-radius: 4px;
  2413. &:hover{
  2414. background: rgba(252, 252, 253, 0.3);
  2415. }
  2416. }
  2417. @media (min-width: 320px) {
  2418. padding: 16px;
  2419. }
  2420. @media (min-width: 375px) {
  2421. padding: 28px;
  2422. }
  2423. @media (min-width: 768px) {
  2424. padding: 48px;
  2425. }
  2426. @media (min-width: 1024px) {
  2427. padding: 56px;
  2428. }
  2429. @media (min-width: 1440px) {
  2430. padding: 64px;
  2431. }
  2432. }
  2433. .dealer--popup--close{
  2434. position: absolute;
  2435. top: 24px;
  2436. right: 24px;
  2437. width: 40px;
  2438. height: 40px;
  2439. background: transparent;
  2440. border: none;
  2441. cursor: pointer;
  2442. z-index: 1;
  2443. display: flex;
  2444. justify-content: center;
  2445. align-items: center;
  2446. border-radius: 50%;
  2447. transition: all 0.3s;
  2448. &:hover{
  2449. background-color: rgba(252, 252, 253, 0.1);
  2450. }
  2451. .close--icon{
  2452. width: 24px;
  2453. height: 24px;
  2454. position: relative;
  2455. &::before,
  2456. &::after{
  2457. content: '';
  2458. position: absolute;
  2459. top: 50%;
  2460. left: 50%;
  2461. width: 20px;
  2462. height: 2px;
  2463. background-color: #fcfcfd;
  2464. }
  2465. &::before{
  2466. transform: translate(-50%, -50%) rotate(45deg);
  2467. }
  2468. &::after{
  2469. transform: translate(-50%, -50%) rotate(-45deg);
  2470. }
  2471. }
  2472. }
  2473. .dealer--popup--content{
  2474. margin: auto;
  2475. max-width: var(--max-content-width);
  2476. display: grid;
  2477. grid-template-columns: 1fr;
  2478. grid-template-rows: 1fr;
  2479. grid-template-areas:"media" "textarea";
  2480. padding: var(--spacing-relative-xl) var(--spacing-relative-md);
  2481. @media (min-width: 1024px) {
  2482. grid-template-columns: 1fr 1fr;
  2483. grid-template-areas: "media textarea";
  2484. }
  2485. @media (min-width: 1440px) {
  2486. grid-template-columns: 1fr 1fr;
  2487. grid-template-areas: "media textarea";
  2488. }
  2489. .dealer--thumb--wrap{
  2490. border-radius: 20px;
  2491. overflow: hidden;
  2492. }
  2493. .dealer--infos--wrap{
  2494. grid-area: textarea;
  2495. align-self: center;
  2496. @media screen and (min-width: 320px) {
  2497. padding-block-start: var(--spacing-relative-lg);
  2498. }
  2499. @media screen and (min-width: 1024px) {
  2500. display: flex;
  2501. flex-direction: column;
  2502. -webkit-box-pack: center;
  2503. justify-content: center;
  2504. align-items: flex-start;
  2505. padding-inline-start: var(--spacing-relative-2xl);
  2506. padding-inline-end: var(--spacing-relative-2xl);
  2507. padding-block-start: 0px;
  2508. }
  2509. }
  2510. }
  2511. .dealer--popup--header{
  2512. .dealer--name{
  2513. margin: 0px;
  2514. color: rgb(252, 252, 253);
  2515. font-family: AudiType, sans-serif;
  2516. letter-spacing: 0px;
  2517. font-weight: 400;
  2518. text-decoration: none;
  2519. font-size: 24px;
  2520. line-height: 36px;
  2521. font-stretch: 130%;
  2522. @media (min-width: 1024px) {
  2523. font-size: 28px;
  2524. line-height: 40px;
  2525. }
  2526. @media (min-width: 1440px) {
  2527. font-size: 32px;
  2528. line-height: 44px;
  2529. }
  2530. @media (min-width: 1920px) {
  2531. font-size: 36px;
  2532. line-height: 52px;
  2533. }
  2534. }
  2535. .dealer--type{
  2536. display: inline-block;
  2537. font-size: 14px;
  2538. color: rgba(252, 252, 253, 0.7);
  2539. padding: 4px 12px;
  2540. background-color: rgba(252, 252, 253, 0.1);
  2541. border-radius: 100px;
  2542. }
  2543. }
  2544. .dealer--popup--body{
  2545. display: flex;
  2546. flex-direction: column;
  2547. gap: 8px;
  2548. padding-top:8px;
  2549. }
  2550. .dealer--info--section{
  2551. display: flex;
  2552. flex-direction: column;
  2553. gap: 8px;
  2554. .info--label{
  2555. margin: 0px;
  2556. color: rgba(252, 252, 253, 0.7);
  2557. font-family: AudiType, sans-serif;
  2558. letter-spacing: 0px;
  2559. font-weight: 400;
  2560. text-decoration: none;
  2561. font-size: 16px;
  2562. line-height: 24px;
  2563. font-stretch: 105%;
  2564. a{
  2565. word-break: break-all;
  2566. }
  2567. }
  2568. .phone--link,
  2569. .email--link,
  2570. .website--link{
  2571. color: #fcfcfd;
  2572. text-decoration: underline;
  2573. text-underline-offset: 4px;
  2574. transition: all 0.3s;
  2575. &:hover{
  2576. color: rgba(252, 252, 253, 0.7);
  2577. }
  2578. }
  2579. .business--hours--item{
  2580. line-height: 1.8;
  2581. }
  2582. }
  2583. .dealer--popup--footer{
  2584. margin-top: 40px;
  2585. padding-top: 24px;
  2586. border-top: 1px solid rgba(252, 252, 253, 0.1);
  2587. display: flex;
  2588. justify-content: center;
  2589. }
  2590. .dealer--popup--empty{
  2591. padding: 80px 48px;
  2592. text-align: center;
  2593. >p{
  2594. font-size: 16px;
  2595. color: rgba(252, 252, 253, 0.7);
  2596. }
  2597. }
  2598. // 팝업 페이드 애니메이션
  2599. .dealer--popup--fade-enter-active,
  2600. .dealer--popup--fade-leave-active{
  2601. transition: opacity 0.3s ease;
  2602. .dealer--popup--container{
  2603. transition: transform 0.3s ease, opacity 0.3s ease;
  2604. }
  2605. }
  2606. .dealer--popup--fade-enter-from,
  2607. .dealer--popup--fade-leave-to{
  2608. opacity: 0;
  2609. .dealer--popup--container{
  2610. transform: scale(0.95);
  2611. opacity: 0;
  2612. }
  2613. }
  2614. .dealer--popup--fade-enter-to,
  2615. .dealer--popup--fade-leave-from{
  2616. opacity: 1;
  2617. .dealer--popup--container{
  2618. transform: scale(1);
  2619. opacity: 1;
  2620. }
  2621. }
  2622. /*=================================================
  2623. |버튼 리스트 css
  2624. |START
  2625. =================================================*/
  2626. .light--gray--btn{
  2627. border: 0px;
  2628. flex-direction: column;
  2629. -webkit-box-align: center;
  2630. align-items: center;
  2631. -webkit-box-pack: center;
  2632. justify-content: center;
  2633. transition-timing-function:cubic-bezier(0.75, 0.02, 0.5, 1);
  2634. transition-duration: 250ms;
  2635. border-radius: 999px;
  2636. cursor: pointer;
  2637. display: inline-flex;
  2638. box-sizing: border-box;
  2639. text-align: center;
  2640. letter-spacing: 0px;
  2641. font-weight: 400;
  2642. text-decoration: none;
  2643. font-size: 12px;
  2644. line-height: 16px;
  2645. font-stretch: 105%;
  2646. padding: 8px 16px;
  2647. min-height: 36px;
  2648. background: rgb(101, 112, 129);
  2649. color: rgb(252, 252, 253);
  2650. box-shadow: rgba(101, 112, 129, 0) 0px 0px 0px 1px inset;
  2651. &:hover{
  2652. color:rgb(252,252,253);
  2653. background-color: rgb(44,52,63);
  2654. box-shadow: rgba(219, 223,230, .2) 0px 0px 0px 1px inset;
  2655. }
  2656. }
  2657. .default--round--btn {
  2658. flex-direction: column;
  2659. -webkit-box-align: center;
  2660. align-items: center;
  2661. -webkit-box-pack: center;
  2662. justify-content: center;
  2663. transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
  2664. transition-duration: 250ms;
  2665. border-radius: 999px;
  2666. cursor: pointer;
  2667. display: inline-flex;
  2668. border: 0px;
  2669. letter-spacing: 0px;
  2670. font-weight: 400;
  2671. text-decoration: none;
  2672. font-size: 14px;
  2673. line-height: 20px;
  2674. font-stretch: 105%;
  2675. padding: 12px 24px;
  2676. min-height: 48px;
  2677. background-color: rgb(24, 29, 37);
  2678. color: rgb(252, 252, 253);
  2679. box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
  2680. transition-property: color, box-shadow, background-color;
  2681. &.reverse{
  2682. background: rgba(44,52,63);
  2683. box-shadow: rgba(219,223,230, .2) 0px 0px 0px 1px inset;
  2684. &:hover {
  2685. background-color: rgb(24, 29, 37);
  2686. color: rgb(252, 252, 253);
  2687. box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
  2688. }
  2689. }
  2690. &:hover {
  2691. background: rgba(44,52,63);
  2692. box-shadow: rgba(219,223,230, .2) 0px 0px 0px 1px inset;
  2693. }
  2694. &:active {
  2695. transform: translateY(0);
  2696. }
  2697. }
  2698. /*=================================================
  2699. |버튼 리스트 css
  2700. |end
  2701. =================================================*/
  2702. /*=================================================
  2703. |모델 리스트 css
  2704. |start
  2705. =================================================*/
  2706. .models--page{
  2707. .type--carousel{
  2708. padding:40px 0px;
  2709. .models--filter--section{
  2710. box-sizing: border-box;
  2711. padding: 0 var(--page-margin);
  2712. position: sticky;
  2713. top: 0px;
  2714. z-index: 85;
  2715. .filter--group{
  2716. .filter--dropdown--list{
  2717. >h2{
  2718. margin: 0 0 var(--spacing-relative-2xs) 0;
  2719. color: rgba(252, 252, 253, 0.7);
  2720. letter-spacing: 0px;
  2721. font-weight: 400;
  2722. text-decoration: none;
  2723. font-size: 12px;
  2724. line-height: 20px;
  2725. font-stretch: 105%;
  2726. padding-bottom:12px;
  2727. }
  2728. .filter--dropdown{
  2729. display: flex;
  2730. gap:10px;
  2731. flex-wrap:wrap;
  2732. margin-bottom:30px;
  2733. button{
  2734. border-radius: 10px;
  2735. box-sizing: border-box;
  2736. display: inline-flex;
  2737. -webkit-box-pack: justify;
  2738. justify-content: space-between;
  2739. -webkit-box-align: center;
  2740. align-items: center;
  2741. gap: 8px;
  2742. letter-spacing: 0px;
  2743. font-weight: 400;
  2744. text-decoration: none;
  2745. font-size: 14px;
  2746. line-height: 20px;
  2747. font-stretch: 105%;
  2748. padding: 4px 12px;
  2749. transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
  2750. transition-duration: 250ms;
  2751. transition-property: background-color, box-shadow, color;
  2752. min-height: 36px;
  2753. cursor: pointer;
  2754. background-color: rgb(24, 29, 37);
  2755. color: rgb(252, 252, 253);
  2756. box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
  2757. &.active{
  2758. background-color: rgb(64, 74, 89);
  2759. color: rgb(252, 252, 253);
  2760. box-shadow: rgba(219, 223, 230, 0.2) 0px 0px 0px 1px inset;
  2761. }
  2762. }
  2763. }
  2764. }
  2765. }
  2766. }
  2767. .models--list--wrap{
  2768. .all--models--wrap{
  2769. padding: 0px var(--page-margin);
  2770. display: flex;
  2771. align-items: center;
  2772. justify-content: space-between;
  2773. margin: 0 0 var(--spacing-relative-2xs) 0;
  2774. .all--models{
  2775. color: rgba(252, 252, 253, 0.7);
  2776. letter-spacing: 0px;
  2777. font-weight: 400;
  2778. text-decoration: none;
  2779. font-size: 12px;
  2780. line-height: 20px;
  2781. font-stretch: 105%;
  2782. padding-bottom:12px;
  2783. }
  2784. .nav--btn--wrap{
  2785. display: flex;
  2786. align-items: center;
  2787. gap:20px;
  2788. button{
  2789. &.nav--prev--btn{
  2790. transform: rotate(180deg);
  2791. }
  2792. &.swiper-button-disabled{
  2793. opacity: .2;
  2794. cursor: not-allowed;
  2795. }
  2796. }
  2797. }
  2798. }
  2799. .models--list{
  2800. width:100%;
  2801. display: flex;
  2802. flex-wrap:wrap;
  2803. gap:10px;
  2804. > .swiper{
  2805. width:100%;
  2806. padding: 0 0 0 var(--page-margin);
  2807. }
  2808. .model--item{
  2809. --gradient-start: hsla(216, 20%, 17%, 1);
  2810. --gradient-end: hsla(216, 21%, 12%, 1);
  2811. transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
  2812. transition-duration: 250ms;
  2813. transition-property: --gradient-start, --gradient-end, box-shadow;
  2814. padding: 16px;
  2815. overflow: hidden;
  2816. border-radius: 20px;
  2817. border: none;
  2818. cursor: pointer;
  2819. box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
  2820. backdrop-filter: blur(40px);
  2821. background: linear-gradient(180deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  2822. text-align: left;
  2823. max-width:220px;
  2824. &.active{
  2825. --gradient-start: hsla(216, 16%, 30%, 1);
  2826. --gradient-end: hsla(216, 16%, 30%, 1);
  2827. transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
  2828. transition-duration: 250ms;
  2829. transition-property: --gradient-start, --gradient-end, box-shadow;
  2830. padding: 16px;
  2831. overflow: hidden;
  2832. border-radius: 20px;
  2833. border: none;
  2834. cursor: pointer;
  2835. box-shadow: rgba(219, 223, 230, 0.2) 0px 0px 0px 1px inset;
  2836. backdrop-filter: blur(40px);
  2837. background: linear-gradient(180deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  2838. text-align: left;
  2839. .model--info--wrap{
  2840. .ico{
  2841. transform: rotate(-90deg);
  2842. }
  2843. }
  2844. }
  2845. .model--name{
  2846. position: relative;
  2847. margin: 0px;
  2848. color: rgba(252, 252, 253, 0.7);
  2849. letter-spacing: 0px;
  2850. font-weight: 400;
  2851. text-decoration: none;
  2852. font-size: 16px;
  2853. line-height: 24px;
  2854. font-stretch: 105%;
  2855. letter-spacing: -1px;
  2856. display: flex;
  2857. align-items: center;
  2858. justify-content: space-between;
  2859. .etron--wrap{
  2860. min-height:28px;
  2861. .etron{
  2862. margin: 0px;
  2863. border-radius: 10px;
  2864. box-sizing: border-box;
  2865. display: inline-flex;
  2866. -webkit-box-pack: justify;
  2867. justify-content: space-between;
  2868. -webkit-box-align: center;
  2869. align-items: center;
  2870. gap: 8px;
  2871. letter-spacing: 0px;
  2872. font-weight: 400;
  2873. text-decoration: none;
  2874. font-size: 12px;
  2875. line-height: 16px;
  2876. font-stretch: 105%;
  2877. padding: 4px 12px;
  2878. transition-timing-function:cubic-bezier(0.75, 0.02, 0.5, 1);
  2879. transition-duration: 250ms;
  2880. transition-property: background-color, box-shadow, color;
  2881. min-height: 28px;
  2882. background-color: rgba(154, 163, 177, 0.1);
  2883. color: rgb(252, 252, 253);
  2884. box-shadow: rgba(128, 128, 128, 0) 0px 0px 0px 1px inset;
  2885. }
  2886. }
  2887. }
  2888. .model--image--wrap{
  2889. display: block;
  2890. aspect-ratio: 7 / 3;
  2891. overflow: hidden;
  2892. padding: 0px;
  2893. margin-bottom:20px;
  2894. img{
  2895. width: 100%;
  2896. height: 100%;
  2897. object-fit: cover;
  2898. }
  2899. }
  2900. .model--info--wrap{
  2901. margin: 0px;
  2902. color: rgba(252, 252, 253, 0.7);
  2903. letter-spacing: 0px;
  2904. font-weight: 400;
  2905. text-decoration: none;
  2906. font-size: 12px;
  2907. line-height: 20px;
  2908. font-stretch: 105%;
  2909. display: flex;
  2910. align-items: center;
  2911. justify-content: space-between;
  2912. .ico{
  2913. width: 24px;
  2914. height: 24px;
  2915. background-image: url(/img/ico--arrow.svg);
  2916. transform: rotate(90deg);
  2917. }
  2918. }
  2919. }
  2920. }
  2921. .models--list--car{
  2922. height: 0px;
  2923. overflow: hidden;
  2924. padding: 0px;
  2925. z-index: 1;
  2926. &.active{
  2927. height: 488px;
  2928. overflow: hidden;
  2929. padding: 28px var(--page-margin);
  2930. z-index: 1;
  2931. }
  2932. @media (min-width: 768px) {
  2933. transition-property: height;
  2934. transition-duration: 0.2s;
  2935. transition-timing-function: ease-in-out;
  2936. }
  2937. .car--list{
  2938. .car--item{
  2939. max-width: 332px;
  2940. min-width: 285px;
  2941. }
  2942. }
  2943. }
  2944. }
  2945. }
  2946. .models--container{
  2947. position: relative;
  2948. background-color: rgb(16, 19, 25);
  2949. @media (min-width: 1024px) {
  2950. display: grid;
  2951. grid-template-columns: 1fr 3fr;
  2952. }
  2953. .models--filter--section{
  2954. box-sizing: border-box;
  2955. padding: 0 var(--page-margin);
  2956. position: sticky;
  2957. top: 0px;
  2958. z-index: 85;
  2959. background-color: rgb(44, 52, 63);
  2960. @media (min-width: 1024px) {
  2961. background-color: transparent;
  2962. height: calc(100vh);
  2963. min-width: 320px;
  2964. padding: var(--spacing-relative-2xl) 0 var(--spacing-relative-2xl) var(--page-margin);
  2965. overflow-y: auto;
  2966. z-index: auto;
  2967. }
  2968. @media (min-width: 1280px) {
  2969. min-width: 388px;
  2970. }
  2971. @media (min-width: 1440px) {
  2972. min-width: auto;
  2973. }
  2974. .filter--group{
  2975. .filter--dropdown--list{
  2976. >h2{
  2977. margin: 0 0 var(--spacing-relative-2xs) 0;
  2978. color: rgba(252, 252, 253, 0.7);
  2979. letter-spacing: 0px;
  2980. font-weight: 400;
  2981. text-decoration: none;
  2982. font-size: 12px;
  2983. line-height: 20px;
  2984. font-stretch: 105%;
  2985. padding-bottom:12px;
  2986. }
  2987. .filter--dropdown{
  2988. display: flex;
  2989. gap:10px;
  2990. flex-wrap:wrap;
  2991. margin-bottom:30px;
  2992. button{
  2993. border-radius: 10px;
  2994. box-sizing: border-box;
  2995. display: inline-flex;
  2996. -webkit-box-pack: justify;
  2997. justify-content: space-between;
  2998. -webkit-box-align: center;
  2999. align-items: center;
  3000. gap: 8px;
  3001. letter-spacing: 0px;
  3002. font-weight: 400;
  3003. text-decoration: none;
  3004. font-size: 14px;
  3005. line-height: 20px;
  3006. font-stretch: 105%;
  3007. padding: 4px 12px;
  3008. transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
  3009. transition-duration: 250ms;
  3010. transition-property: background-color, box-shadow, color;
  3011. min-height: 36px;
  3012. cursor: pointer;
  3013. background-color: rgb(24, 29, 37);
  3014. color: rgb(252, 252, 253);
  3015. box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
  3016. &.active{
  3017. background-color: rgb(64, 74, 89);
  3018. color: rgb(252, 252, 253);
  3019. box-shadow: rgba(219, 223, 230, 0.2) 0px 0px 0px 1px inset;
  3020. }
  3021. }
  3022. }
  3023. }
  3024. }
  3025. }
  3026. .models--list--wrap{
  3027. @media (min-width: 1024px) {
  3028. padding: var(--spacing-relative-2xl) var(--page-margin) var(--spacing-relative-2xl) 0;
  3029. }
  3030. .all--models{
  3031. margin: 0 0 var(--spacing-relative-2xs) 0;
  3032. color: rgba(252, 252, 253, 0.7);
  3033. letter-spacing: 0px;
  3034. font-weight: 400;
  3035. text-decoration: none;
  3036. font-size: 12px;
  3037. line-height: 20px;
  3038. font-stretch: 105%;
  3039. padding-bottom:12px;
  3040. }
  3041. .models--list{
  3042. width:100%;
  3043. display: flex;
  3044. flex-wrap:wrap;
  3045. gap:20px;
  3046. .model--item{
  3047. --gradient-start: hsla(216, 20%, 17%, 1);
  3048. --gradient-end: hsla(216, 21%, 12%, 1);
  3049. transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
  3050. transition-duration: 250ms;
  3051. transition-property: --gradient-start, --gradient-end, box-shadow;
  3052. padding: 16px;
  3053. overflow: hidden;
  3054. border-radius: 20px;
  3055. border: none;
  3056. cursor: pointer;
  3057. box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
  3058. backdrop-filter: blur(40px);
  3059. background: linear-gradient(180deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  3060. text-align: left;
  3061. max-width:calc( (100% - 60px) / 4);
  3062. .model--name{
  3063. position: relative;
  3064. margin: 0px;
  3065. color: rgba(252, 252, 253, 0.7);
  3066. letter-spacing: 0px;
  3067. font-weight: 400;
  3068. text-decoration: none;
  3069. font-size: 16px;
  3070. line-height: 24px;
  3071. font-stretch: 105%;
  3072. display: flex;
  3073. align-items: center;
  3074. justify-content: space-between;
  3075. .etron--wrap{
  3076. min-height:28px;
  3077. .etron{
  3078. margin: 0px;
  3079. border-radius: 10px;
  3080. box-sizing: border-box;
  3081. display: inline-flex;
  3082. -webkit-box-pack: justify;
  3083. justify-content: space-between;
  3084. -webkit-box-align: center;
  3085. align-items: center;
  3086. gap: 8px;
  3087. letter-spacing: 0px;
  3088. font-weight: 400;
  3089. text-decoration: none;
  3090. font-size: 12px;
  3091. line-height: 16px;
  3092. font-stretch: 105%;
  3093. padding: 4px 12px;
  3094. transition-timing-function:cubic-bezier(0.75, 0.02, 0.5, 1);
  3095. transition-duration: 250ms;
  3096. transition-property: background-color, box-shadow, color;
  3097. min-height: 28px;
  3098. background-color: rgba(154, 163, 177, 0.1);
  3099. color: rgb(252, 252, 253);
  3100. box-shadow: rgba(128, 128, 128, 0) 0px 0px 0px 1px inset;
  3101. }
  3102. }
  3103. }
  3104. .model--image--wrap{
  3105. display: block;
  3106. aspect-ratio: 7 / 3;
  3107. overflow: hidden;
  3108. padding: 0px;
  3109. margin-bottom:20px;
  3110. img{
  3111. width: 100%;
  3112. height: 100%;
  3113. object-fit: cover;
  3114. }
  3115. }
  3116. .model--info--wrap{
  3117. margin: 0px;
  3118. color: rgba(252, 252, 253, 0.7);
  3119. letter-spacing: 0px;
  3120. font-weight: 400;
  3121. text-decoration: none;
  3122. font-size: 12px;
  3123. line-height: 20px;
  3124. font-stretch: 105%;
  3125. display: flex;
  3126. align-items: center;
  3127. justify-content: space-between;
  3128. .ico{
  3129. width: 24px;
  3130. height: 24px;
  3131. background-image: url(/img/ico--arrow.svg);
  3132. }
  3133. }
  3134. }
  3135. }
  3136. }
  3137. }
  3138. .models--list--car{
  3139. .all--car--title{
  3140. margin: 0px;
  3141. color: rgba(252, 252, 253, 0.7);
  3142. letter-spacing: 0px;
  3143. font-weight: 400;
  3144. text-decoration: none;
  3145. font-size: 12px;
  3146. line-height: 20px;
  3147. font-stretch: 105%;
  3148. padding-bottom:12px;
  3149. margin: 0 0 var(--spacing-relative-2xs) 0;
  3150. }
  3151. .car--list{
  3152. display: flex;
  3153. flex-wrap: wrap;
  3154. gap:20px;
  3155. .car--item{
  3156. width:calc( (100% - 40px) / 3 );
  3157. overflow: hidden;
  3158. height: calc(100% - var(--spacing-relative-lg));
  3159. background-color: rgba(154, 163, 177, 0.1);
  3160. border-radius: 20px;
  3161. padding-top:24px;
  3162. padding-bottom:24px;
  3163. .car--image{
  3164. img{
  3165. width:100%;
  3166. }
  3167. }
  3168. .car--info{
  3169. padding-top:24px;
  3170. padding-left: 24px;
  3171. padding-right: 24px;
  3172. .car--link{
  3173. margin: 0px 0px 12px;
  3174. margin-top:24px;
  3175. border: 0px;
  3176. flex-direction: column;
  3177. -webkit-box-align: center;
  3178. align-items: center;
  3179. -webkit-box-pack: center;
  3180. justify-content: center;
  3181. transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
  3182. transition-duration: 250ms;
  3183. border-radius: 999px;
  3184. cursor: pointer;
  3185. display: inline-flex;
  3186. box-sizing: border-box;
  3187. text-align: center;
  3188. font-family: AudiType, sans-serif;
  3189. letter-spacing: 0px;
  3190. font-weight: 400;
  3191. text-decoration: none;
  3192. font-size: 14px;
  3193. line-height: 20px;
  3194. font-stretch: 105%;
  3195. padding: 12px 24px;
  3196. min-height: 48px;
  3197. width: 100%;
  3198. background: rgb(101, 112, 129);
  3199. color: rgb(252, 252, 253);
  3200. box-shadow: rgba(101, 112, 129, 0) 0px 0px 0px 1px inset;
  3201. transition-property: color, background, box-shadow;
  3202. }
  3203. .car--name{
  3204. margin: 0px;
  3205. color: rgb(252, 252, 253);
  3206. letter-spacing: 0px;
  3207. font-weight: 700;
  3208. text-decoration: none;
  3209. font-size: 16px;
  3210. line-height: 24px;
  3211. font-stretch: 130%;
  3212. min-height:64px;
  3213. @media (min-width: 1440px) {
  3214. font-size: 18px;
  3215. line-height: 28px;
  3216. }
  3217. @media (min-width: 1920px) {
  3218. font-size: 20px;
  3219. line-height: 32px;
  3220. }
  3221. }
  3222. }
  3223. .bedge--wrap{
  3224. display: flex;
  3225. padding-left: 24px;
  3226. padding-right: 24px;
  3227. gap: var(--spacing-relative-2xs);
  3228. min-height:28px;
  3229. .etron{
  3230. margin: 0px;
  3231. border-radius: 10px;
  3232. box-sizing: border-box;
  3233. display: inline-flex;
  3234. -webkit-box-pack: justify;
  3235. justify-content: space-between;
  3236. -webkit-box-align: center;
  3237. align-items: center;
  3238. gap: 8px;
  3239. letter-spacing: 0px;
  3240. font-weight: 400;
  3241. text-decoration: none;
  3242. font-size: 12px;
  3243. line-height: 16px;
  3244. font-stretch: 105%;
  3245. padding: 4px 12px;
  3246. transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
  3247. transition-duration: 250ms;
  3248. transition-property: background-color, box-shadow, color;
  3249. min-height: 28px;
  3250. background-color: rgba(154, 163, 177, 0.1);
  3251. color: rgb(252, 252, 253);
  3252. box-shadow: rgba(128, 128, 128, 0) 0px 0px 0px 1px inset;
  3253. letter-spacing: -1px;
  3254. }
  3255. }
  3256. }
  3257. }
  3258. }
  3259. }
  3260. header{
  3261. width: 100%;
  3262. .header--wrap{
  3263. background-color: #020203;
  3264. max-width: 1920px;
  3265. width: 100%;
  3266. margin: 0 auto;
  3267. height: 72px;
  3268. padding: 0 96px;
  3269. display: flex;
  3270. align-items: center;
  3271. .header--logo--wrap{
  3272. margin-right: 40px;
  3273. a{
  3274. strong{
  3275. clip: rect(1px, 1px, 1px, 1px);
  3276. height: 1px;
  3277. overflow: hidden;
  3278. position: absolute;
  3279. width: 1px;
  3280. }
  3281. }
  3282. }
  3283. }
  3284. .header--menu--wrap{
  3285. display: flex;
  3286. gap: 24px;
  3287. >a{
  3288. color: #fcfcfdb2;
  3289. &:hover{
  3290. color: hsla(216, 33%, 99%, 1);
  3291. }
  3292. }
  3293. }
  3294. .header--search--wrap{
  3295. margin-left: auto;
  3296. display: flex;
  3297. .search--btn{
  3298. border-radius: 50%;
  3299. padding: 0;
  3300. background-image: url(/img/ico--search.svg);
  3301. background-repeat: no-repeat;
  3302. background-position: center;
  3303. background-color: transparent;
  3304. width: 48px;
  3305. height: 48px;
  3306. }
  3307. }
  3308. }
  3309. footer{
  3310. width: 100%;
  3311. //--one-footer-color-black: hsla(216, 26%, 1%, 1);
  3312. --one-footer-color-white: hsla(216, 33%, 99%, 1);
  3313. --one-footer-neutral-5: hsla(216, 26%, 1%, 0.6);
  3314. --one-footer-neutral-10: hsla(216, 17%, 26%, 1);
  3315. --one-footer-neutral-20: hsla(216, 14%, 35%, 1);
  3316. --one-footer-neutral-70: hsla(216, 33%, 99%, 0.6);
  3317. --one-footer-side-spacing: 16px;
  3318. --one-footer-space-xs: var(--spacing-relative-xs);
  3319. --one-footer-space-s: var(--spacing-relative-sm);
  3320. --one-footer-space-m: var(--spacing-relative-md);
  3321. --one-footer-space-l: var(--spacing-relative-lg);
  3322. --one-footer-space-xl: var(--spacing-relative-xl);
  3323. --one-footer-space-xxl: var(--spacing-relative-2xl);
  3324. --one-footer-space-xxxl: var(--spacing-relative-3xl);
  3325. background: var(--one-footer-color-black);
  3326. box-sizing: border-box;
  3327. color: var(--one-footer-color-white);
  3328. @media (min-width: 375px) {
  3329. --one-footer-side-spacing: 28px;
  3330. }
  3331. @media (min-width: 768px) {
  3332. --one-footer-side-spacing: 40px;
  3333. }
  3334. @media (min-width: 1024px) {
  3335. --one-footer-side-spacing: 60px;
  3336. }
  3337. .footer--wrap{
  3338. background-color: #020203;
  3339. max-width: 1920px;
  3340. width: 100%;
  3341. margin: 0 auto;
  3342. padding: 40px 96px;
  3343. display: flex;
  3344. flex-direction: column;
  3345. .footer--site--map{
  3346. width:100%;
  3347. >ul{
  3348. display: block;
  3349. list-style: none;
  3350. padding: 0px;
  3351. width: 100%;
  3352. @media (min-width: 768px) {
  3353. display: flex;
  3354. flex-flow: wrap;
  3355. margin: 28px auto;
  3356. width: 100%;
  3357. }
  3358. >li{
  3359. margin-bottom: -1px;
  3360. >ul{
  3361. >li{
  3362. &:first-child{
  3363. padding-top: 12px;
  3364. }
  3365. padding: 0 20px var(--one-footer-space-s);
  3366. }
  3367. }
  3368. @media (min-width: 768px) {
  3369. //margin: 0px 24px 40px 0px;
  3370. width: calc(33.333%);
  3371. &:first-of-type {
  3372. margin-top: 0px;
  3373. }
  3374. >h2{
  3375. border: none!important;
  3376. }
  3377. >ul{
  3378. >li{
  3379. padding-left: 0;
  3380. padding-right: 0;
  3381. }
  3382. }
  3383. }
  3384. @media (min-width: 1440px) {
  3385. padding: 0px 24px 0px 0px;
  3386. width: 20%;
  3387. }
  3388. >h2{
  3389. color: var(--one-footer-color-white);
  3390. display: flex;
  3391. flex-flow: row;
  3392. -webkit-box-pack: justify;
  3393. justify-content: space-between;
  3394. padding: var(--one-footer-space-m) 20px;
  3395. width: 100%;
  3396. margin: 0px;
  3397. color: rgb(252, 252, 253);
  3398. letter-spacing: 0px;
  3399. font-weight: 400;
  3400. text-decoration: none;
  3401. font-size: 16px;
  3402. line-height: 24px;
  3403. font-stretch: 130%;
  3404. border-top: 1px solid hsla(216, 17%, 26%, 1);
  3405. border-bottom: 1px solid hsla(216, 17%, 26%, 1);
  3406. @media (min-width: 768px) {
  3407. padding: 0px;
  3408. width: auto;
  3409. margin-bottom: 24px;
  3410. }
  3411. @media (min-width: 1440px) {
  3412. font-size: 18px;
  3413. line-height: 28px;
  3414. }
  3415. @media (min-width: 1920px) {
  3416. font-size: 20px;
  3417. line-height: 32px;
  3418. }
  3419. }
  3420. }
  3421. }
  3422. }
  3423. }
  3424. }
  3425. // ============================================
  3426. // Admin Panel Dark Theme Styles
  3427. // ============================================
  3428. // Dark Theme Color Variables
  3429. :root {
  3430. --admin-bg-primary: #0f0f0f;
  3431. --admin-bg-secondary: #1a1a1a;
  3432. --admin-bg-tertiary: #252525;
  3433. --admin-text-primary: #ffffff;
  3434. --admin-text-secondary: #b3b3b3;
  3435. --admin-text-muted: #666666;
  3436. --admin-border-color: #333333;
  3437. --admin-accent-primary: #bb0a30;
  3438. --admin-accent-hover: #990825;
  3439. --admin-success: #10b981;
  3440. --admin-warning: #f59e0b;
  3441. --admin-error: #ef4444;
  3442. --admin-shadow: rgba(0, 0, 0, 0.5);
  3443. }
  3444. // Admin Login Page
  3445. .admin--login {
  3446. min-height: 100vh;
  3447. display: flex;
  3448. align-items: center;
  3449. justify-content: center;
  3450. background: linear-gradient(135deg, var(--admin-bg-primary) 0%, var(--admin-bg-secondary) 100%);
  3451. font-family: 'AudiType', sans-serif;
  3452. .login--container {
  3453. width: 100%;
  3454. max-width: 460px;
  3455. padding: 20px;
  3456. }
  3457. .login--box {
  3458. background: var(--admin-bg-secondary);
  3459. border-radius: 12px;
  3460. padding: 48px 40px;
  3461. box-shadow: 0 8px 32px var(--admin-shadow);
  3462. border: 1px solid var(--admin-border-color);
  3463. }
  3464. .login--logo {
  3465. text-align: center;
  3466. margin-bottom: 40px;
  3467. h1 {
  3468. font-size: 48px;
  3469. font-weight: 700;
  3470. color: var(--admin-text-primary);
  3471. margin: 0 0 8px 0;
  3472. letter-spacing: 4px;
  3473. }
  3474. .subtitle {
  3475. font-size: 14px;
  3476. color: var(--admin-text-secondary);
  3477. margin: 0;
  3478. }
  3479. }
  3480. .login--error {
  3481. background: rgba(239, 68, 68, 0.1);
  3482. border: 1px solid var(--admin-error);
  3483. color: var(--admin-error);
  3484. padding: 12px 16px;
  3485. border-radius: 6px;
  3486. margin-bottom: 20px;
  3487. font-size: 14px;
  3488. }
  3489. .login--form {
  3490. .form--group {
  3491. margin-bottom: 20px;
  3492. }
  3493. .form--input {
  3494. width: 100%;
  3495. padding: 14px 16px;
  3496. background: var(--admin-bg-tertiary);
  3497. border: 1px solid var(--admin-border-color);
  3498. border-radius: 6px;
  3499. color: var(--admin-text-primary);
  3500. font-size: 14px;
  3501. transition: all 0.3s ease;
  3502. font-family: 'AudiType', sans-serif;
  3503. &:focus {
  3504. outline: none;
  3505. border-color: var(--admin-accent-primary);
  3506. box-shadow: 0 0 0 3px rgba(187, 10, 48, 0.1);
  3507. }
  3508. &::placeholder {
  3509. color: var(--admin-text-muted);
  3510. }
  3511. &:disabled {
  3512. opacity: 0.5;
  3513. cursor: not-allowed;
  3514. }
  3515. }
  3516. .form--options {
  3517. display: flex;
  3518. justify-content: space-between;
  3519. align-items: center;
  3520. margin-bottom: 24px;
  3521. .checkbox--label {
  3522. display: flex;
  3523. align-items: center;
  3524. cursor: pointer;
  3525. font-size: 14px;
  3526. color: var(--admin-text-secondary);
  3527. input[type="checkbox"] {
  3528. margin-right: 8px;
  3529. cursor: pointer;
  3530. }
  3531. }
  3532. .forgot--password {
  3533. font-size: 14px;
  3534. color: var(--admin-accent-primary);
  3535. text-decoration: none;
  3536. transition: color 0.3s ease;
  3537. &:hover {
  3538. color: var(--admin-accent-hover);
  3539. }
  3540. }
  3541. }
  3542. .login--button {
  3543. width: 100%;
  3544. padding: 14px 16px;
  3545. background: var(--admin-accent-primary);
  3546. color: var(--admin-text-primary);
  3547. border: none;
  3548. border-radius: 6px;
  3549. font-size: 16px;
  3550. font-weight: 600;
  3551. cursor: pointer;
  3552. transition: all 0.3s ease;
  3553. font-family: 'AudiType', sans-serif;
  3554. &:hover:not(:disabled) {
  3555. background: var(--admin-accent-hover);
  3556. transform: translateY(-2px);
  3557. box-shadow: 0 4px 12px rgba(187, 10, 48, 0.3);
  3558. }
  3559. &:active:not(:disabled) {
  3560. transform: translateY(0);
  3561. }
  3562. &:disabled {
  3563. opacity: 0.6;
  3564. cursor: not-allowed;
  3565. }
  3566. }
  3567. }
  3568. .login--footer {
  3569. margin-top: 32px;
  3570. text-align: center;
  3571. p {
  3572. font-size: 12px;
  3573. color: var(--admin-text-muted);
  3574. margin: 0;
  3575. }
  3576. }
  3577. }
  3578. // Admin Layout
  3579. .admin--layout {
  3580. min-height: 100vh;
  3581. background: var(--admin-bg-primary);
  3582. font-family: 'AudiType', sans-serif;
  3583. }
  3584. // Admin Header
  3585. .admin--header {
  3586. position: fixed;
  3587. top: 0;
  3588. left: 0;
  3589. right: 0;
  3590. height: 64px;
  3591. background: var(--admin-bg-secondary);
  3592. border-bottom: 1px solid var(--admin-border-color);
  3593. display: flex;
  3594. justify-content: space-between;
  3595. align-items: center;
  3596. padding: 0 32px;
  3597. z-index: 1000;
  3598. .admin--header-left {
  3599. display: flex;
  3600. align-items: center;
  3601. }
  3602. .admin--logo {
  3603. display: flex;
  3604. align-items: baseline;
  3605. gap: 12px;
  3606. h1 {
  3607. font-size: 28px;
  3608. font-weight: 700;
  3609. color: var(--admin-text-primary);
  3610. margin: 0;
  3611. letter-spacing: 2px;
  3612. }
  3613. .admin--logo-sub {
  3614. font-size: 16px;
  3615. color: var(--admin-text-secondary);
  3616. font-weight: 400;
  3617. }
  3618. }
  3619. .admin--header-right {
  3620. display: flex;
  3621. gap: 12px;
  3622. }
  3623. .admin--header-btn {
  3624. padding: 8px 20px;
  3625. background: var(--admin-bg-tertiary);
  3626. color: var(--admin-text-primary);
  3627. border: 1px solid var(--admin-border-color);
  3628. border-radius: 6px;
  3629. font-size: 14px;
  3630. font-weight: 500;
  3631. cursor: pointer;
  3632. transition: all 0.3s ease;
  3633. font-family: 'AudiType', sans-serif;
  3634. &:hover {
  3635. background: var(--admin-bg-primary);
  3636. border-color: var(--admin-accent-primary);
  3637. }
  3638. &.admin--header-btn-logout {
  3639. background: var(--admin-accent-primary);
  3640. border-color: var(--admin-accent-primary);
  3641. &:hover {
  3642. background: var(--admin-accent-hover);
  3643. border-color: var(--admin-accent-hover);
  3644. }
  3645. }
  3646. }
  3647. }
  3648. // Admin Content Wrapper
  3649. .admin--content-wrapper {
  3650. display: flex;
  3651. margin-top: 64px;
  3652. min-height: calc(100vh - 64px);
  3653. }
  3654. // Admin Sidebar
  3655. .admin--sidebar {
  3656. width: 260px;
  3657. background: var(--admin-bg-secondary);
  3658. border-right: 1px solid var(--admin-border-color);
  3659. padding: 24px 0;
  3660. position: fixed;
  3661. left: 0;
  3662. top: 64px;
  3663. bottom: 0;
  3664. overflow-y: auto;
  3665. &::-webkit-scrollbar {
  3666. width: 6px;
  3667. }
  3668. &::-webkit-scrollbar-track {
  3669. background: var(--admin-bg-primary);
  3670. }
  3671. &::-webkit-scrollbar-thumb {
  3672. background: var(--admin-border-color);
  3673. border-radius: 3px;
  3674. &:hover {
  3675. background: var(--admin-text-muted);
  3676. }
  3677. }
  3678. }
  3679. // Admin GNB
  3680. .admin--gnb {
  3681. .admin--gnb-group {
  3682. margin-bottom: 8px;
  3683. }
  3684. .admin--gnb-title {
  3685. padding: 12px 24px;
  3686. font-size: 14px;
  3687. font-weight: 600;
  3688. color: var(--admin-text-secondary);
  3689. cursor: pointer;
  3690. display: flex;
  3691. justify-content: space-between;
  3692. align-items: center;
  3693. transition: all 0.3s ease;
  3694. user-select: none;
  3695. &:hover {
  3696. color: var(--admin-text-primary);
  3697. background: var(--admin-bg-primary);
  3698. }
  3699. .admin--gnb-arrow {
  3700. font-size: 10px;
  3701. transition: transform 0.3s ease;
  3702. &.is-open {
  3703. transform: rotate(-180deg);
  3704. }
  3705. }
  3706. }
  3707. .admin--gnb-submenu {
  3708. list-style: none;
  3709. padding: 0;
  3710. margin: 0;
  3711. }
  3712. .admin--gnb-item {
  3713. &.is-active {
  3714. .admin--gnb-link {
  3715. color: var(--admin-accent-primary);
  3716. background: rgba(187, 10, 48, 0.1);
  3717. border-left: 3px solid var(--admin-accent-primary);
  3718. }
  3719. }
  3720. }
  3721. .admin--gnb-link {
  3722. display: block;
  3723. padding: 10px 24px 10px 40px;
  3724. font-size: 14px;
  3725. color: var(--admin-text-secondary);
  3726. text-decoration: none;
  3727. transition: all 0.3s ease;
  3728. border-left: 3px solid transparent;
  3729. &:hover {
  3730. color: var(--admin-text-primary);
  3731. background: var(--admin-bg-primary);
  3732. }
  3733. }
  3734. }
  3735. // Submenu Animation
  3736. .admin--submenu-enter-active,
  3737. .admin--submenu-leave-active {
  3738. transition: all 0.3s ease;
  3739. overflow: hidden;
  3740. }
  3741. .admin--submenu-enter-from,
  3742. .admin--submenu-leave-to {
  3743. opacity: 0;
  3744. max-height: 0;
  3745. }
  3746. .admin--submenu-enter-to,
  3747. .admin--submenu-leave-from {
  3748. opacity: 1;
  3749. max-height: 500px;
  3750. }
  3751. // Admin Main Content
  3752. .admin--main {
  3753. flex: 1;
  3754. margin-left: 260px;
  3755. padding: 32px;
  3756. background: var(--admin-bg-primary);
  3757. }
  3758. // Admin Page Header
  3759. .admin--page-header {
  3760. display: flex;
  3761. justify-content: space-between;
  3762. align-items: center;
  3763. margin-bottom: 32px;
  3764. padding-bottom: 16px;
  3765. border-bottom: 1px solid var(--admin-border-color);
  3766. }
  3767. .admin--page-title {
  3768. font-size: 28px;
  3769. font-weight: 700;
  3770. color: var(--admin-text-primary);
  3771. margin: 0;
  3772. }
  3773. // Admin Breadcrumb
  3774. .admin--breadcrumb {
  3775. display: flex;
  3776. align-items: center;
  3777. gap: 8px;
  3778. font-size: 14px;
  3779. .admin--breadcrumb-link {
  3780. color: var(--admin-text-secondary);
  3781. text-decoration: none;
  3782. transition: color 0.3s ease;
  3783. &:hover {
  3784. color: var(--admin-accent-primary);
  3785. }
  3786. }
  3787. .admin--breadcrumb-current {
  3788. color: var(--admin-text-primary);
  3789. font-weight: 500;
  3790. }
  3791. .admin--breadcrumb-separator {
  3792. color: var(--admin-text-muted);
  3793. }
  3794. }
  3795. // Admin Page Content
  3796. .admin--page-content {
  3797. background: var(--admin-bg-secondary);
  3798. border-radius: 8px;
  3799. padding: 24px;
  3800. border: 1px solid var(--admin-border-color);
  3801. }
  3802. // Admin Dashboard
  3803. .admin--dashboard {
  3804. .admin--dashboard-welcome {
  3805. margin-bottom: 32px;
  3806. h3 {
  3807. font-size: 24px;
  3808. color: var(--admin-text-primary);
  3809. margin: 0 0 8px 0;
  3810. }
  3811. p {
  3812. font-size: 14px;
  3813. color: var(--admin-text-secondary);
  3814. margin: 0;
  3815. }
  3816. }
  3817. .admin--dashboard-stats {
  3818. display: grid;
  3819. grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  3820. gap: 20px;
  3821. margin-bottom: 32px;
  3822. }
  3823. .admin--stat-card {
  3824. background: var(--admin-bg-tertiary);
  3825. border: 1px solid var(--admin-border-color);
  3826. border-radius: 8px;
  3827. padding: 24px;
  3828. display: flex;
  3829. align-items: center;
  3830. gap: 16px;
  3831. transition: all 0.3s ease;
  3832. &:hover {
  3833. border-color: var(--admin-accent-primary);
  3834. transform: translateY(-2px);
  3835. box-shadow: 0 4px 12px var(--admin-shadow);
  3836. }
  3837. .admin--stat-icon {
  3838. font-size: 36px;
  3839. }
  3840. .admin--stat-content {
  3841. flex: 1;
  3842. h4 {
  3843. font-size: 14px;
  3844. color: var(--admin-text-secondary);
  3845. margin: 0 0 8px 0;
  3846. font-weight: 500;
  3847. }
  3848. .admin--stat-number {
  3849. font-size: 28px;
  3850. color: var(--admin-text-primary);
  3851. margin: 0;
  3852. font-weight: 700;
  3853. }
  3854. }
  3855. }
  3856. .admin--dashboard-recent {
  3857. h4 {
  3858. font-size: 18px;
  3859. color: var(--admin-text-primary);
  3860. margin: 0 0 16px 0;
  3861. }
  3862. .admin--recent-list {
  3863. background: var(--admin-bg-tertiary);
  3864. border: 1px solid var(--admin-border-color);
  3865. border-radius: 8px;
  3866. padding: 24px;
  3867. .admin--no-data {
  3868. text-align: center;
  3869. color: var(--admin-text-muted);
  3870. margin: 0;
  3871. }
  3872. }
  3873. }
  3874. }
  3875. // Admin Form Styles
  3876. .admin--form {
  3877. max-width: 800px;
  3878. .admin--form-group {
  3879. margin-bottom: 24px;
  3880. }
  3881. .admin--form-label {
  3882. display: block;
  3883. font-size: 14px;
  3884. font-weight: 500;
  3885. color: var(--admin-text-primary);
  3886. margin-bottom: 8px;
  3887. .admin--required {
  3888. color: var(--admin-error);
  3889. margin-left: 4px;
  3890. }
  3891. }
  3892. .admin--form-input,
  3893. .admin--form-textarea,
  3894. .admin--form-select {
  3895. width: 100%;
  3896. padding: 12px 16px;
  3897. background: var(--admin-bg-tertiary);
  3898. border: 1px solid var(--admin-border-color);
  3899. border-radius: 6px;
  3900. color: var(--admin-text-primary);
  3901. font-size: 14px;
  3902. font-family: 'AudiType', sans-serif;
  3903. transition: all 0.3s ease;
  3904. &:focus {
  3905. outline: none;
  3906. border-color: var(--admin-accent-primary);
  3907. box-shadow: 0 0 0 3px rgba(187, 10, 48, 0.1);
  3908. }
  3909. &::placeholder {
  3910. color: var(--admin-text-muted);
  3911. }
  3912. &:disabled {
  3913. opacity: 0.5;
  3914. cursor: not-allowed;
  3915. }
  3916. }
  3917. .admin--form-textarea {
  3918. min-height: 120px;
  3919. resize: vertical;
  3920. }
  3921. .admin--form-select {
  3922. cursor: pointer;
  3923. }
  3924. // 다중 입력 필드
  3925. .admin--multi-input-wrapper {
  3926. .admin--multi-input-item {
  3927. display: flex;
  3928. gap: 12px;
  3929. margin-bottom: 12px;
  3930. align-items: flex-start;
  3931. .admin--sender-row {
  3932. display: flex;
  3933. gap: 10px;
  3934. flex: 1;
  3935. }
  3936. .admin--form-input {
  3937. flex: 1;
  3938. }
  3939. .admin--btn-remove {
  3940. padding: 12px 20px;
  3941. background: var(--admin-error);
  3942. color: var(--admin-text-primary);
  3943. border: none;
  3944. border-radius: 6px;
  3945. font-size: 14px;
  3946. font-weight: 500;
  3947. cursor: pointer;
  3948. transition: all 0.3s ease;
  3949. white-space: nowrap;
  3950. font-family: 'AudiType', sans-serif;
  3951. &:hover {
  3952. background: #dc2626;
  3953. }
  3954. }
  3955. }
  3956. .admin--btn-add {
  3957. padding: 10px 20px;
  3958. background: var(--admin-bg-tertiary);
  3959. color: var(--admin-text-secondary);
  3960. border: 1px dashed var(--admin-border-color);
  3961. border-radius: 6px;
  3962. font-size: 14px;
  3963. font-weight: 500;
  3964. cursor: pointer;
  3965. transition: all 0.3s ease;
  3966. font-family: 'AudiType', sans-serif;
  3967. &:hover {
  3968. background: var(--admin-bg-primary);
  3969. border-color: var(--admin-accent-primary);
  3970. color: var(--admin-text-primary);
  3971. }
  3972. }
  3973. }
  3974. // 폼 액션 버튼
  3975. .admin--form-actions {
  3976. display: flex;
  3977. gap: 12px;
  3978. margin-top: 32px;
  3979. padding-top: 24px;
  3980. border-top: 1px solid var(--admin-border-color);
  3981. }
  3982. .admin--btn {
  3983. padding: 12px 32px;
  3984. border: none;
  3985. border-radius: 6px;
  3986. font-size: 14px;
  3987. font-weight: 600;
  3988. cursor: pointer;
  3989. transition: all 0.3s ease;
  3990. font-family: 'AudiType', sans-serif;
  3991. &:disabled {
  3992. opacity: 0.5;
  3993. cursor: not-allowed;
  3994. }
  3995. }
  3996. .admin--btn-primary {
  3997. background: var(--admin-accent-primary);
  3998. color: var(--admin-text-primary);
  3999. &:hover:not(:disabled) {
  4000. background: var(--admin-accent-hover);
  4001. transform: translateY(-2px);
  4002. box-shadow: 0 4px 12px rgba(187, 10, 48, 0.3);
  4003. }
  4004. }
  4005. .admin--btn-secondary {
  4006. background: var(--admin-bg-tertiary);
  4007. color: var(--admin-text-primary);
  4008. border: 1px solid var(--admin-border-color);
  4009. &:hover:not(:disabled) {
  4010. background: var(--admin-bg-primary);
  4011. border-color: var(--admin-accent-primary);
  4012. }
  4013. }
  4014. // 알림 메시지
  4015. .admin--alert {
  4016. padding: 12px 16px;
  4017. border-radius: 6px;
  4018. margin-top: 20px;
  4019. font-size: 14px;
  4020. }
  4021. .admin--alert-success {
  4022. background: rgba(16, 185, 129, 0.1);
  4023. border: 1px solid var(--admin-success);
  4024. color: var(--admin-success);
  4025. }
  4026. .admin--alert-error {
  4027. background: rgba(239, 68, 68, 0.1);
  4028. border: 1px solid var(--admin-error);
  4029. color: var(--admin-error);
  4030. }
  4031. .admin--alert-warning {
  4032. background: rgba(245, 158, 11, 0.1);
  4033. border: 1px solid var(--admin-warning);
  4034. color: var(--admin-warning);
  4035. }
  4036. }
  4037. // 로딩
  4038. .admin--loading {
  4039. display: flex;
  4040. align-items: center;
  4041. justify-content: center;
  4042. padding: 60px 20px;
  4043. color: var(--admin-text-secondary);
  4044. font-size: 16px;
  4045. }
  4046. // 전역 로딩 오버레이
  4047. .admin--loading-overlay {
  4048. position: fixed;
  4049. top: 0;
  4050. left: 0;
  4051. right: 0;
  4052. bottom: 0;
  4053. background: rgba(0, 0, 0, 0.5);
  4054. display: flex;
  4055. align-items: center;
  4056. justify-content: center;
  4057. z-index: 99999;
  4058. }
  4059. // 스피너
  4060. .admin--spinner {
  4061. width: 50px;
  4062. height: 50px;
  4063. border: 4px solid rgba(255, 255, 255, 0.3);
  4064. border-top-color: #fff;
  4065. border-radius: 50%;
  4066. animation: admin-spin 0.8s linear infinite;
  4067. }
  4068. @keyframes admin-spin {
  4069. to {
  4070. transform: rotate(360deg);
  4071. }
  4072. }
  4073. // 검색 박스
  4074. .admin--search-box {
  4075. background: var(--admin-bg-secondary);
  4076. border: 1px solid var(--admin-border-color);
  4077. border-radius: 8px;
  4078. padding: 20px;
  4079. margin-bottom: 20px;
  4080. display: flex;
  4081. justify-content: space-between;
  4082. align-items: center;
  4083. gap: 20px;
  4084. .admin--search-form {
  4085. display: flex;
  4086. gap: 12px;
  4087. flex: 1;
  4088. }
  4089. // 검색 박스 내 모든 select, input 통일된 스타일
  4090. .admin--search-select,
  4091. .admin--form-select,
  4092. .admin--form-input,
  4093. .admin--search-input {
  4094. border: 1px solid var(--admin-border-color) !important;
  4095. border-radius: 4px;
  4096. height: 33px !important;
  4097. padding: 6px 14px !important;
  4098. font-size: 13px !important;
  4099. background: var(--admin-bg-tertiary) !important;
  4100. line-height: normal;
  4101. }
  4102. .admin--search-select,
  4103. .admin--form-select {
  4104. width: 140px;
  4105. }
  4106. .admin--form-input,
  4107. .admin--search-input {
  4108. flex: 1;
  4109. max-width: 400px;
  4110. }
  4111. }
  4112. // 날짜 입력 필드
  4113. .admin--date-input {
  4114. cursor: pointer;
  4115. &::-webkit-calendar-picker-indicator {
  4116. cursor: pointer;
  4117. opacity: 0.7;
  4118. transition: opacity 0.2s;
  4119. &:hover {
  4120. opacity: 1;
  4121. }
  4122. }
  4123. }
  4124. // 날짜 범위
  4125. .admin--date-range {
  4126. display: flex;
  4127. align-items: center;
  4128. gap: 12px;
  4129. .admin--date-separator {
  4130. color: var(--admin-text-secondary);
  4131. font-size: 14px;
  4132. }
  4133. .admin--form-input {
  4134. flex: 1;
  4135. max-width: 200px;
  4136. }
  4137. }
  4138. // 검색 input 강제 스타일 (두 클래스 함께 사용될 때)
  4139. .admin--form-input.admin--search-input {
  4140. border: 1px solid var(--admin-border-color) !important;
  4141. background: var(--admin-bg-tertiary) !important;
  4142. }
  4143. // 테이블
  4144. .admin--table-wrapper {
  4145. background: var(--admin-bg-secondary);
  4146. border: 1px solid var(--admin-border-color);
  4147. border-radius: 8px;
  4148. overflow-x: auto;
  4149. }
  4150. .admin--table {
  4151. width: 100%;
  4152. border-collapse: collapse;
  4153. thead {
  4154. background: var(--admin-bg-tertiary);
  4155. border-bottom: 1px solid var(--admin-border-color);
  4156. th {
  4157. padding: 14px 16px;
  4158. text-align: left;
  4159. font-size: 14px;
  4160. font-weight: 600;
  4161. color: var(--admin-text-primary);
  4162. white-space: nowrap;
  4163. }
  4164. }
  4165. tbody {
  4166. tr {
  4167. border-bottom: 1px solid var(--admin-border-color);
  4168. transition: background 0.3s ease;
  4169. &:hover {
  4170. background: var(--admin-bg-tertiary);
  4171. }
  4172. &:last-child {
  4173. border-bottom: none;
  4174. }
  4175. }
  4176. td {
  4177. padding: 14px 16px;
  4178. font-size: 14px;
  4179. color: var(--admin-text-secondary);
  4180. vertical-align: middle;
  4181. }
  4182. .admin--table-title {
  4183. color: var(--admin-text-primary);
  4184. font-weight: 500;
  4185. max-width: 300px;
  4186. overflow: hidden;
  4187. text-overflow: ellipsis;
  4188. white-space: nowrap;
  4189. }
  4190. .admin--table-loading,
  4191. .admin--table-empty {
  4192. text-align: center;
  4193. padding: 60px 20px;
  4194. color: var(--admin-text-muted);
  4195. }
  4196. }
  4197. .admin--table-actions {
  4198. display: flex;
  4199. gap: 8px;
  4200. }
  4201. }
  4202. // 배지
  4203. .admin--badge {
  4204. display: inline-block;
  4205. padding: 4px 12px;
  4206. border-radius: 12px;
  4207. font-size: 12px;
  4208. font-weight: 600;
  4209. white-space: nowrap;
  4210. &.admin--badge-html {
  4211. background: rgba(59, 130, 246, 0.1);
  4212. color: #3b82f6;
  4213. }
  4214. &.admin--badge-image {
  4215. background: rgba(16, 185, 129, 0.1);
  4216. color: #10b981;
  4217. }
  4218. &.admin--badge-active {
  4219. background: rgba(16, 185, 129, 0.1);
  4220. color: var(--admin-success);
  4221. }
  4222. &.admin--badge-scheduled {
  4223. background: rgba(245, 158, 11, 0.1);
  4224. color: var(--admin-warning);
  4225. }
  4226. &.admin--badge-ended {
  4227. background: rgba(107, 114, 128, 0.1);
  4228. color: #6b7280;
  4229. }
  4230. }
  4231. // 작은 버튼
  4232. .admin--btn-small {
  4233. padding: 6px 14px;
  4234. border: none;
  4235. border-radius: 4px;
  4236. font-size: 13px;
  4237. font-weight: 500;
  4238. cursor: pointer;
  4239. transition: all 0.3s ease;
  4240. font-family: 'AudiType', sans-serif;
  4241. white-space: nowrap;
  4242. &.admin--btn-small-primary {
  4243. background: var(--admin-accent-primary);
  4244. color: var(--admin-text-primary);
  4245. &:hover {
  4246. background: var(--admin-accent-hover);
  4247. }
  4248. }
  4249. &.admin--btn-small-danger {
  4250. background: var(--admin-error);
  4251. color: var(--admin-text-primary);
  4252. &:hover {
  4253. background: #dc2626;
  4254. }
  4255. }
  4256. }
  4257. // 페이지네이션
  4258. .admin--pagination {
  4259. display: flex;
  4260. justify-content: center;
  4261. align-items: center;
  4262. gap: 8px;
  4263. margin-top: 24px;
  4264. .admin--pagination-btn {
  4265. min-width: 36px;
  4266. height: 36px;
  4267. padding: 0 12px;
  4268. background: var(--admin-bg-secondary);
  4269. border: 1px solid var(--admin-border-color);
  4270. border-radius: 6px;
  4271. color: var(--admin-text-secondary);
  4272. font-size: 14px;
  4273. font-weight: 500;
  4274. cursor: pointer;
  4275. transition: all 0.3s ease;
  4276. font-family: 'AudiType', sans-serif;
  4277. &:hover:not(:disabled) {
  4278. background: var(--admin-bg-tertiary);
  4279. border-color: var(--admin-accent-primary);
  4280. color: var(--admin-text-primary);
  4281. }
  4282. &.is-active {
  4283. background: var(--admin-accent-primary);
  4284. border-color: var(--admin-accent-primary);
  4285. color: var(--admin-text-primary);
  4286. }
  4287. &:disabled {
  4288. opacity: 0.5;
  4289. cursor: not-allowed;
  4290. }
  4291. }
  4292. }
  4293. // 라디오 그룹
  4294. .admin--radio-group {
  4295. display: flex;
  4296. gap: 20px;
  4297. flex-wrap: wrap;
  4298. }
  4299. .admin--radio-label {
  4300. display: flex;
  4301. align-items: center;
  4302. gap: 8px;
  4303. cursor: pointer;
  4304. font-size: 14px;
  4305. color: var(--admin-text-secondary);
  4306. transition: color 0.3s ease;
  4307. input[type="radio"] {
  4308. cursor: pointer;
  4309. margin: 0;
  4310. }
  4311. &:hover {
  4312. color: var(--admin-text-primary);
  4313. }
  4314. }
  4315. // 날짜 범위
  4316. .admin--date-range {
  4317. display: flex;
  4318. align-items: center;
  4319. gap: 12px;
  4320. .admin--date-separator {
  4321. color: var(--admin-text-secondary);
  4322. font-weight: 500;
  4323. }
  4324. }
  4325. // 사이즈 그룹
  4326. .admin--size-group {
  4327. display: flex;
  4328. gap: 20px;
  4329. .admin--size-item {
  4330. display: flex;
  4331. align-items: center;
  4332. gap: 8px;
  4333. label {
  4334. font-size: 14px;
  4335. color: var(--admin-text-secondary);
  4336. min-width: 40px;
  4337. }
  4338. .admin--form-input {
  4339. max-width: 120px;
  4340. }
  4341. span {
  4342. font-size: 14px;
  4343. color: var(--admin-text-secondary);
  4344. }
  4345. }
  4346. }
  4347. // 파일 입력
  4348. .admin--form-file {
  4349. width: 100%;
  4350. padding: 12px 16px;
  4351. background: var(--admin-bg-tertiary);
  4352. border: 1px solid var(--admin-border-color);
  4353. border-radius: 6px;
  4354. color: var(--admin-text-primary);
  4355. font-size: 14px;
  4356. font-family: 'AudiType', sans-serif;
  4357. cursor: pointer;
  4358. &::-webkit-file-upload-button {
  4359. padding: 8px 16px;
  4360. background: var(--admin-accent-primary);
  4361. color: var(--admin-text-primary);
  4362. border: none;
  4363. border-radius: 4px;
  4364. font-size: 13px;
  4365. font-weight: 500;
  4366. cursor: pointer;
  4367. margin-right: 12px;
  4368. font-family: 'AudiType', sans-serif;
  4369. }
  4370. }
  4371. // 이미지 미리보기
  4372. .admin--image-preview {
  4373. margin-top: 16px;
  4374. position: relative;
  4375. display: inline-block;
  4376. max-width: 400px;
  4377. img {
  4378. max-width: 100%;
  4379. border-radius: 8px;
  4380. border: 1px solid var(--admin-border-color);
  4381. display: block;
  4382. }
  4383. .admin--btn-remove-image {
  4384. position: absolute;
  4385. top: 12px;
  4386. right: 12px;
  4387. padding: 8px 16px;
  4388. background: var(--admin-error);
  4389. color: var(--admin-text-primary);
  4390. border: none;
  4391. border-radius: 4px;
  4392. font-size: 13px;
  4393. font-weight: 500;
  4394. cursor: pointer;
  4395. transition: all 0.3s ease;
  4396. font-family: 'AudiType', sans-serif;
  4397. &:hover {
  4398. background: #dc2626;
  4399. }
  4400. }
  4401. }
  4402. // 비밀번호 입력 래퍼
  4403. .admin--password-input-wrapper {
  4404. position: relative;
  4405. .admin--form-input {
  4406. padding-right: 50px;
  4407. }
  4408. .admin--password-toggle {
  4409. position: absolute;
  4410. right: 12px;
  4411. top: 50%;
  4412. transform: translateY(-50%);
  4413. background: none;
  4414. border: none;
  4415. font-size: 20px;
  4416. cursor: pointer;
  4417. padding: 4px;
  4418. line-height: 1;
  4419. transition: opacity 0.3s ease;
  4420. &:hover {
  4421. opacity: 0.7;
  4422. }
  4423. }
  4424. }
  4425. // 폼 도움말
  4426. .admin--form-help {
  4427. margin: 8px 0 0 0;
  4428. font-size: 13px;
  4429. color: var(--admin-text-muted);
  4430. font-style: italic;
  4431. }
  4432. // 검색 박스 (큰 버전 - 여러 필터)
  4433. .admin--search-box-large {
  4434. .admin--search-filters {
  4435. flex: 1;
  4436. display: flex;
  4437. flex-direction: column;
  4438. gap: 12px;
  4439. .admin--filter-row {
  4440. display: flex;
  4441. align-items: center;
  4442. gap: 12px;
  4443. flex-wrap: wrap;
  4444. .admin--filter-label {
  4445. font-size: 14px;
  4446. color: var(--admin-text-secondary);
  4447. min-width: 60px;
  4448. }
  4449. .admin--form-select,
  4450. .admin--form-input {
  4451. flex: 1;
  4452. min-width: 150px;
  4453. }
  4454. }
  4455. }
  4456. }
  4457. // 테이블 사진
  4458. .admin--table-photo {
  4459. width: 80px;
  4460. height: 120px;
  4461. border-radius: 4px;
  4462. overflow: hidden;
  4463. display: flex;
  4464. align-items: center;
  4465. justify-content: center;
  4466. background: var(--admin-bg-tertiary);
  4467. img {
  4468. width: 100%;
  4469. height: 100%;
  4470. object-fit: cover;
  4471. }
  4472. .admin--table-photo-empty {
  4473. font-size: 11px;
  4474. color: var(--admin-text-muted);
  4475. text-align: center;
  4476. }
  4477. }
  4478. // 테이블 액션 (세로 배치)
  4479. .admin--table-actions-col {
  4480. flex-direction: column;
  4481. gap: 6px;
  4482. .admin--btn-small {
  4483. width: 100%;
  4484. }
  4485. }
  4486. // 작은 버튼 (secondary 추가)
  4487. .admin--btn-small-secondary {
  4488. background: var(--admin-bg-tertiary);
  4489. color: var(--admin-text-secondary);
  4490. border: 1px solid var(--admin-border-color);
  4491. &:hover {
  4492. background: var(--admin-bg-primary);
  4493. border-color: var(--admin-accent-primary);
  4494. color: var(--admin-text-primary);
  4495. }
  4496. }
  4497. // 엑셀 버튼 (녹색 배경)
  4498. .admin--btn-small-excel {
  4499. background: #217346;
  4500. color: #ffffff;
  4501. border: 1px solid #1a5c37;
  4502. &:hover {
  4503. background: #185c37;
  4504. border-color: #144d2d;
  4505. }
  4506. }
  4507. // Responsive
  4508. @media (max-width: 1024px) {
  4509. .admin--sidebar {
  4510. width: 220px;
  4511. }
  4512. .admin--main {
  4513. margin-left: 220px;
  4514. }
  4515. }
  4516. @media (max-width: 768px) {
  4517. .admin--header {
  4518. padding: 0 16px;
  4519. }
  4520. .admin--sidebar {
  4521. transform: translateX(-100%);
  4522. transition: transform 0.3s ease;
  4523. &.is-open {
  4524. transform: translateX(0);
  4525. }
  4526. }
  4527. .admin--main {
  4528. margin-left: 0;
  4529. padding: 16px;
  4530. }
  4531. .admin--page-header {
  4532. flex-direction: column;
  4533. align-items: flex-start;
  4534. gap: 12px;
  4535. }
  4536. .admin--form {
  4537. .admin--form-actions {
  4538. flex-direction: column;
  4539. .admin--btn {
  4540. width: 100%;
  4541. }
  4542. }
  4543. .admin--multi-input-wrapper {
  4544. .admin--multi-input-item {
  4545. flex-direction: column;
  4546. .admin--btn-remove {
  4547. width: 100%;
  4548. }
  4549. }
  4550. }
  4551. }
  4552. }
  4553. // File Attachment Styles
  4554. .admin--form-file-hidden {
  4555. display: none;
  4556. }
  4557. .admin--file-list {
  4558. margin-bottom: 12px;
  4559. border: 1px solid var(--admin-border-color);
  4560. border-radius: 4px;
  4561. background-color: var(--admin-bg-secondary);
  4562. }
  4563. .admin--file-item {
  4564. display: flex;
  4565. align-items: center;
  4566. padding: 12px 16px;
  4567. border-bottom: 1px solid var(--admin-border-color);
  4568. &:last-child {
  4569. border-bottom: none;
  4570. }
  4571. &:hover {
  4572. background-color: rgba(255, 255, 255, 0.03);
  4573. }
  4574. }
  4575. .admin--file-name {
  4576. flex: 1;
  4577. color: var(--admin-text-primary);
  4578. font-size: 14px;
  4579. overflow: hidden;
  4580. text-overflow: ellipsis;
  4581. white-space: nowrap;
  4582. margin-right: 8px;
  4583. &:hover {
  4584. text-decoration: underline;
  4585. }
  4586. }
  4587. .admin--file-size {
  4588. color: var(--admin-text-secondary);
  4589. font-size: 13px;
  4590. margin-right: 12px;
  4591. white-space: nowrap;
  4592. }
  4593. .admin--btn-remove-file {
  4594. padding: 4px 12px;
  4595. background-color: transparent;
  4596. color: var(--admin-danger-color);
  4597. border: 1px solid var(--admin-danger-color);
  4598. border-radius: 4px;
  4599. font-size: 13px;
  4600. cursor: pointer;
  4601. transition: all 0.2s ease;
  4602. white-space: nowrap;
  4603. &:hover {
  4604. background-color: var(--admin-danger-color);
  4605. color: white;
  4606. }
  4607. }
  4608. // Checkbox Group Styles
  4609. .admin--checkbox-group {
  4610. display: flex;
  4611. gap: 20px;
  4612. }
  4613. .admin--checkbox-label {
  4614. display: flex;
  4615. align-items: center;
  4616. gap: 8px;
  4617. color: var(--admin-text-primary);
  4618. font-size: 14px;
  4619. cursor: pointer;
  4620. input[type="checkbox"] {
  4621. width: 18px;
  4622. height: 18px;
  4623. cursor: pointer;
  4624. accent-color: var(--admin-accent-primary);
  4625. }
  4626. span {
  4627. user-select: none;
  4628. }
  4629. &:hover {
  4630. opacity: 0.8;
  4631. }
  4632. }
  4633. // Admin Footer
  4634. .admin--footer {
  4635. margin-top: 64px;
  4636. padding: 24px 0;
  4637. border-top: 1px solid var(--admin-border-color);
  4638. text-align: center;
  4639. p {
  4640. color: var(--admin-text-muted);
  4641. font-size: 14px;
  4642. margin: 0;
  4643. }
  4644. }
  4645. // IMPORTANT: Force display admin header and footer
  4646. .admin--header {
  4647. display: flex !important;
  4648. min-height: 64px !important;
  4649. background: #1a1a1a !important;
  4650. visibility: visible !important;
  4651. }
  4652. .admin--footer {
  4653. display: block !important;
  4654. min-height: 60px !important;
  4655. background: #1a1a1a !important;
  4656. visibility: visible !important;
  4657. }
  4658. // Alert Modal Styles
  4659. .admin--modal-overlay {
  4660. position: fixed;
  4661. top: 0;
  4662. left: 0;
  4663. right: 0;
  4664. bottom: 0;
  4665. background: rgba(0, 0, 0, 0.7);
  4666. z-index: 9999;
  4667. display: flex;
  4668. align-items: center;
  4669. justify-content: center;
  4670. }
  4671. .admin--alert-modal {
  4672. background: #2d2d2d;
  4673. padding: 0;
  4674. border-radius: 8px;
  4675. min-width: 400px;
  4676. max-width: 500px;
  4677. box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  4678. }
  4679. .admin--alert-modal .admin--modal-header {
  4680. padding: 20px;
  4681. border-bottom: 1px solid #404040;
  4682. display: flex;
  4683. justify-content: space-between;
  4684. align-items: center;
  4685. h4 {
  4686. margin: 0;
  4687. font-size: 18px;
  4688. font-weight: 600;
  4689. color: #ffffff;
  4690. }
  4691. }
  4692. .admin--alert-modal .admin--modal-close {
  4693. background: none;
  4694. border: none;
  4695. font-size: 24px;
  4696. cursor: pointer;
  4697. color: #999;
  4698. line-height: 1;
  4699. transition: color 0.2s;
  4700. &:hover {
  4701. color: #fff;
  4702. }
  4703. }
  4704. .admin--alert-modal .admin--modal-body {
  4705. padding: 30px 20px;
  4706. .admin--alert-content p {
  4707. margin: 0;
  4708. font-size: 15px;
  4709. line-height: 1.6;
  4710. color: #e0e0e0;
  4711. }
  4712. }
  4713. .admin--alert-modal .admin--modal-footer {
  4714. padding: 15px 20px;
  4715. border-top: 1px solid #404040;
  4716. display: flex;
  4717. gap: 10px;
  4718. justify-content: flex-end;
  4719. }
  4720. .admin--alert-modal .admin--btn-secondary {
  4721. padding: 8px 20px;
  4722. border: 1px solid #404040;
  4723. background: #252525;
  4724. color: #e0e0e0;
  4725. border-radius: 4px;
  4726. cursor: pointer;
  4727. font-size: 14px;
  4728. transition: all 0.2s;
  4729. &:hover {
  4730. background: #2d2d2d;
  4731. }
  4732. }
  4733. .admin--alert-modal .admin--btn-primary {
  4734. padding: 8px 20px;
  4735. border: none;
  4736. background: var(--admin-accent-primary);
  4737. color: white;
  4738. border-radius: 4px;
  4739. cursor: pointer;
  4740. font-size: 14px;
  4741. transition: all 0.2s;
  4742. &:hover {
  4743. background: var(--admin-accent-hover);
  4744. }
  4745. }
  4746. // Modal Animation
  4747. @keyframes slideUp {
  4748. from {
  4749. opacity: 0;
  4750. transform: translateY(30px);
  4751. }
  4752. to {
  4753. opacity: 1;
  4754. transform: translateY(0);
  4755. }
  4756. }
  4757. .modal-fade-enter-active {
  4758. transition: opacity 0.3s ease;
  4759. .admin--alert-modal {
  4760. animation: slideUp 0.3s ease-out;
  4761. }
  4762. }
  4763. .modal-fade-leave-active {
  4764. transition: opacity 0.2s ease;
  4765. }
  4766. .modal-fade-enter-from,
  4767. .modal-fade-leave-to {
  4768. opacity: 0;
  4769. }