@charset "UTF-8";

/* 全局按钮 */
/* grid局布 */
.triangle-down {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #333333;
  margin-left: 5px;
}

:root {
  /* 主题色，页面主要显示的颜色 */
  --theme: #ca8448;
  /* 激活色，点击、选中等状态下的颜色 */
  --active: #000000;
  /* 背景颜色 */
  --bg-color: #fffcf1;
}


/* 评分 */
.rate {
  overflow: hidden;
  display: flex;
}
.rate dl {
  display: flex;
  align-items: center;
}
.rate dl dd {
  width: 15px;
  height: 15px;
  margin-right: 3px;
  background-image: url("/static/home/images/start.png");
  background-size: 15px 15px;
  background-repeat: no-repeat;
}
.rate dl dd.active {
  background-image: url("/static/home/images/started.png");
}
.rate .score {
  color: #333333;
  margin-left: 2px;
  margin-top: 2px;
}