포토리뷰 작업 중

This commit is contained in:
2025-12-28 21:48:37 +09:00
parent f4f47bcc5f
commit 523e780e69
23 changed files with 1817 additions and 326 deletions

View File

@@ -1640,23 +1640,24 @@
}
.reviewList {
margin-top: 3rem;
margin-top: 1.6rem;
border-top: 1px solid #999999;
// border-bottom: 1px solid #999999;
@include maxtablet {
@include tablet {
margin-top: 2rem;
}
.item {
display: flex;
display: block;
justify-content: space-between;
align-items: center;
padding: 1.6rem 0;
padding: 3.4rem 0 2.8rem;
border-bottom: 1px solid #dedede;
@include maxtablet {
display: block;
@include tablet {
display: flex;
padding: 1.6rem 0;
}
.textArea {
@@ -1689,11 +1690,12 @@
display: flex;
align-items: flex-start;
justify-content: flex-start;
margin-top: 1rem;
margin-top: 0.5rem;
flex-direction: column;
@include tablet {
flex-direction: row;
align-items: center;
margin-top: 1rem;
}
span {
position: relative;
@@ -1728,12 +1730,13 @@
}
.contents {
margin-top: 1.5rem;
margin-top: 1rem;
font-size: 1.4rem;
line-height: 1.5;
line-height: 1.1;
@include tablet {
font-size: 1.6rem;
line-height: 2.4rem;
margin-top: 1.5rem;
}
@include maxtablet {
@@ -1756,14 +1759,20 @@
margin-top: 1rem;
gap: 1rem;
.photoItem {
width: calc((100% - 3rem) / 4);
aspect-ratio: 1 / 1;
width: 8rem;
height: 8rem;
border-radius: 0.8rem;
overflow: hidden;
@include tablet {
width: 12rem;
height: 12rem;
}
button {
width: 100%;
height: 100%;
border: none;
cursor: pointer;
}
img {
width: 100%;
height: 100%;
@@ -1809,7 +1818,7 @@
width: 6.8rem;
height: 2.4rem;
margin-left: 0;
margin-top: 1rem;
margin-top: 0.8rem;
background: url("/kr/assets/images/kia/contents/review_best.png") no-repeat center center / contain;
@include tablet {
margin-left: 1.6rem;
@@ -1843,12 +1852,10 @@
.reviewBtnArea {
// width: 10rem;
@include maxtablet {
display: flex;
justify-content: flex-end;
width: 100%;
margin-top: 1.5rem;
}
display: flex;
justify-content: flex-end;
width: 100%;
margin-top: 2.2rem;
.reviewBtn {
display: flex;
@@ -1858,7 +1865,7 @@
height: 3.5rem;
padding: 0 1.6rem;
border: 1px solid #dedede;
border-radius: 0.6rem;
border-radius: 1.75rem;
transition: 0.3s;
.icon-good {
@@ -6260,8 +6267,12 @@
.photoReviewList {
border-top: 1px solid #dedede;
margin-top: 3.2rem;
padding: 3rem 0;
margin: 3rem 0;
padding: 3rem 0 0;
overflow: hidden;
overflow-x: auto;
display: flex;
flex-wrap: wrap;
ul {
display: flex;
gap: 1rem;
@@ -6271,18 +6282,22 @@
li {
overflow: hidden;
position: relative;
width: calc(100% / 4);
width: 7.2rem;
aspect-ratio: 1 / 1;
border-radius: 0.8rem;
@include tablet {
width: calc(100% / 7);
aspect-ratio: 16 / 16;
}
aspect-ratio: 16 / 16;
border-radius: 0.8rem;
// 4~6 번째 숨김
&:nth-child(n + 4):nth-child(-n + 6) {
display: none;
@include tablet {
display: block;
}
// &:nth-child(n + 4):nth-child(-n + 6) {
// display: none;
// @include tablet {
// display: block;
// }
// }
button {
cursor: pointer;
}
img {
width: 100%;
@@ -6307,26 +6322,28 @@
}
&:nth-child(7) {
&:before {
content: "전체 \A 포토리뷰";
white-space: pre;
display: flex;
align-items: center;
justify-content: center;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
color: #fff;
font-size: 1.4rem;
font-weight: 600;
text-align: center;
background: linear-gradient(88.44deg, rgba(145, 145, 145, 0) 1.49%, rgba(0, 0, 0, 0.8) 62.8%);
line-height: 1.5;
@include tablet {
font-size: 2rem;
button {
&:before {
content: "전체 \A 포토리뷰";
white-space: pre;
display: flex;
align-items: center;
justify-content: center;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
color: #fff;
font-size: 1.4rem;
font-weight: 600;
text-align: center;
background: linear-gradient(88.44deg, rgba(145, 145, 145, 0) 1.49%, rgba(0, 0, 0, 0.8) 62.8%);
line-height: 1.5;
@include tablet {
font-size: 2rem;
}
}
}
}