.news_main_box {
  padding: 0 13.5%;
  box-sizing: border-box;
}
.new_title {
  text-align: center;
  font-weight: 600;
  font-size: 32px;
  color: #000000;
  line-height: 45px;
  position: relative;
}
.soltSpan {
  position: absolute;
  bottom: -18px;
  width: 56px;
  height: 4px;
  background: #6f4f36;
  left: 50%; /* 左边距为50%，让元素位于容器的中间 */
  transform: translateX(-50%); /* 使用translateX(-50%)让元素居中 */
}
.new_card_box {
  margin-bottom: 60px;
}
.new_card {
  display: flex;
  max-height: 320px;
  box-sizing: border-box;
  background: #f8f7f5;
  padding: 30px 0;
  overflow: hidden;
  margin-top: 40px;
}
.new_card_img {
  width: 37.8%;
  box-sizing: border-box;
  padding: 0 30px;
  height: 260px;
}
.new_card_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.new_card_text {
  flex: 1;
  box-sizing: border-box;
  padding: 0 30px;
}
.new_card_title {
  display: inline-block;
  padding: 0 10px;
  height: 26px;
  line-height: 26px;
  background: #6f4f36;
  font-weight: 300;
  font-size: 12px;
  color: #ffffff;
}
.new_card_lable {
  margin: 20px 0;
  font-weight: 500;
  font-size: 22px;
  color: #000000;
  line-height: 30px;
}
.new_card_describe {
  font-weight: 300;
  font-size: 17px;
  color: #666666;
  overflow: hidden;       /* 隐藏超出的部分 */
  display: -webkit-box;   /* 使用弹性盒子布局 */
  text-overflow: ellipsis; /* 超出文本显示省略号 */
  -webkit-box-orient: vertical;  /* 设置为垂直排列 */
  -webkit-line-clamp: 6;  /* 限制文本最多显示 4 行 */
}
