.news-banner {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.banner-desc {
  position: absolute;
  left: calc(50% - 600px);
  top: 190px;
  margin: 0 auto;
  font-size: 34px;
  line-height: 49px;
}

.news-details-box {
  margin-top: 8px;
}

.tab-list {
  display: flex;
  border-bottom: 1px solid #E5E5E5;
  margin: 0 auto;
}

.tab-list .tab-item {
  position: relative;
  padding: 18px 0;
  margin-right: 50px;
  cursor: pointer;
}

.tab-list .tab-item.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: #EA5506;
}

.news-list-wrapper {
  margin: 30px auto;
}
.news-list-wrapper .news-list{
  display: none;
}
.news-list-wrapper .active {
  display: flex;
  flex-wrap: wrap;
}
.news-list-wrapper .news-list img{
  width: 100%;
  height: 100%;
  object-fit: cover;     /* 保持比例，从中心裁剪填充 */
  object-position: center; /* 确保从中间开始（默认就是 center，可省略） */
}
.news-conetent-wraper a{
  color: #000;
  text-decoration:none;
}
