admin.scss 33 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445
  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. :root {
  25. --max-content-width: 1920px;
  26. --page-margin: 16px;
  27. @media (min-width: 375px) {
  28. --page-margin: 28px;
  29. }
  30. @media (min-width: 768px) {
  31. --page-margin: 40px;
  32. }
  33. @media (min-width: 1024px) {
  34. --page-margin: 60px;
  35. }
  36. @media (min-width: 1440px) {
  37. --page-margin: 96px;
  38. }
  39. @media (min-width: 1920px) {
  40. --page-margin: 96px;
  41. }
  42. @property --gradient-start {
  43. syntax: '<color>';
  44. initial-value: transparent;
  45. inherits: false;
  46. }
  47. @property --gradient-end {
  48. syntax: '<color>';
  49. initial-value: transparent;
  50. inherits: false;
  51. }
  52. --spacing-relative-2xs: 4px;
  53. --spacing-relative-xs: 8px;
  54. --spacing-relative-sm: 12px;
  55. --spacing-relative-md: 16px;
  56. --spacing-relative-lg: 24px;
  57. --spacing-relative-xl: 28px;
  58. --spacing-relative-2xl: 36px;
  59. --spacing-relative-3xl: 40px;
  60. --spacing-relative-4xl: 48px;
  61. --spacing-relative-5xl: 64px;
  62. --spacing-relative-6xl: 80px;
  63. --spacing-relative-7xl: 96px;
  64. --spacing-relative-8xl: 120px;
  65. @media (min-width: 768px) {
  66. --spacing-relative-3xl: 48px;
  67. --spacing-relative-4xl: 64px;
  68. --spacing-relative-5xl: 72px;
  69. --spacing-relative-6xl: 88px;
  70. --spacing-relative-7xl: 104px;
  71. --spacing-relative-8xl: 136px;
  72. }
  73. @media (min-width: 1024px) {
  74. --spacing-relative-2xl: 40px;
  75. --spacing-relative-3xl: 56px;
  76. --spacing-relative-4xl: 72px;
  77. --spacing-relative-5xl: 88px;
  78. --spacing-relative-6xl: 104px;
  79. --spacing-relative-7xl: 128px;
  80. --spacing-relative-8xl: 168px;
  81. }
  82. @media (min-width: 1440px) {
  83. --spacing-relative-xl: 32px;
  84. --spacing-relative-2xl: 56px;
  85. --spacing-relative-3xl: 72px;
  86. --spacing-relative-4xl: 88px;
  87. --spacing-relative-5xl: 104px;
  88. --spacing-relative-6xl: 120px;
  89. --spacing-relative-7xl: 160px;
  90. --spacing-relative-8xl: 216px;
  91. }
  92. @media (min-width: 1920px) {
  93. --spacing-relative-xl: 40px;
  94. --spacing-relative-2xl: 72px;
  95. --spacing-relative-3xl: 88px;
  96. --spacing-relative-4xl: 104px;
  97. --spacing-relative-5xl: 120px;
  98. --spacing-relative-6xl: 136px;
  99. --spacing-relative-7xl: 176px;
  100. --spacing-relative-8xl: 248px;
  101. }
  102. }
  103. //풀사이즈 레이아웃 구성
  104. .detail--container--full{
  105. }
  106. /*=================================================
  107. |컴포넌트 별 css
  108. |START
  109. =================================================*/
  110. //풀사이즈 배너 텍스트1 형
  111. .img--section--full{
  112. width:100%;
  113. position: relative;
  114. &[data-type="cover"] {
  115. >div {
  116. position: relative;
  117. height:100vh;
  118. overflow: hidden;
  119. }
  120. img{
  121. object-fit: cover;
  122. height:auto;
  123. position: absolute;
  124. top:50%;
  125. transform: translateY(-50%);
  126. }
  127. }
  128. &:before{
  129. content:'';
  130. display: block;
  131. width:100%;
  132. height:100%;
  133. position: absolute;
  134. z-index: 2;
  135. pointer-events: none;
  136. inset: 0px;
  137. z-index: 1;
  138. background: linear-gradient(rgba(0, 0, 0, 0) 46.66%, rgb(0, 0, 0) 100%);
  139. }
  140. img{
  141. width:100%;
  142. max-width:100%;
  143. height:100vh;
  144. }
  145. .alt--text{
  146. color: rgb(252, 252, 253);
  147. letter-spacing: 0px;
  148. font-weight: 400;
  149. text-decoration: none;
  150. font-size: 28px;
  151. line-height: 40px;
  152. position: absolute;
  153. bottom:40px;
  154. left:0px;
  155. overflow: hidden;
  156. padding: 0 96px;
  157. white-space: pre-wrap;
  158. z-index: 2;
  159. }
  160. }
  161. //풀사이즈 패럴렉스 1형
  162. .prallax--banner--wrapper{
  163. position: relative;
  164. overflow: hidden;
  165. height:1000px;
  166. .prallax--banner{
  167. position: absolute;
  168. width: 100%;
  169. height: 120%;
  170. transform: translate3d(0, 0, 0); // 초기값 GPU 레이어 생성
  171. -webkit-transform: translate3d(0, 0, 0);
  172. backface-visibility: hidden;
  173. -webkit-backface-visibility: hidden;
  174. //perspective: 1000px;
  175. //-webkit-perspective: 1000px;
  176. position: absolute;
  177. top: -17%;
  178. left: 50%;
  179. will-change: transform;
  180. backface-visibility: hidden;
  181. picture {
  182. width: 100%;
  183. height: 100%;
  184. display: block;
  185. }
  186. img {
  187. width: 100%;
  188. height: 100%;
  189. object-fit: cover;
  190. object-position: center;
  191. transform: translateZ(0); // GPU 가속
  192. -webkit-transform: translateZ(0);
  193. }
  194. }
  195. .text--box--wrapper{
  196. position: absolute;
  197. backface-visibility: hidden;
  198. -webkit-backface-visibility: hidden;
  199. width: 100%;
  200. top:147px;
  201. left: 0px;
  202. z-index: 1;
  203. will-change: transform, opacity;
  204. transform: translate3d(0, 0, 0); // 초기값 GPU 레이어 생성
  205. -webkit-transform: translate3d(0, 0, 0);
  206. display: flex;
  207. -webkit-box-pack: center;
  208. justify-content: center;
  209. transition: opacity 0.1s ease-out;
  210. perspective: 1000px;
  211. -webkit-perspective: 1000px;
  212. .text--container{
  213. max-width:50%;
  214. position: relative;
  215. box-sizing: border-box;
  216. background: linear-gradient(134deg, rgb(44, 52, 63) 0%, rgb(35, 42, 52) 100%);
  217. backdrop-filter: blur(60px);
  218. display: flex;
  219. flex-direction: column;
  220. gap: 24px;
  221. flex-shrink: 0;
  222. flex-basis: 86%;
  223. margin: 88px auto 0 auto;
  224. padding: 40px;
  225. border-radius: 20px;
  226. left: 4%;
  227. flex-basis: 44%;
  228. h2{
  229. margin: 0px;
  230. color: rgb(252, 252, 253);
  231. letter-spacing: 0px;
  232. font-weight: 400;
  233. text-decoration: none;
  234. font-size: 24px;
  235. line-height: 36px;
  236. font-stretch: 130%;
  237. }
  238. p{
  239. margin: 0px;
  240. color: rgba(252, 252, 253, 0.7);
  241. font-family: AudiType, sans-serif;
  242. letter-spacing: 0px;
  243. font-weight: 400;
  244. text-decoration: none;
  245. font-size: 16px;
  246. line-height: 24px;
  247. font-stretch: 105%;
  248. }
  249. a{
  250. transition-timing-function:
  251. cubic-bezier(0.75, 0.02, 0.5, 1);
  252. transition-duration: 250ms;
  253. transition-property: color, text-decoration-color;
  254. display: inline-flex ;
  255. -webkit-box-align: center;
  256. align-items: center;
  257. font-family: AudiType, sans-serif;
  258. letter-spacing: 0px;
  259. font-weight: 400;
  260. text-decoration: underline 1px rgb(252, 252, 253);
  261. font-size: 16px;
  262. line-height: 24px;
  263. font-stretch: 105%;
  264. color: rgb(252, 252, 253);
  265. box-sizing: border-box;
  266. text-underline-offset: 7px;
  267. padding-bottom: 2px;
  268. min-height: 24px;
  269. }
  270. }
  271. }
  272. }
  273. //Swiper 배너 컴포넌트 (30% + 70% 레이아웃)
  274. .swiper--banner--wrapper {
  275. width: 100%;
  276. padding: 40px 96px;
  277. &[data-fit="contain"]{
  278. .swiper--banner--container{
  279. .swiper--banner--section{
  280. .swiper--container{
  281. .swiper-slide{
  282. .slide--image{
  283. img{
  284. object-fit: contain;
  285. }
  286. }
  287. }
  288. }
  289. }
  290. }
  291. }
  292. &[data-type="vertical"]{
  293. padding:0px;
  294. .swiper--banner--container{
  295. flex-direction: column-reverse;
  296. height:auto;
  297. .swiper--controls--section{
  298. flex-direction: row-reverse;
  299. @media(min-width:768px){
  300. padding: 0px 96px;
  301. }
  302. @media(min-width:1024px){
  303. padding: 0px 96px;
  304. }
  305. @media(min-width:1440px){
  306. padding: 0px 96px;
  307. }
  308. @media(min-width:1920px){
  309. padding:24px 96px;
  310. }
  311. .text--content{
  312. width:100%;
  313. .main--title{
  314. margin: 0px;
  315. color: rgb(252, 252, 253);
  316. font-family: AudiType, sans-serif;
  317. letter-spacing: 0px;
  318. font-weight: 400;
  319. text-decoration: none;
  320. font-size: 20px;
  321. line-height: 32px;
  322. font-stretch: 130%;
  323. @media(min-width:1440px){
  324. font-size: 24px;
  325. line-height: 36px;
  326. }
  327. }
  328. .sub--title{
  329. margin: 0px;
  330. color: rgba(252, 252, 253, 0.7);
  331. letter-spacing: 0px;
  332. font-weight: 400;
  333. text-decoration: none;
  334. font-size: 16px;
  335. line-height: 24px;
  336. font-stretch: 105%;
  337. }
  338. }
  339. }
  340. > div{
  341. width:100%;
  342. max-height:100vh;
  343. .swiper--container {
  344. .swiper-slide {
  345. .slide--image {
  346. border-radius: 0px;
  347. }
  348. }
  349. }
  350. }
  351. }
  352. }
  353. .swiper--banner--container {
  354. max-width: 1920px;
  355. height: 70vh;
  356. margin: 0 auto;
  357. display: flex;
  358. min-height: 600px;
  359. // 30% 영역: 컨트롤 및 텍스트
  360. .swiper--controls--section {
  361. width: 30%;
  362. padding: 40px;
  363. display: flex;
  364. flex-direction: column;
  365. justify-content: flex-end;
  366. .controls--top {
  367. margin-bottom: 40px;
  368. .pagination--nav--wrapper {
  369. display: flex;
  370. align-items: flex-start;
  371. justify-content: flex-start;
  372. flex-direction: column;
  373. gap: 20px;
  374. .swiper-pagination {
  375. position: relative;
  376. width: auto;
  377. display: flex;
  378. justify-content: center;
  379. align-items: center;
  380. gap: 12px;
  381. .swiper-pagination-bullet {
  382. width: 24px;
  383. height: 24px;
  384. background: transparent;
  385. border-radius: 50%;
  386. color: rgba(255, 255, 255, 0.6);
  387. font-size: 14px;
  388. font-weight: 400;
  389. display: flex;
  390. align-items: center;
  391. justify-content: center;
  392. cursor: pointer;
  393. transition: all 0.3s ease;
  394. opacity: 1;
  395. margin:0px;
  396. &:hover {
  397. background:rgba(252,252,253,.3)!important;
  398. color: rgba(255, 255, 255, 0.8);
  399. }
  400. &.swiper-pagination-bullet-active {
  401. background: transparent;
  402. color: #fff;
  403. font-weight: 600;
  404. }
  405. }
  406. }
  407. .navigation--buttons {
  408. display: flex;
  409. align-items: center;
  410. justify-content: center;
  411. gap: 16px;
  412. .swiper-pagination{
  413. top:0px;
  414. bottom:0px;
  415. }
  416. .swiper-button-prev{
  417. background: url(/img/ico--back--s.svg) no-repeat center;
  418. }
  419. .swiper-button-next{
  420. background: url(/img/ico--forward--s.svg) no-repeat center;
  421. }
  422. .swiper-button-prev,
  423. .swiper-button-next {
  424. position: relative;
  425. width: 24px;
  426. height: 24px;
  427. border-radius: 50%;
  428. color: white;
  429. margin: 0;
  430. transition: all 0.3s ease;
  431. cursor: pointer;
  432. &:hover{
  433. background:rgba(252,252,253,.3) ;
  434. }
  435. &.swiper-button-disabled {
  436. opacity: 0.3;
  437. cursor: not-allowed;
  438. &:hover {
  439. transform: none;
  440. }
  441. }
  442. }
  443. }
  444. }
  445. }
  446. .text--content {
  447. text-align: center;
  448. height:60%;
  449. .text--slider {
  450. position: relative;
  451. overflow: hidden;
  452. height:100%;
  453. .text--slide {
  454. position: absolute;
  455. top: 0;
  456. left: 0;
  457. width: 100%;
  458. opacity: 0;
  459. transform: translateX(-100%);
  460. transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  461. text-align: left;
  462. visibility: hidden;
  463. &.active {
  464. opacity: 1;
  465. transform: translateX(0);
  466. visibility: visible;
  467. position: relative; // 활성 슬라이드는 relative로 높이 확보
  468. }
  469. // 이전 슬라이드는 오른쪽으로 사라짐
  470. &:not(.active) {
  471. transform: translateX(-100%);
  472. position: absolute; // 비활성 슬라이드는 absolute로 겹침
  473. }
  474. }
  475. }
  476. .main--title {
  477. margin:0px;
  478. color: rgb(252, 252, 253);
  479. letter-spacing: 0px;
  480. font-weight: 400;
  481. text-decoration: none;
  482. font-size: 20px;
  483. line-height: 32px;
  484. font-stretch: 130%;
  485. padding-bottom:12px;
  486. }
  487. .sub--title {
  488. margin: 0px;
  489. color: rgba(252, 252, 253, 0.7);
  490. letter-spacing: 0px;
  491. font-weight: 400;
  492. text-decoration: none;
  493. font-size: 16px;
  494. line-height: 24px;
  495. font-stretch: 105%;
  496. }
  497. .desc--title{
  498. margin-top:25px;
  499. color: rgba(252, 252, 253, 0.7);
  500. letter-spacing: 0px;
  501. font-weight: 400;
  502. text-decoration: none;
  503. font-size: 15px;
  504. line-height: 24px;
  505. font-stretch: 105%;
  506. }
  507. .notice--text {
  508. margin-top: 40px;
  509. padding-top: 20px;
  510. // border-top: 1px solid rgba(255, 255, 255, 0.1);
  511. text-align: left;
  512. p {
  513. margin: 0;
  514. color: rgba(252, 252, 253, 0.5);
  515. font-size: 14px;
  516. line-height: 20px;
  517. font-style: italic;
  518. }
  519. }
  520. }
  521. }
  522. // 70% 영역: 단일 배너
  523. .swiper--banner--section {
  524. width: 70%;
  525. position: relative;
  526. overflow: hidden;
  527. .swiper--container {
  528. width: 100%;
  529. height: 100%;
  530. .swiper-slide {
  531. .slide--image {
  532. width: 100%;
  533. height: 100%;
  534. border-radius: 20px;
  535. overflow: hidden;
  536. img {
  537. width: 100%;
  538. height: 100%;
  539. max-height:100vh;
  540. object-fit: cover;
  541. object-position: center;
  542. transition: transform 0.8s ease;
  543. }
  544. }
  545. &.swiper-slide-active {
  546. .slide--image img {
  547. //transform: scale(1.02);
  548. }
  549. }
  550. }
  551. }
  552. }
  553. }
  554. // 반응형 처리
  555. @media (max-width: 1024px) {
  556. .swiper--banner--container {
  557. flex-direction: column;
  558. .swiper--controls--section {
  559. width: 100%;
  560. order: 2;
  561. padding: 30px 20px;
  562. }
  563. .swiper--banner--section {
  564. width: 100%;
  565. height: 400px;
  566. order: 1;
  567. }
  568. }
  569. }
  570. @media (max-width: 768px) {
  571. padding: 40px 0;
  572. .swiper--banner--container {
  573. .swiper--controls--section {
  574. padding: 20px;
  575. .text--content {
  576. .text--slider {
  577. height: 100px; // 모바일에서는 높이 조정
  578. }
  579. .main--title {
  580. font-size: 24px;
  581. line-height: 32px;
  582. }
  583. .sub--title {
  584. font-size: 16px;
  585. line-height: 22px;
  586. }
  587. }
  588. }
  589. .swiper--banner--section {
  590. height: 300px;
  591. }
  592. }
  593. }
  594. }
  595. .title--visual {
  596. position: relative;
  597. width: 100%;
  598. overflow: hidden;
  599. padding:40px 0px;
  600. &[data-type="middle"] {
  601. .title--visual--wrapper{
  602. max-width:100%;
  603. padding:0px 96px;
  604. .title--visual--content{
  605. h2{
  606. color: rgb(252, 252, 253);
  607. letter-spacing: 0px;
  608. font-weight: 400;
  609. text-decoration: none;
  610. font-size: 24px;
  611. line-height: 36px;
  612. font-stretch: 130%;
  613. @media (min-width: 1024px) {
  614. font-size: 28px;
  615. line-height: 40px;
  616. }
  617. @media (min-width: 1440px) {
  618. font-size: 32px;
  619. line-height: 44px;
  620. }
  621. @media (min-width: 1920px) {
  622. font-size: 36px;
  623. line-height: 52px;
  624. }
  625. }
  626. }
  627. }
  628. }
  629. // 테마별 스타일
  630. &[data-theme="dark"] {
  631. color: rgb(252, 252, 253);
  632. .title--description {
  633. color: rgba(252, 252, 253, 0.8);
  634. }
  635. }
  636. &[data-theme="light"] {
  637. background: rgb(252, 252, 253);
  638. color: #000;
  639. .title--description {
  640. color: rgba(0, 0, 0, 0.7);
  641. }
  642. }
  643. .title--visual--wrapper {
  644. margin: 0 auto;
  645. padding: 0 60px;
  646. align-content: center;
  647. box-sizing: content-box;
  648. display: grid;
  649. grid-template-columns: 100%;
  650. padding-bottom: 0px;
  651. padding-top: 0px;
  652. @media (min-width:1920px){
  653. margin: 0 auto;
  654. max-width:1248px;
  655. }
  656. @media (max-width: 1024px) {
  657. padding: 0 40px;
  658. }
  659. @media (max-width: 768px) {
  660. padding: 0 20px;
  661. }
  662. }
  663. .title--visual--content {
  664. margin: 0 auto;
  665. &[data-align="left"] {
  666. margin-left: 0;
  667. text-align: left;
  668. .title--main{
  669. text-align: left;
  670. }
  671. }
  672. &[data-align="center"] {
  673. text-align: center;
  674. }
  675. &[data-align="right"] {
  676. margin-right: 0;
  677. margin-left: auto;
  678. text-align: right;
  679. .title--main{
  680. text-align: right;
  681. }
  682. }
  683. // 애니메이션 상태
  684. &[data-animated="true"] {
  685. opacity: 0;
  686. transform: translateY(40px);
  687. transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  688. &.visible {
  689. opacity: 1;
  690. transform: translateY(0);
  691. }
  692. }
  693. }
  694. .title--main {
  695. margin: 0 0 24px 0;
  696. color: rgb(252, 252, 253);
  697. letter-spacing: 0px;
  698. font-weight: 400;
  699. text-decoration: none;
  700. font-size: 36px;
  701. line-height: 52px;
  702. font-stretch: 130%;
  703. overflow-wrap: break-word;
  704. text-align: center;
  705. @media (max-width: 1920px) {
  706. font-size: 72px;
  707. line-height: 100px;
  708. }
  709. @media (max-width: 1440px) {
  710. font-size: 60px;
  711. line-height: 84px;
  712. }
  713. @media (max-width: 1024px) {
  714. font-size: 52px;
  715. line-height: 76px;
  716. }
  717. @media (max-width: 768px) {
  718. font-size: 44px;
  719. line-height: 60px;
  720. }
  721. }
  722. .title--description {
  723. margin: 0;
  724. color: rgba(252, 252, 253, 0.7);
  725. letter-spacing: 0px;
  726. font-weight: 400;
  727. text-decoration: none;
  728. font-size: 16px;
  729. line-height: 24px;
  730. font-stretch: 105%;
  731. }
  732. .title--additional {
  733. margin-top: 40px;
  734. @media (max-width: 768px) {
  735. margin-top: 32px;
  736. }
  737. }
  738. }
  739. .caution--text--wrapper{
  740. padding:120px 96px;
  741. p{
  742. margin: 0 0 26px 0;
  743. color: rgba(252, 252, 253, 0.7);
  744. font-family: AudiType, sans-serif;
  745. letter-spacing: 0px;
  746. font-weight: 400;
  747. text-decoration: none;
  748. font-size: 16px;
  749. line-height: 24px;
  750. font-stretch: 105%;
  751. }
  752. }
  753. /*=================================================
  754. |컴포넌트 별 css
  755. |END
  756. =================================================*/
  757. // 로그인 폼 기본 디폴트 디자인
  758. .admin--login {
  759. min-height: 100vh;
  760. background: #000000;
  761. display: flex;
  762. align-items: center;
  763. justify-content: center;
  764. font-family: 'AudiType', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  765. .login--container {
  766. width: 100%;
  767. max-width: 480px;
  768. padding: 20px;
  769. }
  770. .login--box {
  771. background: #0a0a0a;
  772. border: 1px solid rgba(255, 255, 255, 0.1);
  773. border-radius: 12px;
  774. padding: 60px 40px;
  775. box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  776. }
  777. .login--logo {
  778. text-align: center;
  779. margin-bottom: 50px;
  780. h1 {
  781. font-size: 48px;
  782. font-weight: 700;
  783. color: #ffffff;
  784. letter-spacing: 8px;
  785. margin: 0;
  786. font-stretch: 130%;
  787. }
  788. .subtitle {
  789. color: rgba(255, 255, 255, 0.4);
  790. font-size: 14px;
  791. text-transform: uppercase;
  792. letter-spacing: 3px;
  793. margin-top: 10px;
  794. }
  795. }
  796. .login--form {
  797. .form--group {
  798. margin-bottom: 24px;
  799. }
  800. .form--input {
  801. width: 100%;
  802. height: 52px;
  803. background: #000000;
  804. border: 1px solid rgba(255, 255, 255, 0.15);
  805. border-radius: 8px;
  806. padding: 0 20px;
  807. font-size: 15px;
  808. color: #ffffff;
  809. transition: all 0.3s ease;
  810. &::placeholder {
  811. color: rgba(255, 255, 255, 0.6);
  812. }
  813. &:focus {
  814. outline: none;
  815. border-color: rgba(255, 255, 255, 0.4);
  816. background: rgba(255, 255, 255, 0.02);
  817. }
  818. &:hover {
  819. border-color: rgba(255, 255, 255, 0.25);
  820. }
  821. }
  822. .form--options {
  823. display: flex;
  824. justify-content: space-between;
  825. align-items: center;
  826. margin-bottom: 32px;
  827. .checkbox--label {
  828. display: flex;
  829. align-items: center;
  830. cursor: pointer;
  831. color: rgba(255, 255, 255, 0.6);
  832. font-size: 14px;
  833. input[type="checkbox"] {
  834. width: 18px;
  835. height: 18px;
  836. margin-right: 10px;
  837. background: #000000;
  838. border: 1px solid rgba(255, 255, 255, 0.3);
  839. border-radius: 4px;
  840. cursor: pointer;
  841. accent-color: #ffffff;
  842. }
  843. &:hover {
  844. color: rgba(255, 255, 255, 0.8);
  845. }
  846. }
  847. .forgot--password {
  848. color: rgba(255, 255, 255, 0.6);
  849. font-size: 14px;
  850. text-decoration: none;
  851. transition: color 0.3s ease;
  852. &:hover {
  853. color: #ffffff;
  854. }
  855. }
  856. }
  857. .login--button {
  858. width: 100%;
  859. height: 52px;
  860. background: #ffffff;
  861. color: #000000;
  862. border: none;
  863. border-radius: 8px;
  864. font-size: 16px;
  865. font-weight: 600;
  866. letter-spacing: 1px;
  867. cursor: pointer;
  868. transition: all 0.3s ease;
  869. &:hover {
  870. background: rgba(255, 255, 255, 0.9);
  871. transform: translateY(-2px);
  872. box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
  873. }
  874. &:active {
  875. transform: translateY(0);
  876. }
  877. }
  878. }
  879. .login--footer {
  880. text-align: center;
  881. margin-top: 40px;
  882. p {
  883. color: rgba(255, 255, 255, 0.3);
  884. font-size: 12px;
  885. letter-spacing: 0.5px;
  886. }
  887. }
  888. }
  889. //자세히 보기
  890. .more--detail--href{
  891. display: inline-flex;
  892. align-items: center;
  893. position: relative;
  894. letter-spacing: 0px;
  895. font-weight: 400;
  896. font-size: 14px;
  897. min-height:24px;
  898. &:after{
  899. content:'';
  900. display: block;
  901. width:calc(100% - 24px);
  902. height:1px;
  903. background: rgb(252, 252, 253);
  904. position: absolute;
  905. bottom:0px;
  906. left:0px;
  907. }
  908. .ico{
  909. width: 24px;
  910. height: 24px;
  911. background-image: url(/img/ico--arrow.svg);
  912. }
  913. }
  914. //탭 링크
  915. .text--tab--layout{
  916. display: flex;
  917. background: linear-gradient(134deg, rgb(44, 52, 63) 0%, rgb(35, 42, 52) 100%);
  918. position: sticky;
  919. top: 0;
  920. z-index: 100;
  921. @media(min-width:1440px){
  922. display: grid;
  923. grid-auto-flow: column;
  924. grid-template-columns: max-content 1fr auto;
  925. gap: 28px;
  926. width: 100%;
  927. box-sizing: border-box;
  928. overflow: hidden;
  929. }
  930. @media(min-width:1025px){
  931. padding-block:12px;
  932. }
  933. ul{
  934. display: flex;
  935. position: relative;
  936. padding-inline:96px;
  937. -webkit-box-align: center;
  938. align-items: center;
  939. -webkit-box-pack: justify;
  940. justify-content: space-between;
  941. li {
  942. &:first-child{
  943. a{
  944. margin-left:-12px;
  945. pointer-events: none;
  946. }
  947. }
  948. a{
  949. cursor: pointer;
  950. display: flex;
  951. -webkit-box-align: center;
  952. align-items: center;
  953. -webkit-box-pack: center;
  954. justify-content: center;
  955. text-decoration: none;
  956. border-radius: 10px;
  957. background: rgba(44, 52, 63, 0);
  958. box-shadow: rgba(219, 223, 230, 0) 0px 0px 0px 1px inset;
  959. outline-offset: -3px;
  960. box-sizing: border-box;
  961. transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
  962. transition-duration: 250ms;
  963. transition-property: color, background, box-shadow;
  964. min-height: 48px;
  965. min-width: 64px;
  966. color: rgba(252, 252, 253, 0.7);
  967. padding: 0px 16px;
  968. text-align: center;
  969. letter-spacing: 0px;
  970. font-weight: 400;
  971. text-decoration: none;
  972. font-size: 14px;
  973. line-height: 20px;
  974. font-stretch: 105%;
  975. &:hover{
  976. color:rgb(252,252,253);
  977. background-color: rgb(44,52,63);
  978. box-shadow: rgba(219, 223,230, .2) 0px 0px 0px 1px inset;
  979. }
  980. }
  981. }
  982. }
  983. }
  984. .inner--link--contents {
  985. width: 100%;
  986. padding: 40px 0;
  987. ul {
  988. list-style: none;
  989. margin: 0;
  990. padding: 0;
  991. display: flex;
  992. flex-wrap: wrap;
  993. gap: 24px;
  994. width: 100%;
  995. padding:0 96px;
  996. li {
  997. width:calc( (100% - 48px) / 3);
  998. --gradient-start: hsla(216, 20%, 17%, 1);
  999. --gradient-end: hsla(216, 21%, 12%, 1);
  1000. transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
  1001. transition-duration: 250ms;
  1002. transition-property: --gradient-start, --gradient-end, box-shadow;
  1003. padding:28px 16px;
  1004. overflow: hidden;
  1005. border-radius: 20px;
  1006. border: none;
  1007. cursor: pointer;
  1008. box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
  1009. backdrop-filter: blur(40px);
  1010. background: linear-gradient(180deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  1011. display: flex;
  1012. text-decoration: none;
  1013. &:hover{
  1014. --gradient-start: hsla(216, 18%, 21%, 1);
  1015. --gradient-end: hsla(216, 18%, 21%, 1);
  1016. box-shadow: rgb(42,57,64) 0px 0px 0px 1px inset;
  1017. }
  1018. a {
  1019. display: inline-flex;
  1020. align-items: center;
  1021. color: rgba(252, 252, 253, 0.7);;
  1022. letter-spacing: 0px;
  1023. font-weight: 400;
  1024. text-decoration: none;
  1025. font-size: 12px;
  1026. line-height: 24px;
  1027. font-stretch: 105%;
  1028. padding-left:40px;
  1029. position: relative;
  1030. width:100%;
  1031. svg{
  1032. position: absolute;
  1033. top:50%;
  1034. transform: translateY(-50%);
  1035. right:0px;
  1036. }
  1037. }
  1038. }
  1039. }
  1040. }
  1041. .product--card--wrapper{
  1042. margin: auto;
  1043. max-width: var(--max-content-width);
  1044. padding: var(--spacing-relative-xl) var(--spacing-relative-md);
  1045. padding-inline: var(--page-margin);
  1046. padding-block-end: var(--spacing-relative-2xl);
  1047. @media (min-width: 375px) {
  1048. padding-inline: var(--page-margin);
  1049. }
  1050. @media (min-width: 768px) {
  1051. padding-inline: var(--page-margin);
  1052. }
  1053. @media (min-width: 1024px) {
  1054. padding-inline: var(--spacing-relative-3xl);
  1055. padding-block-end: var(--spacing-relative-2xl);
  1056. }
  1057. @media (min-width: 1440px) {
  1058. padding-inline: var(--page-margin);
  1059. padding-block-end: var(--spacing-relative-2xl);
  1060. }
  1061. &[data-type="square"] {
  1062. max-height:100%!important;
  1063. .product--card{
  1064. max-height:100%!important;
  1065. .product--card--thumb{
  1066. max-height: 100%!important;
  1067. padding-top:50%;
  1068. .product--card--thumb--inner{
  1069. position: absolute;
  1070. inset: 0px;
  1071. height: 100%;
  1072. img{
  1073. position: relative;
  1074. }
  1075. }
  1076. }
  1077. }
  1078. }
  1079. .product--card {
  1080. display: flex;
  1081. overflow: hidden;
  1082. max-height: 50vh;
  1083. // 가로 레이아웃
  1084. &[data-layout="horizontal"] {
  1085. flex-direction: row;
  1086. align-items: center;
  1087. .product--card--thumb {
  1088. flex: 0 0 40%;
  1089. max-width: 600px;
  1090. }
  1091. .product--card--content {
  1092. flex: 1;
  1093. }
  1094. // 이미지 오른쪽 배치
  1095. &[data-image-position="right"] {
  1096. flex-direction: row-reverse;
  1097. }
  1098. @media (max-width: 1024px) {
  1099. flex-direction: column;
  1100. .product--card--thumb {
  1101. flex: 1;
  1102. max-width: 100%;
  1103. }
  1104. .product--card--content {
  1105. padding-left: 0;
  1106. padding-right: 0;
  1107. padding-top: 20px;
  1108. }
  1109. // 모바일에서는 이미지 위치 상관없이 세로 배치
  1110. &[data-image-position="right"] {
  1111. flex-direction: column;
  1112. .product--card--content {
  1113. padding-right: 0;
  1114. padding-top: 20px;
  1115. }
  1116. }
  1117. }
  1118. }
  1119. // 세로 레이아웃
  1120. &[data-layout="vertical"] {
  1121. flex-direction: column;
  1122. max-width: 600px;
  1123. .product--card--thumb {
  1124. width: 100%;
  1125. }
  1126. .product--card--content {
  1127. padding-top: 24px;
  1128. }
  1129. }
  1130. .product--card--thumb {
  1131. background: rgba(255, 255, 255, 0.05);
  1132. min-width:50%;
  1133. position: relative;
  1134. max-height: 50vh;
  1135. border-radius: 20px;
  1136. position: relative;
  1137. overflow: hidden;
  1138. .product--card--thumb--inner{
  1139. height:100%;
  1140. min-height:50vh;
  1141. img {
  1142. width: 100%;
  1143. height: 100%;
  1144. object-fit: cover;
  1145. display: block;
  1146. transition: transform 0.6s ease;
  1147. position: absolute;
  1148. height: 100%;
  1149. }
  1150. &:hover img {
  1151. transform: scale(1.05);
  1152. }
  1153. }
  1154. }
  1155. .product--card--content {
  1156. display: flex;
  1157. flex-direction: column;
  1158. gap: 16px;
  1159. @media screen and (min-width: 320px) {
  1160. padding-block-start: var(--spacing-relative-lg);
  1161. }
  1162. @media screen and (min-width: 1024px) {
  1163. -webkit-box-pack: center;
  1164. justify-content: center;
  1165. align-items: flex-start;
  1166. padding-inline-start: var(--spacing-relative-2xl);
  1167. padding-inline-end: var(--spacing-relative-2xl);
  1168. padding-block-start: 0px;
  1169. }
  1170. }
  1171. .product--card--title {
  1172. margin: 0px;
  1173. color: rgb(252, 252, 253);
  1174. letter-spacing: 0px;
  1175. font-weight: 400;
  1176. text-decoration: none;
  1177. font-size: 24px;
  1178. line-height: 36px;
  1179. font-stretch: 130%;
  1180. @media (min-width: 1024px) {
  1181. font-size: 28px;
  1182. line-height: 40px;
  1183. }
  1184. @media (min-width: 1440px) {
  1185. font-size: 32px;
  1186. line-height: 44px;
  1187. }
  1188. @media (min-width: 1920px) {
  1189. font-size: 36px;
  1190. line-height: 52px;
  1191. }
  1192. }
  1193. .product--card--subtitle {
  1194. margin: 0;
  1195. color: rgba(252, 252, 253, 0.8);
  1196. font-size: 16px;
  1197. line-height: 24px;
  1198. }
  1199. .product--card--description {
  1200. margin-top: 8px;
  1201. p {
  1202. margin: 0px;
  1203. color: rgba(252, 252, 253, 0.7);
  1204. letter-spacing: 0px;
  1205. font-weight: 400;
  1206. text-decoration: none;
  1207. font-size: 16px;
  1208. line-height: 24px;
  1209. font-stretch: 105%;
  1210. }
  1211. }
  1212. .product--card--actions {
  1213. margin-top: 24px;
  1214. display: flex;
  1215. gap: 16px;
  1216. flex-wrap: wrap;
  1217. .default--round--btn {
  1218. flex-direction: column;
  1219. -webkit-box-align: center;
  1220. align-items: center;
  1221. -webkit-box-pack: center;
  1222. justify-content: center;
  1223. transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
  1224. transition-duration: 250ms;
  1225. border-radius: 999px;
  1226. cursor: pointer;
  1227. display: inline-flex;
  1228. border: 0px;
  1229. letter-spacing: 0px;
  1230. font-weight: 400;
  1231. text-decoration: none;
  1232. font-size: 14px;
  1233. line-height: 20px;
  1234. font-stretch: 105%;
  1235. padding: 12px 24px;
  1236. min-height: 48px;
  1237. background-color: rgb(24, 29, 37);
  1238. color: rgb(252, 252, 253);
  1239. box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
  1240. transition-property: color, box-shadow, background-color;
  1241. &:hover {
  1242. background: rgba(44,52,63);
  1243. box-shadow: rgba(219,223,230, .2) 0px 0px 0px 1px inset;
  1244. }
  1245. &:active {
  1246. transform: translateY(0);
  1247. }
  1248. }
  1249. }
  1250. @media (max-width: 768px) {
  1251. padding: 24px;
  1252. gap: 24px;
  1253. }
  1254. }
  1255. }