포토리뷰 작업 중

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

@@ -1306,6 +1306,8 @@ pre {
width: 100%;
margin: 0 auto;
margin-top: 5rem;
padding-top: 2rem;
border-top: 1px solid #dedede;
}
@media (min-width: 768px) {
.contentWarp .mypageWarp .rightConWarp .carswBtn {
@@ -1315,6 +1317,9 @@ pre {
.contentWarp .mypageWarp .rightConWarp .carswBtn .towButton {
display: flex;
flex-wrap: wrap;
flex-direction: row;
justify-content: flex-end;
align-items: center;
}
@media (min-width: 768px) {
.contentWarp .mypageWarp .rightConWarp .carswBtn .towButton {
@@ -1330,6 +1335,20 @@ pre {
margin-top: 0;
}
}
.contentWarp .mypageWarp .rightConWarp .carswBtn .towButton button {
font-size: 1.4rem;
border-bottom: 1px solid #000;
cursor: pointer;
}
.contentWarp .mypageWarp .rightConWarp .carswBtn .towButton button + button {
margin-left: 2rem;
}
@media (min-width: 768px) {
.contentWarp .mypageWarp .rightConWarp .carswBtn .towButton button + button {
margin-left: 3rem;
margin-top: 0;
}
}
.contentWarp .mypageWarp .rightConWarp .itemCancel {
border: 1px solid #dedede;
border-radius: 0.6rem;
@@ -2782,12 +2801,21 @@ pre {
.productListWarp .productLis ul li {
border: 1px solid #dedede;
border-radius: 0.6rem;
overflow: hidden;
}
.productListWarp .productLis ul li .cartItemWrap {
display: flex;
padding: 2rem;
padding-left: 2rem;
}
.reviewList .productListWarp .productLis ul li .cartItemWrap {
flex-direction: column;
}
@media (min-width: 768px) {
.reviewList .productListWarp .productLis ul li .cartItemWrap {
flex-direction: row;
}
}
@media (max-width: 501px) {
.productListWarp .productLis ul li .cartItemWrap {
flex-wrap: wrap;
@@ -3225,10 +3253,40 @@ pre {
padding: 2rem;
}
}
.productListWarp .productLis ul li .componentsReview .componentsReview-heder {
display: flex;
align-items: center;
}
.productListWarp .productLis ul li .componentsReview .date {
padding-top: 0.2rem;
font-size: 1.4rem;
color: #676767;
}
.productListWarp .productLis ul li .componentsReview .reviewBtn {
display: inline-flex;
justify-content: center;
align-items: center;
padding: 0 1rem;
transition: 0.3s;
}
.productListWarp .productLis ul li .componentsReview .reviewBtn .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;
}
.productListWarp .productLis ul li .componentsReview .reviewBtn .goodNum {
margin-left: 0.4rem;
padding-top: 0.4rem;
color: #9ea1a2;
font-size: 1.4rem;
font-weight: 600;
line-height: 2rem;
}
.productListWarp .productLis ul li .componentsReview .reviewBtn.active .goodNum {
color: #000000;
}
.productListWarp .productLis ul li .componentsReview .contents {
margin-top: 1.5rem;
font-size: 1.6rem;
@@ -3959,7 +4017,7 @@ pre {
width: 100%;
font-size: 1.4rem;
font-weight: 600;
color: #676767;
color: #000;
}
@media (min-width: 768px) {
.reviewWarp dl dt {
@@ -4054,16 +4112,146 @@ pre {
}
}
.reviewWarp dl dd.contentsWrap {
position: relative;
margin-top: 1.5rem;
flex-direction: column;
}
.reviewWarp dl dd.contentsWrap .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;
}
.reviewWarp dl dd.contentsWrap .wordCounter em {
color: #9ea1a2;
}
.reviewWarp .insertFile {
margin-top: 2rem;
}
.reviewWarp .insertFile dt {
width: 100%;
max-width: 100%;
margin-bottom: 1rem;
color: #000;
font-size: 1.4rem;
font-weight: 600;
}
.reviewWarp .insertFile dt em {
color: #9ea1a2;
}
.reviewWarp .flieWarp {
display: block;
}
.reviewWarp .flieWarp .fileList ul {
display: flex;
justify-content: space-between;
width: 100%;
gap: 1rem;
}
@media (min-width: 768px) {
.reviewWarp .flieWarp .fileList ul {
justify-content: flex-start;
}
}
.reviewWarp .flieWarp .fileList ul .imgItem {
overflow: hidden;
position: relative;
width: calc((100% - 30px) / 3);
border: 1px solid #dedede;
border-radius: 0.8rem;
}
@media (min-width: 768px) {
.reviewWarp .flieWarp .fileList ul .imgItem {
width: 16rem;
height: 16rem;
}
}
.reviewWarp .flieWarp .fileList ul .imgItem .itemWrap {
position: relative;
width: 100%;
padding-top: 100%;
}
.reviewWarp .flieWarp .fileList ul .imgItem .itemWrap .imgInput {
display: none;
}
.reviewWarp .flieWarp .fileList ul .imgItem .itemWrap .contents {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
cursor: pointer;
}
.reviewWarp .flieWarp .fileList ul .imgItem .itemWrap .contents img {
width: 100%;
height: 100%;
-o-object-fit: contain;
object-fit: contain;
}
.reviewWarp .flieWarp .fileList ul .imgItem .delImg {
position: absolute;
display: none;
top: 1rem;
right: 1rem;
cursor: pointer;
}
.reviewWarp .flieWarp .textInfo {
font-size: 1.4rem;
color: #9ea1a2;
margin-top: 1.5rem;
}
.reviewWarp .flieWarp .fileAddBtn {
display: flex;
margin-top: 3rem;
flex-wrap: nowrap;
}
.reviewWarp .flieWarp .fileAddBtn button,
.reviewWarp .flieWarp .fileAddBtn label {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 5rem;
border: 1px solid #dedede;
cursor: pointer;
}
.reviewWarp .flieWarp .fileAddBtn button span,
.reviewWarp .flieWarp .fileAddBtn label span {
font-weight: 600;
font-family: "KiaSignature";
color: #676767;
font-size: 1.4rem;
}
@media (min-width: 1025px) {
.reviewWarp .flieWarp .fileAddBtn button span,
.reviewWarp .flieWarp .fileAddBtn label span {
font-size: 1.6rem;
}
}
.reviewWarp .flieWarp .fileAddBtn button .icon-reset,
.reviewWarp .flieWarp .fileAddBtn label .icon-reset {
width: 1.4rem;
height: 1.4rem;
background-image: url(../images/common/icon-reset.svg);
background-size: contain;
background-repeat: no-repeat;
}
.reviewWarp .flieWarp .fileAddBtn button .icon-plus,
.reviewWarp .flieWarp .fileAddBtn label .icon-plus {
width: 1.4rem;
height: 1.4rem;
background-image: url(../images/common/icon-bplus.svg);
background-size: contain;
background-repeat: no-repeat;
}
.reviewWarp .flieWarp .fileAddBtn button + label {
margin-left: 1rem;
}
.comp_mypage_user_guide {
display: flex;