admin.scss 69 KB

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