.book-list {
  flex-wrap: wrap;
  justify-content: center;
}

.book-border {
  width: 310px;
  height: 410px;
  background: #f9f9f9;
  border: 20px solid #f9f9f9;
  transition: transform 0.3 ease;
}

.book-item:hover .book-border {
  border: 20px solid #df0014;
}

.book-item {
  margin-right: 75px;
  margin-bottom: 75px;
  cursor: pointer;
}
.book-item:nth-child(3n + 3) {
  margin: 0;
}

.book-item:hover .book-border {
  transform: scale(1.1);
}

.book-img {
  display: block;
  width: 100%;
  height: 100%;
}

.book-title {
  font-size: 20px;
  font-weight: bold;
  color: #333333;
  text-align: center;
  margin-top: 27px;
}

.book-item:hover .book-title {
  color: #df0014;
}

#magazine-box {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.magazine-actions {
  display: flex;
  justify-content: space-around;
  margin-top: 25px;
}
.action {
  width: 100px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #f9f9f9;
  border-radius: 20px;
  cursor: pointer;
}
.action-active {
  background: #df0014;
  color: #ffffff;
}
.action:hover {
  background: #df0014;
  color: #ffffff;
}

.arrow-left {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
}

.arrow-right {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}
