| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694 |
- @charset "UTF-8";
- @font-face {
- font-family: 'AudiType';
- src: url('/fonts/AudiTypeVF.woff2') format('woff2-variations');
- font-display: swap;
- font-style: normal;
- font-stretch: 130%;
- }
- // Utility classes for padding and margin (1-100)
- @for $i from 1 through 200 {
- // Padding
- .pt--#{$i} { padding-top: #{$i}px !important; }
- .pr--#{$i} { padding-right: #{$i}px !important; }
- .pb--#{$i} { padding-bottom: #{$i}px !important; }
- .pl--#{$i} { padding-left: #{$i}px !important; }
- .p--#{$i} { padding: #{$i}px !important; }
- // Margin
- .mt--#{$i} { margin-top: #{$i}px !important; }
- .mr--#{$i} { margin-right: #{$i}px !important; }
- .mb--#{$i} { margin-bottom: #{$i}px !important; }
- .ml--#{$i} { margin-left: #{$i}px !important; }
- .m--#{$i} { margin: #{$i}px !important; }
- }
- @for $i from 14 through 40 {
- .ft--#{$i} {font-size : #{$i}px !important;}
- }
- html {
- scroll-behavior: smooth;
- }
- :root {
- --max-content-width: 1920px;
- --page-margin: 16px;
- @media (min-width: 375px) {
- --page-margin: 28px;
- }
- @media (min-width: 768px) {
- --page-margin: 40px;
- }
- @media (min-width: 1024px) {
- --page-margin: 60px;
- }
- @media (min-width: 1440px) {
- --page-margin: 96px;
- }
- @media (min-width: 1920px) {
- --page-margin: 96px;
- }
- @property --gradient-start {
- syntax: '<color>';
- initial-value: transparent;
- inherits: false;
- }
- @property --gradient-end {
- syntax: '<color>';
- initial-value: transparent;
- inherits: false;
- }
- --spacing-relative-2xs: 4px;
- --spacing-relative-xs: 8px;
- --spacing-relative-sm: 12px;
- --spacing-relative-md: 16px;
- --spacing-relative-lg: 24px;
- --spacing-relative-xl: 28px;
- --spacing-relative-2xl: 36px;
- --spacing-relative-3xl: 40px;
- --spacing-relative-4xl: 48px;
- --spacing-relative-5xl: 64px;
- --spacing-relative-6xl: 80px;
- --spacing-relative-7xl: 96px;
- --spacing-relative-8xl: 120px;
- @media (min-width: 768px) {
- --spacing-relative-3xl: 48px;
- --spacing-relative-4xl: 64px;
- --spacing-relative-5xl: 72px;
- --spacing-relative-6xl: 88px;
- --spacing-relative-7xl: 104px;
- --spacing-relative-8xl: 136px;
- }
- @media (min-width: 1024px) {
- --spacing-relative-2xl: 40px;
- --spacing-relative-3xl: 56px;
- --spacing-relative-4xl: 72px;
- --spacing-relative-5xl: 88px;
- --spacing-relative-6xl: 104px;
- --spacing-relative-7xl: 128px;
- --spacing-relative-8xl: 168px;
- }
- @media (min-width: 1440px) {
- --spacing-relative-xl: 32px;
- --spacing-relative-2xl: 56px;
- --spacing-relative-3xl: 72px;
- --spacing-relative-4xl: 88px;
- --spacing-relative-5xl: 104px;
- --spacing-relative-6xl: 120px;
- --spacing-relative-7xl: 160px;
- --spacing-relative-8xl: 216px;
- }
- @media (min-width: 1920px) {
- --spacing-relative-xl: 40px;
- --spacing-relative-2xl: 72px;
- --spacing-relative-3xl: 88px;
- --spacing-relative-4xl: 104px;
- --spacing-relative-5xl: 120px;
- --spacing-relative-6xl: 136px;
- --spacing-relative-7xl: 176px;
- --spacing-relative-8xl: 248px;
- }
- }
- //풀사이즈 레이아웃 구성
- .detail--container--full{
- .thumb--solo{
- overflow: hidden;
- border-radius: 20px;
- img{
- width:100%;
- max-width:100%;
- }
- }
-
- .inner--wrapper{
- padding:0 var(--spacing-relative-3xl);
- .service--detail{
- padding:45px 0px;
- h1{
- margin: 0 0 var(--spacing-relative-md) 0;
- color: rgb(252, 252, 253);
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 28px;
- line-height: 40px;
- font-stretch: 130%;
-
- @media (min-width: 1024px) {
- font-size: 36px;
- line-height: 52px;
- }
-
- @media (min-width: 1440px) {
- font-size: 40px;
- line-height: 60px;
- }
-
- @media (min-width: 1920px) {
- font-size: 44px;
- line-height: 64px;
- }
- }
- h2{
- margin: 0 0 var(--spacing-relative-md) 0;
- color: rgb(252, 252, 253);
- font-family: AudiType, sans-serif;
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 24px;
- line-height: 36px;
- font-stretch: 130%;
-
- &.middle{
- font-size:26px;
- }
- @media (min-width: 1024px) {
- font-size: 28px;
- line-height: 40px;
- }
- @media (min-width: 1440px) {
- font-size: 32px;
- line-height: 44px;
- }
- @media (min-width: 1920px) {
- font-size: 36px;
- line-height: 52px;
- }
- }
- h3{
- margin: 20px 0 var(--spacing-relative-md) 0;
- color: rgba(252, 252, 253, 0.7);
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 16px;
- line-height: 24px;
- font-stretch: 105%;
- }
- >h4{
- margin: 0 0 var(--spacing-relative-md) 0;
- color: rgb(252, 252, 253);
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 16px;
- line-height: 24px;
- font-stretch: 130%;
- @media (min-width: 1440px) {
- font-size: 18px;
- line-height: 28px;
- }
- @media (min-width: 1920px) {
- font-size: 20px;
- line-height: 32px;
- }
-
- }
- >p{
- margin: 0px;
- color: rgba(252, 252, 253, 0.7);
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 16px;
- line-height: 24px;
- font-stretch: 105%;
- }
- .service--process--list{
- padding-top:80px;
- >li{
- position: relative;
- padding-left:20px;
- margin-bottom:80px;
- &.not--before{
- padding-left:0px;
- &::before{
- display: none;
- }
- }
- &::before{
- content: ">";
- display: block;
- width: 100%;
- height: 100%;
- background-size: contain;
- position: absolute;
- top: 0;
- left: 0;
- }
- >p{
- margin: 0 0 var(--spacing-relative-md) 0;
- color: rgba(252, 252, 253, 0.7);
- font-family: AudiType, sans-serif;
- letter-spacing: 0px;
- font-weight: 400;
- }
- }
- }
- .data--table--wrap{
- @media (min-width: 768px) {
- table tbody tr:first-child th,
- table tbody tr:first-child td {
- border-top: 1px solid rgb(255, 255, 255) !important;
- border-right-color: rgb(255, 255, 255) !important;
- border-bottom-color: rgb(255, 255, 255) !important;
- border-left-color: rgb(255, 255, 255) !important;
- }
- }
- table{
- display: block;
- width: 100%;
- border-spacing: 8px 0px;
- border-collapse: separate;
- @media (min-width: 768px) {
- width: 100%;
- }
-
- @media (min-width: 768px) {
- display: table;
- }
- tbody{
-
- @media (min-width: 768px) {
- display: table-row-group;
- thead{
- display: table-header-group;
- }
- }
- td{
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 16px;
- line-height: 24px;
- font-stretch: 105%;
- color: rgba(252, 252, 253, 0.7);
- padding: 16px 4px 8px;
- vertical-align: top;
- display: table-cell;
- border-bottom: 1px solid rgb(252, 252, 253);
-
-
- @media (min-width: 768px) {
- padding: 12px 4px 24px;
- }
-
-
- &:not(:last-child) {
- margin-bottom: 4px;
- }
- }
- }
- }
- }
- .desc--caution--text{
- margin: 0px;
- color: rgba(252, 252, 253, 0.7);
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 16px;
- line-height: 24px;
- font-stretch: 105%;
- }
- }
- }
- }
- /*=================================================
- |컴포넌트 별 css
- |START
- =================================================*/
- //풀사이즈 배너 텍스트1 형
- .img--section--full{
- width:100%;
- position: relative;
- &.mask--hidden{
- &:before{
- display: none;
- }
- }
- &[data-type="cover"] {
- >div {
- position: relative;
- height:100vh;
- overflow: hidden;
- }
- img{
- object-fit: cover;
- height:auto;
- position: absolute;
- top:50%;
- transform: translateY(-50%);
- }
- }
- &:before{
- content:'';
- display: block;
- width:100%;
- height:100%;
- position: absolute;
- z-index: 2;
- pointer-events: none;
- inset: 0px;
- z-index: 1;
- background: linear-gradient(rgba(0, 0, 0, 0) 46.66%, rgb(0, 0, 0) 100%);
- }
- img{
- width:100%;
- max-width:100%;
- height:100vh;
- }
- &[data-text-location="top"]{
- &:before{
- background: linear-gradient(rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
- }
- .alt--text{
- bottom:auto;
- top:40px;
- }
- }
- .alt--text{
- color: rgb(252, 252, 253);
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 28px;
- line-height: 40px;
- position: absolute;
- bottom:40px;
- left:0px;
- overflow: hidden;
- padding: 0 96px;
- white-space: pre-wrap;
- z-index: 2;
- }
- }
- //풀사이즈 패럴렉스 1형
- .prallax--banner--wrapper{
- position: relative;
- overflow: hidden;
- height:1000px;
-
- .prallax--banner{
- position: absolute;
- width: 100%;
- height: 120%;
- transform: translate3d(0, 0, 0); // 초기값 GPU 레이어 생성
- -webkit-transform: translate3d(0, 0, 0);
- backface-visibility: hidden;
- -webkit-backface-visibility: hidden;
- //perspective: 1000px;
- //-webkit-perspective: 1000px;
- position: absolute;
- top: -17%;
- left: 50%;
- will-change: transform;
- backface-visibility: hidden;
-
- picture {
- width: 100%;
- height: 100%;
- display: block;
- }
-
- img {
- width: 100%;
- height: 100%;
- object-fit: cover;
- object-position: center;
- transform: translateZ(0); // GPU 가속
- -webkit-transform: translateZ(0);
- }
- }
-
- .text--box--wrapper{
- position: absolute;
- backface-visibility: hidden;
- -webkit-backface-visibility: hidden;
- width: 100%;
- top:147px;
- left: 0px;
- z-index: 1;
- will-change: transform, opacity;
- transform: translate3d(0, 0, 0); // 초기값 GPU 레이어 생성
- -webkit-transform: translate3d(0, 0, 0);
- display: flex;
- -webkit-box-pack: center;
- justify-content: center;
- transition: opacity 0.1s ease-out;
- perspective: 1000px;
- -webkit-perspective: 1000px;
- .text--container{
- max-width:50%;
- position: relative;
- box-sizing: border-box;
- background: linear-gradient(134deg, rgb(44, 52, 63) 0%, rgb(35, 42, 52) 100%);
- backdrop-filter: blur(60px);
- display: flex;
- flex-direction: column;
- gap: 24px;
- flex-shrink: 0;
- flex-basis: 86%;
- margin: 88px auto 0 auto;
- padding: 40px;
- border-radius: 20px;
- left: 4%;
- flex-basis: 44%;
- h2{
- margin: 0px;
- color: rgb(252, 252, 253);
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 24px;
- line-height: 36px;
- font-stretch: 130%;
- }
- p{
- margin: 0px;
- color: rgba(252, 252, 253, 0.7);
- font-family: AudiType, sans-serif;
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 16px;
- line-height: 24px;
- font-stretch: 105%;
- }
- a{
- transition-timing-function:
- cubic-bezier(0.75, 0.02, 0.5, 1);
- transition-duration: 250ms;
- transition-property: color, text-decoration-color;
- display: inline-flex ;
- -webkit-box-align: center;
- align-items: center;
- font-family: AudiType, sans-serif;
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: underline 1px rgb(252, 252, 253);
- font-size: 16px;
- line-height: 24px;
- font-stretch: 105%;
- color: rgb(252, 252, 253);
- box-sizing: border-box;
- text-underline-offset: 7px;
- padding-bottom: 2px;
- min-height: 24px;
- }
- }
- }
- }
- //Swiper 배너 컴포넌트 (30% + 70% 레이아웃)
- .swiper--banner--wrapper {
- width: 100%;
- padding: 40px 96px;
- &[data-fit="contain"]{
- .swiper--banner--container{
- .swiper--banner--section{
- .swiper--container{
- .swiper-slide{
- .slide--image{
- img{
- object-fit: contain;
- }
- }
- }
- }
- }
- }
- }
- &[data-type="vertical"]{
- padding:0px;
- .swiper--banner--container{
- flex-direction: column-reverse;
- height:auto;
-
- .swiper--controls--section{
- flex-direction: row-reverse;
- @media(min-width:768px){
- padding: 0px 96px;
- }
- @media(min-width:1024px){
- padding: 0px 96px;
- }
- @media(min-width:1440px){
- padding: 0px 96px;
- }
- @media(min-width:1920px){
- padding:24px 96px;
- }
- .text--content{
- width:100%;
- .main--title{
- margin: 0px;
- color: rgb(252, 252, 253);
- font-family: AudiType, sans-serif;
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 20px;
- line-height: 32px;
- font-stretch: 130%;
- @media(min-width:1440px){
- font-size: 24px;
- line-height: 36px;
- }
- }
- .sub--title{
- margin: 0px;
- color: rgba(252, 252, 253, 0.7);
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 16px;
- line-height: 24px;
- font-stretch: 105%;
- }
- }
- }
- > div{
- width:100%;
- max-height:100vh;
- .swiper--container {
-
- .swiper-slide {
- .slide--image {
- border-radius: 0px;
- }
- }
- }
- }
- }
- }
-
- .swiper--banner--container {
- max-width: 1920px;
- height: 70vh;
- margin: 0 auto;
- display: flex;
- min-height: 600px;
-
-
- // 30% 영역: 컨트롤 및 텍스트
- .swiper--controls--section {
- width: 30%;
- padding: 40px;
- display: flex;
- flex-direction: column;
- justify-content: flex-end;
-
- .controls--top {
- margin-bottom: 40px;
-
- .pagination--nav--wrapper {
- display: flex;
- align-items: flex-start;
- justify-content: flex-start;
- flex-direction: column;
- gap: 20px;
-
- .swiper-pagination {
- position: relative;
- width: auto;
- display: flex;
- justify-content: center;
- align-items: center;
- gap: 12px;
-
- .swiper-pagination-bullet {
- width: 24px;
- height: 24px;
- background: transparent;
- border-radius: 50%;
- color: rgba(255, 255, 255, 0.6);
- font-size: 14px;
- font-weight: 400;
- display: flex;
- align-items: center;
- justify-content: center;
- cursor: pointer;
- transition: all 0.3s ease;
- opacity: 1;
- margin:0px;
-
- &:hover {
- background:rgba(252,252,253,.3)!important;
- color: rgba(255, 255, 255, 0.8);
- }
-
- &.swiper-pagination-bullet-active {
- background: transparent;
- color: #fff;
- font-weight: 600;
- }
- }
- }
-
- .navigation--buttons {
- display: flex;
- align-items: center;
- justify-content: center;
- gap: 16px;
- .swiper-pagination{
- top:0px;
- bottom:0px;
- }
- .swiper-button-prev{
- background: url(/img/ico--back--s.svg) no-repeat center;
- }
- .swiper-button-next{
- background: url(/img/ico--forward--s.svg) no-repeat center;
- }
-
- .swiper-button-prev,
- .swiper-button-next {
- position: relative;
- width: 24px;
- height: 24px;
- border-radius: 50%;
- color: white;
- margin: 0;
- transition: all 0.3s ease;
- cursor: pointer;
-
- &:hover{
- background:rgba(252,252,253,.3) ;
- }
-
- &.swiper-button-disabled {
- opacity: 0.3;
- cursor: not-allowed;
-
- &:hover {
- transform: none;
- }
- }
- }
- }
- }
- }
-
- .text--content {
- text-align: center;
- height:60%;
-
- .text--slider {
- position: relative;
- overflow: hidden;
- height:100%;
-
- .text--slide {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- opacity: 0;
- transform: translateX(-100%);
- transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
- text-align: left;
- visibility: hidden;
-
- &.active {
- opacity: 1;
- transform: translateX(0);
- visibility: visible;
- position: relative; // 활성 슬라이드는 relative로 높이 확보
- }
-
- // 이전 슬라이드는 오른쪽으로 사라짐
- &:not(.active) {
- transform: translateX(-100%);
- position: absolute; // 비활성 슬라이드는 absolute로 겹침
- }
- }
- }
-
- .main--title {
- margin:0px;
- color: rgb(252, 252, 253);
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 20px;
- line-height: 32px;
- font-stretch: 130%;
- padding-bottom:12px;
- }
-
- .sub--title {
- margin: 0px;
- color: rgba(252, 252, 253, 0.7);
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 16px;
- line-height: 24px;
- font-stretch: 105%;
- }
- .desc--title{
- margin-top:25px;
- color: rgba(252, 252, 253, 0.7);
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 15px;
- line-height: 24px;
- font-stretch: 105%;
- }
-
- .notice--text {
- margin-top: 40px;
- padding-top: 20px;
- // border-top: 1px solid rgba(255, 255, 255, 0.1);
- text-align: left;
-
- p {
- margin: 0;
- color: rgba(252, 252, 253, 0.5);
- font-size: 14px;
- line-height: 20px;
- font-style: italic;
- }
- }
- }
- }
-
- // 70% 영역: 단일 배너
- .swiper--banner--section {
- width: 70%;
- position: relative;
- overflow: hidden;
-
- .swiper--container {
- width: 100%;
- height: 100%;
-
- .swiper-slide {
- .slide--image {
- width: 100%;
- height: 100%;
- border-radius: 20px;
- overflow: hidden;
-
- img {
- width: 100%;
- height: 100%;
- max-height:100vh;
- object-fit: cover;
- object-position: center;
- transition: transform 0.8s ease;
- }
- }
-
- &.swiper-slide-active {
- .slide--image img {
- //transform: scale(1.02);
- }
- }
- }
- }
- }
- }
-
- // 반응형 처리
- @media (max-width: 1024px) {
- .swiper--banner--container {
- flex-direction: column;
-
- .swiper--controls--section {
- width: 100%;
- order: 2;
- padding: 30px 20px;
- }
-
- .swiper--banner--section {
- width: 100%;
- height: 400px;
- order: 1;
- }
- }
- }
-
- @media (max-width: 768px) {
- padding: 40px 0;
-
- .swiper--banner--container {
- .swiper--controls--section {
- padding: 20px;
-
- .text--content {
- .text--slider {
- height: 100px; // 모바일에서는 높이 조정
- }
-
- .main--title {
- font-size: 24px;
- line-height: 32px;
- }
-
- .sub--title {
- font-size: 16px;
- line-height: 22px;
- }
- }
- }
-
- .swiper--banner--section {
- height: 300px;
- }
- }
- }
- }
- .title--visual {
- position: relative;
- width: 100%;
- overflow: hidden;
- padding:40px 0px;
- &[data-type="small"] {
- .title--visual--wrapper{
- max-width:100%;
- padding:0px 96px;
- .title--visual--content{
- h2{
- color: rgb(252, 252, 253);
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 24px;
- line-height: 36px;
- font-stretch: 130%;
- @media (max-width: 1024px) {
- font-size: 20px;
- line-height: 40px;
- }
- }
- }
- }
- }
- &[data-type="middle"] {
- .title--visual--wrapper{
- max-width:100%;
- padding:0px 96px;
- .title--visual--content{
- h2{
- color: rgb(252, 252, 253);
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 24px;
- line-height: 36px;
- font-stretch: 130%;
-
- @media (min-width: 1024px) {
- font-size: 28px;
- line-height: 40px;
- }
- @media (min-width: 1440px) {
- font-size: 32px;
- line-height: 44px;
- }
- @media (min-width: 1920px) {
- font-size: 36px;
- line-height: 52px;
- }
- }
- }
- }
- }
-
- // 테마별 스타일
- &[data-theme="dark"] {
- color: rgb(252, 252, 253);
-
- .title--description {
- color: rgba(252, 252, 253, 0.8);
- }
- }
-
- &[data-theme="light"] {
- background: rgb(252, 252, 253);
- color: #000;
-
- .title--description {
- color: rgba(0, 0, 0, 0.7);
- }
- }
-
- .title--visual--wrapper {
- margin: 0 auto;
- padding: 0 60px;
- align-content: center;
- box-sizing: content-box;
- display: grid;
- grid-template-columns: 100%;
- padding-bottom: 0px;
- padding-top: 0px;
- @media (min-width:1920px){
- margin: 0 auto;
- max-width:1248px;
- }
-
- @media (max-width: 1024px) {
- padding: 0 40px;
- }
-
- @media (max-width: 768px) {
- padding: 0 20px;
- }
- }
-
- .title--visual--content {
- margin: 0 auto;
-
- &[data-align="left"] {
- margin-left: 0;
- text-align: left;
- .title--main{
- text-align: left;
- }
- }
-
- &[data-align="center"] {
- text-align: center;
- }
-
- &[data-align="right"] {
- margin-right: 0;
- margin-left: auto;
- text-align: right;
- .title--main{
- text-align: right;
- }
- }
-
- // 애니메이션 상태
- &[data-animated="true"] {
- opacity: 0;
- transform: translateY(40px);
- transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
-
- &.visible {
- opacity: 1;
- transform: translateY(0);
- }
- }
- }
-
- .title--main {
- margin: 0 0 24px 0;
- color: rgb(252, 252, 253);
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 36px;
- line-height: 52px;
- font-stretch: 130%;
- overflow-wrap: break-word;
- text-align: center;
-
- @media (max-width: 1920px) {
- font-size: 72px;
- line-height: 100px;
- }
- @media (max-width: 1440px) {
- font-size: 60px;
- line-height: 84px;
- }
- @media (max-width: 1024px) {
- font-size: 52px;
- line-height: 76px;
- }
-
- @media (max-width: 768px) {
- font-size: 44px;
- line-height: 60px;
- }
- }
- .sub--title{
- margin: 0 0 var(--spacing-relative-md) 0;
- color: rgb(252, 252, 253);
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 16px;
- line-height: 24px;
- font-stretch: 130%;
- display: flex;
- padding-bottom:20px;
- @media (min-width: 1440px) {
- font-size: 18px;
- line-height: 28px;
- }
- @media (min-width: 1920px) {
- font-size: 20px;
- line-height: 32px;
- }
- }
-
- .title--description {
- margin: 0;
- color: rgba(252, 252, 253, 0.7);
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 16px;
- line-height: 24px;
- font-stretch: 105%;
- }
-
- .title--additional {
- margin-top: 40px;
-
- @media (max-width: 768px) {
- margin-top: 32px;
- }
- }
- }
- .caution--text--wrapper{
- padding:120px 96px;
- p{
- margin: 0 0 26px 0;
- color: rgba(252, 252, 253, 0.7);
- font-family: AudiType, sans-serif;
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 16px;
- line-height: 24px;
- font-stretch: 105%;
- }
- }
- //좌우 2배열 배너
- .grid--banner--type2{
- width: 100%;
- padding:0 var(--spacing-relative-3xl);
- @media(min-width:1024px){
- padding:0 var(--spacing-relative-xl);
- }
- @media(min-width:1440px){
- padding:0 var(--spacing-relative-2xl);
- }
- @media(min-width:1920px){
- padding:0 var(--spacing-relative-3xl);
- }
- >ul{
- width:100%;
- display: flex;
- flex-wrap: wrap;
- gap:16px;
- >li{
- width:calc( (100% - 16px)/2);
- padding-bottom:40px;
- @media(max-width:720px){
- width:100%;
- }
-
- .thumb{
- border-radius: 20px;
- overflow: hidden;
- img{
- width: 100%;;
- object-fit: cover;
- }
- }
- .desc--wrapper{
- @media screen and (min-width: 768px) {
- padding-block-start: var(--spacing-relative-lg);
- padding-inline-end: var(--spacing-relative-xl);
- }
-
- @media screen and (min-width: 1920px) {
- padding-block-start: var(--spacing-relative-lg);
- padding-inline-end: var(--spacing-relative-xl);
- }
-
- h2{
- margin: 0px;
- color: rgb(252, 252, 253);
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 20px;
- line-height: 32px;
- font-stretch: 130%;
- @media(min-width:1440px){
- font-size: 24px;
- line-height: 36px;
- }
- }
- h3{
- margin: var(--spacing-relative-xs) 0 0 0;
- color: rgba(252, 252, 253, 0.7);
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 16px;
- line-height: 24px;
- font-stretch: 105%;
- }
- }
- }
- }
- }
- .row--block--wrapper{
- &[data-type-row="3"]{
- >div{
- >ul{
- > li{
- width:calc( (100% - 40px) / 3);
- .thumb{
- img{
- width:100%;
- object-fit: cover;
- }
- }
- }
- }
- }
- }
- > div{
- padding:0 var(--spacing-relative-3xl);
- >ul {
- display: flex;
- flex-wrap: wrap;
- gap:20px;
- > li{
- width:calc(50% - 10px);
- padding-bottom:40px;
- .thumb{
- border-radius: 20px;
- position: relative;
- height:0px;
- overflow: hidden;
- padding-top:56.25%;
- img{
- position: absolute;
- height:100%;
- inset: 0px;
- }
- }
- .desc--wrap{
- @media screen and (min-width: 768px) {
- padding-block-start: var(--spacing-relative-lg);
- padding-inline-end: var(--spacing-relative-xl);
- }
- @media screen and (min-width: 1920px) {
- padding-block-start: var(--spacing-relative-lg);
- padding-inline-end: var(--spacing-relative-xl);
- }
- .title{
- margin: 0px;
- color: rgb(252, 252, 253);
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 20px;
- line-height: 32px;
- font-stretch: 130%;
- @media (min-width: 1440px) {
- font-size: 24px;
- line-height: 36px;
- }
- }
- .captions{
- margin: var(--spacing-relative-xs) 0 0 0;
- color: rgba(252, 252, 253, 0.7);
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 16px;
- line-height: 24px;
- font-stretch: 105%;
- }
- .small--text{
- color: rgba(252, 252, 253, 0.7);
- font-size:12px;
- white-space: pre-line;
- padding-top:20px;
- }
- .captions--text{
- padding-top:30px;
- font-weight: 400;
- text-decoration: none;
- font-size: 16px;
- line-height: 24px;
- font-stretch: 105%;
- color: rgba(252, 252, 253, 0.7);
- }
- }
- }
- }
- }
- }
- // FAQ Accordion Styles
- .faq--accordion--wrapper {
- max-width: 1920px;
- margin: 0 auto;
- padding: 40px 96px;
- @media (max-width: 1024px) {
- padding: 32px 60px;
- }
- @media (max-width: 768px) {
- padding: 24px 40px;
- }
- @media (max-width: 375px) {
- padding: 20px 28px;
- }
- }
- .faq--accordion--container {
- display: flex;
- flex-direction: column;
- border-top: 1px solid rgba(101, 112, 129, 0.3);
- }
- .faq--accordion--item {
- border-bottom: 1px solid rgba(101, 112, 129, 0.3);
- }
- .faq--accordion--header {
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 12px 0;
- background: transparent;
- border: none;
- cursor: pointer;
- transition: all 0.3s ease;
- &:hover {
- .faq--question {
- color: rgba(252, 252, 253, 0.8);
- }
- }
- &.active {
- background-color: rgb(64, 74, 89);
- color: rgba(252, 252, 253, 0.7);
- .faq--question {
- color: rgb(252, 252, 253);
- font-weight: 500;
- }
- .faq--toggle--icon {
- color: rgb(252, 252, 253);
- }
- }
- }
- .faq--question {
- flex: 1;
- text-align: left;
- font-size: 18px;
- line-height: 1.5;
- color: rgba(252, 252, 253, 0.7);
- transition: all 0.3s ease;
- padding-right: 24px;
- padding-left:20px;
- @media (max-width: 768px) {
- font-size: 16px;
- }
- }
- .faq--toggle--icon {
- font-size: 28px;
- font-weight: 300;
- color: rgba(252, 252, 253, 0.5);
- transition: all 0.3s ease;
- min-width: 32px;
- text-align: center;
- margin-right:20px;
- }
- .faq--accordion--content {
- overflow: hidden;
- animation: slideDown 0.3s ease;
- }
- .faq--answer {
- padding: 20px 50px 32px 20px;
- font-size: 16px;
- line-height: 1.7;
- color: rgba(252, 252, 253, 0.8);
- @media (max-width: 768px) {
- font-size: 14px;
- padding: 0 0 24px 0;
- }
- }
- @keyframes slideDown {
- from {
- opacity: 0;
- transform: translateY(-10px);
- }
- to {
- opacity: 1;
- transform: translateY(0);
- }
- }
- /*=================================================
- |컴포넌트 별 css
- |END
- =================================================*/
- // 로그인 폼 기본 디폴트 디자인
- .admin--login {
- min-height: 100vh;
- background: #000000;
- display: flex;
- align-items: center;
- justify-content: center;
- font-family: 'AudiType', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
-
- .login--container {
- width: 100%;
- max-width: 480px;
- padding: 20px;
- }
-
- .login--box {
- background: #0a0a0a;
- border: 1px solid rgba(255, 255, 255, 0.1);
- border-radius: 12px;
- padding: 60px 40px;
- box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
- }
-
- .login--logo {
- text-align: center;
- margin-bottom: 50px;
-
- h1 {
- font-size: 48px;
- font-weight: 700;
- color: #ffffff;
- letter-spacing: 8px;
- margin: 0;
- font-stretch: 130%;
- }
-
- .subtitle {
- color: rgba(255, 255, 255, 0.4);
- font-size: 14px;
- text-transform: uppercase;
- letter-spacing: 3px;
- margin-top: 10px;
- }
- }
-
- .login--form {
- .form--group {
- margin-bottom: 24px;
- }
-
- .form--input {
- width: 100%;
- height: 52px;
- background: #000000;
- border: 1px solid rgba(255, 255, 255, 0.15);
- border-radius: 8px;
- padding: 0 20px;
- font-size: 15px;
- color: #ffffff;
- transition: all 0.3s ease;
-
- &::placeholder {
- color: rgba(255, 255, 255, 0.6);
- }
-
- &:focus {
- outline: none;
- border-color: rgba(255, 255, 255, 0.4);
- background: rgba(255, 255, 255, 0.02);
- }
-
- &:hover {
- border-color: rgba(255, 255, 255, 0.25);
- }
- }
-
- .form--options {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 32px;
-
- .checkbox--label {
- display: flex;
- align-items: center;
- cursor: pointer;
- color: rgba(255, 255, 255, 0.6);
- font-size: 14px;
-
- input[type="checkbox"] {
- width: 18px;
- height: 18px;
- margin-right: 10px;
- background: #000000;
- border: 1px solid rgba(255, 255, 255, 0.3);
- border-radius: 4px;
- cursor: pointer;
- accent-color: #ffffff;
- }
-
- &:hover {
- color: rgba(255, 255, 255, 0.8);
- }
- }
-
- .forgot--password {
- color: rgba(255, 255, 255, 0.6);
- font-size: 14px;
- text-decoration: none;
- transition: color 0.3s ease;
-
- &:hover {
- color: #ffffff;
- }
- }
- }
-
- .login--button {
- width: 100%;
- height: 52px;
- background: #ffffff;
- color: #000000;
- border: none;
- border-radius: 8px;
- font-size: 16px;
- font-weight: 600;
- letter-spacing: 1px;
- cursor: pointer;
- transition: all 0.3s ease;
-
- &:hover {
- background: rgba(255, 255, 255, 0.9);
- transform: translateY(-2px);
- box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
- }
-
- &:active {
- transform: translateY(0);
- }
- }
- }
-
- .login--footer {
- text-align: center;
- margin-top: 40px;
-
- p {
- color: rgba(255, 255, 255, 0.3);
- font-size: 12px;
- letter-spacing: 0.5px;
- }
- }
- }
- //자세히 보기
- .more--detail--href{
- display: inline-flex;
- align-items: center;
- position: relative;
- letter-spacing: 0px;
- font-weight: 400;
- font-size: 14px;
- min-height:24px;
- &:after{
- content:'';
- display: block;
- width:calc(100% - 24px);
- height:1px;
- background: rgb(252, 252, 253);
- position: absolute;
- bottom:0px;
- left:0px;
- }
- .ico{
- width: 24px;
- height: 24px;
- background-image: url(/img/ico--arrow.svg);
- }
- }
- //탭 링크
- .text--tab--layout{
- display: flex;
- background: linear-gradient(134deg, rgb(44, 52, 63) 0%, rgb(35, 42, 52) 100%);
- position: sticky;
- top: 0;
- z-index: 100;
- @media(min-width:1440px){
- display: grid;
- grid-auto-flow: column;
- grid-template-columns: max-content 1fr auto;
- gap: 28px;
- width: 100%;
- box-sizing: border-box;
- overflow: hidden;
- }
- @media(min-width:1025px){
- padding-block:12px;
- }
- ul{
- display: flex;
- position: relative;
- padding-inline:96px;
- -webkit-box-align: center;
- align-items: center;
- -webkit-box-pack: justify;
- justify-content: space-between;
- li {
- &.anch--location{
- a{
- margin-left:-12px;
- pointer-events: inherit!important;
- }
- }
- &:first-child{
- &.link--force{
- a{
- pointer-events: inherit!important;
- }
- }
- a{
- margin-left:-12px;
- pointer-events: none;
- }
- }
- a{
- cursor: pointer;
- display: flex;
- -webkit-box-align: center;
- align-items: center;
- -webkit-box-pack: center;
- justify-content: center;
- text-decoration: none;
- border-radius: 10px;
- background: rgba(44, 52, 63, 0);
- box-shadow: rgba(219, 223, 230, 0) 0px 0px 0px 1px inset;
- outline-offset: -3px;
- box-sizing: border-box;
- transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
- transition-duration: 250ms;
- transition-property: color, background, box-shadow;
- min-height: 48px;
- min-width: 64px;
- color: rgba(252, 252, 253, 0.7);
- padding: 0px 16px;
- text-align: center;
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 14px;
- line-height: 20px;
- font-stretch: 105%;
- &.actv,
- &:hover{
- color:rgb(252,252,253)!important;
- background-color: rgb(44,52,63)!important;
- box-shadow: rgba(219, 223,230, .2) 0px 0px 0px 1px inset!important;
- }
- }
- }
- }
- }
- .inner--link--contents {
- width: 100%;
- padding: 40px 0;
-
- ul {
- list-style: none;
- margin: 0;
- padding: 0;
- display: flex;
- flex-wrap: wrap;
- gap: 24px;
- width: 100%;
- padding:0 96px;
-
- li {
- width:calc( (100% - 48px) / 3);
- --gradient-start: hsla(216, 20%, 17%, 1);
- --gradient-end: hsla(216, 21%, 12%, 1);
- transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
- transition-duration: 250ms;
- transition-property: --gradient-start, --gradient-end, box-shadow;
- padding:28px 16px;
- overflow: hidden;
- border-radius: 20px;
- border: none;
- cursor: pointer;
- box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
- backdrop-filter: blur(40px);
- background: linear-gradient(180deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
- display: flex;
- text-decoration: none;
- &:hover{
- --gradient-start: hsla(216, 18%, 21%, 1);
- --gradient-end: hsla(216, 18%, 21%, 1);
- box-shadow: rgb(42,57,64) 0px 0px 0px 1px inset;
- }
- a {
- display: inline-flex;
- align-items: center;
- color: rgba(252, 252, 253, 0.7);;
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 12px;
- line-height: 24px;
- font-stretch: 105%;
- padding-left:40px;
- position: relative;
- width:100%;
- >span{
- position: absolute;
- top:50%;
- left:0px;
- transform: translateY(-50%);
- }
- > svg{
- position: absolute;
- top:50%;
- transform: translateY(-50%);
- right:0px;
- }
- }
- }
- }
- }
- .product--card--wrapper{
- margin: auto;
- max-width: var(--max-content-width);
- padding: var(--spacing-relative-xl) var(--spacing-relative-md);
- padding-inline: var(--page-margin);
- padding-block-end: var(--spacing-relative-2xl);
-
- @media (min-width: 375px) {
- padding-inline: var(--page-margin);
- }
-
- @media (min-width: 768px) {
- padding-inline: var(--page-margin);
- }
-
- @media (min-width: 1024px) {
- padding-inline: var(--spacing-relative-3xl);
- padding-block-end: var(--spacing-relative-2xl);
- }
- @media (min-width: 1440px) {
- padding-inline: var(--page-margin);
- padding-block-end: var(--spacing-relative-2xl);
- }
- &[data-type="square"] {
- max-height:100%!important;
- .product--card{
- max-height:100%!important;
- .product--card--thumb{
- max-height: 100%!important;
- padding-top:50%;
- .product--card--thumb--inner{
- position: absolute;
- inset: 0px;
- height: 100%;
- img{
- position: relative;
- }
- }
- }
- }
- }
- .product--card {
- display: flex;
- overflow: hidden;
- max-height: 50vh;
-
- // 가로 레이아웃
- &[data-layout="horizontal"] {
- flex-direction: row;
- align-items: center;
-
- .product--card--thumb {
- flex: 0 0 40%;
- max-width: 600px;
- }
-
- .product--card--content {
- flex: 1;
- }
-
- // 이미지 오른쪽 배치
- &[data-image-position="right"] {
- flex-direction: row-reverse;
- }
-
- @media (max-width: 1024px) {
- flex-direction: column;
-
- .product--card--thumb {
- flex: 1;
- max-width: 100%;
- }
-
- .product--card--content {
- padding-left: 0;
- padding-right: 0;
- padding-top: 20px;
- }
-
- // 모바일에서는 이미지 위치 상관없이 세로 배치
- &[data-image-position="right"] {
- flex-direction: column;
-
- .product--card--content {
- padding-right: 0;
- padding-top: 20px;
- }
- }
- }
- }
-
- // 세로 레이아웃
- &[data-layout="vertical"] {
- flex-direction: column;
- max-width: 600px;
-
- .product--card--thumb {
- width: 100%;
- }
-
- .product--card--content {
- padding-top: 24px;
- }
- }
-
- .product--card--thumb {
- background: rgba(255, 255, 255, 0.05);
- min-width:50%;
- position: relative;
- max-height: 50vh;
- border-radius: 20px;
- position: relative;
- overflow: hidden;
-
- .product--card--thumb--inner{
- height:100%;
- min-height:50vh;
- img {
- width: 100%;
- height: 100%;
- object-fit: cover;
- display: block;
- transition: transform 0.6s ease;
- position: absolute;
- height: 100%;
- }
-
- &:hover img {
- transform: scale(1.05);
- }
- }
- }
-
- .product--card--content {
- display: flex;
- flex-direction: column;
- gap: 16px;
- @media screen and (min-width: 320px) {
- padding-block-start: var(--spacing-relative-lg);
- }
- @media screen and (min-width: 1024px) {
- -webkit-box-pack: center;
- justify-content: center;
- align-items: flex-start;
- padding-inline-start: var(--spacing-relative-2xl);
- padding-inline-end: var(--spacing-relative-2xl);
- padding-block-start: 0px;
- }
- }
-
- .product--card--title {
- margin: 0px;
- color: rgb(252, 252, 253);
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 24px;
- line-height: 36px;
- font-stretch: 130%;
-
- @media (min-width: 1024px) {
- font-size: 28px;
- line-height: 40px;
- }
- @media (min-width: 1440px) {
- font-size: 32px;
- line-height: 44px;
- }
- @media (min-width: 1920px) {
- font-size: 36px;
- line-height: 52px;
- }
-
- }
- .product--card--smalltitle {
- margin: 0px;
- color: rgb(252, 252, 253);
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 20px;
- line-height: 32px;
- font-stretch: 130%;
- @media (min-width: 1440px) {
- font-size: 24px;
- line-height: 36px;
- }
- }
- .product--card--subtitle {
- margin: 0;
- color: rgba(252, 252, 253, 0.8);
- font-size: 16px;
- line-height: 24px;
-
- }
-
- .product--card--description {
- margin-top: 8px;
-
- p {
- margin: 0px;
- color: rgba(252, 252, 253, 0.7);
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 16px;
- line-height: 24px;
- font-stretch: 105%;
- }
- }
- .product--card--small--description{
- margin-top:20px;
- p {
- margin: 0px;
- color: rgba(252, 252, 253, 0.7);
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 12px;
- line-height: 20px;
- font-stretch: 105%;
- }
- }
-
- .product--card--actions {
- margin-top: 24px;
- display: flex;
- gap: 16px;
- flex-wrap: wrap;
-
-
- }
-
- @media (max-width: 768px) {
- padding: 24px;
- gap: 24px;
- }
- }
- }
- .radius--img--wrap{
- overflow: hidden;
- border-radius: 20px;
- }
- // 딜러 검색 드롭다운 스타일
- .dealer--search--section {
- width: 100%;
- max-width: 1920px;
- margin: 0 auto;
- padding: 80px 96px;
- background-color: hsla(216, 23%, 8%, 1);
- }
- .dealer--search--container {
- display: flex;
- flex-direction: column;
- gap: 48px;
- border-top: 1px solid rgba(252, 252, 253, 0.15);
- }
- .dealer--category--wrap {
- display: flex;
- flex-direction: column;
- }
- .dealer--category--title {
- font-size: 28px;
- font-weight: 600;
- margin: 0 0 24px 0;
- color: rgb(252, 252, 253);
- padding-bottom: 16px;
- border-bottom: 2px solid rgba(252, 252, 253, 0.3);
- }
- .dealer--region--item {
- border-bottom: 1px solid rgba(252, 252, 253, 0.15);
-
- }
- .dealer--region--header {
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 20px 24px;
- background-color: transparent;
- border: none;
- color: rgb(252, 252, 253);
- cursor: pointer;
- transition: all 0.3s ease;
- &:hover {
- background-color: rgba(252, 252, 253, 0.05);
- }
- &.active {
- background-color: rgba(252, 252, 253, 0.08);
- }
- }
- .dealer--region--name {
- font-size: 18px;
- font-weight: 500;
- }
- .dealer--toggle--icon {
- font-size: 28px;
- line-height: 1;
- transition: transform 0.3s ease;
- }
- .dealer--list--content {
- padding: 0 24px 24px;
- animation: slideDown 0.3s ease;
- }
- @keyframes slideDown {
- from {
- opacity: 0;
- transform: translateY(-10px);
- }
- to {
- opacity: 1;
- transform: translateY(0);
- }
- }
- .dealer--list {
- list-style: none;
- padding: 0;
- padding-left:10px;
- margin: 0;
- display: flex;
- flex-direction: column;
- gap: 0px;
- li {
- margin: 0;
- position: relative;
- &:before{
- content:'>';
- font-size:12px;
- margin-right:10px;
- }
- a{
- text-decoration: underline;
- }
-
- }
- }
- .dealer--link {
- display: inline-block;
- color: rgba(252, 252, 253, 0.7);
- text-decoration: none;
- font-size: 16px;
- transition: all 0.2s ease;
- padding: 8px 0;
- &:hover {
- color: rgb(252, 252, 253);
- text-decoration: underline;
- }
- }
- // 반응형 처리
- @media (max-width: 1024px) {
- .dealer--search--section {
- padding: 60px 48px;
- }
- .dealer--search--container {
- gap: 40px;
- }
- .dealer--category--title {
- font-size: 24px;
- margin-bottom: 20px;
- padding-bottom: 12px;
- }
- .dealer--region--header {
- padding: 16px 20px;
- }
- .dealer--region--name {
- font-size: 16px;
- }
- .dealer--list--content {
- padding: 0 20px 20px;
- }
- .dealer--list {
- gap: 6px;
- }
- }
- @media (max-width: 768px) {
- .dealer--search--section {
- padding: 40px 24px;
- }
- .dealer--search--container {
- gap: 32px;
- }
- .dealer--category--title {
- font-size: 20px;
- margin-bottom: 16px;
- padding-bottom: 10px;
- }
- .dealer--region--header {
- padding: 14px 16px;
- }
- .dealer--region--name {
- font-size: 15px;
- }
- .dealer--toggle--icon {
- font-size: 24px;
- }
- .dealer--list--content {
- padding: 0 16px 16px;
- }
- .dealer--list {
- gap: 6px;
- }
- .dealer--link {
- font-size: 14px;
- padding: 6px 0;
- }
- }
- // 딜러 검색 페이지 스타일
- .dealer--search--section{
- padding: 64px 96px;
- .dealer--search--container{
- margin: 0 auto;
- }
- .dealer--category--wrap{
- display: flex;
- flex-direction: column;
- gap: 16px;
- }
- .dealer--region--item{
- border-bottom: 1px solid rgba(252, 252, 253, 0.1);
- }
- .dealer--region--header{
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 24px 0;
- background: transparent;
- border: none;
- color: #fcfcfd;
- font-size: 24px;
- font-family: 'AudiType';
- font-weight: 400;
- transition: all 0.3s;
- &:hover{
- color: rgba(252, 252, 253, 0.7);
- }
- &.active{
- color: #fcfcfd;
- }
- }
- .dealer--region--name{
- font-size: 24px;
- }
- .dealer--toggle--icon{
- font-size: 32px;
- line-height: 1;
- font-weight: 300;
- }
- .dealer--list--content{
- padding-bottom: 24px;
- }
- .dealer--list{
- display: flex;
- flex-direction: column;
- gap: 16px;
- >li{
- list-style: none;
- }
- }
- .dealer--link{
- display: inline-block;
- color: rgba(252, 252, 253, 0.7);
- font-size: 16px;
- text-decoration: underline;
- text-underline-offset: 4px;
- transition: all 0.3s;
- background: transparent;
- border: none;
- font-family: 'AudiType';
- font-weight: 400;
- padding: 0;
- cursor: pointer;
- &:hover{
- color: #fcfcfd;
- }
- }
- }
- // 딜러 팝업 스타일
- .dealer--popup--overlay{
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background-color: rgba(2, 2, 3, 0.85);
- display: flex;
- justify-content: center;
- align-items: center;
- z-index: 9999;
- padding: 20px;
- }
- .dealer--popup--container{
- position: relative;
- background-color: #1a1d23;
- border-radius: 20px;
- max-width: 1024px;
- width: 100%;
- max-height: 90vh;
- overflow-y: auto;
- box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
- &::-webkit-scrollbar{
- width: 8px;
- }
- &::-webkit-scrollbar-track{
- background: transparent;
- }
- &::-webkit-scrollbar-thumb{
- background: rgba(252, 252, 253, 0.2);
- border-radius: 4px;
- &:hover{
- background: rgba(252, 252, 253, 0.3);
- }
- }
-
- @media (min-width: 320px) {
- padding: 16px;
- }
- @media (min-width: 375px) {
- padding: 28px;
- }
-
- @media (min-width: 768px) {
- padding: 48px;
- }
- @media (min-width: 1024px) {
- padding: 56px;
- }
- @media (min-width: 1440px) {
- padding: 64px;
- }
- }
- .dealer--popup--close{
- position: absolute;
- top: 24px;
- right: 24px;
- width: 40px;
- height: 40px;
- background: transparent;
- border: none;
- cursor: pointer;
- z-index: 1;
- display: flex;
- justify-content: center;
- align-items: center;
- border-radius: 50%;
- transition: all 0.3s;
- &:hover{
- background-color: rgba(252, 252, 253, 0.1);
- }
- .close--icon{
- width: 24px;
- height: 24px;
- position: relative;
- &::before,
- &::after{
- content: '';
- position: absolute;
- top: 50%;
- left: 50%;
- width: 20px;
- height: 2px;
- background-color: #fcfcfd;
- }
- &::before{
- transform: translate(-50%, -50%) rotate(45deg);
- }
- &::after{
- transform: translate(-50%, -50%) rotate(-45deg);
- }
- }
- }
- .dealer--popup--content{
- margin: auto;
- max-width: var(--max-content-width);
- display: grid;
- grid-template-columns: 1fr;
- grid-template-rows: 1fr;
- grid-template-areas:"media" "textarea";
- padding: var(--spacing-relative-xl) var(--spacing-relative-md);
- @media (min-width: 1024px) {
- grid-template-columns: 1fr 1fr;
- grid-template-areas: "media textarea";
- }
-
- @media (min-width: 1440px) {
- grid-template-columns: 1fr 1fr;
- grid-template-areas: "media textarea";
- }
- .dealer--thumb--wrap{
- border-radius: 20px;
- overflow: hidden;
- }
- .dealer--infos--wrap{
- grid-area: textarea;
- align-self: center;
- @media screen and (min-width: 320px) {
- padding-block-start: var(--spacing-relative-lg);
- }
-
- @media screen and (min-width: 1024px) {
- display: flex;
- flex-direction: column;
- -webkit-box-pack: center;
- justify-content: center;
- align-items: flex-start;
- padding-inline-start: var(--spacing-relative-2xl);
- padding-inline-end: var(--spacing-relative-2xl);
- padding-block-start: 0px;
- }
-
-
- }
- }
- .dealer--popup--header{
- .dealer--name{
- margin: 0px;
- color: rgb(252, 252, 253);
- font-family: AudiType, sans-serif;
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 24px;
- line-height: 36px;
- font-stretch: 130%;
-
- @media (min-width: 1024px) {
- font-size: 28px;
- line-height: 40px;
- }
-
- @media (min-width: 1440px) {
- font-size: 32px;
- line-height: 44px;
- }
-
- @media (min-width: 1920px) {
- font-size: 36px;
- line-height: 52px;
- }
-
-
- }
- .dealer--type{
- display: inline-block;
- font-size: 14px;
- color: rgba(252, 252, 253, 0.7);
- padding: 4px 12px;
- background-color: rgba(252, 252, 253, 0.1);
- border-radius: 100px;
- }
- }
- .dealer--popup--body{
- display: flex;
- flex-direction: column;
- gap: 8px;
- padding-top:8px;
- }
- .dealer--info--section{
- display: flex;
- flex-direction: column;
- gap: 8px;
- .info--label{
- margin: 0px;
- color: rgba(252, 252, 253, 0.7);
- font-family: AudiType, sans-serif;
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 16px;
- line-height: 24px;
- font-stretch: 105%;
- a{
- word-break: break-all;
- }
- }
- .phone--link,
- .email--link,
- .website--link{
- color: #fcfcfd;
- text-decoration: underline;
- text-underline-offset: 4px;
- transition: all 0.3s;
- &:hover{
- color: rgba(252, 252, 253, 0.7);
- }
- }
- .business--hours--item{
- line-height: 1.8;
- }
- }
- .dealer--popup--footer{
- margin-top: 40px;
- padding-top: 24px;
- border-top: 1px solid rgba(252, 252, 253, 0.1);
- display: flex;
- justify-content: center;
- }
- .dealer--popup--empty{
- padding: 80px 48px;
- text-align: center;
- >p{
- font-size: 16px;
- color: rgba(252, 252, 253, 0.7);
- }
- }
- // 팝업 페이드 애니메이션
- .dealer--popup--fade-enter-active,
- .dealer--popup--fade-leave-active{
- transition: opacity 0.3s ease;
- .dealer--popup--container{
- transition: transform 0.3s ease, opacity 0.3s ease;
- }
- }
- .dealer--popup--fade-enter-from,
- .dealer--popup--fade-leave-to{
- opacity: 0;
- .dealer--popup--container{
- transform: scale(0.95);
- opacity: 0;
- }
- }
- .dealer--popup--fade-enter-to,
- .dealer--popup--fade-leave-from{
- opacity: 1;
- .dealer--popup--container{
- transform: scale(1);
- opacity: 1;
- }
- }
- /*=================================================
- |버튼 리스트 css
- |START
- =================================================*/
- .light--gray--btn{
- border: 0px;
- flex-direction: column;
- -webkit-box-align: center;
- align-items: center;
- -webkit-box-pack: center;
- justify-content: center;
- transition-timing-function:cubic-bezier(0.75, 0.02, 0.5, 1);
- transition-duration: 250ms;
- border-radius: 999px;
- cursor: pointer;
- display: inline-flex;
- box-sizing: border-box;
- text-align: center;
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 12px;
- line-height: 16px;
- font-stretch: 105%;
- padding: 8px 16px;
- min-height: 36px;
- background: rgb(101, 112, 129);
- color: rgb(252, 252, 253);
- box-shadow: rgba(101, 112, 129, 0) 0px 0px 0px 1px inset;
- &:hover{
- color:rgb(252,252,253);
- background-color: rgb(44,52,63);
- box-shadow: rgba(219, 223,230, .2) 0px 0px 0px 1px inset;
- }
- }
- .default--round--btn {
- flex-direction: column;
- -webkit-box-align: center;
- align-items: center;
- -webkit-box-pack: center;
- justify-content: center;
- transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
- transition-duration: 250ms;
- border-radius: 999px;
- cursor: pointer;
- display: inline-flex;
- border: 0px;
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 14px;
- line-height: 20px;
- font-stretch: 105%;
- padding: 12px 24px;
- min-height: 48px;
- background-color: rgb(24, 29, 37);
- color: rgb(252, 252, 253);
- box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
- transition-property: color, box-shadow, background-color;
-
- &.reverse{
- background: rgba(44,52,63);
- box-shadow: rgba(219,223,230, .2) 0px 0px 0px 1px inset;
- &:hover {
- background-color: rgb(24, 29, 37);
- color: rgb(252, 252, 253);
- box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
- }
- }
- &:hover {
- background: rgba(44,52,63);
- box-shadow: rgba(219,223,230, .2) 0px 0px 0px 1px inset;
- }
-
- &:active {
- transform: translateY(0);
- }
- }
- /*=================================================
- |버튼 리스트 css
- |뚱
- =================================================*/
|