admin.scss 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694
  1. @charset "UTF-8";
  2. @font-face {
  3. font-family: 'AudiType';
  4. src: url('/fonts/AudiTypeVF.woff2') format('woff2-variations');
  5. font-display: swap;
  6. font-style: normal;
  7. font-stretch: 130%;
  8. }
  9. // Utility classes for padding and margin (1-100)
  10. @for $i from 1 through 200 {
  11. // Padding
  12. .pt--#{$i} { padding-top: #{$i}px !important; }
  13. .pr--#{$i} { padding-right: #{$i}px !important; }
  14. .pb--#{$i} { padding-bottom: #{$i}px !important; }
  15. .pl--#{$i} { padding-left: #{$i}px !important; }
  16. .p--#{$i} { padding: #{$i}px !important; }
  17. // Margin
  18. .mt--#{$i} { margin-top: #{$i}px !important; }
  19. .mr--#{$i} { margin-right: #{$i}px !important; }
  20. .mb--#{$i} { margin-bottom: #{$i}px !important; }
  21. .ml--#{$i} { margin-left: #{$i}px !important; }
  22. .m--#{$i} { margin: #{$i}px !important; }
  23. }
  24. @for $i from 14 through 40 {
  25. .ft--#{$i} {font-size : #{$i}px !important;}
  26. }
  27. html {
  28. scroll-behavior: smooth;
  29. }
  30. :root {
  31. --max-content-width: 1920px;
  32. --page-margin: 16px;
  33. @media (min-width: 375px) {
  34. --page-margin: 28px;
  35. }
  36. @media (min-width: 768px) {
  37. --page-margin: 40px;
  38. }
  39. @media (min-width: 1024px) {
  40. --page-margin: 60px;
  41. }
  42. @media (min-width: 1440px) {
  43. --page-margin: 96px;
  44. }
  45. @media (min-width: 1920px) {
  46. --page-margin: 96px;
  47. }
  48. @property --gradient-start {
  49. syntax: '<color>';
  50. initial-value: transparent;
  51. inherits: false;
  52. }
  53. @property --gradient-end {
  54. syntax: '<color>';
  55. initial-value: transparent;
  56. inherits: false;
  57. }
  58. --spacing-relative-2xs: 4px;
  59. --spacing-relative-xs: 8px;
  60. --spacing-relative-sm: 12px;
  61. --spacing-relative-md: 16px;
  62. --spacing-relative-lg: 24px;
  63. --spacing-relative-xl: 28px;
  64. --spacing-relative-2xl: 36px;
  65. --spacing-relative-3xl: 40px;
  66. --spacing-relative-4xl: 48px;
  67. --spacing-relative-5xl: 64px;
  68. --spacing-relative-6xl: 80px;
  69. --spacing-relative-7xl: 96px;
  70. --spacing-relative-8xl: 120px;
  71. @media (min-width: 768px) {
  72. --spacing-relative-3xl: 48px;
  73. --spacing-relative-4xl: 64px;
  74. --spacing-relative-5xl: 72px;
  75. --spacing-relative-6xl: 88px;
  76. --spacing-relative-7xl: 104px;
  77. --spacing-relative-8xl: 136px;
  78. }
  79. @media (min-width: 1024px) {
  80. --spacing-relative-2xl: 40px;
  81. --spacing-relative-3xl: 56px;
  82. --spacing-relative-4xl: 72px;
  83. --spacing-relative-5xl: 88px;
  84. --spacing-relative-6xl: 104px;
  85. --spacing-relative-7xl: 128px;
  86. --spacing-relative-8xl: 168px;
  87. }
  88. @media (min-width: 1440px) {
  89. --spacing-relative-xl: 32px;
  90. --spacing-relative-2xl: 56px;
  91. --spacing-relative-3xl: 72px;
  92. --spacing-relative-4xl: 88px;
  93. --spacing-relative-5xl: 104px;
  94. --spacing-relative-6xl: 120px;
  95. --spacing-relative-7xl: 160px;
  96. --spacing-relative-8xl: 216px;
  97. }
  98. @media (min-width: 1920px) {
  99. --spacing-relative-xl: 40px;
  100. --spacing-relative-2xl: 72px;
  101. --spacing-relative-3xl: 88px;
  102. --spacing-relative-4xl: 104px;
  103. --spacing-relative-5xl: 120px;
  104. --spacing-relative-6xl: 136px;
  105. --spacing-relative-7xl: 176px;
  106. --spacing-relative-8xl: 248px;
  107. }
  108. }
  109. //풀사이즈 레이아웃 구성
  110. .detail--container--full{
  111. .thumb--solo{
  112. overflow: hidden;
  113. border-radius: 20px;
  114. img{
  115. width:100%;
  116. max-width:100%;
  117. }
  118. }
  119. .inner--wrapper{
  120. padding:0 var(--spacing-relative-3xl);
  121. .service--detail{
  122. padding:45px 0px;
  123. h1{
  124. margin: 0 0 var(--spacing-relative-md) 0;
  125. color: rgb(252, 252, 253);
  126. letter-spacing: 0px;
  127. font-weight: 400;
  128. text-decoration: none;
  129. font-size: 28px;
  130. line-height: 40px;
  131. font-stretch: 130%;
  132. @media (min-width: 1024px) {
  133. font-size: 36px;
  134. line-height: 52px;
  135. }
  136. @media (min-width: 1440px) {
  137. font-size: 40px;
  138. line-height: 60px;
  139. }
  140. @media (min-width: 1920px) {
  141. font-size: 44px;
  142. line-height: 64px;
  143. }
  144. }
  145. h2{
  146. margin: 0 0 var(--spacing-relative-md) 0;
  147. color: rgb(252, 252, 253);
  148. font-family: AudiType, sans-serif;
  149. letter-spacing: 0px;
  150. font-weight: 400;
  151. text-decoration: none;
  152. font-size: 24px;
  153. line-height: 36px;
  154. font-stretch: 130%;
  155. &.middle{
  156. font-size:26px;
  157. }
  158. @media (min-width: 1024px) {
  159. font-size: 28px;
  160. line-height: 40px;
  161. }
  162. @media (min-width: 1440px) {
  163. font-size: 32px;
  164. line-height: 44px;
  165. }
  166. @media (min-width: 1920px) {
  167. font-size: 36px;
  168. line-height: 52px;
  169. }
  170. }
  171. h3{
  172. margin: 20px 0 var(--spacing-relative-md) 0;
  173. color: rgba(252, 252, 253, 0.7);
  174. letter-spacing: 0px;
  175. font-weight: 400;
  176. text-decoration: none;
  177. font-size: 16px;
  178. line-height: 24px;
  179. font-stretch: 105%;
  180. }
  181. >h4{
  182. margin: 0 0 var(--spacing-relative-md) 0;
  183. color: rgb(252, 252, 253);
  184. letter-spacing: 0px;
  185. font-weight: 400;
  186. text-decoration: none;
  187. font-size: 16px;
  188. line-height: 24px;
  189. font-stretch: 130%;
  190. @media (min-width: 1440px) {
  191. font-size: 18px;
  192. line-height: 28px;
  193. }
  194. @media (min-width: 1920px) {
  195. font-size: 20px;
  196. line-height: 32px;
  197. }
  198. }
  199. >p{
  200. margin: 0px;
  201. color: rgba(252, 252, 253, 0.7);
  202. letter-spacing: 0px;
  203. font-weight: 400;
  204. text-decoration: none;
  205. font-size: 16px;
  206. line-height: 24px;
  207. font-stretch: 105%;
  208. }
  209. .service--process--list{
  210. padding-top:80px;
  211. >li{
  212. position: relative;
  213. padding-left:20px;
  214. margin-bottom:80px;
  215. &.not--before{
  216. padding-left:0px;
  217. &::before{
  218. display: none;
  219. }
  220. }
  221. &::before{
  222. content: ">";
  223. display: block;
  224. width: 100%;
  225. height: 100%;
  226. background-size: contain;
  227. position: absolute;
  228. top: 0;
  229. left: 0;
  230. }
  231. >p{
  232. margin: 0 0 var(--spacing-relative-md) 0;
  233. color: rgba(252, 252, 253, 0.7);
  234. font-family: AudiType, sans-serif;
  235. letter-spacing: 0px;
  236. font-weight: 400;
  237. }
  238. }
  239. }
  240. .data--table--wrap{
  241. @media (min-width: 768px) {
  242. table tbody tr:first-child th,
  243. table tbody tr:first-child td {
  244. border-top: 1px solid rgb(255, 255, 255) !important;
  245. border-right-color: rgb(255, 255, 255) !important;
  246. border-bottom-color: rgb(255, 255, 255) !important;
  247. border-left-color: rgb(255, 255, 255) !important;
  248. }
  249. }
  250. table{
  251. display: block;
  252. width: 100%;
  253. border-spacing: 8px 0px;
  254. border-collapse: separate;
  255. @media (min-width: 768px) {
  256. width: 100%;
  257. }
  258. @media (min-width: 768px) {
  259. display: table;
  260. }
  261. tbody{
  262. @media (min-width: 768px) {
  263. display: table-row-group;
  264. thead{
  265. display: table-header-group;
  266. }
  267. }
  268. td{
  269. letter-spacing: 0px;
  270. font-weight: 400;
  271. text-decoration: none;
  272. font-size: 16px;
  273. line-height: 24px;
  274. font-stretch: 105%;
  275. color: rgba(252, 252, 253, 0.7);
  276. padding: 16px 4px 8px;
  277. vertical-align: top;
  278. display: table-cell;
  279. border-bottom: 1px solid rgb(252, 252, 253);
  280. @media (min-width: 768px) {
  281. padding: 12px 4px 24px;
  282. }
  283. &:not(:last-child) {
  284. margin-bottom: 4px;
  285. }
  286. }
  287. }
  288. }
  289. }
  290. .desc--caution--text{
  291. margin: 0px;
  292. color: rgba(252, 252, 253, 0.7);
  293. letter-spacing: 0px;
  294. font-weight: 400;
  295. text-decoration: none;
  296. font-size: 16px;
  297. line-height: 24px;
  298. font-stretch: 105%;
  299. }
  300. }
  301. }
  302. }
  303. /*=================================================
  304. |컴포넌트 별 css
  305. |START
  306. =================================================*/
  307. //풀사이즈 배너 텍스트1 형
  308. .img--section--full{
  309. width:100%;
  310. position: relative;
  311. &.mask--hidden{
  312. &:before{
  313. display: none;
  314. }
  315. }
  316. &[data-type="cover"] {
  317. >div {
  318. position: relative;
  319. height:100vh;
  320. overflow: hidden;
  321. }
  322. img{
  323. object-fit: cover;
  324. height:auto;
  325. position: absolute;
  326. top:50%;
  327. transform: translateY(-50%);
  328. }
  329. }
  330. &:before{
  331. content:'';
  332. display: block;
  333. width:100%;
  334. height:100%;
  335. position: absolute;
  336. z-index: 2;
  337. pointer-events: none;
  338. inset: 0px;
  339. z-index: 1;
  340. background: linear-gradient(rgba(0, 0, 0, 0) 46.66%, rgb(0, 0, 0) 100%);
  341. }
  342. img{
  343. width:100%;
  344. max-width:100%;
  345. height:100vh;
  346. }
  347. &[data-text-location="top"]{
  348. &:before{
  349. background: linear-gradient(rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
  350. }
  351. .alt--text{
  352. bottom:auto;
  353. top:40px;
  354. }
  355. }
  356. .alt--text{
  357. color: rgb(252, 252, 253);
  358. letter-spacing: 0px;
  359. font-weight: 400;
  360. text-decoration: none;
  361. font-size: 28px;
  362. line-height: 40px;
  363. position: absolute;
  364. bottom:40px;
  365. left:0px;
  366. overflow: hidden;
  367. padding: 0 96px;
  368. white-space: pre-wrap;
  369. z-index: 2;
  370. }
  371. }
  372. //풀사이즈 패럴렉스 1형
  373. .prallax--banner--wrapper{
  374. position: relative;
  375. overflow: hidden;
  376. height:1000px;
  377. .prallax--banner{
  378. position: absolute;
  379. width: 100%;
  380. height: 120%;
  381. transform: translate3d(0, 0, 0); // 초기값 GPU 레이어 생성
  382. -webkit-transform: translate3d(0, 0, 0);
  383. backface-visibility: hidden;
  384. -webkit-backface-visibility: hidden;
  385. //perspective: 1000px;
  386. //-webkit-perspective: 1000px;
  387. position: absolute;
  388. top: -17%;
  389. left: 50%;
  390. will-change: transform;
  391. backface-visibility: hidden;
  392. picture {
  393. width: 100%;
  394. height: 100%;
  395. display: block;
  396. }
  397. img {
  398. width: 100%;
  399. height: 100%;
  400. object-fit: cover;
  401. object-position: center;
  402. transform: translateZ(0); // GPU 가속
  403. -webkit-transform: translateZ(0);
  404. }
  405. }
  406. .text--box--wrapper{
  407. position: absolute;
  408. backface-visibility: hidden;
  409. -webkit-backface-visibility: hidden;
  410. width: 100%;
  411. top:147px;
  412. left: 0px;
  413. z-index: 1;
  414. will-change: transform, opacity;
  415. transform: translate3d(0, 0, 0); // 초기값 GPU 레이어 생성
  416. -webkit-transform: translate3d(0, 0, 0);
  417. display: flex;
  418. -webkit-box-pack: center;
  419. justify-content: center;
  420. transition: opacity 0.1s ease-out;
  421. perspective: 1000px;
  422. -webkit-perspective: 1000px;
  423. .text--container{
  424. max-width:50%;
  425. position: relative;
  426. box-sizing: border-box;
  427. background: linear-gradient(134deg, rgb(44, 52, 63) 0%, rgb(35, 42, 52) 100%);
  428. backdrop-filter: blur(60px);
  429. display: flex;
  430. flex-direction: column;
  431. gap: 24px;
  432. flex-shrink: 0;
  433. flex-basis: 86%;
  434. margin: 88px auto 0 auto;
  435. padding: 40px;
  436. border-radius: 20px;
  437. left: 4%;
  438. flex-basis: 44%;
  439. h2{
  440. margin: 0px;
  441. color: rgb(252, 252, 253);
  442. letter-spacing: 0px;
  443. font-weight: 400;
  444. text-decoration: none;
  445. font-size: 24px;
  446. line-height: 36px;
  447. font-stretch: 130%;
  448. }
  449. p{
  450. margin: 0px;
  451. color: rgba(252, 252, 253, 0.7);
  452. font-family: AudiType, sans-serif;
  453. letter-spacing: 0px;
  454. font-weight: 400;
  455. text-decoration: none;
  456. font-size: 16px;
  457. line-height: 24px;
  458. font-stretch: 105%;
  459. }
  460. a{
  461. transition-timing-function:
  462. cubic-bezier(0.75, 0.02, 0.5, 1);
  463. transition-duration: 250ms;
  464. transition-property: color, text-decoration-color;
  465. display: inline-flex ;
  466. -webkit-box-align: center;
  467. align-items: center;
  468. font-family: AudiType, sans-serif;
  469. letter-spacing: 0px;
  470. font-weight: 400;
  471. text-decoration: underline 1px rgb(252, 252, 253);
  472. font-size: 16px;
  473. line-height: 24px;
  474. font-stretch: 105%;
  475. color: rgb(252, 252, 253);
  476. box-sizing: border-box;
  477. text-underline-offset: 7px;
  478. padding-bottom: 2px;
  479. min-height: 24px;
  480. }
  481. }
  482. }
  483. }
  484. //Swiper 배너 컴포넌트 (30% + 70% 레이아웃)
  485. .swiper--banner--wrapper {
  486. width: 100%;
  487. padding: 40px 96px;
  488. &[data-fit="contain"]{
  489. .swiper--banner--container{
  490. .swiper--banner--section{
  491. .swiper--container{
  492. .swiper-slide{
  493. .slide--image{
  494. img{
  495. object-fit: contain;
  496. }
  497. }
  498. }
  499. }
  500. }
  501. }
  502. }
  503. &[data-type="vertical"]{
  504. padding:0px;
  505. .swiper--banner--container{
  506. flex-direction: column-reverse;
  507. height:auto;
  508. .swiper--controls--section{
  509. flex-direction: row-reverse;
  510. @media(min-width:768px){
  511. padding: 0px 96px;
  512. }
  513. @media(min-width:1024px){
  514. padding: 0px 96px;
  515. }
  516. @media(min-width:1440px){
  517. padding: 0px 96px;
  518. }
  519. @media(min-width:1920px){
  520. padding:24px 96px;
  521. }
  522. .text--content{
  523. width:100%;
  524. .main--title{
  525. margin: 0px;
  526. color: rgb(252, 252, 253);
  527. font-family: AudiType, sans-serif;
  528. letter-spacing: 0px;
  529. font-weight: 400;
  530. text-decoration: none;
  531. font-size: 20px;
  532. line-height: 32px;
  533. font-stretch: 130%;
  534. @media(min-width:1440px){
  535. font-size: 24px;
  536. line-height: 36px;
  537. }
  538. }
  539. .sub--title{
  540. margin: 0px;
  541. color: rgba(252, 252, 253, 0.7);
  542. letter-spacing: 0px;
  543. font-weight: 400;
  544. text-decoration: none;
  545. font-size: 16px;
  546. line-height: 24px;
  547. font-stretch: 105%;
  548. }
  549. }
  550. }
  551. > div{
  552. width:100%;
  553. max-height:100vh;
  554. .swiper--container {
  555. .swiper-slide {
  556. .slide--image {
  557. border-radius: 0px;
  558. }
  559. }
  560. }
  561. }
  562. }
  563. }
  564. .swiper--banner--container {
  565. max-width: 1920px;
  566. height: 70vh;
  567. margin: 0 auto;
  568. display: flex;
  569. min-height: 600px;
  570. // 30% 영역: 컨트롤 및 텍스트
  571. .swiper--controls--section {
  572. width: 30%;
  573. padding: 40px;
  574. display: flex;
  575. flex-direction: column;
  576. justify-content: flex-end;
  577. .controls--top {
  578. margin-bottom: 40px;
  579. .pagination--nav--wrapper {
  580. display: flex;
  581. align-items: flex-start;
  582. justify-content: flex-start;
  583. flex-direction: column;
  584. gap: 20px;
  585. .swiper-pagination {
  586. position: relative;
  587. width: auto;
  588. display: flex;
  589. justify-content: center;
  590. align-items: center;
  591. gap: 12px;
  592. .swiper-pagination-bullet {
  593. width: 24px;
  594. height: 24px;
  595. background: transparent;
  596. border-radius: 50%;
  597. color: rgba(255, 255, 255, 0.6);
  598. font-size: 14px;
  599. font-weight: 400;
  600. display: flex;
  601. align-items: center;
  602. justify-content: center;
  603. cursor: pointer;
  604. transition: all 0.3s ease;
  605. opacity: 1;
  606. margin:0px;
  607. &:hover {
  608. background:rgba(252,252,253,.3)!important;
  609. color: rgba(255, 255, 255, 0.8);
  610. }
  611. &.swiper-pagination-bullet-active {
  612. background: transparent;
  613. color: #fff;
  614. font-weight: 600;
  615. }
  616. }
  617. }
  618. .navigation--buttons {
  619. display: flex;
  620. align-items: center;
  621. justify-content: center;
  622. gap: 16px;
  623. .swiper-pagination{
  624. top:0px;
  625. bottom:0px;
  626. }
  627. .swiper-button-prev{
  628. background: url(/img/ico--back--s.svg) no-repeat center;
  629. }
  630. .swiper-button-next{
  631. background: url(/img/ico--forward--s.svg) no-repeat center;
  632. }
  633. .swiper-button-prev,
  634. .swiper-button-next {
  635. position: relative;
  636. width: 24px;
  637. height: 24px;
  638. border-radius: 50%;
  639. color: white;
  640. margin: 0;
  641. transition: all 0.3s ease;
  642. cursor: pointer;
  643. &:hover{
  644. background:rgba(252,252,253,.3) ;
  645. }
  646. &.swiper-button-disabled {
  647. opacity: 0.3;
  648. cursor: not-allowed;
  649. &:hover {
  650. transform: none;
  651. }
  652. }
  653. }
  654. }
  655. }
  656. }
  657. .text--content {
  658. text-align: center;
  659. height:60%;
  660. .text--slider {
  661. position: relative;
  662. overflow: hidden;
  663. height:100%;
  664. .text--slide {
  665. position: absolute;
  666. top: 0;
  667. left: 0;
  668. width: 100%;
  669. opacity: 0;
  670. transform: translateX(-100%);
  671. transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  672. text-align: left;
  673. visibility: hidden;
  674. &.active {
  675. opacity: 1;
  676. transform: translateX(0);
  677. visibility: visible;
  678. position: relative; // 활성 슬라이드는 relative로 높이 확보
  679. }
  680. // 이전 슬라이드는 오른쪽으로 사라짐
  681. &:not(.active) {
  682. transform: translateX(-100%);
  683. position: absolute; // 비활성 슬라이드는 absolute로 겹침
  684. }
  685. }
  686. }
  687. .main--title {
  688. margin:0px;
  689. color: rgb(252, 252, 253);
  690. letter-spacing: 0px;
  691. font-weight: 400;
  692. text-decoration: none;
  693. font-size: 20px;
  694. line-height: 32px;
  695. font-stretch: 130%;
  696. padding-bottom:12px;
  697. }
  698. .sub--title {
  699. margin: 0px;
  700. color: rgba(252, 252, 253, 0.7);
  701. letter-spacing: 0px;
  702. font-weight: 400;
  703. text-decoration: none;
  704. font-size: 16px;
  705. line-height: 24px;
  706. font-stretch: 105%;
  707. }
  708. .desc--title{
  709. margin-top:25px;
  710. color: rgba(252, 252, 253, 0.7);
  711. letter-spacing: 0px;
  712. font-weight: 400;
  713. text-decoration: none;
  714. font-size: 15px;
  715. line-height: 24px;
  716. font-stretch: 105%;
  717. }
  718. .notice--text {
  719. margin-top: 40px;
  720. padding-top: 20px;
  721. // border-top: 1px solid rgba(255, 255, 255, 0.1);
  722. text-align: left;
  723. p {
  724. margin: 0;
  725. color: rgba(252, 252, 253, 0.5);
  726. font-size: 14px;
  727. line-height: 20px;
  728. font-style: italic;
  729. }
  730. }
  731. }
  732. }
  733. // 70% 영역: 단일 배너
  734. .swiper--banner--section {
  735. width: 70%;
  736. position: relative;
  737. overflow: hidden;
  738. .swiper--container {
  739. width: 100%;
  740. height: 100%;
  741. .swiper-slide {
  742. .slide--image {
  743. width: 100%;
  744. height: 100%;
  745. border-radius: 20px;
  746. overflow: hidden;
  747. img {
  748. width: 100%;
  749. height: 100%;
  750. max-height:100vh;
  751. object-fit: cover;
  752. object-position: center;
  753. transition: transform 0.8s ease;
  754. }
  755. }
  756. &.swiper-slide-active {
  757. .slide--image img {
  758. //transform: scale(1.02);
  759. }
  760. }
  761. }
  762. }
  763. }
  764. }
  765. // 반응형 처리
  766. @media (max-width: 1024px) {
  767. .swiper--banner--container {
  768. flex-direction: column;
  769. .swiper--controls--section {
  770. width: 100%;
  771. order: 2;
  772. padding: 30px 20px;
  773. }
  774. .swiper--banner--section {
  775. width: 100%;
  776. height: 400px;
  777. order: 1;
  778. }
  779. }
  780. }
  781. @media (max-width: 768px) {
  782. padding: 40px 0;
  783. .swiper--banner--container {
  784. .swiper--controls--section {
  785. padding: 20px;
  786. .text--content {
  787. .text--slider {
  788. height: 100px; // 모바일에서는 높이 조정
  789. }
  790. .main--title {
  791. font-size: 24px;
  792. line-height: 32px;
  793. }
  794. .sub--title {
  795. font-size: 16px;
  796. line-height: 22px;
  797. }
  798. }
  799. }
  800. .swiper--banner--section {
  801. height: 300px;
  802. }
  803. }
  804. }
  805. }
  806. .title--visual {
  807. position: relative;
  808. width: 100%;
  809. overflow: hidden;
  810. padding:40px 0px;
  811. &[data-type="small"] {
  812. .title--visual--wrapper{
  813. max-width:100%;
  814. padding:0px 96px;
  815. .title--visual--content{
  816. h2{
  817. color: rgb(252, 252, 253);
  818. letter-spacing: 0px;
  819. font-weight: 400;
  820. text-decoration: none;
  821. font-size: 24px;
  822. line-height: 36px;
  823. font-stretch: 130%;
  824. @media (max-width: 1024px) {
  825. font-size: 20px;
  826. line-height: 40px;
  827. }
  828. }
  829. }
  830. }
  831. }
  832. &[data-type="middle"] {
  833. .title--visual--wrapper{
  834. max-width:100%;
  835. padding:0px 96px;
  836. .title--visual--content{
  837. h2{
  838. color: rgb(252, 252, 253);
  839. letter-spacing: 0px;
  840. font-weight: 400;
  841. text-decoration: none;
  842. font-size: 24px;
  843. line-height: 36px;
  844. font-stretch: 130%;
  845. @media (min-width: 1024px) {
  846. font-size: 28px;
  847. line-height: 40px;
  848. }
  849. @media (min-width: 1440px) {
  850. font-size: 32px;
  851. line-height: 44px;
  852. }
  853. @media (min-width: 1920px) {
  854. font-size: 36px;
  855. line-height: 52px;
  856. }
  857. }
  858. }
  859. }
  860. }
  861. // 테마별 스타일
  862. &[data-theme="dark"] {
  863. color: rgb(252, 252, 253);
  864. .title--description {
  865. color: rgba(252, 252, 253, 0.8);
  866. }
  867. }
  868. &[data-theme="light"] {
  869. background: rgb(252, 252, 253);
  870. color: #000;
  871. .title--description {
  872. color: rgba(0, 0, 0, 0.7);
  873. }
  874. }
  875. .title--visual--wrapper {
  876. margin: 0 auto;
  877. padding: 0 60px;
  878. align-content: center;
  879. box-sizing: content-box;
  880. display: grid;
  881. grid-template-columns: 100%;
  882. padding-bottom: 0px;
  883. padding-top: 0px;
  884. @media (min-width:1920px){
  885. margin: 0 auto;
  886. max-width:1248px;
  887. }
  888. @media (max-width: 1024px) {
  889. padding: 0 40px;
  890. }
  891. @media (max-width: 768px) {
  892. padding: 0 20px;
  893. }
  894. }
  895. .title--visual--content {
  896. margin: 0 auto;
  897. &[data-align="left"] {
  898. margin-left: 0;
  899. text-align: left;
  900. .title--main{
  901. text-align: left;
  902. }
  903. }
  904. &[data-align="center"] {
  905. text-align: center;
  906. }
  907. &[data-align="right"] {
  908. margin-right: 0;
  909. margin-left: auto;
  910. text-align: right;
  911. .title--main{
  912. text-align: right;
  913. }
  914. }
  915. // 애니메이션 상태
  916. &[data-animated="true"] {
  917. opacity: 0;
  918. transform: translateY(40px);
  919. transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  920. &.visible {
  921. opacity: 1;
  922. transform: translateY(0);
  923. }
  924. }
  925. }
  926. .title--main {
  927. margin: 0 0 24px 0;
  928. color: rgb(252, 252, 253);
  929. letter-spacing: 0px;
  930. font-weight: 400;
  931. text-decoration: none;
  932. font-size: 36px;
  933. line-height: 52px;
  934. font-stretch: 130%;
  935. overflow-wrap: break-word;
  936. text-align: center;
  937. @media (max-width: 1920px) {
  938. font-size: 72px;
  939. line-height: 100px;
  940. }
  941. @media (max-width: 1440px) {
  942. font-size: 60px;
  943. line-height: 84px;
  944. }
  945. @media (max-width: 1024px) {
  946. font-size: 52px;
  947. line-height: 76px;
  948. }
  949. @media (max-width: 768px) {
  950. font-size: 44px;
  951. line-height: 60px;
  952. }
  953. }
  954. .sub--title{
  955. margin: 0 0 var(--spacing-relative-md) 0;
  956. color: rgb(252, 252, 253);
  957. letter-spacing: 0px;
  958. font-weight: 400;
  959. text-decoration: none;
  960. font-size: 16px;
  961. line-height: 24px;
  962. font-stretch: 130%;
  963. display: flex;
  964. padding-bottom:20px;
  965. @media (min-width: 1440px) {
  966. font-size: 18px;
  967. line-height: 28px;
  968. }
  969. @media (min-width: 1920px) {
  970. font-size: 20px;
  971. line-height: 32px;
  972. }
  973. }
  974. .title--description {
  975. margin: 0;
  976. color: rgba(252, 252, 253, 0.7);
  977. letter-spacing: 0px;
  978. font-weight: 400;
  979. text-decoration: none;
  980. font-size: 16px;
  981. line-height: 24px;
  982. font-stretch: 105%;
  983. }
  984. .title--additional {
  985. margin-top: 40px;
  986. @media (max-width: 768px) {
  987. margin-top: 32px;
  988. }
  989. }
  990. }
  991. .caution--text--wrapper{
  992. padding:120px 96px;
  993. p{
  994. margin: 0 0 26px 0;
  995. color: rgba(252, 252, 253, 0.7);
  996. font-family: AudiType, sans-serif;
  997. letter-spacing: 0px;
  998. font-weight: 400;
  999. text-decoration: none;
  1000. font-size: 16px;
  1001. line-height: 24px;
  1002. font-stretch: 105%;
  1003. }
  1004. }
  1005. //좌우 2배열 배너
  1006. .grid--banner--type2{
  1007. width: 100%;
  1008. padding:0 var(--spacing-relative-3xl);
  1009. @media(min-width:1024px){
  1010. padding:0 var(--spacing-relative-xl);
  1011. }
  1012. @media(min-width:1440px){
  1013. padding:0 var(--spacing-relative-2xl);
  1014. }
  1015. @media(min-width:1920px){
  1016. padding:0 var(--spacing-relative-3xl);
  1017. }
  1018. >ul{
  1019. width:100%;
  1020. display: flex;
  1021. flex-wrap: wrap;
  1022. gap:16px;
  1023. >li{
  1024. width:calc( (100% - 16px)/2);
  1025. padding-bottom:40px;
  1026. @media(max-width:720px){
  1027. width:100%;
  1028. }
  1029. .thumb{
  1030. border-radius: 20px;
  1031. overflow: hidden;
  1032. img{
  1033. width: 100%;;
  1034. object-fit: cover;
  1035. }
  1036. }
  1037. .desc--wrapper{
  1038. @media screen and (min-width: 768px) {
  1039. padding-block-start: var(--spacing-relative-lg);
  1040. padding-inline-end: var(--spacing-relative-xl);
  1041. }
  1042. @media screen and (min-width: 1920px) {
  1043. padding-block-start: var(--spacing-relative-lg);
  1044. padding-inline-end: var(--spacing-relative-xl);
  1045. }
  1046. h2{
  1047. margin: 0px;
  1048. color: rgb(252, 252, 253);
  1049. letter-spacing: 0px;
  1050. font-weight: 400;
  1051. text-decoration: none;
  1052. font-size: 20px;
  1053. line-height: 32px;
  1054. font-stretch: 130%;
  1055. @media(min-width:1440px){
  1056. font-size: 24px;
  1057. line-height: 36px;
  1058. }
  1059. }
  1060. h3{
  1061. margin: var(--spacing-relative-xs) 0 0 0;
  1062. color: rgba(252, 252, 253, 0.7);
  1063. letter-spacing: 0px;
  1064. font-weight: 400;
  1065. text-decoration: none;
  1066. font-size: 16px;
  1067. line-height: 24px;
  1068. font-stretch: 105%;
  1069. }
  1070. }
  1071. }
  1072. }
  1073. }
  1074. .row--block--wrapper{
  1075. &[data-type-row="3"]{
  1076. >div{
  1077. >ul{
  1078. > li{
  1079. width:calc( (100% - 40px) / 3);
  1080. .thumb{
  1081. img{
  1082. width:100%;
  1083. object-fit: cover;
  1084. }
  1085. }
  1086. }
  1087. }
  1088. }
  1089. }
  1090. > div{
  1091. padding:0 var(--spacing-relative-3xl);
  1092. >ul {
  1093. display: flex;
  1094. flex-wrap: wrap;
  1095. gap:20px;
  1096. > li{
  1097. width:calc(50% - 10px);
  1098. padding-bottom:40px;
  1099. .thumb{
  1100. border-radius: 20px;
  1101. position: relative;
  1102. height:0px;
  1103. overflow: hidden;
  1104. padding-top:56.25%;
  1105. img{
  1106. position: absolute;
  1107. height:100%;
  1108. inset: 0px;
  1109. }
  1110. }
  1111. .desc--wrap{
  1112. @media screen and (min-width: 768px) {
  1113. padding-block-start: var(--spacing-relative-lg);
  1114. padding-inline-end: var(--spacing-relative-xl);
  1115. }
  1116. @media screen and (min-width: 1920px) {
  1117. padding-block-start: var(--spacing-relative-lg);
  1118. padding-inline-end: var(--spacing-relative-xl);
  1119. }
  1120. .title{
  1121. margin: 0px;
  1122. color: rgb(252, 252, 253);
  1123. letter-spacing: 0px;
  1124. font-weight: 400;
  1125. text-decoration: none;
  1126. font-size: 20px;
  1127. line-height: 32px;
  1128. font-stretch: 130%;
  1129. @media (min-width: 1440px) {
  1130. font-size: 24px;
  1131. line-height: 36px;
  1132. }
  1133. }
  1134. .captions{
  1135. margin: var(--spacing-relative-xs) 0 0 0;
  1136. color: rgba(252, 252, 253, 0.7);
  1137. letter-spacing: 0px;
  1138. font-weight: 400;
  1139. text-decoration: none;
  1140. font-size: 16px;
  1141. line-height: 24px;
  1142. font-stretch: 105%;
  1143. }
  1144. .small--text{
  1145. color: rgba(252, 252, 253, 0.7);
  1146. font-size:12px;
  1147. white-space: pre-line;
  1148. padding-top:20px;
  1149. }
  1150. .captions--text{
  1151. padding-top:30px;
  1152. font-weight: 400;
  1153. text-decoration: none;
  1154. font-size: 16px;
  1155. line-height: 24px;
  1156. font-stretch: 105%;
  1157. color: rgba(252, 252, 253, 0.7);
  1158. }
  1159. }
  1160. }
  1161. }
  1162. }
  1163. }
  1164. // FAQ Accordion Styles
  1165. .faq--accordion--wrapper {
  1166. max-width: 1920px;
  1167. margin: 0 auto;
  1168. padding: 40px 96px;
  1169. @media (max-width: 1024px) {
  1170. padding: 32px 60px;
  1171. }
  1172. @media (max-width: 768px) {
  1173. padding: 24px 40px;
  1174. }
  1175. @media (max-width: 375px) {
  1176. padding: 20px 28px;
  1177. }
  1178. }
  1179. .faq--accordion--container {
  1180. display: flex;
  1181. flex-direction: column;
  1182. border-top: 1px solid rgba(101, 112, 129, 0.3);
  1183. }
  1184. .faq--accordion--item {
  1185. border-bottom: 1px solid rgba(101, 112, 129, 0.3);
  1186. }
  1187. .faq--accordion--header {
  1188. width: 100%;
  1189. display: flex;
  1190. justify-content: space-between;
  1191. align-items: center;
  1192. padding: 12px 0;
  1193. background: transparent;
  1194. border: none;
  1195. cursor: pointer;
  1196. transition: all 0.3s ease;
  1197. &:hover {
  1198. .faq--question {
  1199. color: rgba(252, 252, 253, 0.8);
  1200. }
  1201. }
  1202. &.active {
  1203. background-color: rgb(64, 74, 89);
  1204. color: rgba(252, 252, 253, 0.7);
  1205. .faq--question {
  1206. color: rgb(252, 252, 253);
  1207. font-weight: 500;
  1208. }
  1209. .faq--toggle--icon {
  1210. color: rgb(252, 252, 253);
  1211. }
  1212. }
  1213. }
  1214. .faq--question {
  1215. flex: 1;
  1216. text-align: left;
  1217. font-size: 18px;
  1218. line-height: 1.5;
  1219. color: rgba(252, 252, 253, 0.7);
  1220. transition: all 0.3s ease;
  1221. padding-right: 24px;
  1222. padding-left:20px;
  1223. @media (max-width: 768px) {
  1224. font-size: 16px;
  1225. }
  1226. }
  1227. .faq--toggle--icon {
  1228. font-size: 28px;
  1229. font-weight: 300;
  1230. color: rgba(252, 252, 253, 0.5);
  1231. transition: all 0.3s ease;
  1232. min-width: 32px;
  1233. text-align: center;
  1234. margin-right:20px;
  1235. }
  1236. .faq--accordion--content {
  1237. overflow: hidden;
  1238. animation: slideDown 0.3s ease;
  1239. }
  1240. .faq--answer {
  1241. padding: 20px 50px 32px 20px;
  1242. font-size: 16px;
  1243. line-height: 1.7;
  1244. color: rgba(252, 252, 253, 0.8);
  1245. @media (max-width: 768px) {
  1246. font-size: 14px;
  1247. padding: 0 0 24px 0;
  1248. }
  1249. }
  1250. @keyframes slideDown {
  1251. from {
  1252. opacity: 0;
  1253. transform: translateY(-10px);
  1254. }
  1255. to {
  1256. opacity: 1;
  1257. transform: translateY(0);
  1258. }
  1259. }
  1260. /*=================================================
  1261. |컴포넌트 별 css
  1262. |END
  1263. =================================================*/
  1264. // 로그인 폼 기본 디폴트 디자인
  1265. .admin--login {
  1266. min-height: 100vh;
  1267. background: #000000;
  1268. display: flex;
  1269. align-items: center;
  1270. justify-content: center;
  1271. font-family: 'AudiType', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  1272. .login--container {
  1273. width: 100%;
  1274. max-width: 480px;
  1275. padding: 20px;
  1276. }
  1277. .login--box {
  1278. background: #0a0a0a;
  1279. border: 1px solid rgba(255, 255, 255, 0.1);
  1280. border-radius: 12px;
  1281. padding: 60px 40px;
  1282. box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  1283. }
  1284. .login--logo {
  1285. text-align: center;
  1286. margin-bottom: 50px;
  1287. h1 {
  1288. font-size: 48px;
  1289. font-weight: 700;
  1290. color: #ffffff;
  1291. letter-spacing: 8px;
  1292. margin: 0;
  1293. font-stretch: 130%;
  1294. }
  1295. .subtitle {
  1296. color: rgba(255, 255, 255, 0.4);
  1297. font-size: 14px;
  1298. text-transform: uppercase;
  1299. letter-spacing: 3px;
  1300. margin-top: 10px;
  1301. }
  1302. }
  1303. .login--form {
  1304. .form--group {
  1305. margin-bottom: 24px;
  1306. }
  1307. .form--input {
  1308. width: 100%;
  1309. height: 52px;
  1310. background: #000000;
  1311. border: 1px solid rgba(255, 255, 255, 0.15);
  1312. border-radius: 8px;
  1313. padding: 0 20px;
  1314. font-size: 15px;
  1315. color: #ffffff;
  1316. transition: all 0.3s ease;
  1317. &::placeholder {
  1318. color: rgba(255, 255, 255, 0.6);
  1319. }
  1320. &:focus {
  1321. outline: none;
  1322. border-color: rgba(255, 255, 255, 0.4);
  1323. background: rgba(255, 255, 255, 0.02);
  1324. }
  1325. &:hover {
  1326. border-color: rgba(255, 255, 255, 0.25);
  1327. }
  1328. }
  1329. .form--options {
  1330. display: flex;
  1331. justify-content: space-between;
  1332. align-items: center;
  1333. margin-bottom: 32px;
  1334. .checkbox--label {
  1335. display: flex;
  1336. align-items: center;
  1337. cursor: pointer;
  1338. color: rgba(255, 255, 255, 0.6);
  1339. font-size: 14px;
  1340. input[type="checkbox"] {
  1341. width: 18px;
  1342. height: 18px;
  1343. margin-right: 10px;
  1344. background: #000000;
  1345. border: 1px solid rgba(255, 255, 255, 0.3);
  1346. border-radius: 4px;
  1347. cursor: pointer;
  1348. accent-color: #ffffff;
  1349. }
  1350. &:hover {
  1351. color: rgba(255, 255, 255, 0.8);
  1352. }
  1353. }
  1354. .forgot--password {
  1355. color: rgba(255, 255, 255, 0.6);
  1356. font-size: 14px;
  1357. text-decoration: none;
  1358. transition: color 0.3s ease;
  1359. &:hover {
  1360. color: #ffffff;
  1361. }
  1362. }
  1363. }
  1364. .login--button {
  1365. width: 100%;
  1366. height: 52px;
  1367. background: #ffffff;
  1368. color: #000000;
  1369. border: none;
  1370. border-radius: 8px;
  1371. font-size: 16px;
  1372. font-weight: 600;
  1373. letter-spacing: 1px;
  1374. cursor: pointer;
  1375. transition: all 0.3s ease;
  1376. &:hover {
  1377. background: rgba(255, 255, 255, 0.9);
  1378. transform: translateY(-2px);
  1379. box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
  1380. }
  1381. &:active {
  1382. transform: translateY(0);
  1383. }
  1384. }
  1385. }
  1386. .login--footer {
  1387. text-align: center;
  1388. margin-top: 40px;
  1389. p {
  1390. color: rgba(255, 255, 255, 0.3);
  1391. font-size: 12px;
  1392. letter-spacing: 0.5px;
  1393. }
  1394. }
  1395. }
  1396. //자세히 보기
  1397. .more--detail--href{
  1398. display: inline-flex;
  1399. align-items: center;
  1400. position: relative;
  1401. letter-spacing: 0px;
  1402. font-weight: 400;
  1403. font-size: 14px;
  1404. min-height:24px;
  1405. &:after{
  1406. content:'';
  1407. display: block;
  1408. width:calc(100% - 24px);
  1409. height:1px;
  1410. background: rgb(252, 252, 253);
  1411. position: absolute;
  1412. bottom:0px;
  1413. left:0px;
  1414. }
  1415. .ico{
  1416. width: 24px;
  1417. height: 24px;
  1418. background-image: url(/img/ico--arrow.svg);
  1419. }
  1420. }
  1421. //탭 링크
  1422. .text--tab--layout{
  1423. display: flex;
  1424. background: linear-gradient(134deg, rgb(44, 52, 63) 0%, rgb(35, 42, 52) 100%);
  1425. position: sticky;
  1426. top: 0;
  1427. z-index: 100;
  1428. @media(min-width:1440px){
  1429. display: grid;
  1430. grid-auto-flow: column;
  1431. grid-template-columns: max-content 1fr auto;
  1432. gap: 28px;
  1433. width: 100%;
  1434. box-sizing: border-box;
  1435. overflow: hidden;
  1436. }
  1437. @media(min-width:1025px){
  1438. padding-block:12px;
  1439. }
  1440. ul{
  1441. display: flex;
  1442. position: relative;
  1443. padding-inline:96px;
  1444. -webkit-box-align: center;
  1445. align-items: center;
  1446. -webkit-box-pack: justify;
  1447. justify-content: space-between;
  1448. li {
  1449. &.anch--location{
  1450. a{
  1451. margin-left:-12px;
  1452. pointer-events: inherit!important;
  1453. }
  1454. }
  1455. &:first-child{
  1456. &.link--force{
  1457. a{
  1458. pointer-events: inherit!important;
  1459. }
  1460. }
  1461. a{
  1462. margin-left:-12px;
  1463. pointer-events: none;
  1464. }
  1465. }
  1466. a{
  1467. cursor: pointer;
  1468. display: flex;
  1469. -webkit-box-align: center;
  1470. align-items: center;
  1471. -webkit-box-pack: center;
  1472. justify-content: center;
  1473. text-decoration: none;
  1474. border-radius: 10px;
  1475. background: rgba(44, 52, 63, 0);
  1476. box-shadow: rgba(219, 223, 230, 0) 0px 0px 0px 1px inset;
  1477. outline-offset: -3px;
  1478. box-sizing: border-box;
  1479. transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
  1480. transition-duration: 250ms;
  1481. transition-property: color, background, box-shadow;
  1482. min-height: 48px;
  1483. min-width: 64px;
  1484. color: rgba(252, 252, 253, 0.7);
  1485. padding: 0px 16px;
  1486. text-align: center;
  1487. letter-spacing: 0px;
  1488. font-weight: 400;
  1489. text-decoration: none;
  1490. font-size: 14px;
  1491. line-height: 20px;
  1492. font-stretch: 105%;
  1493. &.actv,
  1494. &:hover{
  1495. color:rgb(252,252,253)!important;
  1496. background-color: rgb(44,52,63)!important;
  1497. box-shadow: rgba(219, 223,230, .2) 0px 0px 0px 1px inset!important;
  1498. }
  1499. }
  1500. }
  1501. }
  1502. }
  1503. .inner--link--contents {
  1504. width: 100%;
  1505. padding: 40px 0;
  1506. ul {
  1507. list-style: none;
  1508. margin: 0;
  1509. padding: 0;
  1510. display: flex;
  1511. flex-wrap: wrap;
  1512. gap: 24px;
  1513. width: 100%;
  1514. padding:0 96px;
  1515. li {
  1516. width:calc( (100% - 48px) / 3);
  1517. --gradient-start: hsla(216, 20%, 17%, 1);
  1518. --gradient-end: hsla(216, 21%, 12%, 1);
  1519. transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
  1520. transition-duration: 250ms;
  1521. transition-property: --gradient-start, --gradient-end, box-shadow;
  1522. padding:28px 16px;
  1523. overflow: hidden;
  1524. border-radius: 20px;
  1525. border: none;
  1526. cursor: pointer;
  1527. box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
  1528. backdrop-filter: blur(40px);
  1529. background: linear-gradient(180deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  1530. display: flex;
  1531. text-decoration: none;
  1532. &:hover{
  1533. --gradient-start: hsla(216, 18%, 21%, 1);
  1534. --gradient-end: hsla(216, 18%, 21%, 1);
  1535. box-shadow: rgb(42,57,64) 0px 0px 0px 1px inset;
  1536. }
  1537. a {
  1538. display: inline-flex;
  1539. align-items: center;
  1540. color: rgba(252, 252, 253, 0.7);;
  1541. letter-spacing: 0px;
  1542. font-weight: 400;
  1543. text-decoration: none;
  1544. font-size: 12px;
  1545. line-height: 24px;
  1546. font-stretch: 105%;
  1547. padding-left:40px;
  1548. position: relative;
  1549. width:100%;
  1550. >span{
  1551. position: absolute;
  1552. top:50%;
  1553. left:0px;
  1554. transform: translateY(-50%);
  1555. }
  1556. > svg{
  1557. position: absolute;
  1558. top:50%;
  1559. transform: translateY(-50%);
  1560. right:0px;
  1561. }
  1562. }
  1563. }
  1564. }
  1565. }
  1566. .product--card--wrapper{
  1567. margin: auto;
  1568. max-width: var(--max-content-width);
  1569. padding: var(--spacing-relative-xl) var(--spacing-relative-md);
  1570. padding-inline: var(--page-margin);
  1571. padding-block-end: var(--spacing-relative-2xl);
  1572. @media (min-width: 375px) {
  1573. padding-inline: var(--page-margin);
  1574. }
  1575. @media (min-width: 768px) {
  1576. padding-inline: var(--page-margin);
  1577. }
  1578. @media (min-width: 1024px) {
  1579. padding-inline: var(--spacing-relative-3xl);
  1580. padding-block-end: var(--spacing-relative-2xl);
  1581. }
  1582. @media (min-width: 1440px) {
  1583. padding-inline: var(--page-margin);
  1584. padding-block-end: var(--spacing-relative-2xl);
  1585. }
  1586. &[data-type="square"] {
  1587. max-height:100%!important;
  1588. .product--card{
  1589. max-height:100%!important;
  1590. .product--card--thumb{
  1591. max-height: 100%!important;
  1592. padding-top:50%;
  1593. .product--card--thumb--inner{
  1594. position: absolute;
  1595. inset: 0px;
  1596. height: 100%;
  1597. img{
  1598. position: relative;
  1599. }
  1600. }
  1601. }
  1602. }
  1603. }
  1604. .product--card {
  1605. display: flex;
  1606. overflow: hidden;
  1607. max-height: 50vh;
  1608. // 가로 레이아웃
  1609. &[data-layout="horizontal"] {
  1610. flex-direction: row;
  1611. align-items: center;
  1612. .product--card--thumb {
  1613. flex: 0 0 40%;
  1614. max-width: 600px;
  1615. }
  1616. .product--card--content {
  1617. flex: 1;
  1618. }
  1619. // 이미지 오른쪽 배치
  1620. &[data-image-position="right"] {
  1621. flex-direction: row-reverse;
  1622. }
  1623. @media (max-width: 1024px) {
  1624. flex-direction: column;
  1625. .product--card--thumb {
  1626. flex: 1;
  1627. max-width: 100%;
  1628. }
  1629. .product--card--content {
  1630. padding-left: 0;
  1631. padding-right: 0;
  1632. padding-top: 20px;
  1633. }
  1634. // 모바일에서는 이미지 위치 상관없이 세로 배치
  1635. &[data-image-position="right"] {
  1636. flex-direction: column;
  1637. .product--card--content {
  1638. padding-right: 0;
  1639. padding-top: 20px;
  1640. }
  1641. }
  1642. }
  1643. }
  1644. // 세로 레이아웃
  1645. &[data-layout="vertical"] {
  1646. flex-direction: column;
  1647. max-width: 600px;
  1648. .product--card--thumb {
  1649. width: 100%;
  1650. }
  1651. .product--card--content {
  1652. padding-top: 24px;
  1653. }
  1654. }
  1655. .product--card--thumb {
  1656. background: rgba(255, 255, 255, 0.05);
  1657. min-width:50%;
  1658. position: relative;
  1659. max-height: 50vh;
  1660. border-radius: 20px;
  1661. position: relative;
  1662. overflow: hidden;
  1663. .product--card--thumb--inner{
  1664. height:100%;
  1665. min-height:50vh;
  1666. img {
  1667. width: 100%;
  1668. height: 100%;
  1669. object-fit: cover;
  1670. display: block;
  1671. transition: transform 0.6s ease;
  1672. position: absolute;
  1673. height: 100%;
  1674. }
  1675. &:hover img {
  1676. transform: scale(1.05);
  1677. }
  1678. }
  1679. }
  1680. .product--card--content {
  1681. display: flex;
  1682. flex-direction: column;
  1683. gap: 16px;
  1684. @media screen and (min-width: 320px) {
  1685. padding-block-start: var(--spacing-relative-lg);
  1686. }
  1687. @media screen and (min-width: 1024px) {
  1688. -webkit-box-pack: center;
  1689. justify-content: center;
  1690. align-items: flex-start;
  1691. padding-inline-start: var(--spacing-relative-2xl);
  1692. padding-inline-end: var(--spacing-relative-2xl);
  1693. padding-block-start: 0px;
  1694. }
  1695. }
  1696. .product--card--title {
  1697. margin: 0px;
  1698. color: rgb(252, 252, 253);
  1699. letter-spacing: 0px;
  1700. font-weight: 400;
  1701. text-decoration: none;
  1702. font-size: 24px;
  1703. line-height: 36px;
  1704. font-stretch: 130%;
  1705. @media (min-width: 1024px) {
  1706. font-size: 28px;
  1707. line-height: 40px;
  1708. }
  1709. @media (min-width: 1440px) {
  1710. font-size: 32px;
  1711. line-height: 44px;
  1712. }
  1713. @media (min-width: 1920px) {
  1714. font-size: 36px;
  1715. line-height: 52px;
  1716. }
  1717. }
  1718. .product--card--smalltitle {
  1719. margin: 0px;
  1720. color: rgb(252, 252, 253);
  1721. letter-spacing: 0px;
  1722. font-weight: 400;
  1723. text-decoration: none;
  1724. font-size: 20px;
  1725. line-height: 32px;
  1726. font-stretch: 130%;
  1727. @media (min-width: 1440px) {
  1728. font-size: 24px;
  1729. line-height: 36px;
  1730. }
  1731. }
  1732. .product--card--subtitle {
  1733. margin: 0;
  1734. color: rgba(252, 252, 253, 0.8);
  1735. font-size: 16px;
  1736. line-height: 24px;
  1737. }
  1738. .product--card--description {
  1739. margin-top: 8px;
  1740. p {
  1741. margin: 0px;
  1742. color: rgba(252, 252, 253, 0.7);
  1743. letter-spacing: 0px;
  1744. font-weight: 400;
  1745. text-decoration: none;
  1746. font-size: 16px;
  1747. line-height: 24px;
  1748. font-stretch: 105%;
  1749. }
  1750. }
  1751. .product--card--small--description{
  1752. margin-top:20px;
  1753. p {
  1754. margin: 0px;
  1755. color: rgba(252, 252, 253, 0.7);
  1756. letter-spacing: 0px;
  1757. font-weight: 400;
  1758. text-decoration: none;
  1759. font-size: 12px;
  1760. line-height: 20px;
  1761. font-stretch: 105%;
  1762. }
  1763. }
  1764. .product--card--actions {
  1765. margin-top: 24px;
  1766. display: flex;
  1767. gap: 16px;
  1768. flex-wrap: wrap;
  1769. }
  1770. @media (max-width: 768px) {
  1771. padding: 24px;
  1772. gap: 24px;
  1773. }
  1774. }
  1775. }
  1776. .radius--img--wrap{
  1777. overflow: hidden;
  1778. border-radius: 20px;
  1779. }
  1780. // 딜러 검색 드롭다운 스타일
  1781. .dealer--search--section {
  1782. width: 100%;
  1783. max-width: 1920px;
  1784. margin: 0 auto;
  1785. padding: 80px 96px;
  1786. background-color: hsla(216, 23%, 8%, 1);
  1787. }
  1788. .dealer--search--container {
  1789. display: flex;
  1790. flex-direction: column;
  1791. gap: 48px;
  1792. border-top: 1px solid rgba(252, 252, 253, 0.15);
  1793. }
  1794. .dealer--category--wrap {
  1795. display: flex;
  1796. flex-direction: column;
  1797. }
  1798. .dealer--category--title {
  1799. font-size: 28px;
  1800. font-weight: 600;
  1801. margin: 0 0 24px 0;
  1802. color: rgb(252, 252, 253);
  1803. padding-bottom: 16px;
  1804. border-bottom: 2px solid rgba(252, 252, 253, 0.3);
  1805. }
  1806. .dealer--region--item {
  1807. border-bottom: 1px solid rgba(252, 252, 253, 0.15);
  1808. }
  1809. .dealer--region--header {
  1810. width: 100%;
  1811. display: flex;
  1812. justify-content: space-between;
  1813. align-items: center;
  1814. padding: 20px 24px;
  1815. background-color: transparent;
  1816. border: none;
  1817. color: rgb(252, 252, 253);
  1818. cursor: pointer;
  1819. transition: all 0.3s ease;
  1820. &:hover {
  1821. background-color: rgba(252, 252, 253, 0.05);
  1822. }
  1823. &.active {
  1824. background-color: rgba(252, 252, 253, 0.08);
  1825. }
  1826. }
  1827. .dealer--region--name {
  1828. font-size: 18px;
  1829. font-weight: 500;
  1830. }
  1831. .dealer--toggle--icon {
  1832. font-size: 28px;
  1833. line-height: 1;
  1834. transition: transform 0.3s ease;
  1835. }
  1836. .dealer--list--content {
  1837. padding: 0 24px 24px;
  1838. animation: slideDown 0.3s ease;
  1839. }
  1840. @keyframes slideDown {
  1841. from {
  1842. opacity: 0;
  1843. transform: translateY(-10px);
  1844. }
  1845. to {
  1846. opacity: 1;
  1847. transform: translateY(0);
  1848. }
  1849. }
  1850. .dealer--list {
  1851. list-style: none;
  1852. padding: 0;
  1853. padding-left:10px;
  1854. margin: 0;
  1855. display: flex;
  1856. flex-direction: column;
  1857. gap: 0px;
  1858. li {
  1859. margin: 0;
  1860. position: relative;
  1861. &:before{
  1862. content:'>';
  1863. font-size:12px;
  1864. margin-right:10px;
  1865. }
  1866. a{
  1867. text-decoration: underline;
  1868. }
  1869. }
  1870. }
  1871. .dealer--link {
  1872. display: inline-block;
  1873. color: rgba(252, 252, 253, 0.7);
  1874. text-decoration: none;
  1875. font-size: 16px;
  1876. transition: all 0.2s ease;
  1877. padding: 8px 0;
  1878. &:hover {
  1879. color: rgb(252, 252, 253);
  1880. text-decoration: underline;
  1881. }
  1882. }
  1883. // 반응형 처리
  1884. @media (max-width: 1024px) {
  1885. .dealer--search--section {
  1886. padding: 60px 48px;
  1887. }
  1888. .dealer--search--container {
  1889. gap: 40px;
  1890. }
  1891. .dealer--category--title {
  1892. font-size: 24px;
  1893. margin-bottom: 20px;
  1894. padding-bottom: 12px;
  1895. }
  1896. .dealer--region--header {
  1897. padding: 16px 20px;
  1898. }
  1899. .dealer--region--name {
  1900. font-size: 16px;
  1901. }
  1902. .dealer--list--content {
  1903. padding: 0 20px 20px;
  1904. }
  1905. .dealer--list {
  1906. gap: 6px;
  1907. }
  1908. }
  1909. @media (max-width: 768px) {
  1910. .dealer--search--section {
  1911. padding: 40px 24px;
  1912. }
  1913. .dealer--search--container {
  1914. gap: 32px;
  1915. }
  1916. .dealer--category--title {
  1917. font-size: 20px;
  1918. margin-bottom: 16px;
  1919. padding-bottom: 10px;
  1920. }
  1921. .dealer--region--header {
  1922. padding: 14px 16px;
  1923. }
  1924. .dealer--region--name {
  1925. font-size: 15px;
  1926. }
  1927. .dealer--toggle--icon {
  1928. font-size: 24px;
  1929. }
  1930. .dealer--list--content {
  1931. padding: 0 16px 16px;
  1932. }
  1933. .dealer--list {
  1934. gap: 6px;
  1935. }
  1936. .dealer--link {
  1937. font-size: 14px;
  1938. padding: 6px 0;
  1939. }
  1940. }
  1941. // 딜러 검색 페이지 스타일
  1942. .dealer--search--section{
  1943. padding: 64px 96px;
  1944. .dealer--search--container{
  1945. margin: 0 auto;
  1946. }
  1947. .dealer--category--wrap{
  1948. display: flex;
  1949. flex-direction: column;
  1950. gap: 16px;
  1951. }
  1952. .dealer--region--item{
  1953. border-bottom: 1px solid rgba(252, 252, 253, 0.1);
  1954. }
  1955. .dealer--region--header{
  1956. width: 100%;
  1957. display: flex;
  1958. justify-content: space-between;
  1959. align-items: center;
  1960. padding: 24px 0;
  1961. background: transparent;
  1962. border: none;
  1963. color: #fcfcfd;
  1964. font-size: 24px;
  1965. font-family: 'AudiType';
  1966. font-weight: 400;
  1967. transition: all 0.3s;
  1968. &:hover{
  1969. color: rgba(252, 252, 253, 0.7);
  1970. }
  1971. &.active{
  1972. color: #fcfcfd;
  1973. }
  1974. }
  1975. .dealer--region--name{
  1976. font-size: 24px;
  1977. }
  1978. .dealer--toggle--icon{
  1979. font-size: 32px;
  1980. line-height: 1;
  1981. font-weight: 300;
  1982. }
  1983. .dealer--list--content{
  1984. padding-bottom: 24px;
  1985. }
  1986. .dealer--list{
  1987. display: flex;
  1988. flex-direction: column;
  1989. gap: 16px;
  1990. >li{
  1991. list-style: none;
  1992. }
  1993. }
  1994. .dealer--link{
  1995. display: inline-block;
  1996. color: rgba(252, 252, 253, 0.7);
  1997. font-size: 16px;
  1998. text-decoration: underline;
  1999. text-underline-offset: 4px;
  2000. transition: all 0.3s;
  2001. background: transparent;
  2002. border: none;
  2003. font-family: 'AudiType';
  2004. font-weight: 400;
  2005. padding: 0;
  2006. cursor: pointer;
  2007. &:hover{
  2008. color: #fcfcfd;
  2009. }
  2010. }
  2011. }
  2012. // 딜러 팝업 스타일
  2013. .dealer--popup--overlay{
  2014. position: fixed;
  2015. top: 0;
  2016. left: 0;
  2017. width: 100%;
  2018. height: 100%;
  2019. background-color: rgba(2, 2, 3, 0.85);
  2020. display: flex;
  2021. justify-content: center;
  2022. align-items: center;
  2023. z-index: 9999;
  2024. padding: 20px;
  2025. }
  2026. .dealer--popup--container{
  2027. position: relative;
  2028. background-color: #1a1d23;
  2029. border-radius: 20px;
  2030. max-width: 1024px;
  2031. width: 100%;
  2032. max-height: 90vh;
  2033. overflow-y: auto;
  2034. box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
  2035. &::-webkit-scrollbar{
  2036. width: 8px;
  2037. }
  2038. &::-webkit-scrollbar-track{
  2039. background: transparent;
  2040. }
  2041. &::-webkit-scrollbar-thumb{
  2042. background: rgba(252, 252, 253, 0.2);
  2043. border-radius: 4px;
  2044. &:hover{
  2045. background: rgba(252, 252, 253, 0.3);
  2046. }
  2047. }
  2048. @media (min-width: 320px) {
  2049. padding: 16px;
  2050. }
  2051. @media (min-width: 375px) {
  2052. padding: 28px;
  2053. }
  2054. @media (min-width: 768px) {
  2055. padding: 48px;
  2056. }
  2057. @media (min-width: 1024px) {
  2058. padding: 56px;
  2059. }
  2060. @media (min-width: 1440px) {
  2061. padding: 64px;
  2062. }
  2063. }
  2064. .dealer--popup--close{
  2065. position: absolute;
  2066. top: 24px;
  2067. right: 24px;
  2068. width: 40px;
  2069. height: 40px;
  2070. background: transparent;
  2071. border: none;
  2072. cursor: pointer;
  2073. z-index: 1;
  2074. display: flex;
  2075. justify-content: center;
  2076. align-items: center;
  2077. border-radius: 50%;
  2078. transition: all 0.3s;
  2079. &:hover{
  2080. background-color: rgba(252, 252, 253, 0.1);
  2081. }
  2082. .close--icon{
  2083. width: 24px;
  2084. height: 24px;
  2085. position: relative;
  2086. &::before,
  2087. &::after{
  2088. content: '';
  2089. position: absolute;
  2090. top: 50%;
  2091. left: 50%;
  2092. width: 20px;
  2093. height: 2px;
  2094. background-color: #fcfcfd;
  2095. }
  2096. &::before{
  2097. transform: translate(-50%, -50%) rotate(45deg);
  2098. }
  2099. &::after{
  2100. transform: translate(-50%, -50%) rotate(-45deg);
  2101. }
  2102. }
  2103. }
  2104. .dealer--popup--content{
  2105. margin: auto;
  2106. max-width: var(--max-content-width);
  2107. display: grid;
  2108. grid-template-columns: 1fr;
  2109. grid-template-rows: 1fr;
  2110. grid-template-areas:"media" "textarea";
  2111. padding: var(--spacing-relative-xl) var(--spacing-relative-md);
  2112. @media (min-width: 1024px) {
  2113. grid-template-columns: 1fr 1fr;
  2114. grid-template-areas: "media textarea";
  2115. }
  2116. @media (min-width: 1440px) {
  2117. grid-template-columns: 1fr 1fr;
  2118. grid-template-areas: "media textarea";
  2119. }
  2120. .dealer--thumb--wrap{
  2121. border-radius: 20px;
  2122. overflow: hidden;
  2123. }
  2124. .dealer--infos--wrap{
  2125. grid-area: textarea;
  2126. align-self: center;
  2127. @media screen and (min-width: 320px) {
  2128. padding-block-start: var(--spacing-relative-lg);
  2129. }
  2130. @media screen and (min-width: 1024px) {
  2131. display: flex;
  2132. flex-direction: column;
  2133. -webkit-box-pack: center;
  2134. justify-content: center;
  2135. align-items: flex-start;
  2136. padding-inline-start: var(--spacing-relative-2xl);
  2137. padding-inline-end: var(--spacing-relative-2xl);
  2138. padding-block-start: 0px;
  2139. }
  2140. }
  2141. }
  2142. .dealer--popup--header{
  2143. .dealer--name{
  2144. margin: 0px;
  2145. color: rgb(252, 252, 253);
  2146. font-family: AudiType, sans-serif;
  2147. letter-spacing: 0px;
  2148. font-weight: 400;
  2149. text-decoration: none;
  2150. font-size: 24px;
  2151. line-height: 36px;
  2152. font-stretch: 130%;
  2153. @media (min-width: 1024px) {
  2154. font-size: 28px;
  2155. line-height: 40px;
  2156. }
  2157. @media (min-width: 1440px) {
  2158. font-size: 32px;
  2159. line-height: 44px;
  2160. }
  2161. @media (min-width: 1920px) {
  2162. font-size: 36px;
  2163. line-height: 52px;
  2164. }
  2165. }
  2166. .dealer--type{
  2167. display: inline-block;
  2168. font-size: 14px;
  2169. color: rgba(252, 252, 253, 0.7);
  2170. padding: 4px 12px;
  2171. background-color: rgba(252, 252, 253, 0.1);
  2172. border-radius: 100px;
  2173. }
  2174. }
  2175. .dealer--popup--body{
  2176. display: flex;
  2177. flex-direction: column;
  2178. gap: 8px;
  2179. padding-top:8px;
  2180. }
  2181. .dealer--info--section{
  2182. display: flex;
  2183. flex-direction: column;
  2184. gap: 8px;
  2185. .info--label{
  2186. margin: 0px;
  2187. color: rgba(252, 252, 253, 0.7);
  2188. font-family: AudiType, sans-serif;
  2189. letter-spacing: 0px;
  2190. font-weight: 400;
  2191. text-decoration: none;
  2192. font-size: 16px;
  2193. line-height: 24px;
  2194. font-stretch: 105%;
  2195. a{
  2196. word-break: break-all;
  2197. }
  2198. }
  2199. .phone--link,
  2200. .email--link,
  2201. .website--link{
  2202. color: #fcfcfd;
  2203. text-decoration: underline;
  2204. text-underline-offset: 4px;
  2205. transition: all 0.3s;
  2206. &:hover{
  2207. color: rgba(252, 252, 253, 0.7);
  2208. }
  2209. }
  2210. .business--hours--item{
  2211. line-height: 1.8;
  2212. }
  2213. }
  2214. .dealer--popup--footer{
  2215. margin-top: 40px;
  2216. padding-top: 24px;
  2217. border-top: 1px solid rgba(252, 252, 253, 0.1);
  2218. display: flex;
  2219. justify-content: center;
  2220. }
  2221. .dealer--popup--empty{
  2222. padding: 80px 48px;
  2223. text-align: center;
  2224. >p{
  2225. font-size: 16px;
  2226. color: rgba(252, 252, 253, 0.7);
  2227. }
  2228. }
  2229. // 팝업 페이드 애니메이션
  2230. .dealer--popup--fade-enter-active,
  2231. .dealer--popup--fade-leave-active{
  2232. transition: opacity 0.3s ease;
  2233. .dealer--popup--container{
  2234. transition: transform 0.3s ease, opacity 0.3s ease;
  2235. }
  2236. }
  2237. .dealer--popup--fade-enter-from,
  2238. .dealer--popup--fade-leave-to{
  2239. opacity: 0;
  2240. .dealer--popup--container{
  2241. transform: scale(0.95);
  2242. opacity: 0;
  2243. }
  2244. }
  2245. .dealer--popup--fade-enter-to,
  2246. .dealer--popup--fade-leave-from{
  2247. opacity: 1;
  2248. .dealer--popup--container{
  2249. transform: scale(1);
  2250. opacity: 1;
  2251. }
  2252. }
  2253. /*=================================================
  2254. |버튼 리스트 css
  2255. |START
  2256. =================================================*/
  2257. .light--gray--btn{
  2258. border: 0px;
  2259. flex-direction: column;
  2260. -webkit-box-align: center;
  2261. align-items: center;
  2262. -webkit-box-pack: center;
  2263. justify-content: center;
  2264. transition-timing-function:cubic-bezier(0.75, 0.02, 0.5, 1);
  2265. transition-duration: 250ms;
  2266. border-radius: 999px;
  2267. cursor: pointer;
  2268. display: inline-flex;
  2269. box-sizing: border-box;
  2270. text-align: center;
  2271. letter-spacing: 0px;
  2272. font-weight: 400;
  2273. text-decoration: none;
  2274. font-size: 12px;
  2275. line-height: 16px;
  2276. font-stretch: 105%;
  2277. padding: 8px 16px;
  2278. min-height: 36px;
  2279. background: rgb(101, 112, 129);
  2280. color: rgb(252, 252, 253);
  2281. box-shadow: rgba(101, 112, 129, 0) 0px 0px 0px 1px inset;
  2282. &:hover{
  2283. color:rgb(252,252,253);
  2284. background-color: rgb(44,52,63);
  2285. box-shadow: rgba(219, 223,230, .2) 0px 0px 0px 1px inset;
  2286. }
  2287. }
  2288. .default--round--btn {
  2289. flex-direction: column;
  2290. -webkit-box-align: center;
  2291. align-items: center;
  2292. -webkit-box-pack: center;
  2293. justify-content: center;
  2294. transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
  2295. transition-duration: 250ms;
  2296. border-radius: 999px;
  2297. cursor: pointer;
  2298. display: inline-flex;
  2299. border: 0px;
  2300. letter-spacing: 0px;
  2301. font-weight: 400;
  2302. text-decoration: none;
  2303. font-size: 14px;
  2304. line-height: 20px;
  2305. font-stretch: 105%;
  2306. padding: 12px 24px;
  2307. min-height: 48px;
  2308. background-color: rgb(24, 29, 37);
  2309. color: rgb(252, 252, 253);
  2310. box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
  2311. transition-property: color, box-shadow, background-color;
  2312. &.reverse{
  2313. background: rgba(44,52,63);
  2314. box-shadow: rgba(219,223,230, .2) 0px 0px 0px 1px inset;
  2315. &:hover {
  2316. background-color: rgb(24, 29, 37);
  2317. color: rgb(252, 252, 253);
  2318. box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
  2319. }
  2320. }
  2321. &:hover {
  2322. background: rgba(44,52,63);
  2323. box-shadow: rgba(219,223,230, .2) 0px 0px 0px 1px inset;
  2324. }
  2325. &:active {
  2326. transform: translateY(0);
  2327. }
  2328. }
  2329. /*=================================================
  2330. |버튼 리스트 css
  2331. |뚱
  2332. =================================================*/