.new-book-express {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.new-book-express .content {
  width: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.new-book-express .specContent {
  background-color: #f6f6f6;
}
.new-book-express .container {
  width: var(--container-width);
}
.new-book-express .title {
  width: 100%;
  height: 125px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.new-book-express .title .name {
  font-size: 32px;
  color: #282828;
  display: flex;
  align-items: center;
}
.new-book-express .title .name span {
  margin-left: 8px;
}
.new-book-express .title .more {
  font-size: 18px;
  color: #282828;
  display: flex;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none; /* 添加这行以支持 Safari */
  user-select: none;
}
.new-book-express .title .more svg {
  color: #ccc;
  margin-left: 5px;
}
.new-book-express .booksList {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 70px;
}
.new-book-express .booksList .item {
  background-color: #f6f6f6;
  width: 268px;
  height: 432px;
  padding: 35px 40px;
  margin-bottom: 25px;
  cursor: pointer;
}
.new-book-express .booksList .specItem {
  background-color: #fff;
}
.new-book-express .booksList .item .image {
  width: 188px;
  height: 240px;
}
.new-book-express .booksList .item .image img {
  width: 100%;
  height: 100%;
}
.new-book-express .booksList .item .info .bookTitle {
  font-size: 18px;
  color: #282828;
  margin-top: 10px;
}
.new-book-express .booksList .item .info .author {
  font-size: 16px;
  color: #727171;
  margin-top: 8px;
}
.new-book-express .booksList .item .info .price {
  font-size: 20px;
  color: #fd110c;
  margin-top: 10px;
}
