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 */
|
||||
Reference in New Issue
Block a user