/* 購買點數 */
.scroll-points {
  width: 100%;
  max-width: 1060px;
  font-size: 20px;
  font-weight: 700;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1000px) {
  .scroll-points {
    font-size: 18px;
  }
}
@media screen and (max-width: 769px) {
  .scroll-points {
    font-size: 16px;
  }
}
@media screen and (max-width: 560px) {
  .scroll-points {
    flex-direction: column;
    gap: 5px;
  }
}

.scroll-points-block {
  width: 100%;
  padding: 14px;
  display: flex;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  position: relative;
}
@media screen and (max-width: 560px) {
  .scroll-points-block {
    width: 90%;
  }
}

.scroll-points a {
  color: #fff;
  text-decoration: none;
}
.scroll-points a span {
  color: red;
  font-weight: 700;
}
/* 按鈕樣式 */
.scroll-points .close-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  background: none;
  border: none;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  padding: 5px;
}
.scroll-points .close-btn:hover {
  color: #e0d9d9;
}
@media screen and (max-width: 1000px) {
  .scroll-points .close-btn {
    font-size: 24px;
  }
}
@media screen and (max-width: 769px) {
  .scroll-points .close-btn {
    font-size: 20px;
  }
}