
.commentsBox {
    overflow: hidden;
}
.commentsBoxCaptionWrap {
    margin-bottom: 24px;
    padding-bottom: 15px;
    justify-content: space-between;
}
.commentsBoxCaption {
    font-size: 20px;
}
.commentInput {
    width: 100%;
    resize: none;
    height: 90px;
    padding: 10px;
    border: 1px solid #E5E5E5;
    background-color: #F8F8F8;
}
.publishCommentBtn {
    width: 80px;
    height: 30px;
    font-size: 14px;
    text-align: center;
    line-height: 30px;
    border-radius: 2px;
    background: var(--themeLinearColor);
    color: #ffffff;
    cursor: pointer;
}

.comment {
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 0px;
    border-bottom: 1px solid #E5E5E5;
}
.comment:last-child {
    border-bottom: 0px;
}
.commenterPhoto {
    width: 40px;
    height: 40px;
    margin-right: 20px;
    border-radius: 100%;
}
.commentBox {
    width: calc(100% - 60px);
}
.commentBoxHead {
    justify-content: space-between;
    margin-bottom: 16px;
}
.commenterNameBox {
    justify-content: flex-start;
}
.commenterName {
    margin-bottom: 6px;
    justify-content: flex-start;
    font-size: 16px;
}
.commentTime {
    font-size: 12px;
    color: #CCCCCC;
}
.commentOpt {
    margin-left: 20px;
    padding-left: 22px;
    line-height: 20px;
    font-size: 12px;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 16px auto;
    color: #999999;
    cursor: pointer;
}
.delComment {
    background-image: url(img/delete.svg);
}
.starComment {
    background-image: url(img/commentStar.svg);
}
.starComment.islike {
    background-image: url(img/commentStarActive.svg);
}
.replyComment {
    margin-left: 25px;
    background-image: url(img/commentReply.svg);
}
.commentContent {
    font-size: 14px;
    line-height: 28px;
    color: #666666;
}
.replyBox {
    margin-top: 18px;
    padding: 10px;
    border-radius: 4px;
    background-color: #F8F8F8;
}
.replyBox:empty {
    display: none;
}
.replyItem {
    margin-bottom: 12px;
    padding-bottom: 12px;
    font-size: 14px;
    line-height: 28px;
    border-bottom: 1px solid #E5E5E5;
}
.replyItem:last-child {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: 0px;
}
.replyName {
    color: #000000;
}
.replyContent {
    font-size: 14px;
    line-height: 28px;
    color: #666666;
}
.replyTime {
    justify-content: space-between;
}
.replyTimeText {
    font-size: 12px;
    color: #AAAAAA;
}
.replyInputBox {
    display: none;
    margin-top: 16px;
}
.replyBtns {
    justify-content: flex-end;
    margin-top: 16px;
}
.replyBtn {
    width: 80px;
    height: 30px;
    margin-left: 16px;
    font-size: 14px;
    border: 1px solid E5E5E5;
    border-radius: 2px;
    background-color: #F8F8F8;
    cursor: pointer;
}
.publishReplyBtn {
    background-color: var(--themeColor);
    color: #ffffff;
    cursor: pointer;
}
.moreReplyTip {
    margin-top: 10rpx;
    font-size: 16px;
    color: var(--themeColor);
}