포토리뷰 추가 수정정

This commit is contained in:
2026-01-08 23:52:02 +09:00
parent 6a9bd1ae77
commit e607dc8472
5 changed files with 154 additions and 133 deletions

View File

@@ -1497,6 +1497,7 @@
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 7.2rem;
font-size: 1.4rem;
color: #9ea1a2;
@@ -1647,15 +1648,15 @@
gap: 1rem;
}
.reviewArea .reviewInner .reviewList .item .textArea .photoArea .photoItem {
width: 7.2rem;
height: 7.2rem;
width: 5.6rem;
height: 5.6rem;
border-radius: 0.8rem;
overflow: hidden;
}
@media (min-width: 768px) {
.reviewArea .reviewInner .reviewList .item .textArea .photoArea .photoItem {
width: 16rem;
height: 16rem;
width: 12rem;
height: 12rem;
}
}
.reviewArea .reviewInner .reviewList .item .textArea .photoArea .photoItem button {
@@ -5551,11 +5552,55 @@ body.scroll-up .displayThemeDesney.discover-epic-design .tab-wrap .tab-menu {
margin: 3rem 0;
padding: 3rem 0 0;
display: flex;
flex-wrap: wrap;
flex-wrap: nowrap;
align-items: flex-start;
}
.photoReviewList .allPhotoReview {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
flex-shrink: 0;
width: 7.2rem;
height: 7.2rem;
aspect-ratio: 1/1;
font-size: 1.1rem;
font-weight: 600;
color: #fff;
background-color: #05141f;
border-radius: 0.8rem;
margin-right: 1rem;
}
@media (min-width: 768px) {
.photoReviewList .allPhotoReview {
width: 16rem;
height: 16rem;
margin-right: 1.3rem;
font-size: 1.4rem;
}
}
.photoReviewList .allPhotoReview:before {
content: "";
display: block;
width: 100%;
height: 1.6rem;
margin-bottom: 0.2rem;
background: url(../images/common/icon_camera.png) no-repeat center center/auto 100%;
}
@media (min-width: 768px) {
.photoReviewList .allPhotoReview:before {
height: 3.2rem;
margin-bottom: 1.2rem;
}
}
.photoReviewList ul {
display: flex;
gap: 1rem;
flex: 1;
min-width: 0;
overflow-x: auto;
overflow-y: hidden;
-webkit-overflow-scrolling: touch;
}
@media (min-width: 768px) {
.photoReviewList ul {
@@ -5565,24 +5610,24 @@ body.scroll-up .displayThemeDesney.discover-epic-design .tab-wrap .tab-menu {
.photoReviewList ul li {
overflow: hidden;
position: relative;
flex: 1 0 calc((100% - 3rem) / 4);
width: calc((100% - 3rem) / 4);
min-width: 0;
flex-shrink: 0;
width: 7.2rem;
height: 7.2rem;
aspect-ratio: 1/1;
border-radius: 0.8rem;
}
@media (min-width: 768px) {
.photoReviewList ul li {
flex: 0 0 14.2857142857%;
width: 14.2857142857%;
aspect-ratio: 1/1;
width: 16rem;
height: 16rem;
aspect-ratio: inherit;
}
}
.photoReviewList ul li:nth-child(n+5):nth-child(-n+7) {
.photoReviewList ul li:nth-child(n+4):nth-child(-n+7) {
display: none;
}
@media (min-width: 768px) {
.photoReviewList ul li:nth-child(n+5):nth-child(-n+7) {
.photoReviewList ul li:nth-child(n+4):nth-child(-n+7) {
display: block;
}
}
@@ -5612,30 +5657,6 @@ body.scroll-up .displayThemeDesney.discover-epic-design .tab-wrap .tab-menu {
z-index: 1;
line-height: 1;
}
.photoReviewList ul li .allPhotoReview: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;
}
@media (min-width: 768px) {
.photoReviewList ul li .allPhotoReview:before {
font-size: 2rem;
}
}
.photoReviewList ul li .allPhotoReview-mobile {
display: block;
}