차량 선택 추가

This commit is contained in:
2025-08-28 00:33:47 +09:00
parent 06e6efc41d
commit e6322c2d16
6 changed files with 320 additions and 86 deletions

View File

@@ -988,15 +988,17 @@ video::-webkit-media-controls {
button {
display: flex;
justify-content: space-between;
// justify-content: space-between;
align-items: center;
width: 100%;
height: 5rem;
font-size: 1.6rem;
font-weight: bold;
background-color: #f3f3f3;
border: solid #dedede;
border-width: 1px 0 1px 0;
padding: 2rem;
color: #676767;
color: #030303;
cursor: pointer;
&::after {
@@ -1004,6 +1006,7 @@ video::-webkit-media-controls {
display: block;
width: 0.6rem;
height: 1.2rem;
margin-left: 0.8rem;
background-image: url("../images/common/icon-mMarrow.svg");
background-repeat: no-repeat;
background-size: contain;
@@ -1027,28 +1030,33 @@ video::-webkit-media-controls {
display: flex;
justify-content: space-between;
align-items: center;
height: 5.6rem;
padding: 0 2rem;
padding: 0 2rem 2rem;
margin-top: -1px;
color: #05141f;
border-bottom: 1px solid #dedede;
background-color: #f3f3f3;
&.on {
border: none;
}
.item {
display: flex;
justify-content: flex-start;
align-items: center;
span {
display: block;
position: relative;
width: 100%;
padding: 1.2rem 1.4rem;
background-color: #fff;
border: 1px solid #dedede;
strong {
display: block;
margin-bottom: 0.4rem;
color: #05141f;
font-size: 1.4rem;
font-weight: 600;
display: flex;
align-items: center;
width: fit-content;
min-width: 2.2rem;
word-break: break-word;
font-weight: 400;
}
span {
color: #9ea1a2;
font-size: 1.4rem;
}
span + span {
@@ -1067,8 +1075,17 @@ video::-webkit-media-controls {
}
}
.btn-select {
position: absolute;
bottom: 1.2rem;
right: 1.4rem;
font-weight: 600;
font-size: 1.2rem;
border-bottom: 1px solid #676767;
}
.arrow {
display: block;
display: none;
width: 1.2rem;
height: 0.8rem;
margin-top: -0.4rem;
@@ -1438,9 +1455,9 @@ video::-webkit-media-controls {
height: 8rem;
@include desktopMin {
height: 3.2rem;
padding: 0 1.2rem;
border: 1px solid #dedede;
height: 3.5rem;
padding: 0;
border-bottom: 1px solid #cdd0d2;
}
&::after {
@@ -1463,7 +1480,7 @@ video::-webkit-media-controls {
outline: none;
@include desktopMin {
border: 1px solid #dedede;
border-bottom: 1px solid #dedede;
}
}
@@ -1511,7 +1528,7 @@ video::-webkit-media-controls {
transform: translate(-50%, 0);
@include desktopMin {
top: 3.2rem;
top: 3.1rem;
left: 0;
right: 0;
transform: initial;
@@ -4996,11 +5013,12 @@ video::-webkit-media-controls {
position: relative;
padding: 1.6rem 1.6rem 1.4rem;
background: #fff;
border: 1px solid #0b1320; /* 테두리 추가 */
border: 1px solid #697279; /* 테두리 추가 */
border-radius: 0.6rem;
font-size: 1.4rem;
color: #0b1320;
filter: drop-shadow(0 0.2rem 0.8rem rgba(0, 0, 0, 0.18));
color: #9ea1a2;
box-shadow: 4px 4px 10px 0px #05141f1f;
.edge {
position: absolute;
top: -0.7rem; /* border 두께 때문에 살짝 조정 */
@@ -5008,8 +5026,90 @@ video::-webkit-media-controls {
width: 1.2rem;
height: 1.2rem;
background: #fff;
border-left: 1px solid #0b1320; /* 포인터 테두리 */
border-top: 1px solid #0b1320;
border-left: 1px solid #697279; /* 포인터 테두리 */
border-top: 1px solid #697279;
transform: rotate(45deg);
}
}
#carListPopup {
display: flex;
justify-content: center;
align-items: center;
.popContents {
display: flex;
flex-direction: column;
}
.payInfoCon {
flex: 1;
overflow-y: auto;
max-height: 60vh;
}
.popContents {
width: 90%;
max-width: 40rem;
background-color: #fff;
border-radius: 0.6rem;
padding: 0 1.6rem;
h2 {
height: 7.8rem;
padding: 3.2rem 0 2.4rem;
font-size: 1.8rem;
font-weight: 600;
color: #000;
text-align: center;
}
.carlistItem {
overflow-y: auto;
display: flex;
align-items: center;
justify-content: space-between;
gap: 0.8rem;
button {
position: relative;
padding: 0.8rem 0 0.8rem 3rem;
text-align: left;
strong {
display: block;
font-size: 1.4rem;
font-weight: 400;
color: #05141f;
line-height: 1.5;
}
em {
display: block;
font-size: 1.2rem;
color: #9ea1a2;
line-height: 1.4;
}
}
.selected {
button {
&:before {
content: "";
display: block;
position: absolute;
top: 50%;
left: 0;
transform: translateY(-50%);
width: 2rem;
height: 2rem;
background: url("../images/common/ico_selected2.png") center center no-repeat;
background-size: 1.8rem auto;
}
}
}
}
}
.towButton {
justify-content: center;
height: 12rem;
gap: 1rem;
padding: 3.2rem 0;
button {
max-width: 12.5rem;
}
}
}