/* ============================================================
   评分星星样式 - 外部SVG文件方案
   创建日期：2026-03-08
   版本：v3.0
   ============================================================ */

/* 星星容器 */
.rating-stars, .rating-stars-sm {
    display: inline-flex;
    align-items: center;
}

.rating-stars {
    font-size: 18px;
}

.rating-stars-sm {
    font-size: 14px;
}

/* 单个星星 */
.rating-star {
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: 2px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* 满星 */
.rating-star.full {
    background-image: url("/static/images/star-full.svg");
}

/* 半星 */
.rating-star.half {
    background-image: url("/static/images/star-half.svg");
}

/* 空星 */
.rating-star.empty {
    background-image: url("/static/images/star-empty.svg");
}

/* ============================================================
   移动端适配
   ============================================================ */
@media (max-width: 768px) {
    .rating-stars {
        font-size: 16px;
    }
    .rating-stars-sm {
        font-size: 12px;
    }
}

/* ============================================================
   评分星星样式结束
   ============================================================ */
