.star-rating-display {
    /* display: inline-block; */
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
  }
  
  .stars {
    font-size: 20px; /* 星星大小 */
    margin-right: 21px;
  
  }

  .star {
    position: relative;
    color: #D9D9D9; /* 默认颜色 */
  }

  .star::before {
    content: '★';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #FFB139; /* 高亮颜色 */
    clip-path: polygon(var(--path, 0 0, 0 0));
  }
  
  .star.full {
    color: #FFB139; /* 高亮颜色 */
  }

.stars-content{
  color: rgba(var(--color-text), 1);
}


  /* .star.partial::after {
    content: '';
    display: inline-block;
    width: 2px;
    background-color: #ccc; /* 默认颜色 */
@media (max-width: 959px) {
  .stars {
    margin-right: 8px;
  }
}