.productDetails {
  height: 100%;
  width: 100%;
  font-family: Microsoft YaHei, Microsoft YaHei;
  background: #f8f8f8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.productDetails a {text-decoration: none;color: unset;}
.whitePaper {display: flex;width: 1200px;margin-top: 30px;}
.wp-left {width: 600px; height: 450px;}
.wp-left img{width: 100%; height: 100%;}
.wp-right {
  width: 600px;
  /* flex: 1; */
  height: 450px;
  background: #FFFFFF;
  padding: 30px;
  box-sizing: border-box;
}

.wp-right .paper_title {font-weight: bold;font-size: 32px;color: #000000;line-height: 18px;padding-bottom: 20px;text-align: center;}

.wp-right .text {
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  line-height: 30px;
  text-align: left;
  white-space: normal;

}

.wp-right .t2 {
  padding-top: 20px;
}

.wp-right .btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
}

.wp-right .btns .btn {
  height: 40px;
  line-height: 40px;
  background: #FFFFFF;
  border-radius: 100px 100px 100px 100px;
  border: 1px solid #333333;
  padding: 0px 20px;
  cursor: pointer;
  user-select: none;
}

.wp-right .btns .collect {
  width: 70px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 40px 40px 40px 40px;
  border: 1px solid #E5E5E5;
  cursor: pointer;
  user-select: none;
}

.d-introduction {
  margin-top: 30px;
  width: 1200px;
  background: #FFFFFF;
}

.d-int-title {
  height: 46px;
  background: #EEEEEF;
}

.d-int-title span {
  display: inline-block;
  width: 160px;
  height: 46px;
  background: #383838;
  font-weight: 400;
  font-size: 18px;
  color: #FFFFFF;
  line-height: 40px;
  text-align: center;
}

.d-introduction .info {
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  line-height: 30px;
  text-align: left;
  padding: 30px;
}

.d-introduction .info .bold {
  font-weight: bold;
}

/* 推荐产业白皮书 */
.recommend {
  height: 891px;
  width: 100%;
  background: #F1F1F1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.enTitle {
  font-weight: bold;
  font-size: 40px;
  color: #333333;
  margin: 0;
  padding-top: 58px;
  padding-bottom: 16px;
}

.enText {
  font-weight: 400;
  font-size: 18px;
  color: #999999;
  line-height: 20px;
  margin: 0;
  padding-bottom: 30px;
}

.industryBox {
  display: flex;
  flex-wrap: wrap;
  /* 允许换行 */
  gap: 24px;
  /* 可选：卡片之间的间距 */
  width: 1200px;
}

.industryCard {
  width: 384px;
  height: 574px;
  background-color: #ffffff;
}

.industryCard img {
  height: 344px;
  width: 100%;
}

.industryCardContext {
  padding: 20px 24px;
}

.industryCardContext .title {
  font-weight: bold;
  font-size: 18px;
  color: #000000;
  line-height: 15px;
  padding-bottom: 14px;
  text-align: left;
}

.industryCardContext .text {
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  line-height: 24px;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: normal;
  word-break: break-all;
  -webkit-line-clamp: 3;
}

.industryCard .view {
  font-weight: 400;
  font-size: 14px;
  color: #F76217;
  line-height: 20px;
  text-align: left;
  padding-top: 19px;
  cursor: pointer;
  user-select: none;
}

.viewMore {
  width: 200px;
  height: 48px;
  text-align: center;
  line-height: 48px;
  border-radius: 100px 100px 100px 100px;
  border: 1px solid #333333;
  margin-top: 30px;
  cursor: pointer;
  user-select: none;
}

.viewMore:hover {
  background-color: #f76217;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.collect.collected .layui-icon {
  color: #FFD700;
  /* 收藏时图标颜色 */
}

.collect.collected span {
  color: #FF5722;
  /* 收藏时文字颜色 */
}