1586 lines
63 KiB
SCSS
1586 lines
63 KiB
SCSS
@charset "UTF-8";
|
|
@import 'utils.scss';
|
|
/*변수파일 import*/
|
|
|
|
//장바구니 레이아웃 및 요소
|
|
.contentWarp{
|
|
.cartView{
|
|
padding-left:2rem;
|
|
padding-right:2rem;
|
|
@include desktopMin{
|
|
width:120rem;
|
|
}
|
|
@include desktopMax{
|
|
padding-left:0rem;
|
|
padding-right:0rem;
|
|
}
|
|
.pageTitle{
|
|
h1{
|
|
font-size: 3rem;
|
|
font-weight: 600;
|
|
line-height:1;
|
|
@include desktopMin{
|
|
font-size: 4.5rem;
|
|
font-weight: 600;
|
|
}
|
|
}
|
|
p{
|
|
font-size: 1.6rem;
|
|
font-weight: 400;
|
|
margin-top:1.5rem;
|
|
@include desktopMin{
|
|
font-size: 1.8rem;
|
|
font-weight: 400;
|
|
margin-top:2rem;
|
|
}
|
|
}
|
|
}
|
|
.pageSubTitle{
|
|
margin-top:7rem;
|
|
h2{
|
|
font-size: 2.4rem;
|
|
font-weight: 600;
|
|
}
|
|
}
|
|
|
|
.productListWarp{
|
|
margin-top:2rem;
|
|
@include desktopMin{
|
|
margin-top:3rem;
|
|
}
|
|
.allSelect{
|
|
bordeR:1px solid #DEDEDE;
|
|
border-radius: 0.6rem;
|
|
padding:2rem;
|
|
height:5.5rem;
|
|
display:flex;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
cursor: pointer;
|
|
span{
|
|
color:#676767;
|
|
font-size: 1.6rem;
|
|
margin-left:2rem;
|
|
}
|
|
}
|
|
.productLis{
|
|
margin-top:1rem;
|
|
|
|
ul{
|
|
li{
|
|
|
|
bordeR:1px solid #DEDEDE;
|
|
border-radius: 0.6rem;
|
|
|
|
.cartItemWrap {
|
|
display:flex;
|
|
padding:2rem;
|
|
padding-left:2rem;
|
|
@include maxmobile{
|
|
flex-wrap: wrap;
|
|
}
|
|
@include mobileSmall{
|
|
flex-wrap: wrap;
|
|
}
|
|
@include tablet{
|
|
flex-wrap: nowrap;
|
|
justify-content: space-between;
|
|
}
|
|
@include desktopMin{
|
|
padding:3rem;
|
|
padding-left:2rem;
|
|
display:flex;
|
|
flex-wrap: nowrap;
|
|
justify-content: space-between;
|
|
}
|
|
.cartItem{
|
|
displaY:flex;
|
|
width:100%;
|
|
flex-wrap: wrap;
|
|
flex-shrink:2;
|
|
align-items: center;
|
|
@include tablet{
|
|
flex-wrap: nowrap;
|
|
padding-right:3rem;
|
|
}
|
|
@include desktopMin{
|
|
justify-content: space-between;
|
|
padding-right:5rem;
|
|
flex-wrap: nowrap;
|
|
}
|
|
|
|
.cartItemInfo{
|
|
display:flex;
|
|
width: 100%;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
padding-bottom:2rem;
|
|
margin-bottom:2rem;
|
|
border-bottom:1px solid #DEDEDE;
|
|
@include tablet{
|
|
padding-bottom:0;
|
|
margin-bottom:0;
|
|
border-bottom:none;
|
|
flex-wrap: nowrap;
|
|
}
|
|
|
|
>div{
|
|
display: flex;
|
|
margin-top: 1.4rem;
|
|
@include tablet{
|
|
margin-top: 0;
|
|
}
|
|
> p{
|
|
min-width:7.5rem;
|
|
height:7.5rem;
|
|
overflow: hidden;
|
|
border-radius: 0.6rem;
|
|
margin-left:0rem;
|
|
@include tablet{
|
|
min-width:10rem;
|
|
height:10rem;
|
|
margin-left:2rem;
|
|
}
|
|
@include desktopMin{
|
|
min-width:17rem;
|
|
height:17rem;
|
|
}
|
|
img{
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
aspect-ratio: 1 / 1;
|
|
}
|
|
}
|
|
dl{
|
|
margin-left:1.5rem;
|
|
displaY:flex;
|
|
flex-wrap: wrap;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100%;
|
|
@include tablet{
|
|
max-width: 50%;
|
|
margin-left:2rem;
|
|
}
|
|
@include desktopMin{
|
|
max-width: 58%;
|
|
}
|
|
dt{
|
|
font-weight: 600;
|
|
font-size: 1.6rem;
|
|
color:#000;
|
|
line-height: 2rem;
|
|
a {
|
|
color:#000;
|
|
}
|
|
@include desktopMin{
|
|
font-size: 2rem;
|
|
line-height: 2.6rem;
|
|
}
|
|
}
|
|
dd{
|
|
font-weight: 400;
|
|
font-size: 1.4rem;
|
|
line-height:2rem;
|
|
color:#676767;
|
|
@include desktopMin{
|
|
line-height:2.2rem;
|
|
}
|
|
|
|
}
|
|
dt,
|
|
dd{
|
|
width:100%;
|
|
white-space: normal;
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 1;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
@include desktopMin{
|
|
-webkit-line-clamp: 2;
|
|
}
|
|
}
|
|
dt+dd{
|
|
margin-top:0.5rem;
|
|
@include desktopMin{
|
|
margin-top:1rem;
|
|
}
|
|
}
|
|
dd+dd{
|
|
margin-top:1.5rem;
|
|
font-size: 1.4rem;
|
|
@include desktopMin{
|
|
margin-top:2rem;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.cartItemInfo+dl{
|
|
|
|
@include maxmobile{
|
|
width:100%;
|
|
}
|
|
@include tablet{
|
|
min-width: 14rem;
|
|
text-align: right;
|
|
}
|
|
@include desktopMin{
|
|
min-width:14rem;
|
|
text-align: right;
|
|
}
|
|
dt{
|
|
font-size:1.4rem;
|
|
@include desktopMin{
|
|
font-size:1.6rem;
|
|
}
|
|
&.experienceInfo {
|
|
padding: 0.2rem 0;
|
|
&.cost {
|
|
font-weight: 600;
|
|
}
|
|
}
|
|
}
|
|
dd{
|
|
font-size:2rem;
|
|
font-weight: 600;
|
|
margin-top:1rem;
|
|
@include desktopMin{
|
|
font-size:2.4rem;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.addBtnWarp{
|
|
display: flex;
|
|
flex-grow: 1;
|
|
align-items: center;
|
|
margin-top:3rem;
|
|
margin-left:4rem;
|
|
justify-content: flex-end;
|
|
@include maxmobile{
|
|
width:100%;
|
|
margin-left:0rem;
|
|
}
|
|
|
|
@include tablet{
|
|
margin-top:0;
|
|
flex-basis:18rem;
|
|
margin-left:0rem;
|
|
}
|
|
|
|
.towButton{
|
|
width:100%;
|
|
min-width:18rem;
|
|
button+button{
|
|
margin-top:1rem;
|
|
}
|
|
@include mobile{
|
|
max-width:inherit;
|
|
}
|
|
@include tablet{
|
|
min-width: 15rem;
|
|
max-width: 15rem;
|
|
flex-direction: column;
|
|
}
|
|
@include desktopMin{
|
|
min-width:18rem;
|
|
max-width:18rem;
|
|
}
|
|
.rightBtn {
|
|
@include tablet{
|
|
margin-left: 0;
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
.components {
|
|
background-color: #F3F3F3;
|
|
padding: 3rem 3rem 3rem 6rem;
|
|
@include maxtablet{
|
|
padding: 2rem;
|
|
}
|
|
.componentsTitle {
|
|
font-size: 1.6rem;
|
|
font-weight: 600;
|
|
color: #000000;
|
|
@include maxtablet{
|
|
font-size: 1.4rem;
|
|
}
|
|
}
|
|
.componentsList {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: flex-start;
|
|
flex-wrap: wrap;
|
|
margin-top: 0.2rem;
|
|
@include maxtablet{
|
|
display: block;
|
|
margin-top: 0.8rem;
|
|
}
|
|
.item {
|
|
|
|
width: 17rem;
|
|
margin-top: 1.8rem;
|
|
margin-right: 1.8rem;
|
|
text-align: center;
|
|
@media(max-width: 1024px){
|
|
width: 10rem;
|
|
}
|
|
@include maxtablet{
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
width: 100%;
|
|
margin-top: 1.2rem;
|
|
margin-right: 0;
|
|
text-align: left;
|
|
}
|
|
|
|
.itemImg {
|
|
width: 17rem;
|
|
height: 17rem;
|
|
border-radius: 0.6rem;
|
|
overflow: hidden;
|
|
@media(max-width: 1024px){
|
|
width: 10rem;
|
|
height: 10rem;
|
|
}
|
|
@include maxtablet{
|
|
width: 4rem;
|
|
height: 4rem;
|
|
}
|
|
img {
|
|
width: 17rem;
|
|
height: 17rem;
|
|
@media(max-width: 1024px){
|
|
width: 10rem;
|
|
height: 10rem;
|
|
}
|
|
@include maxtablet{
|
|
width: 4rem;
|
|
height: 4rem;
|
|
}
|
|
}
|
|
}
|
|
.itemTitle {
|
|
margin-top: 1.2rem;
|
|
font-size: 1.4rem;
|
|
font-weight: 600;
|
|
line-height: 1.8rem;
|
|
@include maxtablet{
|
|
margin-top: 0;
|
|
margin-left: 0.7rem;
|
|
font-weight: 400;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
.componentsPayment {
|
|
background-color: #F3F3F3;
|
|
padding: 3rem;
|
|
@include maxtablet{
|
|
padding: 2rem;
|
|
}
|
|
.componentsTitle {
|
|
font-size: 1.6rem;
|
|
font-weight: 600;
|
|
color: #000000;
|
|
@include maxtablet{
|
|
font-size: 1.4rem;
|
|
}
|
|
}
|
|
.componentsList {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
margin-top: 0.2rem;
|
|
@include maxtablet{
|
|
display: block;
|
|
margin-top: 0.8rem;
|
|
}
|
|
.item {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
width: 33.333%;
|
|
text-align: center;
|
|
margin-bottom: 1.5rem;
|
|
padding-right: 1.5rem;
|
|
@media(max-width: 1024px){
|
|
width: 100%;
|
|
margin-right: 0;
|
|
text-align: left;
|
|
}
|
|
.itemImg {
|
|
width: 4rem;
|
|
height: 4rem;
|
|
border-radius: 0.6rem;
|
|
overflow: hidden;
|
|
img {
|
|
width: 4rem;
|
|
height: 4rem;
|
|
}
|
|
}
|
|
.itemTitle {
|
|
padding-left: 1.2rem;
|
|
font-size: 1.4rem;
|
|
font-weight: 600;
|
|
line-height: 1.8rem;
|
|
text-align: left;
|
|
width: calc(100% - 4rem);
|
|
@include maxtablet{
|
|
margin-top: 0;
|
|
padding-left: 0.7rem;
|
|
font-weight: 400;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
li+li{
|
|
margin-top:1rem;
|
|
}
|
|
.noPrice{
|
|
|
|
padding:2rem;
|
|
text-align: center;
|
|
|
|
|
|
@include tablet{
|
|
display: flex;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
@include desktopMin{
|
|
padding-left:3rem;
|
|
min-height:17rem;
|
|
}
|
|
>p{
|
|
font-weight: 600;
|
|
font-size: 1.8rem;
|
|
color:#9EA1A2;
|
|
|
|
@include desktopMin{
|
|
font-size: 2.4rem;
|
|
}
|
|
}
|
|
.PriceGoList{
|
|
displaY:flex;
|
|
flex-wrap: wrap;
|
|
width:100%;
|
|
margin: 0 auto;
|
|
@include maxtablet{
|
|
width:18rem;
|
|
}
|
|
@include maxmobile{
|
|
width:100%;
|
|
}
|
|
@include tablet{
|
|
flex-wrap: nowrap;
|
|
margin:0;
|
|
width:fit-content;
|
|
}
|
|
@include desktopMin{
|
|
flex-wrap: nowrap;
|
|
margin:0;
|
|
width:fit-content;
|
|
}
|
|
> p{
|
|
width:100%;
|
|
display:flex;
|
|
align-items: center;
|
|
font-size:2.4rem;
|
|
font-weight: 600;
|
|
}
|
|
.oneButton{
|
|
|
|
margin-top:3rem;
|
|
@include tablet{
|
|
margin-top:0;
|
|
min-width:15rem;
|
|
margin-left:5rem;
|
|
width:fit-content;
|
|
}
|
|
@include desktopMin{
|
|
margin-top:0;
|
|
min-width:18rem;
|
|
margin-left:5rem;
|
|
}
|
|
button,
|
|
a{
|
|
&::before,
|
|
&::after{
|
|
@include tablet{
|
|
width: 3.2rem;
|
|
}
|
|
@include desktopMin{
|
|
width: 3.2rem;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.totalWarp{
|
|
background-color:#f3f3f3;
|
|
margin-top:2rem;
|
|
display:flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding:3rem 2rem 2rem 2rem;
|
|
border-radius: 0.6rem;
|
|
@include mobile{
|
|
padding:2rem;
|
|
}
|
|
|
|
@include maxtablet{
|
|
flex-wrap: nowrap;
|
|
width:inherit;
|
|
}
|
|
@include maxmobile{
|
|
flex-wrap: wrap;
|
|
}
|
|
@include desktopMin{
|
|
flex-wrap: nowrap;
|
|
padding:3rem;
|
|
padding-left:6rem;
|
|
max-height:12rem;
|
|
}
|
|
>p{
|
|
font-size:1.4rem;
|
|
@include mobile{
|
|
font-size:1.6rem;
|
|
}
|
|
}
|
|
.totalPrice{
|
|
display:flex;
|
|
flex-wrap: wrap;
|
|
margin-top:1.5rem;
|
|
width:100%;
|
|
@include mobile{
|
|
margin-top:0;
|
|
}
|
|
|
|
@include maxtablet{
|
|
width:18rem;
|
|
}
|
|
@include maxmobile{
|
|
width:100%;
|
|
}
|
|
@include tablet{
|
|
|
|
flex-wrap: nowrap;
|
|
margin-top:0;
|
|
width:fit-content;
|
|
}
|
|
@include desktopMin{
|
|
flex-wrap: nowrap;
|
|
margin-top:0;
|
|
width:fit-content;
|
|
}
|
|
> p{
|
|
width:100%;
|
|
display:flex;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
font-size:2rem;
|
|
font-weight: 600;
|
|
@include mobile{
|
|
justify-content: flex-end;
|
|
}
|
|
}
|
|
.oneButtonBlack{
|
|
|
|
margin-top:3rem;
|
|
@include mobile{
|
|
margin-top:1rem;
|
|
}
|
|
@include tablet{
|
|
margin-top:0;
|
|
min-width:15rem;
|
|
margin-left:5rem;
|
|
width:fit-content;
|
|
}
|
|
@include desktopMin{
|
|
margin-top:0;
|
|
min-width:18rem;
|
|
margin-left:5rem;
|
|
}
|
|
button,
|
|
a{
|
|
&::before,
|
|
&::after{
|
|
@include tablet{
|
|
width: 3.2rem;
|
|
}
|
|
@include desktopMin{
|
|
width: 3.2rem;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
.counponList {
|
|
margin-top: 3rem;
|
|
border-top: 1px solid #DEDEDE;
|
|
li {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
border-bottom: 1px solid #DEDEDE;
|
|
padding: 2.5rem 0;
|
|
@media (max-width: 768px){
|
|
display: block;
|
|
|
|
}
|
|
.infoWrap {
|
|
width: calc(100% - 15rem);
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
@media (max-width: 768px){
|
|
width: 100%;
|
|
}
|
|
.info {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
.radioItem {
|
|
margin-top: 0.5rem;
|
|
[type="radio"] {
|
|
position: relative;
|
|
top: -0.1rem;
|
|
vertical-align: middle;
|
|
appearance: none;
|
|
border: max(1px, 0.1em) solid #05141F;
|
|
border-radius: 50%;
|
|
width: 1.5rem;
|
|
height: 1.5rem;
|
|
transition: border 0.3s ease-in-out;
|
|
}
|
|
[type="radio"]:checked::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0.3rem;
|
|
left: 0.3rem;
|
|
width: 0.7rem;
|
|
height: 0.7rem;
|
|
background: #000000;
|
|
border-radius: 100%;
|
|
}
|
|
|
|
[type="radio"]:disabled {
|
|
background-color: #DEDEDE;
|
|
box-shadow: none;
|
|
opacity: 0.7;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
[type="radio"]:disabled + span {
|
|
opacity: 0.5;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
|
|
span {
|
|
position: relative;
|
|
font-size: 1.6rem;
|
|
font-weight: 600;
|
|
padding-left: 0.5rem;
|
|
color: #000000;
|
|
&::before{
|
|
content: "";
|
|
position: absolute;
|
|
top: 0.1rem;
|
|
right: -1.2rem;
|
|
display: inline-block;
|
|
width: 0.1rem;
|
|
height: 1.5rem;
|
|
background-color: #DEDEDE;
|
|
padding-top: 0.2rem;
|
|
}
|
|
}
|
|
&.none {
|
|
span {
|
|
&::before {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.title {
|
|
position: relative;
|
|
padding-left: 2.4rem;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
margin-top: 0.5rem;
|
|
font-size: 1.6rem;
|
|
font-weight: 600;
|
|
color: #676767;
|
|
}
|
|
}
|
|
.date {
|
|
margin-top: 1.2rem;
|
|
margin-left: 2.4rem;
|
|
font-size: 1.4rem;
|
|
font-weight: 400;
|
|
color: #676767;
|
|
}
|
|
}
|
|
.benefit {
|
|
width: 15rem;
|
|
margin-top: 2.5rem;
|
|
text-align: right;
|
|
font-size: 2rem;
|
|
font-weight: 600;
|
|
color: 600;
|
|
@media (max-width: 768px){
|
|
width: 100%;
|
|
margin-left: 2.4rem;
|
|
text-align: left;
|
|
font-size: 1.8rem;
|
|
|
|
}
|
|
}
|
|
&.noList {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 14rem;
|
|
margin-top: 2rem;
|
|
border: 1px solid #DEDEDE;
|
|
border-radius: 0.6rem;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
color: #9EA1A2;
|
|
@media (max-width: 768px){
|
|
height: 10rem;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
//주문결재 레이아웃
|
|
.contentWarp.carsw{
|
|
display:flex;
|
|
width:100%;
|
|
margin:0 auto;
|
|
justify-content: space-between;
|
|
@include maxtablet{
|
|
flex-wrap: wrap;
|
|
}
|
|
@include desktopMax{
|
|
width:120rem;
|
|
|
|
}
|
|
.carswLeft{
|
|
margin-top:6rem;
|
|
width:100%;
|
|
@include tablet{
|
|
width:60%;
|
|
margin-top:10rem;
|
|
padding-bottom:15rem;
|
|
}
|
|
@include maxtablet{
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
@include desktopMin{
|
|
width:70%;
|
|
margin-top:10rem;
|
|
}
|
|
@include desktopMax{
|
|
width:73rem;
|
|
}
|
|
.pageSubTitle{
|
|
margin-top:4rem;
|
|
@include tablet{
|
|
margin-top:7rem;
|
|
}
|
|
h2{
|
|
font-size: 1.8rem;
|
|
@include tablet{
|
|
font-size:2.4rem;
|
|
}
|
|
}
|
|
}
|
|
.productListWarp{
|
|
.productLis{
|
|
ul{
|
|
li{
|
|
.cartItemWrap{
|
|
padding: 0;
|
|
.cartItem{
|
|
padding-right:2rem !important;
|
|
justify-content: space-between;
|
|
@include desktopMin{
|
|
padding-right:1rem;
|
|
}
|
|
@media (max-width: 767px){
|
|
padding: 2rem;
|
|
}
|
|
.cartItemInfo{
|
|
>div{
|
|
margin-top:0;
|
|
>p{
|
|
margin-left:0;
|
|
border-radius: 0;
|
|
@media (max-width: 767px){
|
|
border-radius: 0.6rem;
|
|
}
|
|
@include tablet{
|
|
width:10rem;
|
|
height:10rem;
|
|
}
|
|
@include desktopMin{
|
|
min-width:18rem;
|
|
height:18rem;
|
|
}
|
|
img{
|
|
width:7.5rem;
|
|
height:7.5rem;
|
|
@include tablet{
|
|
width:18rem;
|
|
height:18rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
.cartItemInfo+dl{
|
|
min-width: 20rem;
|
|
dd{
|
|
font-size:2rem;
|
|
font-weight: 600;
|
|
margin-top:0.5rem;
|
|
@include desktopMin{
|
|
font-size:2.4rem;
|
|
}
|
|
}
|
|
}
|
|
>dl{
|
|
.couponBtn{
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
margin-top:1rem !important;
|
|
@media (max-width: 767px){
|
|
justify-content: flex-start;
|
|
}
|
|
.info{
|
|
display: flex;
|
|
align-items: center;
|
|
margin-right: 1rem;
|
|
font-size: 1.4rem;
|
|
font-weight: 400;
|
|
color: #000000;
|
|
}
|
|
.apply{
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 7.2rem;
|
|
height: 2.4rem;
|
|
font-size: 1.4rem;
|
|
font-weight: 400;
|
|
color: #ffffff;
|
|
background-color: #05141F;
|
|
}
|
|
.clear{
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 7.2rem;
|
|
height: 2.4rem;
|
|
font-size: 1.4rem;
|
|
font-weight: 400;
|
|
color: #9EA1A2;
|
|
background-color: #F3F3F3;
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.couponInfo {
|
|
margin-top: 2rem;
|
|
ul {
|
|
li {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 0.5rem;
|
|
font-size: 1.4rem;
|
|
font-weight: 400;
|
|
color: #676767;
|
|
line-height: 2.2rem;
|
|
&::before {
|
|
content: "∙";
|
|
margin-right: 0.5rem;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.carswRight{
|
|
padding-left:2rem;
|
|
padding-right:2rem;
|
|
background-color: #F3F3F3;
|
|
width:100%;
|
|
margin-top:5rem;
|
|
padding-bottom:6rem;
|
|
@include tablet{
|
|
width:38%;
|
|
min-height:89rem;
|
|
margin-top:0rem;
|
|
padding-bottom:0rem;
|
|
}
|
|
@include desktopMin{
|
|
width:30%;
|
|
}
|
|
@include desktopMax{
|
|
width:40rem;
|
|
padding-left:5rem;
|
|
padding-right:5rem;
|
|
}
|
|
.carswRightInner{
|
|
margin-top:5rem;
|
|
@include tablet{
|
|
margin-top:21.6rem;
|
|
}
|
|
h2{
|
|
font-size:1.8rem;
|
|
font-weight: 600;
|
|
@include tablet{
|
|
font-size:2.4rem;
|
|
}
|
|
}
|
|
.carswInfo{
|
|
margin-top:4rem;
|
|
@include tablet{
|
|
margin-top:5rem;
|
|
}
|
|
dl{
|
|
padding-bottom:2.5rem;
|
|
margin-bottom:2rem;
|
|
border-bottom:1px solid #DEDEDE;
|
|
@include tablet{
|
|
padding-bottom:2.5rem;
|
|
margin-bottom:2rem;
|
|
}
|
|
dt{
|
|
font-size:1.6rem;
|
|
}
|
|
dd{
|
|
font-size: 3rem;
|
|
font-weight: 600;
|
|
margin-top:1rem;
|
|
@include tablet{
|
|
font-size:4rem;
|
|
}
|
|
|
|
}
|
|
&.carType {
|
|
padding-bottom:2rem;
|
|
margin-bottom:2rem;
|
|
@include tablet{
|
|
padding-bottom:2rem;
|
|
margin-bottom:2rem;
|
|
}
|
|
dd {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
font-size: 1.6rem;
|
|
font-weight: 400;
|
|
color: #000000;
|
|
strong {
|
|
font-size: 1.6rem;
|
|
font-weight: 600;
|
|
color: #000000;
|
|
}
|
|
span {
|
|
display: inline-block;
|
|
width: 0.1rem;
|
|
height: 1.4rem;
|
|
margin: 0 0.8rem;
|
|
background-color: #DEDEDE;
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
.amount {
|
|
margin-bottom: 2.5rem;
|
|
padding-bottom: 2rem;
|
|
border-bottom: 1px dashed #DEDEDE;
|
|
.item{
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
.title {
|
|
font-size: 1.6rem;
|
|
font-weight: 400;
|
|
color: #676767;
|
|
}
|
|
.value {
|
|
font-size: 1.6rem;
|
|
font-weight: 400;
|
|
color: #000000;
|
|
}
|
|
&:last-child {
|
|
margin-top: 2rem;
|
|
}
|
|
}
|
|
}
|
|
.kiaPayBox {
|
|
padding: 2rem;
|
|
margin-bottom: 2rem;
|
|
border-radius: 0.6rem;
|
|
background-color: #ffffff;
|
|
.pointInfo {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
margin-bottom: 1rem;
|
|
.title {
|
|
font-size: 1.4rem;
|
|
width: 50%;
|
|
color: #676767;
|
|
}
|
|
.info {
|
|
font-size: 1.4rem;
|
|
width: 50%;
|
|
text-align: right;
|
|
color: #000000;
|
|
}
|
|
}
|
|
.caution {
|
|
margin-top: 2rem;
|
|
font-size: 1.4rem;
|
|
line-height: 2.2rem;
|
|
color: #676767;
|
|
}
|
|
.cautionKiaPay {
|
|
font-size: 1.4rem;
|
|
line-height: 2.2rem;
|
|
color: #676767;
|
|
span {
|
|
font-weight: 600;
|
|
color: #000000;
|
|
}
|
|
}
|
|
.oneButton {
|
|
margin-top: 2rem;
|
|
}
|
|
}
|
|
|
|
>a{
|
|
display:flex;
|
|
font-size:1.4rem;
|
|
color:#676767;
|
|
span{
|
|
border-bottom:1px solid #676767;
|
|
}
|
|
&::after{
|
|
content: "";
|
|
displaY:block;
|
|
width:0.6rem;
|
|
margin-left:0.8rem;
|
|
background-image: url(/kr/assets/images/common/icon-mMarrow.svg);
|
|
background-size: contain;
|
|
background-repeat: no-repeat;
|
|
background-position: center right;
|
|
}
|
|
}
|
|
a+a{
|
|
margin-top:1.5rem;
|
|
}
|
|
>label{
|
|
display: flex;
|
|
margin-top:2rem;
|
|
align-items: flex-start;
|
|
cursor: pointer;
|
|
span{
|
|
font-size:1.4rem;
|
|
margin-left:1rem;
|
|
line-height: 2.2rem;
|
|
}
|
|
}
|
|
.oneButtonBlack{
|
|
margin-top:4rem;
|
|
button{
|
|
&::before,
|
|
&::after{
|
|
width:3.2rem;
|
|
}
|
|
}
|
|
}
|
|
.safariCaution {
|
|
display: none;
|
|
margin-top: 2rem;
|
|
padding: 2rem;
|
|
border-radius: 0.6rem;
|
|
background-color: #ffffff;
|
|
font-size: 1.4rem;
|
|
font-weight: 400;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.carsFull{
|
|
margin-top:6rem;
|
|
width:100%;
|
|
padding-bottom:9rem;
|
|
@include tablet{
|
|
margin-top:10rem;
|
|
padding-bottom:15rem;
|
|
|
|
}
|
|
@include maxtablet{
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
@include desktopMin{
|
|
margin-top:10rem;
|
|
}
|
|
.pageSubTitle{
|
|
margin-top:4rem;
|
|
@include tablet{
|
|
margin-top:7rem;
|
|
}
|
|
h2 {
|
|
font-size: 1.8rem;
|
|
@include tablet{
|
|
font-size:3rem;
|
|
}
|
|
}
|
|
p {
|
|
@include tablet{
|
|
font-size: 1.8rem;
|
|
}
|
|
}
|
|
}
|
|
.privacyStatement {
|
|
margin-top: 3rem;
|
|
@include tablet{
|
|
margin-top: 4rem;
|
|
}
|
|
.contentsBox {
|
|
padding: 2rem;
|
|
border: 0.1rem solid #DEDEDE;
|
|
border-radius: 0.6rem;
|
|
@include tablet{
|
|
padding: 4rem;
|
|
}
|
|
.title {
|
|
font-size: 1.6rem;
|
|
font-weight: 600;
|
|
color: #000000;
|
|
line-height: 2.2rem;
|
|
@include tablet{
|
|
font-size: 2rem;
|
|
line-height: 2.8rem;
|
|
}
|
|
}
|
|
.contents {
|
|
margin-top: 1rem;
|
|
font-size: 1.4rem;
|
|
font-weight: 400;
|
|
color: #676767;
|
|
line-height: 2.2rem;
|
|
@include tablet{
|
|
margin-top: 2rem;
|
|
font-size: 1.6rem;
|
|
line-height: 2.4rem;
|
|
}
|
|
}
|
|
}
|
|
label {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
margin-top: 1.5rem;
|
|
@include tablet{
|
|
margin-top: 2rem;
|
|
}
|
|
span {
|
|
margin-left: 1rem;
|
|
font-size: 1.4rem;
|
|
color: #000000;
|
|
}
|
|
}
|
|
|
|
}
|
|
.installGuide{
|
|
margin-top:4rem;
|
|
padding:2rem;
|
|
border:1px solid #DEDEDE;
|
|
border-radius: 0.6rem;
|
|
displaY:flex;
|
|
justify-content: space-between;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
@include tablet{
|
|
flex-wrap: nowrap;
|
|
padding:4rem;
|
|
}
|
|
@include desktopMin{
|
|
margin-top:7rem;
|
|
}
|
|
div{
|
|
p{
|
|
strong{
|
|
font-size:1.8rem;
|
|
font-weight: 600;
|
|
line-height: 2.4rem;
|
|
@include tablet{
|
|
font-size:2.4rem;
|
|
line-height: 3.2rem;
|
|
}
|
|
}
|
|
span{
|
|
font-size:1.4rem;
|
|
line-height:2.4rem;
|
|
@include tablet{
|
|
font-size: 1.6rem;
|
|
}
|
|
|
|
}
|
|
}
|
|
p+p{
|
|
margin-top:2rem;
|
|
}
|
|
&:last-child{
|
|
width:100%;
|
|
margin-top:3rem;
|
|
@include tablet{
|
|
margin-top:0;
|
|
width:16rem;
|
|
}
|
|
div{
|
|
a{
|
|
&::before,
|
|
&::after{
|
|
width:3.2rem;
|
|
@include tablet{
|
|
width:3.2rem;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
&:first-child{
|
|
width: initial;
|
|
margin-top: initial;
|
|
@include tablet{
|
|
margin-top:initial;
|
|
width:initial;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
.completeForm{
|
|
margin-top:4rem;
|
|
>div{
|
|
border-top:1px solid #999999;
|
|
@include tablet{
|
|
border-top:1px solid #DEDEDE;
|
|
}
|
|
>dl{
|
|
border-bottom:1px solid #DEDEDE;
|
|
display:flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
@include tablet{
|
|
flex-wrap: nowrap;
|
|
}
|
|
&:last-child{
|
|
border-bottom:1px solid #999;
|
|
@include tablet{
|
|
border-bottom:1px solid #DEDEDE;
|
|
}
|
|
}
|
|
>dt{
|
|
padding-top:1rem;
|
|
@include tablet{
|
|
padding-top:2.2rem;
|
|
padding-bottom:2.2rem;
|
|
}
|
|
}
|
|
>dd{
|
|
padding-top:1rem;
|
|
padding-bottom:1rem;
|
|
font-weight: 600;
|
|
@include tablet{
|
|
padding-top:2.2rem;
|
|
padding-bottom:2.2rem;
|
|
font-weight: 400;
|
|
}
|
|
}
|
|
>dt{
|
|
width:100%;
|
|
font-size: 1.4rem;
|
|
padding-left:0rem;
|
|
text-align: left;
|
|
padding-bottom:0;
|
|
color:#676767;
|
|
font-weight: 700;
|
|
@include tablet{
|
|
position: relative;
|
|
font-size: 1.6rem;
|
|
padding-bottom:2.2rem;
|
|
min-width:15.7rem;
|
|
width:auto;
|
|
&::after {
|
|
content: "";
|
|
position: absolute;
|
|
top: 2.2rem;
|
|
right: 0;
|
|
width: 0.1rem;
|
|
height: 1.6rem;
|
|
background-color: #DEDEDE;
|
|
}
|
|
}
|
|
}
|
|
>dd{
|
|
padding-left:0;
|
|
width:100%;
|
|
font-size: 1.4rem;
|
|
color:#000;
|
|
@include tablet{
|
|
padding-left:2rem;
|
|
font-size: 1.6rem;
|
|
}
|
|
}
|
|
.completeItemList{
|
|
|
|
padding-left: 0;
|
|
padding-top:0;
|
|
padding-bottom:0;
|
|
ul{
|
|
|
|
li{
|
|
padding:0;
|
|
display:flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
flex-wrap: wrap;
|
|
|
|
@include tablet{
|
|
padding:3rem;
|
|
flex-wrap: nowrap;
|
|
}
|
|
.imgItem{
|
|
display:flex;
|
|
align-items: center;
|
|
margin-top:1.5rem;
|
|
width:100%;
|
|
@include tablet{
|
|
width:inherit;
|
|
margin-top:0;
|
|
}
|
|
>div{
|
|
position: relative;
|
|
border-radius: 0.6rem;
|
|
overflow: hidden;
|
|
min-width:7.5rem;
|
|
height:7.5rem;
|
|
img{
|
|
width:7.5rem;
|
|
height:7.5rem;
|
|
}
|
|
}
|
|
dl{
|
|
margin-left:2rem;
|
|
dt{
|
|
width:100%;
|
|
position:relative;
|
|
font-size:1.6rem;
|
|
font-weight: 600;
|
|
line-height: 1.2;
|
|
height:4rem;
|
|
/* 말줄임 */
|
|
display: -webkit-box;
|
|
white-space: normal;
|
|
text-overflow: ellipsis;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
-webkit-line-clamp: 2;
|
|
@include tablet{
|
|
font-size: 1.8rem;
|
|
padding-right:5rem;
|
|
}
|
|
}
|
|
dd{
|
|
margin-top:0.8rem;
|
|
font-size:1.4rem;
|
|
color:#676767;
|
|
span{
|
|
display: block;
|
|
font-size: 1.4rem;
|
|
color: #05141F;
|
|
margin-bottom: 1rem;
|
|
font-weight: 700;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.cachItem{
|
|
displaY:flex;
|
|
align-items: center;
|
|
margin-top:2.1rem;
|
|
flex-wrap: wrap;
|
|
width:100%;
|
|
@include tablet{
|
|
margin-top:0;
|
|
flex-wrap: nowrap;
|
|
width:inherit;
|
|
}
|
|
dl{
|
|
width:100%;
|
|
display:flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
min-width: fit-content;
|
|
@include tablet{
|
|
display: block;
|
|
width:inherit;
|
|
}
|
|
dt{
|
|
color:#676767;
|
|
font-size:1.4rem;
|
|
text-align: right;
|
|
@include tablet{
|
|
font-size:1.6rem;
|
|
}
|
|
}
|
|
dd{
|
|
margin-top:0rem;
|
|
font-size: 1.4rem;
|
|
font-weight: 600;
|
|
@include tablet{
|
|
font-size:1.6rem;
|
|
margin-top:1rem;
|
|
}
|
|
}
|
|
}
|
|
dl+dl{
|
|
|
|
margin-top:1rem;
|
|
@include tablet{
|
|
margin-left:2rem;
|
|
margin-top:0;
|
|
}
|
|
}
|
|
>div{
|
|
margin-left:0rem;
|
|
width:100%;
|
|
margin-top:3rem;
|
|
@include tablet{
|
|
margin-left:4rem;
|
|
width:16rem;
|
|
margin-top:0;
|
|
}
|
|
a{
|
|
&::before,
|
|
&::after{
|
|
width:3.2rem;
|
|
@include tablet{
|
|
width:3.2rem;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
li+li{
|
|
border-top:0;
|
|
margin-top:1.5rem;
|
|
@include tablet{
|
|
margin-top:0;
|
|
padding-bottom:2rem;
|
|
border-top:1px solid #DEDEDE;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
dl.innerList{
|
|
padding-bottom:2rem;
|
|
@include tablet{
|
|
padding-bottom:0;
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
.carswBtn{
|
|
|
|
width:100%;
|
|
margin:0 auto;
|
|
margin-top:4rem;
|
|
@include tablet{
|
|
width:37rem;
|
|
margin-top:5rem;
|
|
padding-left:2rem;
|
|
padding-right:2rem;
|
|
}
|
|
.towButton{
|
|
displaY:flex;
|
|
flex-wrap: wrap;
|
|
@include tablet{
|
|
flex-wrap: nowrap;
|
|
}
|
|
button+button{
|
|
margin-top:1rem;
|
|
@include tablet{
|
|
margin-left:0.5rem;
|
|
margin-top:0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|