.banner {
  width: 100%;
  height: 480px;
  position: relative;
  margin: 80px auto 0;
}

.banner_bg {
  width: 100%;
  height: 100%;
}

.banner_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner_text {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
}

.banner_text h2 {
  font-size: 50px;
  color: #0565C0;
  margin-bottom: 20px;
  font-weight: 700;
}

.banner_text p {
  font-size: 50px;
  color: #0565C0;
  font-weight: 700;
}

.news {
  padding: 100px 0;
  background-color: #fff;
}

.news .news_bd {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.news .news_bd .news_clearfix {
  flex: 1;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.news .news_bd .news_clearfix li {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 3px 5px 0px rgba(154, 154, 154, 0.25);
}

.news .news_bd .news_clearfix li a img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.news .news_bd .news_clearfix li a .news_p {
  padding:20px 15px 10px;
}

.news .news_bd .news_clearfix li a h4 {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 18px;
  color: #6E6F73;
  line-height: 25px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.news .news_bd .news_clearfix li a p {
  font-weight: 400;
  font-size: 16px;
  color: #6E6F73;
  line-height: 32px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

/* 响应式设计 - 与 home.css 断点一致 */

/* 1200px 以下 */
@media (max-width: 1200px) {

  /* Banner */
  .banner {
    height: 400px;
  }

  .banner_text h2 {
    font-size: 40px;
  }

  .banner_text p {
    font-size: 40px;
  }

  /* 新闻中心 */
  .news .news_bd {
    flex-direction: column;
  }

  .news .news_bd .news_clearfix {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 992px 以下 */
@media (max-width: 992px) {

  /* Banner */
  .banner {
    height: 350px;
  }

  .banner_text {
    display: none;
  }


  /* 新闻中心 */
  .news {
    padding: 80px 0;
  }

  .news .news_bd .news_clearfix {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* 整体内边距 */
  .wrapper {
    padding: 0 25px;
  }
}

/* 768px 以下 */
@media (max-width: 768px) {

  /* Banner */
  .banner {
    height: 200px;
  }

  .banner_text {
    display: none;
  }


  /* 新闻中心 */
  .news {
    padding: 60px 0;
  }

  .news .news_bd .news_clearfix {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .news .news_bd .news_clearfix li a img {
    height: 290px;
  }

  .news .news_bd .news_clearfix li a .news_p {
    padding: 20px;
  }

  .news .news_bd .news_clearfix li a h4 {
    font-size: 16px;
    margin-bottom: 20px;
  }

  /* 整体内边距 */
  .wrapper {
    padding: 0 15px;
  }
}