/* review.css — 商品评价组件样式 */

/* ── 评价表单 ── */
.rvw-item-card {
    display: flex;
    gap: 12px;
    padding: 12px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    margin-bottom: 12px;
}
.rvw-item-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rvw-item-img img { width: 100%; height: 100%; object-fit: cover; }
.rvw-item-img i { color: #ccc; font-size: 1.5rem; }
.rvw-item-info { flex: 1; min-width: 0; }
.rvw-item-name { font-weight: 600; font-size: 0.9rem; color: #333; margin-bottom: 2px; }
.rvw-item-sku { font-size: 0.8rem; color: #999; margin-bottom: 8px; }
.rvw-item-rating { margin-top: 4px; }

/* ── 星星选择器 ── */
.rvw-stars-select { font-size: 1.2rem; cursor: pointer; }
.rvw-star { margin-right: 4px; transition: all 0.15s; color: #ddd; }
.rvw-star.text-warning { color: #ffc107; }
.rvw-star:hover { transform: scale(1.2); }

/* ── 评价列表 ── */
.rvw-summary {
    display: flex; gap: 20px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 16px;
}
.rvw-summary-score { text-align: center; flex-shrink: 0; }
.rvw-avg { font-size: 2rem; font-weight: 700; color: #ff6700; line-height: 1; }
.rvw-avg-stars { margin: 4px 0; font-size: 1rem; }
.rvw-total { font-size: 0.8rem; color: #999; }
.rvw-summary-dist { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.rvw-dist-row { display: flex; align-items: center; gap: 8px; }
.rvw-dist-label { font-size: 0.75rem; color: #999; width: 30px; }
.rvw-dist-bar {
    flex: 1; height: 8px; background: #eee; border-radius: 4px; overflow: hidden;
}
.rvw-dist-fill { height: 100%; background: #ffc107; transition: width 0.3s; }
.rvw-dist-count { font-size: 0.75rem; color: #999; width: 30px; text-align: right; }

.rvw-list { }
.rvw-review-item {
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}
.rvw-review-item:last-child { border-bottom: none; }
.rvw-review-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 6px;
}
.rvw-review-user { font-weight: 600; font-size: 0.85rem; color: #333; }
.rvw-review-stars { font-size: 0.8rem; }
.rvw-review-content {
    font-size: 0.85rem; color: #555; line-height: 1.5; margin-bottom: 6px;
    word-break: break-word;
}
.rvw-review-sku { font-size: 0.75rem; color: #aaa; margin-bottom: 4px; }
.rvw-review-time { font-size: 0.72rem; color: #ccc; }
.rvw-reply {
    background: #f8f9fa; border-radius: 6px; padding: 8px 12px;
    margin-top: 6px; font-size: 0.8rem; color: #666;
}
.rvw-reply i { color: #0d6efd; margin-right: 4px; }

.rvw-empty {
    text-align: center; padding: 40px 16px; color: #bbb;
}
.rvw-empty i { font-size: 2rem; display: block; margin-bottom: 8px; }
