body {
  margin: 0;
  font-family: monospace;
}
.slider {
  width: 1300px;
  max-width: 100vw;
  height: 700px;
  margin: auto;
  position: relative;
  overflow: hidden;
}
.list {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  width: max-content;
  transition: 1s;
}

.list img {
  width: 1300px;
  max-width: 100vw;
  height: 90%;
  object-fit: cover;
}

/* 按鈕位置 */
.buttons {
  position: absolute;
  /* top: 45%; */
  bottom: 10px;
  left: 35%;
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* 按鈕 */
.buttons button {
  width: 50px;
  height: 50px;
  font-size: 30px;
  border-radius: 10px;
  background-color: rgb(141, 28, 28);
  color: #fff;
  border: none;
  font-family: monospace;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* dot位置 */
.slider .dots {
  position: absolute;
  bottom: 10px;
  color: #fff;
  left: 40%;
  width: 20%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}
/* dot */
.slider .dots li {
  list-style: none;
  width: 15px;
  height: 15px;
  background-color: #98959583;
  margin: 20px;
  border-radius: 20px;
  transition: 1s;
}
.slider .dots li.active {
  /* width: 30px; */
  background-color: rgb(141, 28, 28);
}
