포토리뷰 작업 중

This commit is contained in:
2025-12-22 22:48:31 +09:00
parent a23a4b3f2a
commit f4f47bcc5f
18 changed files with 683 additions and 67 deletions

View File

@@ -1400,6 +1400,8 @@ pre {
width: 100%;
margin: 0 auto;
margin-top: 5rem;
padding-top: 2rem;
border-top: 1px solid #dedede;
@include tablet {
width: 37rem;
@@ -1408,6 +1410,9 @@ pre {
.towButton {
display: flex;
flex-wrap: wrap;
flex-direction: row;
justify-content: flex-end;
align-items: center;
@include tablet {
flex-wrap: nowrap;
@@ -1421,6 +1426,19 @@ pre {
margin-top: 0;
}
}
button {
font-size: 1.4rem;
border-bottom: 1px solid #000;
cursor: pointer;
+ button {
margin-left: 2rem;
@include tablet {
margin-left: 3rem;
margin-top: 0;
}
}
}
}
}
@@ -2974,12 +2992,20 @@ pre {
li {
border: 1px solid #dedede;
border-radius: 0.6rem;
overflow: hidden;
.cartItemWrap {
display: flex;
padding: 2rem;
padding-left: 2rem;
.reviewList & {
flex-direction: column;
@include tablet {
flex-direction: row;
}
}
@include maxmobile {
flex-wrap: wrap;
}
@@ -3414,10 +3440,47 @@ pre {
padding: 2rem;
}
.componentsReview-heder {
display: flex;
align-items: center;
}
.date {
padding-top: 0.2rem;
font-size: 1.4rem;
color: #676767;
}
.reviewBtn {
display: inline-flex;
justify-content: center;
align-items: center;
// width: 10rem;
padding: 0 1rem;
transition: 0.3s;
.icon-good {
width: 1.5rem;
height: 1.5rem;
background-image: url("/kr/assets/images/common/icon_good.svg");
background-repeat: no-repeat;
background-size: 100% auto;
}
.goodNum {
margin-left: 0.4rem;
padding-top: 0.4rem;
color: #9ea1a2;
font-size: 1.4rem;
font-weight: 600;
line-height: 2rem;
}
&.active {
.goodNum {
color: #000000;
}
}
}
.contents {
margin-top: 1.5rem;
@@ -4376,7 +4439,7 @@ pre {
width: 100%;
font-size: 1.4rem;
font-weight: 600;
color: #676767;
color: #000;
@include tablet {
max-width: 14rem;
@@ -4472,15 +4535,152 @@ pre {
}
dd.contentsWrap {
position: relative;
margin-top: 1.5rem;
flex-direction: column;
.wordCounter {
position: absolute;
bottom: 1.5rem;
right: 1.5rem;
justify-content: flex-end;
margin-top: 1rem;
font-size: 1.4rem;
color: #676767;
text-align: right;
em {
color: #9ea1a2;
}
}
}
}
.insertFile {
margin-top: 2rem;
dt {
width: 100%;
max-width: 100%;
margin-bottom: 1rem;
color: #000;
font-size: 1.4rem;
font-weight: 600;
em {
color: #9ea1a2;
}
}
}
.flieWarp {
display: block;
.fileList {
ul {
display: flex;
justify-content: space-between;
width: 100%;
gap: 1rem;
@include tablet {
justify-content: flex-start;
}
.imgItem {
overflow: hidden;
position: relative;
width: calc((100% - 30px) / 3);
border: 1px solid #dedede;
border-radius: 0.8rem;
@include tablet {
width: 16rem;
height: 16rem;
}
.itemWrap {
position: relative;
width: 100%;
padding-top: 100%;
.imgInput {
display: none;
}
.contents {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
cursor: pointer;
img {
width: 100%;
height: 100%;
object-fit: contain;
}
}
}
.delImg {
position: absolute;
display: none;
top: 1rem;
right: 1rem;
cursor: pointer;
}
}
}
}
.textInfo {
font-size: 1.4rem;
color: #9ea1a2;
margin-top: 1.5rem;
}
.fileAddBtn {
display: flex;
margin-top: 3rem;
flex-wrap: nowrap;
button,
label {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 5rem;
border: 1px solid #dedede;
cursor: pointer;
span {
font-weight: 600;
font-family: "KiaSignature";
color: #676767;
font-size: 1.4rem;
@include desktopMin {
font-size: 1.6rem;
}
}
.icon-reset {
width: 1.4rem;
height: 1.4rem;
background-image: url(../images/common/icon-reset.svg);
background-size: contain;
background-repeat: no-repeat;
}
.icon-plus {
width: 1.4rem;
height: 1.4rem;
background-image: url(../images/common/icon-bplus.svg);
background-size: contain;
background-repeat: no-repeat;
}
}
button + label {
margin-left: 1rem;
}
}
}