* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: Roboto, Helvetica, Arial, sans-serif; */
}
li {
  list-style: none;
}

/* 左右24px */
.score {
  margin: 10px 0px 30px;
}

.scoreTop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  /* background-color: skyblue; */
}

.scoreTop-left,
.scoreTop-right {
  display: flex;
  align-items: center;
}

.scoreTop-left span {
  font-size: 22px;
  font-weight: 500;
  color: #202124;
}

.scoreTop .scoreTop-left .material-icons {
  margin-top: 3px;
  font-size: 20px;
  color: #5f6368;
  user-select: none;
}

.img-wrapper {
  width: 48px;
  height: 48px;
  margin-right: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 6px;
  cursor: pointer;
  /* transition: all 0.2s ease; */
}

.score .img-wrapper:active {
  background-color: rgb(224, 224, 224); /* 淡灰色背景 */
}

.img-wrapper:hover {
  background-color: #f5f5f5; /* 淡灰色背景 */
}

.scoreTop .scoreTop-right .material-icons {
  margin-left: 8px;
  font-size: 16px;
  color: #3f4449;
}

.scoreTop .scoreTop-right {
  padding: 12px 6px;
  border-radius: 8px;
  user-select: none;
  width: fit-content;
}

.scoreTop-right span {
  font-size: 14px;
  cursor: pointer;
  color: #5f6368;
}

.scoreTop .scoreTop-right:hover {
  background-color: #f5f5f5; /* 淡灰色背景 */
}

.score .scoreTop .scoreTop-right:active {
  background-color: rgb(224, 224, 224);
}
/* tab栏 */
.score .tabList ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.score .tabList ul li {
  padding: 0px 18px;
  height: 30px;
  line-height: 30px;
  flex-shrink: 0;
  /* gap: 10px; */
  border: 1px solid rgb(207, 212, 219);
  border-radius: 20px;
  list-style: none;
  font-size: 13px;
  font-weight: 500;
  color: #5f6368;
  cursor: pointer;
}

.score .tabList ul li:hover {
  background-color: rgb(245, 245, 245);
}

.score .tabList ul li:active {
  background-color: #e0e0e0;
}

.score .tabList ul li span {
  margin-left: 8px;
}

/* li点击后 */
.score .tabList ul li.active {
  position: relative;
  color: #056449;
  background-color: #e6f3ef;
  border: 0px;
}

.ios .score .tabList ul li.active {
  position: relative;
  color: #01579b;
  background-color: #e6f3ef;
  border: 0px;
}

.score .tabList ul li.active:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.05);
  /* 这个元素将不会响应任何鼠标事件，鼠标事件会“穿透”它，作用于它下方的元素。  */
  pointer-events: none;
  border-radius: 20px;
}

/* 底部评分 */
.scoreBottom {
  display: flex;
  align-items: center;
  margin-top: 35px;
  width: 100%;
}

.scoreBottom-left {
  width: 110px;
  min-width: 110px;
}
.scoreBottom-left h1 {
  color: #202124;
  font-size: 56px;
  font-weight: 400;
  margin-bottom: -8px;
}

.scoreBottom .start {
  margin-bottom: 8px;
}
.scoreBottom-left .start .fa-star {
  color: #01875f;
  font-size: 11px;
}

.ios .scoreBottom-left .start .fa-star {
  color: #0070c9;
  font-size: 11px;
}

.scoreBottom-left .text span {
  font-size: 12px;
  color: #5f6368;
}

.scoreBottom-right {
  width: 100%;
  margin-bottom: 18px;
}

.scoreBottom-right ul li {
  display: flex;
  align-items: center;
}

.scoreBottom-right ul li span {
  margin-right: 16px;
  font-size: 12px;
  color: #5f6368;
}

progress {
  width: 100%;
  height: 10px;
  border-radius: 10px; /* 圆角 */
  overflow: hidden;
  appearance: none; /* 去除默认样式 */
}

progress::-webkit-progress-bar {
  background-color: #eee;
  border-radius: 10px;
}

progress::-webkit-progress-value {
  background-color: #01875f;
  border-radius: 10px;
}

progress::-moz-progress-bar {
  background-color: #01875f;
  border-radius: 10px;
}

.ios progress::-webkit-progress-value {
  background-color: #0070c9;
  border-radius: 10px;
}

.ios progress::-moz-progress-bar {
  background-color: #0070c9;
  border-radius: 10px;
}

@media (max-width: 1280px) {
  .scoreTop-left span {
    font-size: 18px;
  }

  .scoreTop-right span {
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .scoreTop {
    display: block;
  }

  .scoreTop-left {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .scoreTop-left img {
    text-align: right;
  }

  .score .scoreTop-right {
    padding: 12px 0px 12px;
  }
}
