.news-section {
    padding: 101px 6vw 80px;
    background-color: #F8F8F7;
}

.news-wrapper{
  width: 180px;
  height: 34px;
  display: flex;

}

.news-heading{
  width: 96px;
  height: 24px;
  overflow-wrap: break-word;
  color: rgba(230, 130, 0, 1);
  font-size: 24px;
  text-align: left;
  line-height: 28px;
  margin-right: 5px;
}

.news-more {
 display: inline-block; /* 或 block，取决于布局需求 */
  width: 60px;
  height: 28px;
  overflow-wrap: break-word;
  color: rgba(94, 93, 92, 1);
  font-size: 15px;
  text-align: left;
  line-height: 22px;
  margin-top: 6px;
  margin-left: 10px;
  text-decoration: none; /* 去掉下划线 */
}

.line {
  width: 100%;
  height: 1pt;
  background-color: #5E5D5C;
  margin-top: 10px;
}

.news-theme {
    width: 100%;
    margin-top: 50px;
    
}
.news-card {
  overflow: hidden; /* 清除内部浮动 */
}



.news-title {
  text-align: left; /* 左对齐 */
  font-size: 24px;   /* 字号大小 */
  color: #5E5D5C;    /* 文字颜色 */
  font-weight: 500;
  margin-bottom: 30px; /* 可选：设置与内容的间距 */
  line-height: 1.2;  /* 可选：优化行高 */
  font-family: "Source Han Sans CN", sans-serif; /* 字体 */
}



.news-image {
  float: right;
  width: 625px;
  height: 400px;
  object-fit: cover;
  margin: 50px 0 20px 50px;
  /* 左上角 & 右下角圆角 */
  border-top-left-radius: 60px;  /* 左上角 */
  border-bottom-right-radius: 60px;  /* 右下角 */
  /* 可选：添加过渡效果让圆角更平滑（非必需） */
  transition: all 0.3s ease;
}

.news-img-1 {
    float: right;
    width: 639px;
    height: 360px;
    margin: 50px 0 0 50px;
    object-fit: cover;
}

.news-content {
  font-size: 16px; 
  color: #5E5D5C;
  line-height: 28px;
  text-indent: 2em;
}


.news-images2 {
  float: right;
  width: 650px;
  display: block;
  margin: 20px -5px 20px 50px;
  
}

.news-img-2 {
  width: 310px;
  height: 220px;
  display: inline-block;
  padding-left: 10px;
  padding-top: 10px;
}

.news-content2 p{
  font-size: 16px;     /* 字体大小 */
  color: #5E5D5C;      /* 文字颜色 */
  line-height: 28px;   /* 行高 */
  text-indent: 2em;
}

.news-text {
  margin-bottom: 30px; /* 文字距离图片底部至少 30px */
}

/* 在图片下方插入一个清除浮动的元素（可选） */
.news-card::after {
  content: "";
  display: table;
  clear: both;
}