a {
  text-decoration: none;
}

/* 自定义样式 */
.full-width-banner {
  height: 344rem;
  background-image: url("/static/frontend//pc/images/newsBanner.webp");
  background-size: cover;
  background-position: center;
  position: relative;
}

.banner-content {
  max-width: 1440rem;
  margin: 0 auto;
  padding: 20rem;
  position: relative;
  z-index: 2;
  color: white;
}

#newsBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.content-container {
  width: 1440rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
}

.content-card {
  width: 704rem;
  height: 365rem;
  margin-top: 32rem;
  background-color: #f6f7f7;
  border-radius: 4rem;
  display: flex;
  justify-content: center;
}

.content-card:hover {
  background-color: #ffffff;
  box-shadow: 0 4rem 8rem rgba(0, 0, 0, 0.1);
}

.content-card:nth-child(1),
.content-card:nth-child(2) {
  margin-top: 40rem;
}

.cardBox {
  width: 640rem;
  height: 365rem;
  display: flex;
  align-items: center;
  padding: 0;
}

.news-card-body {
  width: 380rem;
  height: 305rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.toNewsDetail {
  height: 229rem;
  display: inline-block;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.toNewsDetail:hover .news-card-newsTitle {
  color: #0068D7 !important;
  text-decoration: underline !important;
  text-decoration-color: #0068D7;
}

.news-card-developmentTitle {
  font-size: 14rem;
  font-family: Inter, Inter-400;
  color: #485a64;
}

.news-card-newsTitle {
  font-size: 20rem;
  font-family: Inter, Inter-400;
  color: #0E2A58;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis
}

.news-card-newsDesc {
  font-size: 14rem;
  height: 120rem;
  font-family: Inter, Inter-400;
  color: #485a64;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis
}

.news-author {
  display: inline-block;
  width: 182rem;
  height: 40rem;
  display: flex;
  align-items: center;
  font-size: 14rem;
  font-family: Inter, Inter-400;
  color: #485a64;
  cursor: pointer;
}

.news-author:hover {
  color: #0068D7 !important;
  text-decoration: underline !important;
  text-decoration-color: #0068D7;
}

.news-author img {
  width: 24rem;
  height: 24rem;
  margin-right: 12rem;
  border-radius: 50%;
}

.content-image {
  width: 224rem;
  height: 268rem;
  object-fit: cover;
}

/* 面包屑导航样式 */
.breadcrumb {
  background-color: transparent;
  padding: 0;
  font-size: 14rem;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14rem;
}

.breadcrumb-item+.breadcrumb-item::before {
  padding: 0 6rem;
}

.breadcrumb-item.active {
  color: white;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.8);
}

.newsBannerTitle {
  font-size: 96rem;
  font-family: Open Sans, Open Sans-400;
  color: #ffffff;
}

.newsBannerDesc {
  width: 1132rem;
  height: 96rem;
  font-size: 24rem;
  font-family: Open Sans, Open Sans-300;
  font-weight: 300;
  color: #ffffff;
}

/* 分页 */
.pagination-container {
  margin-top: 30rem !important;
}

#page-numbers {
  display: flex;
  margin: 0 5rem;
  padding: 0;
  list-style: none;
}

.page-item {
  margin: 0 2rem;
  width: 40rem;
  height: 40rem;
}

.page-link {
  color: #0A1D3D;
  min-width: 40rem;
  height: 40rem;
  text-align: center;
  font-size: 16rem;
  line-height: 40rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-link span {
  display: flex;
}

.page-link img {
  width: 16rem;
  height: 16rem;
}

.page-item.active {
  background-color: #ffffff;
  border-color: #0A1D3D;
  color: #0A1D3D;
}

@media (min-width: 992px) and (max-width: 1440px) {
  .content-container {
    width: 100%;
  }

  #newsBox {
    margin-left: 0;
    margin-right: 0;
  }
}