feat: 디즈니 프로모션 추가
This commit is contained in:
419
kr/assets/css/promotion.css
Normal file
419
kr/assets/css/promotion.css
Normal file
@@ -0,0 +1,419 @@
|
||||
@charset "UTF-8";
|
||||
/*변수*/
|
||||
/*반응형 화면 크기*/
|
||||
/*css 디폴트는 모바일이 기준*/
|
||||
/*반응형, 브라우저 크기가 300px 이하일때*/
|
||||
/*반응형, 브라우저 크기가 800px 이상일때*/
|
||||
/*@media (min-width: $mobile ) and (max-width: $tablet){*/
|
||||
/*반응형, 브라우저 크기가 1025px 이상일때*/
|
||||
/*반응형, 브라우저 크기가 1204px 이상일때*/
|
||||
/*넓이, 높이 자동 계산함수*/
|
||||
/*변수파일 import*/
|
||||
@-webkit-keyframes easeInOutQuart {
|
||||
0% {
|
||||
transform: translateY(0);
|
||||
}
|
||||
100% {
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
@keyframes easeInOutQuart {
|
||||
0% {
|
||||
transform: translateY(0);
|
||||
}
|
||||
100% {
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
#promotion .contentWarp {
|
||||
max-width: 100%;
|
||||
margin-top: 0;
|
||||
}
|
||||
#promotion .promotionHeader {
|
||||
width: 100%;
|
||||
height: 108rem;
|
||||
background: url("../images/kia/promotion/kv_promotion.jpg") no-repeat center center/auto 100%;
|
||||
}
|
||||
#promotion .promotionHeader .promotionHeaderInner {
|
||||
width: 100%;
|
||||
max-width: 120rem;
|
||||
margin: 0 auto;
|
||||
padding-top: 71.4rem;
|
||||
}
|
||||
#promotion .promotionHeader .promotionHeaderInner .pageTitle h1 {
|
||||
font-size: 4.8rem;
|
||||
font-weight: 600;
|
||||
color: #fff;
|
||||
}
|
||||
#promotion .promotionHeader .promotionHeaderInner .pageTitle p {
|
||||
font-size: 1.6rem;
|
||||
font-weight: 400;
|
||||
color: #fff;
|
||||
}
|
||||
#promotion .tabNavigation {
|
||||
width: 100%;
|
||||
background: #fff;
|
||||
border-bottom: 1px solid #e5e5e5;
|
||||
position: -webkit-sticky;
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 100;
|
||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
#promotion .tabNavigation .tabNavigationInner {
|
||||
max-width: 120rem;
|
||||
margin: 0 auto;
|
||||
}
|
||||
#promotion .tabNavigation .tabNavigationInner .tabList {
|
||||
display: flex;
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
#promotion .tabNavigation .tabNavigationInner .tabList .tabItem {
|
||||
flex: 1;
|
||||
}
|
||||
#promotion .tabNavigation .tabNavigationInner .tabList .tabItem .tabLink {
|
||||
display: block;
|
||||
padding: 2rem 1.5rem;
|
||||
text-decoration: none;
|
||||
color: #666;
|
||||
font-size: 1.6rem;
|
||||
font-weight: 400;
|
||||
text-align: center;
|
||||
border-bottom: 3px solid transparent;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
#promotion .tabNavigation .tabNavigationInner .tabList .tabItem .tabLink:hover {
|
||||
color: #333;
|
||||
}
|
||||
#promotion .tabNavigation .tabNavigationInner .tabList .tabItem.active .tabLink {
|
||||
color: #333;
|
||||
font-weight: 600;
|
||||
border-bottom-color: #333;
|
||||
}
|
||||
#promotion .tabContentArea {
|
||||
width: 100%;
|
||||
background: #fff;
|
||||
min-height: 60rem;
|
||||
position: relative;
|
||||
}
|
||||
#promotion .tabContentArea .tabContentInner {
|
||||
margin: 0 auto;
|
||||
position: relative;
|
||||
}
|
||||
#promotion .tabContentArea .tabContentInner .tabContent {
|
||||
min-height: 60rem;
|
||||
display: block;
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
transform: none;
|
||||
position: relative;
|
||||
margin-bottom: 4rem;
|
||||
}
|
||||
#promotion .tabContentArea .tabContentInner .tabContent .contentSection h2 {
|
||||
font-size: 3.2rem;
|
||||
font-weight: 600;
|
||||
color: #333;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
#promotion .tabContentArea .tabContentInner .tabContent .contentSection p {
|
||||
font-size: 1.6rem;
|
||||
color: #666;
|
||||
line-height: 1.6;
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
#promotion .contentSectionInner {
|
||||
max-width: 120rem;
|
||||
margin: 0 auto;
|
||||
}
|
||||
#promotion .disneySwiperContainer {
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
margin-top: 4rem;
|
||||
padding: 2rem 0;
|
||||
}
|
||||
#promotion .disneySwiperContainer .disneySwiper {
|
||||
width: 100%;
|
||||
padding: 2rem 0 4rem;
|
||||
}
|
||||
#promotion .disneySwiperContainer .disneySwiper .swiper-slide {
|
||||
width: 58rem !important;
|
||||
height: 36rem;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
#promotion .disneySwiperContainer .disneySwiper .swiper-slide .themeCard {
|
||||
border-radius: 2rem;
|
||||
padding: 3rem 2rem;
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
#promotion .disneySwiperContainer .disneySwiper .swiper-slide .themeCard h3 {
|
||||
font-size: 2.2rem;
|
||||
font-weight: 700;
|
||||
margin-bottom: 1rem;
|
||||
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
#promotion .disneySwiperContainer .disneySwiper .swiper-slide .themeCard p {
|
||||
font-size: 1.4rem;
|
||||
opacity: 0.9;
|
||||
line-height: 1.4;
|
||||
margin: 0;
|
||||
}
|
||||
#promotion .disneySwiperContainer .disneySwiper .swiper-button-next,
|
||||
#promotion .disneySwiperContainer .disneySwiper .swiper-button-prev {
|
||||
display: none;
|
||||
color: #333;
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
width: 5rem;
|
||||
height: 5rem;
|
||||
border-radius: 50%;
|
||||
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
#promotion .disneySwiperContainer .disneySwiper .swiper-button-next:after,
|
||||
#promotion .disneySwiperContainer .disneySwiper .swiper-button-prev:after {
|
||||
font-size: 1.8rem;
|
||||
font-weight: bold;
|
||||
}
|
||||
#promotion .disneySwiperContainer .disneySwiper .swiper-button-next:hover,
|
||||
#promotion .disneySwiperContainer .disneySwiper .swiper-button-prev:hover {
|
||||
background: #fff;
|
||||
transform: scale(1.1);
|
||||
}
|
||||
#promotion .disneySwiperContainer .disneySwiper .swiper-pagination {
|
||||
bottom: 0;
|
||||
}
|
||||
#promotion .disneySwiperContainer .disneySwiper .swiper-pagination .swiper-pagination-bullet {
|
||||
background: #ddd;
|
||||
opacity: 1;
|
||||
width: 1.2rem;
|
||||
height: 1.2rem;
|
||||
margin: 0 0.5rem;
|
||||
}
|
||||
#promotion .disneySwiperContainer .disneySwiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
|
||||
background: #333;
|
||||
transform: scale(1.2);
|
||||
}
|
||||
#promotion .noticeBox {
|
||||
background: #fff;
|
||||
border-radius: 1rem;
|
||||
padding: 2rem;
|
||||
margin: 3rem 0;
|
||||
border: 1px solid #e5e5e5;
|
||||
}
|
||||
#promotion .noticeBox h3 {
|
||||
font-size: 1.8rem;
|
||||
font-weight: 600;
|
||||
color: #333;
|
||||
margin-bottom: 1.5rem;
|
||||
padding-bottom: 1rem;
|
||||
border-bottom: 1px solid #e5e5e5;
|
||||
}
|
||||
#promotion .noticeBox ul {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
#promotion .noticeBox ul li {
|
||||
position: relative;
|
||||
padding-left: 2rem;
|
||||
margin-bottom: 1rem;
|
||||
font-size: 1.4rem;
|
||||
color: #666;
|
||||
line-height: 1.5;
|
||||
}
|
||||
#promotion .noticeBox ul li:before {
|
||||
content: "•";
|
||||
position: absolute;
|
||||
left: 0;
|
||||
color: #333;
|
||||
font-weight: bold;
|
||||
}
|
||||
#promotion .noticeBox ul li:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
#promotion .carList {
|
||||
margin-top: 3rem;
|
||||
}
|
||||
#promotion .guideSteps {
|
||||
margin-top: 3rem;
|
||||
}
|
||||
#promotion .guideSteps .stepItem {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
#promotion .guideSteps .stepItem .stepNumber {
|
||||
width: 4rem;
|
||||
height: 4rem;
|
||||
background: #333;
|
||||
color: #fff;
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 1.8rem;
|
||||
font-weight: 600;
|
||||
margin-right: 2rem;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
#promotion .guideSteps .stepItem .stepContent {
|
||||
flex: 1;
|
||||
}
|
||||
#promotion .guideSteps .stepItem .stepContent h3 {
|
||||
font-size: 2rem;
|
||||
font-weight: 600;
|
||||
color: #333;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
#promotion .guideSteps .stepItem .stepContent p {
|
||||
font-size: 1.4rem;
|
||||
color: #666;
|
||||
line-height: 1.5;
|
||||
margin: 0;
|
||||
}
|
||||
#promotion .featuresList {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
|
||||
gap: 2rem;
|
||||
margin-top: 3rem;
|
||||
}
|
||||
#promotion .featuresList .featureCard {
|
||||
padding: 2rem;
|
||||
background: #fff;
|
||||
border: 1px solid #e5e5e5;
|
||||
border-radius: 1rem;
|
||||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
#promotion .featuresList .featureCard h3 {
|
||||
font-size: 1.8rem;
|
||||
font-weight: 600;
|
||||
color: #333;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
#promotion .featuresList .featureCard p {
|
||||
font-size: 1.4rem;
|
||||
color: #666;
|
||||
line-height: 1.5;
|
||||
margin: 0;
|
||||
}
|
||||
#promotion .infoGrid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
|
||||
gap: 3rem;
|
||||
margin-top: 3rem;
|
||||
}
|
||||
#promotion .infoGrid .infoSection h3 {
|
||||
font-size: 2rem;
|
||||
font-weight: 600;
|
||||
color: #333;
|
||||
margin-bottom: 1.5rem;
|
||||
padding-bottom: 1rem;
|
||||
border-bottom: 2px solid #e5e5e5;
|
||||
}
|
||||
#promotion .infoGrid .infoSection ul {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
#promotion .infoGrid .infoSection ul li {
|
||||
padding: 0.8rem 0;
|
||||
font-size: 1.4rem;
|
||||
color: #666;
|
||||
border-bottom: 1px solid #f0f0f0;
|
||||
}
|
||||
#promotion .infoGrid .infoSection ul li:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
#promotion .infoGrid .infoSection ul li:before {
|
||||
content: "•";
|
||||
color: #333;
|
||||
font-weight: bold;
|
||||
margin-right: 1rem;
|
||||
}
|
||||
@media (max-width: 768px) {
|
||||
#promotion .tabNavigation .tabNavigationInner .tabList .tabItem .tabLink {
|
||||
padding: 1.5rem 1rem;
|
||||
font-size: 1.4rem;
|
||||
}
|
||||
#promotion .tabContentArea {
|
||||
width: 100%;
|
||||
}
|
||||
#promotion .tabContentArea .tabContentInner .tabContent .contentSection h2 {
|
||||
font-size: 2.4rem;
|
||||
}
|
||||
#promotion .disneySwiperContainer {
|
||||
margin-top: 3rem;
|
||||
padding: 1rem 0;
|
||||
}
|
||||
#promotion .disneySwiperContainer .disneySwiper {
|
||||
padding: 1rem 0 3rem;
|
||||
}
|
||||
#promotion .disneySwiperContainer .disneySwiper .swiper-slide .themeCard {
|
||||
padding: 2rem 1.5rem;
|
||||
}
|
||||
#promotion .disneySwiperContainer .disneySwiper .swiper-slide .themeCard h3 {
|
||||
font-size: 1.8rem;
|
||||
margin-bottom: 0.8rem;
|
||||
}
|
||||
#promotion .disneySwiperContainer .disneySwiper .swiper-slide .themeCard p {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
#promotion .disneySwiperContainer .disneySwiper .swiper-button-next,
|
||||
#promotion .disneySwiperContainer .disneySwiper .swiper-button-prev {
|
||||
width: 4rem;
|
||||
height: 4rem;
|
||||
}
|
||||
#promotion .disneySwiperContainer .disneySwiper .swiper-button-next:after,
|
||||
#promotion .disneySwiperContainer .disneySwiper .swiper-button-prev:after {
|
||||
font-size: 1.4rem;
|
||||
}
|
||||
#promotion .featureGrid,
|
||||
#promotion .carList,
|
||||
#promotion .featuresList,
|
||||
#promotion .infoGrid {
|
||||
grid-template-columns: 1fr;
|
||||
gap: 2rem;
|
||||
}
|
||||
#promotion .noticeBox {
|
||||
padding: 1.5rem;
|
||||
margin: 2rem 0;
|
||||
}
|
||||
#promotion .noticeBox h3 {
|
||||
font-size: 1.6rem;
|
||||
}
|
||||
#promotion .noticeBox ul li {
|
||||
font-size: 1.3rem;
|
||||
padding-left: 1.5rem;
|
||||
}
|
||||
#promotion .carList .carItem {
|
||||
flex-direction: column;
|
||||
text-align: center;
|
||||
padding: 1.5rem;
|
||||
}
|
||||
#promotion .carList .carItem .carImage {
|
||||
width: 6rem;
|
||||
height: 6rem;
|
||||
}
|
||||
#promotion .carList .carItem .carInfo h3 {
|
||||
font-size: 1.6rem;
|
||||
}
|
||||
#promotion .carList .carItem .carInfo p {
|
||||
font-size: 1.3rem;
|
||||
}
|
||||
#promotion .guideSteps .stepItem {
|
||||
flex-direction: column;
|
||||
text-align: center;
|
||||
}
|
||||
#promotion .guideSteps .stepItem .stepNumber {
|
||||
margin-right: 0;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
}
|
||||
/*# sourceMappingURL=promotion.css.map */
|
||||
1
kr/assets/css/promotion.css.map
Normal file
1
kr/assets/css/promotion.css.map
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"sources":["promotion.css","_utils.scss","promotion.scss"],"names":[],"mappings":"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","file":"promotion.css"}
|
||||
496
kr/assets/css/promotion.scss
Normal file
496
kr/assets/css/promotion.scss
Normal file
@@ -0,0 +1,496 @@
|
||||
@charset "UTF-8";
|
||||
@import "utils.scss";
|
||||
/*변수파일 import*/
|
||||
|
||||
// 부드러운 스크롤 애니메이션을 위한 기본 설정
|
||||
// html {
|
||||
// scroll-behavior: smooth;
|
||||
// }
|
||||
|
||||
// jQuery easing 함수를 위한 CSS 애니메이션
|
||||
@keyframes easeInOutQuart {
|
||||
0% {
|
||||
transform: translateY(0);
|
||||
}
|
||||
100% {
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
#promotion {
|
||||
.contentWarp {
|
||||
max-width: 100%;
|
||||
margin-top: 0;
|
||||
}
|
||||
.promotionHeader {
|
||||
width: 100%;
|
||||
height: 108rem;
|
||||
background: url("../images/kia/promotion/kv_promotion.jpg") no-repeat center center / auto 100%;
|
||||
.promotionHeaderInner {
|
||||
width: 100%;
|
||||
max-width: 120rem;
|
||||
margin: 0 auto;
|
||||
padding-top: 71.4rem;
|
||||
.pageTitle {
|
||||
h1 {
|
||||
font-size: 4.8rem;
|
||||
font-weight: 600;
|
||||
color: #fff;
|
||||
}
|
||||
p {
|
||||
font-size: 1.6rem;
|
||||
font-weight: 400;
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 탭 네비게이션 스타일
|
||||
.tabNavigation {
|
||||
width: 100%;
|
||||
background: #fff;
|
||||
border-bottom: 1px solid #e5e5e5;
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 100;
|
||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
||||
.tabNavigationInner {
|
||||
max-width: 120rem;
|
||||
margin: 0 auto;
|
||||
.tabList {
|
||||
display: flex;
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
.tabItem {
|
||||
flex: 1;
|
||||
.tabLink {
|
||||
display: block;
|
||||
padding: 2rem 1.5rem;
|
||||
text-decoration: none;
|
||||
color: #666;
|
||||
font-size: 1.6rem;
|
||||
font-weight: 400;
|
||||
text-align: center;
|
||||
border-bottom: 3px solid transparent;
|
||||
transition: all 0.3s ease;
|
||||
&:hover {
|
||||
color: #333;
|
||||
}
|
||||
}
|
||||
&.active {
|
||||
.tabLink {
|
||||
color: #333;
|
||||
font-weight: 600;
|
||||
border-bottom-color: #333;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 탭 콘텐츠 영역 스타일
|
||||
.tabContentArea {
|
||||
width: 100%;
|
||||
background: #fff;
|
||||
min-height: 60rem;
|
||||
position: relative;
|
||||
.tabContentInner {
|
||||
// max-width: 120rem;
|
||||
margin: 0 auto;
|
||||
position: relative;
|
||||
.tabContent {
|
||||
min-height: 60rem;
|
||||
display: block;
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
transform: none;
|
||||
position: relative;
|
||||
margin-bottom: 4rem;
|
||||
.contentSection {
|
||||
h2 {
|
||||
font-size: 3.2rem;
|
||||
font-weight: 600;
|
||||
color: #333;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
p {
|
||||
font-size: 1.6rem;
|
||||
color: #666;
|
||||
line-height: 1.6;
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.contentSectionInner {
|
||||
max-width: 120rem;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
// Disney 스와이퍼 스타일
|
||||
.disneySwiperContainer {
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
margin-top: 4rem;
|
||||
padding: 2rem 0;
|
||||
|
||||
.disneySwiper {
|
||||
width: 100%;
|
||||
padding: 2rem 0 4rem;
|
||||
|
||||
.swiper-slide {
|
||||
width: 58rem !important;
|
||||
height: 36rem;
|
||||
flex-shrink: 0;
|
||||
|
||||
.themeCard {
|
||||
border-radius: 2rem;
|
||||
padding: 3rem 2rem;
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
transition: all 0.3s ease;
|
||||
|
||||
h3 {
|
||||
font-size: 2.2rem;
|
||||
font-weight: 700;
|
||||
margin-bottom: 1rem;
|
||||
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 1.4rem;
|
||||
opacity: 0.9;
|
||||
line-height: 1.4;
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 네비게이션 버튼 스타일
|
||||
.swiper-button-next,
|
||||
.swiper-button-prev {
|
||||
display: none;
|
||||
color: #333;
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
width: 5rem;
|
||||
height: 5rem;
|
||||
border-radius: 50%;
|
||||
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
|
||||
|
||||
&:after {
|
||||
font-size: 1.8rem;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
background: #fff;
|
||||
transform: scale(1.1);
|
||||
}
|
||||
}
|
||||
|
||||
// 페이지네이션 스타일
|
||||
.swiper-pagination {
|
||||
bottom: 0;
|
||||
|
||||
.swiper-pagination-bullet {
|
||||
background: #ddd;
|
||||
opacity: 1;
|
||||
width: 1.2rem;
|
||||
height: 1.2rem;
|
||||
margin: 0 0.5rem;
|
||||
|
||||
&.swiper-pagination-bullet-active {
|
||||
background: #333;
|
||||
transform: scale(1.2);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Notice 박스 스타일
|
||||
.noticeBox {
|
||||
background: #fff;
|
||||
border-radius: 1rem;
|
||||
padding: 2rem;
|
||||
margin: 3rem 0;
|
||||
border: 1px solid #e5e5e5;
|
||||
|
||||
h3 {
|
||||
font-size: 1.8rem;
|
||||
font-weight: 600;
|
||||
color: #333;
|
||||
margin-bottom: 1.5rem;
|
||||
padding-bottom: 1rem;
|
||||
border-bottom: 1px solid #e5e5e5;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
|
||||
li {
|
||||
position: relative;
|
||||
padding-left: 2rem;
|
||||
margin-bottom: 1rem;
|
||||
font-size: 1.4rem;
|
||||
color: #666;
|
||||
line-height: 1.5;
|
||||
|
||||
&:before {
|
||||
content: "•";
|
||||
position: absolute;
|
||||
left: 0;
|
||||
color: #333;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Available Cars 탭 스타일
|
||||
.carList {
|
||||
margin-top: 3rem;
|
||||
}
|
||||
|
||||
// Select Guide 탭 스타일
|
||||
.guideSteps {
|
||||
margin-top: 3rem;
|
||||
.stepItem {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
margin-bottom: 3rem;
|
||||
.stepNumber {
|
||||
width: 4rem;
|
||||
height: 4rem;
|
||||
background: #333;
|
||||
color: #fff;
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 1.8rem;
|
||||
font-weight: 600;
|
||||
margin-right: 2rem;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.stepContent {
|
||||
flex: 1;
|
||||
h3 {
|
||||
font-size: 2rem;
|
||||
font-weight: 600;
|
||||
color: #333;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
p {
|
||||
font-size: 1.4rem;
|
||||
color: #666;
|
||||
line-height: 1.5;
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// More Features 탭 스타일
|
||||
.featuresList {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
|
||||
gap: 2rem;
|
||||
margin-top: 3rem;
|
||||
.featureCard {
|
||||
padding: 2rem;
|
||||
background: #fff;
|
||||
border: 1px solid #e5e5e5;
|
||||
border-radius: 1rem;
|
||||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
||||
h3 {
|
||||
font-size: 1.8rem;
|
||||
font-weight: 600;
|
||||
color: #333;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
p {
|
||||
font-size: 1.4rem;
|
||||
color: #666;
|
||||
line-height: 1.5;
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Information 탭 스타일
|
||||
.infoGrid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
|
||||
gap: 3rem;
|
||||
margin-top: 3rem;
|
||||
.infoSection {
|
||||
h3 {
|
||||
font-size: 2rem;
|
||||
font-weight: 600;
|
||||
color: #333;
|
||||
margin-bottom: 1.5rem;
|
||||
padding-bottom: 1rem;
|
||||
border-bottom: 2px solid #e5e5e5;
|
||||
}
|
||||
ul {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
li {
|
||||
padding: 0.8rem 0;
|
||||
font-size: 1.4rem;
|
||||
color: #666;
|
||||
border-bottom: 1px solid #f0f0f0;
|
||||
&:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
&:before {
|
||||
content: "•";
|
||||
color: #333;
|
||||
font-weight: bold;
|
||||
margin-right: 1rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 반응형 스타일
|
||||
@media (max-width: 768px) {
|
||||
.tabNavigation {
|
||||
.tabNavigationInner {
|
||||
.tabList {
|
||||
.tabItem {
|
||||
.tabLink {
|
||||
padding: 1.5rem 1rem;
|
||||
font-size: 1.4rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.tabContentArea {
|
||||
width: 100%;
|
||||
.tabContentInner {
|
||||
.tabContent {
|
||||
.contentSection {
|
||||
h2 {
|
||||
font-size: 2.4rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Disney 스와이퍼 모바일 스타일
|
||||
.disneySwiperContainer {
|
||||
margin-top: 3rem;
|
||||
padding: 1rem 0;
|
||||
|
||||
.disneySwiper {
|
||||
padding: 1rem 0 3rem;
|
||||
|
||||
.swiper-slide {
|
||||
.themeCard {
|
||||
padding: 2rem 1.5rem;
|
||||
|
||||
h3 {
|
||||
font-size: 1.8rem;
|
||||
margin-bottom: 0.8rem;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.swiper-button-next,
|
||||
.swiper-button-prev {
|
||||
width: 4rem;
|
||||
height: 4rem;
|
||||
|
||||
&:after {
|
||||
font-size: 1.4rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.featureGrid,
|
||||
.carList,
|
||||
.featuresList,
|
||||
.infoGrid {
|
||||
grid-template-columns: 1fr;
|
||||
gap: 2rem;
|
||||
}
|
||||
|
||||
// Notice 박스 모바일 스타일
|
||||
.noticeBox {
|
||||
padding: 1.5rem;
|
||||
margin: 2rem 0;
|
||||
|
||||
h3 {
|
||||
font-size: 1.6rem;
|
||||
}
|
||||
|
||||
ul li {
|
||||
font-size: 1.3rem;
|
||||
padding-left: 1.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
// 차량 목록 모바일 스타일
|
||||
.carList {
|
||||
.carItem {
|
||||
flex-direction: column;
|
||||
text-align: center;
|
||||
padding: 1.5rem;
|
||||
|
||||
.carImage {
|
||||
width: 6rem;
|
||||
height: 6rem;
|
||||
}
|
||||
|
||||
.carInfo {
|
||||
h3 {
|
||||
font-size: 1.6rem;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 1.3rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.guideSteps {
|
||||
.stepItem {
|
||||
flex-direction: column;
|
||||
text-align: center;
|
||||
.stepNumber {
|
||||
margin-right: 0;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user