/* 评论图片上传样式 */
.wvr-review-images {
    margin: 15px 0;
}

.wvr-review-images label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.wvr-image-upload-container {
    margin-bottom: 15px;
}

.wvr-image-upload {
    display: block;
    margin-bottom: 10px;
}

/* 图片预览样式 */
.wvr-image-preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.wvr-image-preview {
    position: relative;
    width: 80px;
    height: 80px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.wvr-image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wvr-image-preview-remove {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    cursor: pointer;
}

/* 评论图片展示样式 */
.wvr-review-images-display {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.wvr-review-image {
    width: 100px;
    height: 100px;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
}

.wvr-review-image-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.wvr-review-image-link:hover .wvr-review-image-thumb {
    transform: scale(1.05);
}

/* 响应式样式 */
@media (max-width: 768px) {
    .wvr-review-images-display {
        gap: 5px;
    }
    
    .wvr-review-image {
        width: 80px;
        height: 80px;
    }
}