디즈니 작업 중
@@ -3,66 +3,65 @@ $red: #fa5252;
|
||||
|
||||
/*반응형 화면 크기*/
|
||||
$mobileSmall: 320px;
|
||||
$mobile:501px;
|
||||
$mobile: 501px;
|
||||
$tablet: 768px;
|
||||
$desktopMin: 1025px;
|
||||
$desktopMax: 1240px;
|
||||
|
||||
/*css 디폴트는 모바일이 기준*/
|
||||
/*반응형, 브라우저 크기가 300px 이하일때*/
|
||||
@mixin mobileSmall{
|
||||
@media (max-width: $mobileSmall){
|
||||
@content;
|
||||
}
|
||||
@mixin mobileSmall {
|
||||
@media (max-width: $mobileSmall) {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
@mixin mobile{
|
||||
@media (min-width: $mobile){
|
||||
@content;
|
||||
}
|
||||
@mixin mobile {
|
||||
@media (min-width: $mobile) {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
@mixin maxmobile{
|
||||
@media (max-width: $mobile){
|
||||
@content;
|
||||
}
|
||||
@mixin maxmobile {
|
||||
@media (max-width: $mobile) {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
|
||||
/*반응형, 브라우저 크기가 800px 이상일때*/
|
||||
/*@media (min-width: $mobile ) and (max-width: $tablet){*/
|
||||
@mixin tablet{
|
||||
@media(min-width: $tablet){
|
||||
@content;
|
||||
}
|
||||
@mixin tablet {
|
||||
@media (min-width: $tablet) {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
@mixin maxtablet{
|
||||
@media(max-width: $tablet){
|
||||
@content;
|
||||
}
|
||||
@mixin maxtablet {
|
||||
@media (max-width: $tablet) {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@mixin maxdesktop{
|
||||
@media (max-width: $desktopMin){
|
||||
@content;
|
||||
}
|
||||
@mixin maxdesktop {
|
||||
@media (max-width: $desktopMin) {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
|
||||
/*반응형, 브라우저 크기가 1025px 이상일때*/
|
||||
@mixin desktopMin{
|
||||
@media (min-width: $desktopMin){
|
||||
@content;
|
||||
}
|
||||
@mixin desktopMin {
|
||||
@media (min-width: $desktopMin) {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
|
||||
/*반응형, 브라우저 크기가 1204px 이상일때*/
|
||||
@mixin desktopMax{
|
||||
@media (min-width: $desktopMax){
|
||||
@content;
|
||||
}
|
||||
@mixin desktopMax {
|
||||
@media (min-width: $desktopMax) {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
|
||||
/*넓이, 높이 자동 계산함수*/
|
||||
@mixin square($size){
|
||||
$calculated: 32px * $size;
|
||||
width: $calculated;
|
||||
height: $calculated;
|
||||
@mixin square($size) {
|
||||
$calculated: 32px * $size;
|
||||
width: $calculated;
|
||||
height: $calculated;
|
||||
}
|
||||
|
||||
@@ -3795,52 +3795,127 @@
|
||||
background-color: #000;
|
||||
}
|
||||
|
||||
.displayThemeDesney {
|
||||
position: relative;
|
||||
}
|
||||
.displayThemeDesney .layer_up {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
.displayThemeDesney .comp_body .text_area {
|
||||
margin-top: 8rem;
|
||||
margin-top: 4.8rem;
|
||||
text-align: center;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney .comp_body .text_area {
|
||||
margin-top: 8rem;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney .comp_body .text_area h3 {
|
||||
margin: 1.2rem 0 3rem;
|
||||
font-size: 4.8rem;
|
||||
margin: 1.2rem 0 2rem;
|
||||
font-size: 3rem;
|
||||
color: #fff;
|
||||
letter-spacing: -0.095rem;
|
||||
line-height: 1.3;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney .comp_body .text_area h3 {
|
||||
margin: 1.2rem 0 3rem;
|
||||
font-size: 4.8rem;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney .comp_body .text_area .info {
|
||||
color: #f0f0f0;
|
||||
letter-spacing: -0.032rem;
|
||||
line-height: 1.5;
|
||||
}
|
||||
.displayThemeDesney .comp_body .text_area .info br {
|
||||
display: none;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney .comp_body .text_area .info br {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney .available-theme {
|
||||
min-height: 85.1rem;
|
||||
background-color: #f0f0f0;
|
||||
background-image: radial-gradient(#e7e7e7 2px, transparent 4px);
|
||||
background-size: 3.4rem 3.5rem;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney .available-theme {
|
||||
min-height: 85.1rem;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney .available-theme h3 {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
height: 30.6rem;
|
||||
font-size: 4.8rem;
|
||||
height: 12.5rem;
|
||||
font-size: 2.4rem;
|
||||
font-weight: 600;
|
||||
padding-bottom: 8.6rem;
|
||||
padding-bottom: 4.6rem;
|
||||
letter-spacing: -0.095rem;
|
||||
background: url(../images/kia/pdp/display_theme_disney/available-h3.png) no-repeat center/auto 100%;
|
||||
background: url(../images/kia/pdp/display_theme_disney/available-h3.png) no-repeat center bottom/auto 100%;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney .available-theme h3 {
|
||||
height: 30.6rem;
|
||||
font-size: 4.8rem;
|
||||
padding-bottom: 8.6rem;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney .available-theme .list {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
padding-top: 4.8rem;
|
||||
padding-top: 2.4rem;
|
||||
padding-bottom: 5.6rem;
|
||||
}
|
||||
@media (min-width: 501px) {
|
||||
.displayThemeDesney .available-theme .list {
|
||||
max-width: 64rem;
|
||||
margin: 0 auto;
|
||||
}
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney .available-theme .list {
|
||||
padding-top: 4.8rem;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1240px) {
|
||||
.displayThemeDesney .available-theme .list {
|
||||
max-width: 100%;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney .available-theme .list ul {
|
||||
display: flex;
|
||||
gap: 3.1rem;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
gap: 2.4rem 0.8rem;
|
||||
}
|
||||
@media (min-width: 1025px) {
|
||||
.displayThemeDesney .available-theme .list ul {
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
gap: 2.4rem;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney .available-theme .list ul li {
|
||||
width: 28.2rem;
|
||||
height: 36.9rem;
|
||||
overflow: hidden;
|
||||
width: 15.6rem;
|
||||
min-height: 19.6rem;
|
||||
background-color: #fff;
|
||||
border-radius: 0.8rem;
|
||||
box-shadow: 0px 0px 1rem 0px rgba(0, 0, 0, 0.12);
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney .available-theme .list ul li {
|
||||
width: 28.2rem;
|
||||
height: 36.9rem;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney .available-theme .list ul li a {
|
||||
display: block;
|
||||
}
|
||||
@@ -3849,146 +3924,390 @@
|
||||
}
|
||||
.displayThemeDesney .available-theme .list ul li a .txt {
|
||||
display: block;
|
||||
padding: 2rem 2.4rem;
|
||||
padding: 0.8rem 1.2rem;
|
||||
line-height: 1.333;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney .available-theme .list ul li a .txt {
|
||||
padding: 2rem 2.4rem;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney .available-theme .list ul li a .txt strong {
|
||||
font-size: 2.4rem;
|
||||
font-size: 1.4rem;
|
||||
color: #000;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney .available-theme .list ul li a .txt strong {
|
||||
font-size: 2.4rem;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney .available-theme .list ul li a .txt .hashs {
|
||||
display: block;
|
||||
margin-top: 2.4rem;
|
||||
font-size: 1.6rem;
|
||||
margin-top: 1.5rem;
|
||||
font-size: 1rem;
|
||||
color: #888;
|
||||
line-height: 1.5;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney .available-theme .list ul li a .txt .hashs {
|
||||
margin-top: 2.4rem;
|
||||
font-size: 1.6rem;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney .available-theme .list ul li.more {
|
||||
width: 61rem;
|
||||
height: 40.5rem;
|
||||
padding: 6.6rem 5.8rem;
|
||||
margin: -1.8rem 0 0 -1.8rem;
|
||||
background: url(../images/kia/pdp/display_theme_disney/box_more.png) no-repeat center/auto 100%;
|
||||
box-shadow: none;
|
||||
width: 32rem;
|
||||
height: 19.4rem;
|
||||
padding: 2.4rem 2rem;
|
||||
margin: 0;
|
||||
background: url(../images/kia/pdp/display_theme_disney/box_more_m.png) no-repeat center/auto 100%;
|
||||
border-radius: 3.3rem 0.8rem 3.3rem 0.8rem;
|
||||
box-shadow: 0px 0px 1rem 0px rgba(0, 0, 0, 0.1215686275);
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney .available-theme .list ul li.more {
|
||||
width: 61rem;
|
||||
height: 40.5rem;
|
||||
padding: 6.6rem 5.8rem;
|
||||
margin: -1.8rem 0 0 0;
|
||||
border-radius: 0;
|
||||
background: url(../images/kia/pdp/display_theme_disney/box_more.png) no-repeat center/auto 100%;
|
||||
box-shadow: none;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1025px) {
|
||||
.displayThemeDesney .available-theme .list ul li.more {
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1240px) {
|
||||
.displayThemeDesney .available-theme .list ul li.more {
|
||||
margin-left: -1.8rem;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney .available-theme .list ul li.more strong {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-bottom: 3.6rem;
|
||||
font-size: 3rem;
|
||||
margin-bottom: 1.2rem;
|
||||
font-size: 1.8rem;
|
||||
color: #000;
|
||||
font-weight: 600;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney .available-theme .list ul li.more strong {
|
||||
font-size: 3rem;
|
||||
margin-bottom: 3.6rem;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney .available-theme .list ul li.more .arrow {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
width: 40px;
|
||||
height: 4px;
|
||||
margin-left: 0.8rem;
|
||||
width: 2rem;
|
||||
height: 0.2rem;
|
||||
margin-left: 0.4rem;
|
||||
background-color: #f5c400;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney .available-theme .list ul li.more .arrow {
|
||||
width: 4rem;
|
||||
height: 0.4rem;
|
||||
margin-left: 0.8rem;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney .available-theme .list ul li.more .arrow::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
right: 0;
|
||||
transform: translateY(-50%) rotate(45deg);
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
border-top: 4px solid #f5c400;
|
||||
border-right: 4px solid #f5c400;
|
||||
width: 1rem;
|
||||
height: 1rem;
|
||||
border-top: 0.2rem solid #f5c400;
|
||||
border-right: 0.2rem solid #f5c400;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney .available-theme .list ul li.more .arrow::after {
|
||||
width: 2rem;
|
||||
height: 2rem;
|
||||
border-top: 0.4rem solid #f5c400;
|
||||
border-right: 0.4rem solid #f5c400;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney .available-theme .list ul li.more .hashs {
|
||||
display: block;
|
||||
margin-top: 2.2rem;
|
||||
margin-top: 0.8rem;
|
||||
font-size: 1rem;
|
||||
color: #969696;
|
||||
letter-spacing: -0.032rem;
|
||||
}
|
||||
.displayThemeDesney.comp_content .comp_wide {
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney .available-theme .list ul li.more .hashs {
|
||||
font-size: 1.6rem;
|
||||
margin-top: 2.2rem;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney.discover-epic-design {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
max-width: 192rem;
|
||||
height: 377.4rem;
|
||||
padding: 12rem 0 0;
|
||||
background: url(../images/kia/pdp/display_theme_disney/bg_design.jpg) no-repeat center top/100% auto;
|
||||
margin: 0 auto;
|
||||
padding: 4rem 0 10rem;
|
||||
text-align: center;
|
||||
background: url(../images/kia/pdp/display_theme_disney/bg_design_m.jpg) no-repeat center top/100% auto;
|
||||
}
|
||||
.displayThemeDesney.comp_content .comp_wide .comp_top {
|
||||
padding: 0 0 7.6rem;
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney.discover-epic-design {
|
||||
padding: 12rem 0 10rem;
|
||||
background: url(../images/kia/pdp/display_theme_disney/bg_design.jpg) no-repeat center top/192rem auto;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney.comp_content .comp_wide .comp_top h3 {
|
||||
margin: 0 0 3rem;
|
||||
font-size: 4.8rem;
|
||||
.displayThemeDesney.discover-epic-design .comp_top {
|
||||
padding: 0 2rem 2.4rem;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney.discover-epic-design .comp_top {
|
||||
padding: 0 0 7.6rem;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney.discover-epic-design .comp_top h3 {
|
||||
margin: 0 0 1.6rem;
|
||||
font-size: 3rem;
|
||||
font-weight: 600;
|
||||
color: #fff;
|
||||
letter-spacing: -0.095rem;
|
||||
}
|
||||
.displayThemeDesney.comp_content .comp_wide .comp_top .info {
|
||||
font-size: 1.6rem;
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney.discover-epic-design .comp_top h3 {
|
||||
margin: 0 0 3rem;
|
||||
font-size: 4.8rem;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney.discover-epic-design .comp_top .info {
|
||||
font-size: 1.4rem;
|
||||
color: #f0f0f0;
|
||||
letter-spacing: -0.032rem;
|
||||
line-height: 1.5;
|
||||
}
|
||||
.displayThemeDesney.comp_content .comp_wide .comp_body {
|
||||
max-width: 120rem;
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney.discover-epic-design .comp_top .info {
|
||||
font-size: 1.6rem;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney.comp_content .comp_wide .tab-wrap .tab-menu {
|
||||
.displayThemeDesney.discover-epic-design .comp_body {
|
||||
max-width: 100%;
|
||||
padding: 0;
|
||||
}
|
||||
.displayThemeDesney.discover-epic-design .tab-wrap .tab-menu {
|
||||
position: -webkit-sticky;
|
||||
position: sticky;
|
||||
top: 7rem;
|
||||
top: 5.6rem;
|
||||
z-index: 10;
|
||||
margin-bottom: 4.8rem;
|
||||
padding: 1.6rem 2rem;
|
||||
background: transparent;
|
||||
-webkit-backdrop-filter: blur(1.2rem);
|
||||
backdrop-filter: blur(1.2rem);
|
||||
}
|
||||
.displayThemeDesney.comp_content .comp_wide .tab-wrap .tab-menu ul {
|
||||
display: flex;
|
||||
-moz-column-gap: 0.8rem;
|
||||
column-gap: 0.8rem;
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney.discover-epic-design .tab-wrap .tab-menu {
|
||||
top: 6rem;
|
||||
padding: 1.6rem 2rem;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney.comp_content .comp_wide .tab-wrap .tab-menu ul li button {
|
||||
.displayThemeDesney.discover-epic-design .tab-wrap .tab-menu .btn-select {
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
height: 4.3rem;
|
||||
padding: 0 1.6rem 0 1.2rem;
|
||||
font-size: 1.6rem;
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 4.5rem;
|
||||
padding: 1.4rem 3.6rem 1.4rem 1.8rem;
|
||||
font-size: 1.4rem;
|
||||
font-weight: 600;
|
||||
color: #666;
|
||||
background-color: #2c2c2c;
|
||||
border-radius: 2.2rem;
|
||||
border: 0.2rem solid rgba(255, 255, 255, 0.2);
|
||||
color: #fff;
|
||||
background-color: #383838;
|
||||
border-radius: 0.4rem;
|
||||
border: 0.15rem solid rgba(255, 255, 255, 0.5);
|
||||
}
|
||||
.displayThemeDesney.comp_content .comp_wide .tab-wrap .tab-menu ul li button:before {
|
||||
.displayThemeDesney.discover-epic-design .tab-wrap .tab-menu .btn-select:after {
|
||||
content: "";
|
||||
display: block;
|
||||
width: 2.2rem;
|
||||
height: 2.2rem;
|
||||
margin-right: 0.6rem;
|
||||
background: url(../images/kia/pdp/display_theme_disney/ico_tab.png) no-repeat center top/100% auto;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
right: 1.8rem;
|
||||
width: 1.2rem;
|
||||
height: 0.6rem;
|
||||
transform: translateY(-50%), rotate(0deg);
|
||||
transition: all 0.2s ease;
|
||||
background: url(../images/kia/pdp/display_theme_disney/ico_arrow_down.png) no-repeat 50%/1.2rem auto;
|
||||
}
|
||||
.displayThemeDesney.comp_content .comp_wide .tab-wrap .tab-menu ul li.active button {
|
||||
.displayThemeDesney.discover-epic-design .tab-wrap .tab-menu .btn-select.open:after {
|
||||
transform: translateY(-50%) rotate(180deg);
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney.discover-epic-design .tab-wrap .tab-menu .btn-select {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney.discover-epic-design .tab-wrap .tab-menu ul {
|
||||
position: absolute;
|
||||
left: 2rem;
|
||||
right: 2rem;
|
||||
display: none;
|
||||
background-color: #383838;
|
||||
border-radius: 0 0 0.4rem 0.4rem;
|
||||
border: 0.15rem solid rgba(255, 255, 255, 0.5);
|
||||
border-top: 0;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney.discover-epic-design .tab-wrap .tab-menu ul {
|
||||
display: flex !important;
|
||||
position: static;
|
||||
-moz-column-gap: 0.8rem;
|
||||
column-gap: 0.8rem;
|
||||
border: 0;
|
||||
border-radius: 0;
|
||||
background: transparent;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney.discover-epic-design .tab-wrap .tab-menu ul li {
|
||||
width: 100%;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney.discover-epic-design .tab-wrap .tab-menu ul li {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney.discover-epic-design .tab-wrap .tab-menu ul li button {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
height: 4.5rem;
|
||||
padding: 1.4rem 1.8rem;
|
||||
font-size: 1.4rem;
|
||||
font-weight: 600;
|
||||
color: #666;
|
||||
cursor: pointer;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney.discover-epic-design .tab-wrap .tab-menu ul li button {
|
||||
width: auto;
|
||||
height: 4.3rem;
|
||||
padding: 0 1.6rem 0 1.2rem;
|
||||
font-size: 1.6rem;
|
||||
background-color: #2c2c2c;
|
||||
border-radius: 2.2rem;
|
||||
border: 0.2rem solid rgba(255, 255, 255, 0.2);
|
||||
}
|
||||
.displayThemeDesney.discover-epic-design .tab-wrap .tab-menu ul li button:before {
|
||||
content: "";
|
||||
display: block;
|
||||
width: 2.2rem;
|
||||
height: 2.2rem;
|
||||
margin-right: 0.6rem;
|
||||
background: url(../images/kia/pdp/display_theme_disney/ico_tab.png) no-repeat center top/100% auto;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney.discover-epic-design .tab-wrap .tab-menu ul li.active button {
|
||||
color: #fff;
|
||||
border: 0;
|
||||
background: linear-gradient(90deg, #ed1c24 0%, #b51016 100%);
|
||||
}
|
||||
.displayThemeDesney.comp_content .comp_wide .tab-wrap .tab-menu ul li.active button:before {
|
||||
background-image: url(../images/kia/pdp/display_theme_disney/ico_tab_active.png);
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney.discover-epic-design .tab-wrap .tab-menu ul li.active button {
|
||||
border: 0;
|
||||
background: linear-gradient(90deg, #ed1c24 0%, #b51016 100%);
|
||||
padding: 0 1.8rem 0 1.4rem;
|
||||
}
|
||||
.displayThemeDesney.discover-epic-design .tab-wrap .tab-menu ul li.active button:before {
|
||||
background-image: url(../images/kia/pdp/display_theme_disney/ico_tab_active.png);
|
||||
}
|
||||
}
|
||||
.displayThemeDesney.comp_content .comp_wide .tab-wrap .text_area {
|
||||
margin-top: 2rem;
|
||||
.displayThemeDesney.discover-epic-design .tab-wrap .text_area {
|
||||
margin-top: 1.6rem;
|
||||
text-align: left;
|
||||
}
|
||||
.displayThemeDesney.comp_content .comp_wide .tab-wrap .tab-box .item {
|
||||
margin-bottom: 6.4rem;
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney.discover-epic-design .tab-wrap .text_area {
|
||||
margin-top: 2rem;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney.comp_content .comp_wide .tab-wrap h4 {
|
||||
font-size: 2.4rem;
|
||||
.displayThemeDesney.discover-epic-design .tab-wrap .tab-box {
|
||||
display: none;
|
||||
padding-top: 4.8rem;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney.discover-epic-design .tab-wrap .tab-box {
|
||||
margin-bottom: 2.4rem;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney.discover-epic-design .tab-wrap .tab-box.box1 {
|
||||
display: block;
|
||||
}
|
||||
.displayThemeDesney.discover-epic-design .tab-wrap .tab-box .discover {
|
||||
position: relative;
|
||||
padding: 0 2rem 20rem;
|
||||
}
|
||||
@media (min-width: 1025px) {
|
||||
.displayThemeDesney.discover-epic-design .tab-wrap .tab-box .discover {
|
||||
padding-bottom: 40rem;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney.discover-epic-design .tab-wrap .tab-box .discover:after {
|
||||
content: "";
|
||||
display: block;
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 20rem;
|
||||
background: linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.8) 30%, rgba(255, 255, 255, 0.4) 60%, rgba(255, 255, 255, 0) 100%);
|
||||
}
|
||||
@media (min-width: 1240px) {
|
||||
.displayThemeDesney.discover-epic-design .tab-wrap .tab-box .discover::after {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney.discover-epic-design .tab-wrap .tab-box .item {
|
||||
margin-bottom: 4rem;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney.discover-epic-design .tab-wrap .tab-box .item {
|
||||
margin-bottom: 6.4rem;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney.discover-epic-design .tab-wrap h4 {
|
||||
font-size: 1.8rem;
|
||||
font-weight: 600;
|
||||
color: #fff;
|
||||
line-height: 1.25;
|
||||
}
|
||||
.displayThemeDesney.comp_content .comp_wide .tab-wrap p {
|
||||
margin-top: 1rem;
|
||||
font-size: 1.6rem;
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney.discover-epic-design .tab-wrap h4 {
|
||||
font-size: 2.4rem;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney.discover-epic-design .tab-wrap p {
|
||||
margin-top: 0.2rem;
|
||||
font-size: 1.4rem;
|
||||
color: #fff;
|
||||
line-height: 1.55;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney.discover-epic-design .tab-wrap p {
|
||||
margin-top: 1rem;
|
||||
font-size: 1.6rem;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney .image_area {
|
||||
max-width: 100%;
|
||||
}
|
||||
.displayThemeDesney .image_area img {
|
||||
max-width: 100%;
|
||||
}
|
||||
.displayThemeDesney .welcome-goodbye .image_area + .image_area {
|
||||
margin-top: 2rem;
|
||||
margin-top: 0.8rem;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney .welcome-goodbye .image_area + .image_area {
|
||||
margin-top: 2rem;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney .welcome-goodbye .image_area video {
|
||||
width: 100%;
|
||||
@@ -3997,62 +4316,271 @@
|
||||
max-width: 120rem;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.displayThemeDesney .three-reasons {
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
padding: 7.2rem 0 0;
|
||||
background-color: #fff;
|
||||
text-align: left;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney .three-reasons {
|
||||
padding: 9.6rem 0 0;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney .three-reasons .tit-area {
|
||||
position: relative;
|
||||
padding: 0 2rem 4rem;
|
||||
box-shadow: 0px 2.2rem 2rem 0px rgba(0, 0, 0, 0.25);
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney .three-reasons .tit-area {
|
||||
padding: 0 2rem 7.2rem;
|
||||
box-shadow: 0px 4.4rem 4rem 0px rgba(0, 0, 0, 0.25);
|
||||
}
|
||||
}
|
||||
.displayThemeDesney .three-reasons .tit-area h3 {
|
||||
width: 35.4rem;
|
||||
height: 6.4rem;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
height: 4.2rem;
|
||||
padding: 0 0.8rem;
|
||||
font-size: 4.8rem;
|
||||
font-size: 3rem;
|
||||
color: #fff;
|
||||
font-weight: 600;
|
||||
background-color: #ed1c24;
|
||||
white-space: nowrap;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney .three-reasons .tit-area h3 {
|
||||
height: 6.4rem;
|
||||
padding: 0 0.8rem;
|
||||
font-size: 4.8rem;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney .three-reasons .tit-area p {
|
||||
margin: 1.2rem 0 7.2rem;
|
||||
font-size: 4.8rem;
|
||||
margin: 0.6rem 0 0;
|
||||
font-size: 2.4rem;
|
||||
color: #000;
|
||||
font-weight: 600;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney .three-reasons .tit-area p {
|
||||
margin: 2rem 0 0;
|
||||
font-size: 4.8rem;
|
||||
color: #000;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney .three-reasons .reasons {
|
||||
height: 84.7rem;
|
||||
padding: 3rem 0 6.4rem;
|
||||
background: linear-gradient(176.68deg, #3f3e3e 23.87%, #060606 97.26%);
|
||||
}
|
||||
.displayThemeDesney .three-reasons .reasons li {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney .three-reasons .reasons {
|
||||
height: 84.7rem;
|
||||
padding: 8rem 2rem;
|
||||
}
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney .three-reasons .reasons li {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney .three-reasons .reasons li + li {
|
||||
margin-top: 2.4rem;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney .three-reasons .reasons li + li {
|
||||
margin-top: 6rem;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney .three-reasons .reasons li p {
|
||||
flex: 1;
|
||||
padding: 1rem 2rem 0 6rem;
|
||||
margin: 0 2rem 1.6rem;
|
||||
font-size: 1.4rem;
|
||||
color: #fff;
|
||||
line-height: 1.5;
|
||||
background: url(../images/kia/pdp/display_theme_disney/number1.png) no-repeat 0 0/2.3rem auto;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney .three-reasons .reasons li p {
|
||||
margin: 1.2rem 0 0;
|
||||
padding: 0 2rem 0 7.2rem;
|
||||
font-size: 1.6rem;
|
||||
background-position: 0 0.5rem;
|
||||
background-size: 3.1rem auto;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney .three-reasons .reasons li:nth-child(2) p {
|
||||
background: url(../images/kia/pdp/display_theme_disney/number2.png) no-repeat left center/5.1rem auto;
|
||||
padding: 1rem 6rem 0 2rem;
|
||||
background: url(../images/kia/pdp/display_theme_disney/number2.png) no-repeat 100% 0/3.7rem auto;
|
||||
text-align: right;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney .three-reasons .reasons li:nth-child(2) p {
|
||||
padding: 0 2rem 0 7.2rem;
|
||||
background-position: 0 0.5rem;
|
||||
background-size: 5.1rem auto;
|
||||
text-align: left;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney .three-reasons .reasons li:nth-child(2) .img-area {
|
||||
padding-left: 2rem;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney .three-reasons .reasons li:nth-child(2) .img-area {
|
||||
padding-left: 0;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney .three-reasons .reasons li:nth-child(3) p {
|
||||
background: url(../images/kia/pdp/display_theme_disney/number3.png) no-repeat left center/4.9rem auto;
|
||||
background: url(../images/kia/pdp/display_theme_disney/number3.png) no-repeat 0 0/3.6rem auto;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney .three-reasons .reasons li:nth-child(3) p {
|
||||
background-position: 0 0;
|
||||
background-size: 4.9rem auto;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney .three-reasons .reasons li:nth-child(3) .img-area {
|
||||
padding-left: 8rem;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney .three-reasons .reasons li:nth-child(3) .img-area {
|
||||
padding-left: 0;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney .three-reasons .reasons li strong {
|
||||
display: block;
|
||||
font-size: 2.4rem;
|
||||
font-size: 1.8rem;
|
||||
font-weight: 600;
|
||||
color: #fff;
|
||||
}
|
||||
.displayThemeDesney .three-reasons .reasons li p {
|
||||
max-width: 50%;
|
||||
margin-top: 1.2rem;
|
||||
padding-left: 6.2rem;
|
||||
font-size: 1.6rem;
|
||||
color: #fff;
|
||||
line-height: 1.5;
|
||||
background: url(../images/kia/pdp/display_theme_disney/number1.png) no-repeat left center/3.1rem auto;
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney .three-reasons .reasons li strong {
|
||||
margin-bottom: 0.4rem;
|
||||
font-size: 2.4rem;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney .three-reasons .reasons li .img-area {
|
||||
width: 50%;
|
||||
width: 100%;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney .three-reasons .reasons li .img-area {
|
||||
width: 50%;
|
||||
margin-left: 3.2rem;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney .three-reasons .reasons li .img-area img {
|
||||
max-width: 100%;
|
||||
}
|
||||
.displayThemeDesney .coming-next {
|
||||
padding: 7.7rem 0 5.7rem;
|
||||
text-align: left;
|
||||
background-color: #000;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney .coming-next {
|
||||
padding: 23.8rem 2rem 16rem;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney .coming-next .tit-area {
|
||||
padding: 0 2rem;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney .coming-next .tit-area {
|
||||
padding: 0;
|
||||
margin-bottom: 5.5rem;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney .coming-next .tit-area h3 {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
font-size: 3rem;
|
||||
font-weight: 600;
|
||||
color: #fff;
|
||||
line-height: 1.4;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney .coming-next .tit-area h3 {
|
||||
font-size: 4.8rem;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney .coming-next .tit-area h3 br {
|
||||
display: block;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney .coming-next .tit-area h3 br {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney .coming-next .tit-area h3 .next {
|
||||
position: relative;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney .coming-next .tit-area .speech-bubble {
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
top: -1.5rem;
|
||||
left: 77%;
|
||||
background-color: #fbc707;
|
||||
padding: 0.6rem 0.9rem;
|
||||
border-radius: 0.4rem;
|
||||
font-size: 1.2rem;
|
||||
color: #000;
|
||||
line-height: 1.3;
|
||||
font-weight: 600;
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney .coming-next .tit-area .speech-bubble {
|
||||
top: -7rem;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
padding: 1rem 1.2rem;
|
||||
border-radius: 0.4rem;
|
||||
font-size: 1.6rem;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney .coming-next .tit-area .speech-bubble::after {
|
||||
content: "";
|
||||
display: block;
|
||||
position: absolute;
|
||||
bottom: -1rem;
|
||||
left: 1.65rem;
|
||||
transform: 0;
|
||||
border-left: 1rem solid transparent;
|
||||
border-right: 1rem solid transparent;
|
||||
border-top: 1rem solid #fbc707;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney .coming-next .tit-area .speech-bubble::after {
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
}
|
||||
.displayThemeDesney.comp_2x_b_h_s_e2 {
|
||||
margin-top: 6rem;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.displayThemeDesney.comp_2x_b_h_s_e2 {
|
||||
margin-top: 10rem;
|
||||
}
|
||||
}
|
||||
.displayThemeDesney.comp_2x_b_h_s_e2 .text_area {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.desktop .displayThemeDesney .mobile {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.tablet .displayThemeDesney .mobile {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.moblie .displayThemeDesney .web {
|
||||
display: none;
|
||||
}
|
||||
|
||||
@@ -148,6 +148,19 @@
|
||||
.contentWarp .productView .productRight .musicBtn {
|
||||
margin-top: 4rem;
|
||||
}
|
||||
.contentWarp .productView .productRight .optionWarp .producTitle h1 {
|
||||
position: relative;
|
||||
padding-right: 4rem;
|
||||
}
|
||||
.contentWarp .productView .productRight .optionWarp .producTitle h1 .btn-wish {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
right: 0;
|
||||
transform: translateY(-50%);
|
||||
width: 3rem;
|
||||
height: 3rem;
|
||||
background: url(../images/kia/pdp/display_theme_disney/Icon_heart.png) no-repeat center/100% auto;
|
||||
}
|
||||
.contentWarp .productView .productRight .optionWarp .producTitle span {
|
||||
color: #676767;
|
||||
font-size: 1.5rem;
|
||||
@@ -268,18 +281,22 @@
|
||||
position: absolute;
|
||||
}
|
||||
.contentWarp .productView .productRight .optionWarp .producInfoWarp .producInfoLogIn ul li input[type=radio]:checked + label {
|
||||
background-color: #05141F;
|
||||
background-color: #05141f;
|
||||
}
|
||||
.contentWarp .productView .productRight .optionWarp .producInfoWarp .producInfoLogIn ul li input[type=radio]:checked + label dt, .contentWarp .productView .productRight .optionWarp .producInfoWarp .producInfoLogIn ul li input[type=radio]:checked + label dd {
|
||||
.contentWarp .productView .productRight .optionWarp .producInfoWarp .producInfoLogIn ul li input[type=radio]:checked + label dt,
|
||||
.contentWarp .productView .productRight .optionWarp .producInfoWarp .producInfoLogIn ul li input[type=radio]:checked + label dd {
|
||||
color: #fff;
|
||||
}
|
||||
.contentWarp .productView .productRight .optionWarp .producInfoWarp .producInfoLogIn ul li input[type=radio]:checked + label dt p, .contentWarp .productView .productRight .optionWarp .producInfoWarp .producInfoLogIn ul li input[type=radio]:checked + label dt strong, .contentWarp .productView .productRight .optionWarp .producInfoWarp .producInfoLogIn ul li input[type=radio]:checked + label dd p, .contentWarp .productView .productRight .optionWarp .producInfoWarp .producInfoLogIn ul li input[type=radio]:checked + label dd strong {
|
||||
.contentWarp .productView .productRight .optionWarp .producInfoWarp .producInfoLogIn ul li input[type=radio]:checked + label dt p,
|
||||
.contentWarp .productView .productRight .optionWarp .producInfoWarp .producInfoLogIn ul li input[type=radio]:checked + label dt strong,
|
||||
.contentWarp .productView .productRight .optionWarp .producInfoWarp .producInfoLogIn ul li input[type=radio]:checked + label dd p,
|
||||
.contentWarp .productView .productRight .optionWarp .producInfoWarp .producInfoLogIn ul li input[type=radio]:checked + label dd strong {
|
||||
color: #fff;
|
||||
}
|
||||
.contentWarp .productView .productRight .optionWarp .producInfoWarp .producInfoLogIn ul li label {
|
||||
display: block;
|
||||
padding: 2.5rem;
|
||||
border: 1px solid #DEDEDE;
|
||||
border: 1px solid #dedede;
|
||||
border-radius: 0.6rem;
|
||||
cursor: pointer;
|
||||
}
|
||||
@@ -317,16 +334,16 @@
|
||||
margin-top: 1rem;
|
||||
}
|
||||
.contentWarp .productView .productRight .optionWarp .producInfoWarp .producInfoLogIn .disabledBtn label {
|
||||
border: 1px solid #DEDEDE;
|
||||
border: 1px solid #dedede;
|
||||
}
|
||||
.contentWarp .productView .productRight .optionWarp .producInfoWarp .producInfoLogIn .disabledBtn label dt {
|
||||
color: #9EA1A2 !important;
|
||||
color: #9ea1a2 !important;
|
||||
}
|
||||
.contentWarp .productView .productRight .optionWarp .producInfoWarp .producInfoLogIn .disabledBtn label dd {
|
||||
color: #9EA1A2 !important;
|
||||
color: #9ea1a2 !important;
|
||||
}
|
||||
.contentWarp .productView .productRight .optionWarp .producInfoWarp .producInfoLogIn .disabledBtn:hover label {
|
||||
border: 1px solid #DEDEDE;
|
||||
border: 1px solid #dedede;
|
||||
}
|
||||
.contentWarp .productView .productRight .optionWarp .producInfoWarp .termsOK {
|
||||
margin-top: 3rem;
|
||||
@@ -341,7 +358,7 @@
|
||||
}
|
||||
.contentWarp .productView .productRight .optionWarp .producInfoWarp .termsOK > a::after {
|
||||
content: "";
|
||||
displaY: block;
|
||||
display: block;
|
||||
width: 0.6rem;
|
||||
margin-left: 0.8rem;
|
||||
background-image: url("/kr/assets/images/common/icon-mMarrow.svg");
|
||||
@@ -364,7 +381,7 @@
|
||||
.contentWarp .productView .productRight .optionWarp .producInfoWarp .noStreaming {
|
||||
margin-top: 2rem;
|
||||
padding: 3rem 2rem;
|
||||
background-color: #F3F3F3;
|
||||
background-color: #f3f3f3;
|
||||
border-radius: 0.6rem;
|
||||
}
|
||||
.contentWarp .productView .productRight .optionWarp .producInfoWarp .noStreaming P {
|
||||
@@ -396,7 +413,7 @@
|
||||
.contentWarp .productView .productRight .optionWarp .packageOption .optionList {
|
||||
margin-top: 2rem;
|
||||
padding: 2.5rem;
|
||||
border: 1px solid #DEDEDE;
|
||||
border: 1px solid #dedede;
|
||||
border-radius: 0.6rem;
|
||||
}
|
||||
@media (max-width: 768px) {
|
||||
@@ -439,7 +456,7 @@
|
||||
border-radius: 0.6rem;
|
||||
}
|
||||
.contentWarp .productView .productRight .optionWarp .packageOption .optionList .optionItem {
|
||||
displaY: flex;
|
||||
display: flex;
|
||||
width: 100%;
|
||||
height: 9rem;
|
||||
overflow: hidden;
|
||||
@@ -463,7 +480,7 @@
|
||||
}
|
||||
.contentWarp .productView .productRight .optionWarp .packageOption .optionList .optionItem .optionText p span,
|
||||
.contentWarp .productView .productRight .optionWarp .packageOption .optionList .optionItem .optionText p strong {
|
||||
displaY: block;
|
||||
display: block;
|
||||
width: 100%;
|
||||
font-size: 1.4rem;
|
||||
line-height: 1.4;
|
||||
@@ -529,7 +546,7 @@
|
||||
}
|
||||
}
|
||||
.contentWarp .productView .productRight .optionWarp .producOption .optionList .checkBtn label {
|
||||
displaY: flex;
|
||||
display: flex;
|
||||
width: 100%;
|
||||
height: 12rem;
|
||||
overflow: hidden;
|
||||
@@ -586,8 +603,8 @@
|
||||
position: absolute;
|
||||
}
|
||||
.contentWarp .productView .productRight .optionWarp .producOption .optionList .checkBtn input[type=checkbox]:checked + label {
|
||||
background-color: #05141F;
|
||||
border: 1px solid #05141F;
|
||||
background-color: #05141f;
|
||||
border: 1px solid #05141f;
|
||||
}
|
||||
.contentWarp .productView .productRight .optionWarp .producOption .optionList .checkBtn input[type=checkbox]:checked + label::before {
|
||||
content: "";
|
||||
@@ -634,7 +651,7 @@
|
||||
}
|
||||
.contentWarp .productView .productRight .optionWarp .producOption .optionList .checkBtn .optionText p span,
|
||||
.contentWarp .productView .productRight .optionWarp .producOption .optionList .checkBtn .optionText p strong {
|
||||
displaY: block;
|
||||
display: block;
|
||||
width: 100%;
|
||||
font-size: 1.4rem;
|
||||
width: 75%;
|
||||
@@ -708,17 +725,17 @@
|
||||
}
|
||||
}
|
||||
.contentWarp .productView .productRight .optionWarp .producOption .optionList .disabledBtn label {
|
||||
border: 1px solid #DEDEDE;
|
||||
border: 1px solid #dedede;
|
||||
}
|
||||
.contentWarp .productView .productRight .optionWarp .producOption .optionList .disabledBtn label span,
|
||||
.contentWarp .productView .productRight .optionWarp .producOption .optionList .disabledBtn label strong {
|
||||
color: #9EA1A2;
|
||||
color: #9ea1a2;
|
||||
}
|
||||
.contentWarp .productView .productRight .optionWarp .producOption .optionList .disabledBtn label p {
|
||||
opacity: 0.5;
|
||||
}
|
||||
.contentWarp .productView .productRight .optionWarp .producOption .optionList .disabledBtn:hover label {
|
||||
border: 1px solid #DEDEDE;
|
||||
border: 1px solid #dedede;
|
||||
}
|
||||
.contentWarp .productView .productRight .optionWarp .producOption .optionList .checkBtn + .checkBtn {
|
||||
margin-top: 1rem;
|
||||
@@ -740,7 +757,7 @@
|
||||
margin-top: 2rem;
|
||||
}
|
||||
.contentWarp .productView .productRight .optionWarp .priceOption .priceList .radioBtn label {
|
||||
displaY: flex;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
@@ -750,7 +767,7 @@
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
border-radius: 0.6rem;
|
||||
border: 1px solid #DEDEDE;
|
||||
border: 1px solid #dedede;
|
||||
}
|
||||
@media (max-width: 1024px) {
|
||||
.contentWarp .productView .productRight .optionWarp .priceOption .priceList .radioBtn label {
|
||||
@@ -788,7 +805,7 @@
|
||||
.contentWarp .productView .productRight .optionWarp .priceOption .priceList .radioBtn label .discount {
|
||||
display: block;
|
||||
font-size: 1.4rem;
|
||||
color: #9EA1A2;
|
||||
color: #9ea1a2;
|
||||
text-align: right;
|
||||
}
|
||||
@media (max-width: 1024px) {
|
||||
@@ -806,15 +823,15 @@
|
||||
}
|
||||
.contentWarp .productView .productRight .optionWarp .priceOption .priceList .radioBtn label .dc {
|
||||
margin-right: 0.8rem;
|
||||
color: #EA0029;
|
||||
color: #ea0029;
|
||||
}
|
||||
.contentWarp .productView .productRight .optionWarp .priceOption .priceList .radioBtn input[type=radio] {
|
||||
visibility: hidden;
|
||||
position: absolute;
|
||||
}
|
||||
.contentWarp .productView .productRight .optionWarp .priceOption .priceList .radioBtn input[type=radio]:checked + label {
|
||||
background-color: #05141F;
|
||||
border: 1px solid #05141F;
|
||||
background-color: #05141f;
|
||||
border: 1px solid #05141f;
|
||||
}
|
||||
.contentWarp .productView .productRight .optionWarp .priceOption .priceList .radioBtn input[type=radio]:checked + label span,
|
||||
.contentWarp .productView .productRight .optionWarp .priceOption .priceList .radioBtn input[type=radio]:checked + label strong {
|
||||
@@ -827,16 +844,16 @@
|
||||
color: #fff;
|
||||
}
|
||||
.contentWarp .productView .productRight .optionWarp .priceOption .priceList .radioBtn input[type=radio]:checked + label .discount {
|
||||
color: #9EA1A2;
|
||||
color: #9ea1a2;
|
||||
}
|
||||
.contentWarp .productView .productRight .optionWarp .priceOption .priceList .radioBtn input[type=radio]:checked + label .dc {
|
||||
color: #F3C300;
|
||||
color: #f3c300;
|
||||
}
|
||||
.contentWarp .productView .productRight .optionWarp .priceOption .priceList .radioBtn:hover label {
|
||||
border: 1px solid #000;
|
||||
}
|
||||
.contentWarp .productView .productRight .optionWarp .priceOption .priceList .radioBtn.coupon {
|
||||
background-color: #F3F3F3;
|
||||
background-color: #f3f3f3;
|
||||
border-radius: 0.6rem;
|
||||
}
|
||||
.contentWarp .productView .productRight .optionWarp .priceOption .priceList .radioBtn.coupon label .title {
|
||||
@@ -861,20 +878,20 @@
|
||||
color: #676767;
|
||||
}
|
||||
.contentWarp .productView .productRight .optionWarp .priceOption .priceList .disabledBtn label {
|
||||
border: 1px solid #DEDEDE;
|
||||
border: 1px solid #dedede;
|
||||
}
|
||||
.contentWarp .productView .productRight .optionWarp .priceOption .priceList .disabledBtn label span,
|
||||
.contentWarp .productView .productRight .optionWarp .priceOption .priceList .disabledBtn label strong {
|
||||
color: #9EA1A2;
|
||||
color: #9ea1a2;
|
||||
}
|
||||
.contentWarp .productView .productRight .optionWarp .priceOption .priceList .disabledBtn label span .title {
|
||||
color: #9EA1A2 !important;
|
||||
color: #9ea1a2 !important;
|
||||
}
|
||||
.contentWarp .productView .productRight .optionWarp .priceOption .priceList .disabledBtn label span .info {
|
||||
color: #9EA1A2 !important;
|
||||
color: #9ea1a2 !important;
|
||||
}
|
||||
.contentWarp .productView .productRight .optionWarp .priceOption .priceList .disabledBtn:hover label {
|
||||
border: 1px solid #DEDEDE;
|
||||
border: 1px solid #dedede;
|
||||
}
|
||||
.contentWarp .productView .productRight .optionWarp .priceOption .priceList .radioBtn + .radioBtn {
|
||||
margin-top: 1rem;
|
||||
@@ -978,7 +995,7 @@
|
||||
.pdpListBtn {
|
||||
width: 100%;
|
||||
height: 7.4rem;
|
||||
background-color: #F3F3F3;
|
||||
background-color: #f3f3f3;
|
||||
padding: 0 2rem;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
|
||||
|
Before Width: | Height: | Size: 482 KiB After Width: | Height: | Size: 322 KiB |
BIN
kr/assets/images/kia/pdp/display_theme_disney/bg_design_m.jpg
Normal file
|
After Width: | Height: | Size: 655 KiB |
BIN
kr/assets/images/kia/pdp/display_theme_disney/box_more_m.png
Normal file
|
After Width: | Height: | Size: 7.4 KiB |
BIN
kr/assets/images/kia/pdp/display_theme_disney/ico_arrow_down.png
Normal file
|
After Width: | Height: | Size: 208 B |
BIN
kr/assets/images/kia/pdp/display_theme_disney/img_next_m.png
Normal file
|
After Width: | Height: | Size: 994 KiB |
BIN
kr/assets/images/kia/pdp/display_theme_disney/img_reasons1_m.png
Normal file
|
After Width: | Height: | Size: 235 KiB |
BIN
kr/assets/images/kia/pdp/display_theme_disney/img_reasons2_m.png
Normal file
|
After Width: | Height: | Size: 294 KiB |
BIN
kr/assets/images/kia/pdp/display_theme_disney/img_reasons3_m.png
Normal file
|
After Width: | Height: | Size: 122 KiB |