.newsInformation-banner{
  width: 100%;
  padding-top: 1.32rem;
}
.newsInformation-banner img {
  width: 100%;
  object-fit: cover;
}


/* ================= 新闻资讯内容 ================= */

.news-section {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 1.5rem 0.3rem;
}

/* --- 分类导航 --- */
.news-tab {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.tab-item {
  width: 5rem;
  text-align: center;
  padding: 0.36rem 0;
  border-radius: 0.1rem;
  background: #f0f0f0;
  font-size: 0.34rem;
  cursor: pointer;
  transition: .3s;
}

.tab-item.active {
  background: #c72729;
  color: #fff;
}
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* --- 新闻列表 --- */
.news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 0.8rem;
}

.news-card img {
  width: 100%;
  height: 4rem;
  object-fit: cover;
/*  border-radius: 0.14rem;*/
}

.news-card .news-date {
  font-size: 0.32rem;
  font-weight: bold;
  margin: 0.3rem 0 0.2rem;
  color: #000;
}

.news-card .news-title {
  font-size: 0.28rem;
  color: #333;
}

/* --- 翻页区域 --- */
.news-pagination {
  margin-top: 1.4rem;
  text-align: center;
  font-size: 0.28rem;
}

.news-pagination a,
.news-pagination .current {
  display: inline-block;
  padding: 0.2rem 0.38rem;
  border: 1px solid #ddd;
  margin: 0 0.08rem;
  border-radius: 0.05rem;
  cursor: pointer;
}

.news-pagination .current {
  background: #c72729;
  color: #fff;
  border-color: #c72729;
}

.news-pagination .total {
  margin-left: 0.3rem;
  color: #666;
}

.jump-input {
  width: 0.8rem;
  height: 0.46rem;
  margin-left: 0.2rem;
  padding: 0 0.1rem;
  border: 1px solid #ccc;
  border-radius: 0.05rem;
}

.jump-btn {
  background: #c72729;
  color: #fff;
  border: none;
  padding: 0.2rem 0.32rem;
  margin-left: 0.2rem;
  border-radius: 0.05rem;
  cursor: pointer;
}

/*列表模板之列表式分页*/
.pageBox {text-align: center;margin-top: 42px;margin-bottom: 24px;}
.pageBox a {border:1px solid #ddd;display:inline-block;margin-right:6px;color: #707070;width:34px;height:34px;font:bold 14px/34px arial;}
.pageBox a:hover,.pageBox a:active{background:#E00424;color: #FFFFFF;text-decoration: none;}
.pageBox .cur { background: #E00424;border: 1px solid #E00424;text-decoration: none;}
.pageBox a.cur {color: #fff;}
.pageBox .disabled {width: 79px;}

/* --- 移动端 --- */
@media (max-width: 750px) {
  .news-section{
    padding: 1rem 0.3rem;
  }
  .news-list {
    grid-template-columns: 1fr;
  }
  .news-tab{
    margin-bottom: 0.6rem;
  }
  .tab-item {
    width: auto;
    padding: 0.2rem 0.2rem;
  }
}
