
.book .header {
  border-bottom: 1px solid #eee;
}


.book .book-box .con {
	justify-content: flex-start;
}
.book .book-box .con .con-title {
  width: 200px;
}

.book .book-box .book-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 40px;
  padding: 20px 0;
}

.book .book-box .book-list .item {
  box-sizing: border-box;
  width: 200px;
  height: 243px;
  padding: 15px 20px 10px;
  text-align: center;
  border-radius: 20px;
  transition: all 0.2s linear;
}

.book .book-box .book-list .item:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.book .book-box .book-list .item .img {
  display: inline-block;
  width: 117px;
  height: 171px;
  object-fit: contain;
}

.book .book-box .book-list .item .name {
  display: -webkit-box;
  padding-top: 3px;
  overflow: hidden;
  color: #666;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.book .book-detail .container {
  padding-top: 20px;
  padding-bottom: 20px;
}

.book .book-detail .detail {
  display: flex;
}

.book .book-detail .detail .img-con {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 194px;
  height: 234px;
  border: 1px solid #eee;
  border-radius: 10px;
}

.book .book-detail .detail .img-con .img {
  width: 197px;
  height: 203px;
  object-fit: contain;
}

.book .book-detail .detail .detail-r {
  position: relative;
  flex: 1;
  padding: 0 50px 0 30px;
  line-height: 25px;
}

.book .book-detail .detail .detail-r .title {
  margin: 0;
  padding-top: 10px;
  color: #333;
  font-weight: 400;
  font-size: 22px;
}

.book .book-detail .detail .detail-r .info {
  display: flex;
  flex-wrap: wrap;
  width: 700px;
  margin: 18px 0;
  padding: 10px;
  background: linear-gradient(90deg, #f6f6f6, #fff);
  border-radius: 10px;
}

.book .book-detail .detail .detail-r .info .des {
  position: relative;
  box-sizing: border-box;
  width: 45%;
  padding-right: 20px;
  overflow: hidden;
  color: #666;
  font-size: 14px;
  line-height: 22px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.book .book-detail .detail .detail-r .info .des span {
  color: #333;
}

.book .book-detail .detail .detail-r .btn {
  position: absolute;
  bottom: 15px;
  left: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 175px;
  height: 40px;
  color: #fff;
  font-size: 18px;
  background: #ff4500;
  border-radius: 20px;
  cursor: pointer;
}
