/* .news_area {
  padding-bottom: 120px;
  background-color: #f8fafc;
}

.news_banner {
  height: 420px;
  position: relative;
  overflow: hidden;
}

.news_banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/news_banner.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.9);
  z-index: -1;
}

.news_location {
  position: absolute;
  width: 1200px;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 0);
  color: #fff;
  font-size: 0;
  display: flex;
  gap: 15px;
}

.news_location span {
  color: #fff;
}

.news_location a {
  transition: all 0.3s ease;
}

.news_location a:hover {
  color: #ffb907;
}

.content_title {
  margin: 60px auto;
  width: 1440px;
}

.content_title h2 {
  font-size: 30px;
  font-weight: bold;
  padding: 12px 0;
  margin: 60px auto;
  color: rgb(0, 32, 107);
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgb(238, 238, 238);
}

.content_title h2:after {
  content: "";
  position: absolute;
  width: 210px;
  height: 5px;
  background-color: rgb(0, 32, 107);
  bottom: -2px;
  left: 50%;
  transform: translate(-50%, 0);
} */

/* .news_content {
  margin: 0 auto;
  width: 1440px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.news_content > a {
  width: 30%;
  display: block;
  transition: all 0.3s ease;
}

.news_content .news_item {
  margin-bottom: 80px;
  width: 100%;
}

.news_content .news_item .pic_wrap {
  width: 100%;
  height: 420px;
  margin-bottom: 8px;
  overflow: hidden;
  border-radius: 8px;
}

.news_content .news_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.news_content .news_item .pic_wrap:hover img {
  transform: scale(1.2);
}

.news_content .news_title {
  font-size: 24px;
  max-width: 100%;
  height: 72px;
  overflow: hidden;
  font-weight: bold;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news_content .news_detail {
  font-size: 18px;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 48px;
}

.news_content .news_date {
  font-size: 18px;
  color: #333;
  margin-top: 6px;
}

.news_content > a:hover .news_item .news_title,
.news_content > a:hover .news_item .news_detail p,
.news_content > a:hover .news_item .news_detail strong,
.news_content > a:hover .news_item .news_detail div,
.news_content > a:hover .news_item .news_date {
  color: #2563eb;
} */

/* .news_content .news_title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news_content .news_detail {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
} */

.page-number.active {
  font-weight: bold;
  color: #f47c57;
}

.pagination {
  margin-top: 10px;
}

.pagination,
#pageNumbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.page-btn {
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #3c428f;
  color: white;
  padding: 5px 16px;
  border-radius: 6px;
  border-bottom-color: #b0b4e2;
  border-bottom-width: 4px;
  border-top: none;
  border-left: none;
  border-right: none;
}

.page-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  color: #ffb907;
  /* border-bottom-width: 6px; */
}

.page-btn:active {
  border-bottom-width: 2px;
  filter: brightness(0.9);
  transform: translateY(2px);
}
