.bookDetail {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bookDetail .container {
  width: var(--container-width);
}
.bookDetail .content {
  display: grid;
  grid-template-columns: 880px 1fr;
  align-items: start;
  margin-bottom: 20px;
}
.bookDetail .content .left {
  width: 880px;
  display: flex;
  flex-direction: column;
}
.bookDetail .content .left .book {
  width: 100%;
  min-height: 480px;
  background-color: #fff;
  display: flex;
  padding: 64px 0 0 57px;
  border-radius: 10px;
}
.bookDetail .content .left .book .book-image {
  width: 280px;
  height: 346px;
  background-color: #f6f6f6;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 60px;
}
.bookDetail .content .left .book .book-image img {
  width: 80%;
  height: 80%;
}
.bookDetail .content .left .book .book-info {
  height: 100%;
}
.bookDetail .content .left .book .book-info .book-title {
  font-size: 24px;
  color: #282828;
  font-weight: 600;
  min-height: 43px;
}
.bookDetail .content .left .book .book-info .item {
  margin-top: 12px;
  color: #6e6e6e;
  font-size: 16px;
}
.bookDetail .content .left .book .book-info .book-price span {
  color: #fd110c;
  font-size: 18px;
}
.bookDetail .content .left .book .book-info .buy {
  width: 200px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background-color: #2c97ec;
  color: #fff;
  border-radius: 10px;
  font-size: 20px;
  margin-top: 35px;
  cursor: pointer;
  -webkit-user-select: none; /* 添加这行以支持 Safari */
  user-select: none;
}
.bookDetail .content .left .introduction {
  height: 100%;
  background-color: #fff;
  margin-top: 20px;
  border-radius: 10px;
}
.bookDetail .content .left .introduction .tabs {
  height: 80px;
  display: flex;
  border: 1px solid #efefef;
}
.bookDetail .content .left .introduction .tabs .item {
  font-size: 20px;
  line-height: 90px;
  color: #aaaaaa;
  margin: 0 30px 0 50px;
  cursor: pointer;
  -webkit-user-select: none; /* 添加这行以支持 Safari */
  user-select: none;
}
.bookDetail .content .left .introduction .tabs .active {
  color: #000;
  position: relative;
}
.bookDetail .content .left .introduction .tabs .active::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: #2c97ec;
  border-radius: 8px;
}
.bookDetail .content .left .introduction .tab-view {
  min-height: 970px;
  padding: 50px;
  text-indent: 2em;
  line-height: 200%;
  font-size: 16px;
  color: #595959;
}
.bookDetail .content .left .introduction .tab-view img {
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  margin: 0 auto;
  text-indent: 0;
}
.bookDetail .content .right {
  flex: 1;
  height: 100%;
  background-color: #fff;
  margin-left: 20px;
}
.bookDetail .content .right .tabs {
  height: 70px;
  display: flex;
  border: 1px solid #efefef;
}
.bookDetail .content .right .tabs .tab {
  position: relative;
  font-size: 20px;
  line-height: 80px;
  color: #000;
  margin-left: 20px;
  cursor: pointer;
  -webkit-user-select: none; /* 添加这行以支持 Safari */
  user-select: none;
}
.bookDetail .content .right .tabs .tab::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: #3ecdcc;
  border-radius: 8px;
}
.bookDetail .content .right .booksList {
  padding: 0 20px;
}
.bookDetail .content .right .booksList .item {
  height: 150px;
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px dashed #ccc;
  -webkit-user-select: none; /* 添加这行以支持 Safari */
  user-select: none;
  cursor: pointer;
}
.bookDetail .content .right .booksList .item .image {
  width: 84px;
  height: 110px;
}
.bookDetail .content .right .booksList .item .image img {
  width: 100%;
  height: 100%;
}
.bookDetail .content .right .booksList .item .info {
  flex: 1;
  padding-left: 20px;
}
.bookDetail .content .right .booksList .item .info .title {
  font-size: 16px;
  color: #282828;
}
.bookDetail .content .right .booksList .item .info .author {
  font-size: 16px;
  color: #727171;
}
.bookDetail .content .right .booksList .item .info .price {
  font-size: 16px;
  color: #f00000;
}
