a {
  text-decoration: none;
}

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

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

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

.content-container {
  max-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: #ffffff;
  border-radius: 4rem;
  display: flex;
  justify-content: center;
  border: 1rem solid #eeeeee;
}

.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-around;
}

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

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

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

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

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

.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 {
  font-size: 14rem;
  padding-top: 17rem;
}

.breadcrumb-item a {
  color: #666666;
  text-decoration: none;
  font-size: 14rem;
}

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

.breadcrumb-item.active {
  color: #333333;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: #666666;
}

.authorInfoBox {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  height: 350rem;
  margin-top: 86rem;
  width: 1330rem;
}

.authorInfo {
  height: 100%;
  width: 379rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}

.authorInfo img {
  width: 200rem;
  height: 200rem;
  object-fit: cover;
  border-radius: 50%;
}

.authorName {
  font-size: 52rem;
  font-weight: 400;
  color: #1f0201;
  white-space: nowrap;
  font-family: Open Sans, Open Sans-400;
}

.authorTag {
  height: 40rem;
  display: flex;
  font-size: 14rem;
  color: #1f0201;
  align-items: center;
  border-radius: 40rem;
  padding: 0 30rem;
  justify-content: center;
  font-family: Inter, Inter-400;
  background: rgba(255, 255, 255, 0.58);
}

.authorDesc {
  width: 887rem;
  height: 236rem;
  display: flex;
  flex-direction: column;
}

.authorDescText {
  font-size: 24rem;
  color: #1f0201;
  line-height: 36rem;
  font-family: Inter, Inter-300;
  font-weight: 300;
}

.authorDescText:last-child {
  margin-top: 24rem;
}

.totalNews {
  margin: 0 auto;
  max-width: 1440rem;
  margin-top: 79rem;
  font-size: 32rem;
  color: #222222;
  font-family: Open Sans, Open Sans-400;
}

.totalNews span {
  font-size: 24rem;
  color: #485a64;
  font-family: Open Sans, Open Sans-400;
}

/* 分页 */
.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 .page-link {
  background-color: #ffffff;
  border-color: #0068D7;
  color: #0A1D3D;
}

.page-input {
  width: 40rem;
  padding: 5rem;
  text-align: center;
  border: 1rem solid #ddd;
  border-radius: 3rem;
}

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

  .authorName {
    font-size: 40rem;
  }

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