/* 评分整体 */
.mc-rating-rendered {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}

/* 星星容器 */
.mc-rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

/* 星星方块 */
.mc-rating-star {
  position: relative;
  width: 14px;
  height: 14px;
  background: #d8dde6;
  border-radius: 2px;
  overflow: hidden;
  display: inline-block;
}

/* 橙色填充 */
.mc-rating-star::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: #ff6a1a;
}

/* 满星 */
.mc-rating-star.is-full::before {
  width: 100%;
}

/* 半星 */
.mc-rating-star.is-half::before {
  width: 50%;
}

/* 白色星形 */
.mc-rating-star::after {
  content: "★";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -54%);
  font-size: 10px;
  line-height: 1;
  color: #fff;
  z-index: 2;
}

/* 评分数字 */
.mc-rating-number {
  font-size: 13px;
  color: #ff6a1a;
  font-weight: 500;
}