/* 新闻列表区域 */
.news-list-section {
  padding: 80px 0 30px;
  background: #fff;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* 新闻项 */
.news-item {
  display: flex;
  background: #f9f9f9;
  transition: all 0.4s ease;
  position: relative;
}
.news-item:nth-child(2n){
  flex-direction: row-reverse;
}

.news-item:hover {
  transform: translateX(10px);
}

/* 新闻图片 */
.news-image {
  flex-shrink: 0;
  width: 605px;
  height: 370px;
  overflow: hidden;
  position: relative;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.news-item:hover .news-image img {
  transform: scale(1.1);
}

/* 新闻内容 */
.news-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 40px 75px;
  position: relative;
}

/* 日期 */
.news-date {
  font-size: 18px;
  color: #999;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

/* 标题 */
.news-title {
  font-size: 25px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 30px;
  line-height: 1.4;
  transition: color 0.3s ease;
  /* 一行超出显示省略号 */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-item:hover .news-title {
  color: #0168b7;
}

/* 描述 */
.news-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 45px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 链接按钮 */
.news-link {
  width: 44px;
  height: 44px;
  border: 2px solid #004E8C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background: #fff;
}

.news-item:hover .news-link {
  background: #004E8C;
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 78, 140, 0.3);
}

/* 链接图标（箭头） */
.news-link .link-icon {
  width: 12px;
  height: 12px;
  border-right: 2px solid #004E8C;
  border-bottom: 2px solid #004E8C;
  transform: rotate(-45deg);
  transition: all 0.3s ease;
  position: relative;
  margin-left: -5px;
}

.news-item:hover .news-link .link-icon {
  border-color: #fff;
}

/* 平板响应式 */

@media (max-width: 1600px) {
}
@media (max-width: 1440px) {
.news-image {
    width:500px;
    height: 328px;
}
}
@media (max-width: 1200px) {
  .news-image {
      width:400px;
      height: 327px;
  }
  .news-title {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .news-date {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .news-list-section {
    padding: 60px 0 40px;
  }

  .news-list {
    gap: 35px;
  }

  .news-image {
    width: 380px;
    height: 250px;
  }

  .news-title {
    font-size: 20px;
  }

  .news-desc {
    font-size: 13px;
  }


  .news-content {
    padding: 30px 35px;

  }
.news-desc {
    margin-bottom: 25px;
}
.news-link {
    width: 34px;
    height: 34px;
}

.news-link .link-icon {
    width: 8px;
    height: 8px;
  }

}

@media (max-width: 991px) {

}
/* 移动端 */
@media screen and (max-width: 768px) {
  .news-item:nth-child(2n) {
    flex-direction: column;
}
  .news-list-section {
    padding: 50px 0;
  }

  .news-list {
    gap: 30px;
  }

  .news-item {
    flex-direction: column;
    gap: 10px;
  }

  .news-item:hover {
    transform: translateY(-5px);
  }

  .news-image {
    width: 100%;
    height: 220px;
  }

  .news-content {
    padding: 10px 15px;
  }

  .news-date {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .news-title {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .news-desc {
    font-size: 13px;
    margin-bottom: 20px;
    -webkit-line-clamp: 4;
  }

  .news-link {
    bottom: 10px;
    width: 36px;
    height: 36px;
    display: none;
  }

  .news-link .link-icon {
    width: 10px;
    height: 10px;
  }
}

/* 小屏手机 */
@media screen and (max-width: 480px) {
  .news-list-section {
    padding: 40px 0;
  }

  .news-image {
    height: 200px;
  }

  .news-title {
    font-size: 16px;
  }

  .news-desc {
    font-size: 12px;
  }
}
