/* 淘宝标签样式（右上角） */
.platform-badge.taobao {
    background: linear-gradient(135deg, #ff6900, #ff4500);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* 评价卡片内的图片行样式 */
.testimonial-images-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
    flex-wrap: wrap;
}

.testimonial-images-row img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-images-row img:hover {
    transform: scale(1.05);
    border-color: #ff6900;
    box-shadow: 0 4px 12px rgba(255, 105, 0, 0.2);
}

.testimonial-images-row .image-hint {
    font-size: 11px;
    color: #9ca3af;
    font-style: italic;
    margin-left: auto;
}


/* 图片预览模态框 */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    padding: 20px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 45px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-modal:hover {
    color: #ff6900;
}

/* 淘宝按钮保持与其他按钮一致的样式 */

/* 响应式优化 */
@media (max-width: 768px) {
    .testimonial-images-row {
        justify-content: flex-start;
    }
    
    .testimonial-images-row img {
        width: 80px;
        height: 80px;
    }
    
    .testimonial-images-row .image-hint {
        width: 100%;
        margin-top: 8px;
        margin-left: 0;
        text-align: center;
    }
    
    .view-more-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .view-more-btn {
        width: 100%;
        justify-content: center;
    }
}