
@font-face {font-family: 'global_iconfont';
  src: url('/fonts/global/iconfont.woff') format('woff'), /* chrome、firefox */
  url('/fonts/global/iconfont.ttf') format('truetype'); /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
}


.global_iconfont {
  font-family: "global_iconfont";
  font-size: 1rem;
  font-style:normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}

.icon-wujiaoxing:before {
  content: "\e676";
}


.star-rating {
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
}

.star-container {
  position: relative;
  cursor: pointer;
  margin-right: 2px;
  user-select: none;
  display: inline-block;
  width: 1em;
  height: 1em;
  transition: all 0.3s;
  align-items: center;
  font-family: "Jost", "Helvetica", "Arial", "sans-serif";
}

.star-container.readonly {
  cursor: default;
}

.star-full {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  font-size: 1em;
}

.star-half {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 130%;
  clip-path: inset(0 0 0 0);
  transition: all 0.3s;
  font-size: 1em;
}

.rating-text {
  margin-left: 8px;
  font-size: 16px;
  color: black;
  margin-top: 20px;
}

@media all and (min-width: 768px) {
  .rating-text {
    font-size: 12px;
  }
  
}