.container {
  position: relative;
}

.container .home {
  background: url("../../img/news/news_banner.png") no-repeat center;
  background-size: cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  position: relative;
  padding: 0 4rem;
}

.container .home .banner {
  color: #fff;
}

.container .home .banner span {
  display: block;
}

/* 新闻资讯 */
.container .news {
  margin: 3rem 4rem;
}

.container .news .title {
  font-size: 0.6rem;
  font-weight: 400;
}

.container .news .swiper_box {
  width: 40rem;
  overflow: hidden;
  border-radius: .25rem;
  position: relative;
}

.container .news .swiper_box .swiper_banner_box {
    width: 100%;
}

.container .swiper_box  .top-swiper-pagination {
    position: absolute;
    left: 1.5rem;
    bottom: .85rem;
    display: flex;
    justify-content: start;
    padding-right: .6em;
    z-index: 100;
}

.container .swiper_box  .top-swiper-pagination .swiper-pagination-bullet {
    width: .65rem;
    height: .02rem;
    background: rgba(214, 214, 214, 1);
    border-radius: unset;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
}

.container .swiper_box  .top-swiper-pagination .swiper-pagination-bullet-active {
    background: rgba(0, 89, 255, 1);
    transform: scale(1.2);
}

.container .news .news_box {
  margin-top: 1rem;
  display: flex;
  background: rgba(247, 248, 250, 1);
  padding: .65rem;
  border-radius: .25rem;
  gap: 3.25rem;

}



.container .news .news_box .info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: .85rem;
}

.container .news .news_box .info span {
  font-size: 0.4rem;
  font-weight: 300;
  font-family: 'HarmonyOS Sans SC', sans-serif;
}

.container .news .news_box .info span:nth-child(2) {
  font-size: .7rem;
  font-weight: 500;
  line-height: 1.05rem;
  font-family: 'HarmonyOS Sans SC', sans-serif;
  margin: 1.25rem 0 .65rem 0;
}

.container .news .news_box .info span:nth-child(2):hover {
  color: rgba(0, 89, 255, 1);
}

.container .news .news_box .info span:nth-child(3) {
  font-size: 0.4rem;
  font-weight: 400;
  line-height: .8rem;
  font-family: 'HarmonyOS Sans SC', sans-serif;
  color: rgba(102, 102, 102, 1);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.container .news .news_box .info span:nth-child(3):hover {
  color: rgba(0, 89, 255, 1);
}

.container .news .news_box .info a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  width: 3.8rem;
  height: 1.1rem;
  /* padding: .3rem .65rem; */
  border: .025rem solid rgba(51, 51, 51, 1);
  margin-top: 2.25rem;
  border-radius: 2.475rem;
  text-decoration: none;
}

.container .news .news_box .info a:hover {
  background: rgba(0, 89, 255, 1);
  border: .025rem solid rgba(0, 89, 255, 1);
}

.container .news .news_box .info a span {
  font-size: 0.4rem;
  font-weight: 400;
  font-family: 'HarmonyOS Sans SC', sans-serif;
  color: rgba(51, 51, 51, 1);
}

.container .news .news_box .info a:hover span {
  color: white;
}

.container .news .news_box .info a img {
  width: .5rem;
  height: .5rem;
}

.container .news .news_box .info a .normal {
    display: block;
}

.container .news .news_box .info a:hover .normal {
    display: none;
}

.container .news .news_box .info a .active {
    display: none;
}

.container .news .news_box .info a:hover .active {
    display: block;
}

.container .news .news_box .img_box {
    width: 19.6rem;
    height: 12.5rem;
    border-radius: .25rem;
    overflow: hidden;
    flex-shrink: 0;
}

.container .news .news_box .img_box .img {
  width: 19.6rem;
  height: 12.5rem;
  border-radius: .25rem;
  object-fit: cover;
  transition: transform .4s ease;
}

.container .news .news_box .img_box:hover .img {
  transform: scale(1.1);
}

.container .news .news_list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  width: 100%;
  justify-content: space-between;
  margin-top: 2rem;
}

.container .news .news_list .new_list_item {
  display: flex;
  flex-direction: column;
  width: calc(33.333% - 0.833rem);
  border-top: .05rem solid rgba(17, 23, 46, 0.15);
  position: relative;
  text-decoration: none;
}

.container .news .news_list .new_list_item .new_list_item_line {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 0;
  width: 100%;
}

.container .news .news_list .new_list_item .new_list_item_line .new_list_item_line_1 {
  width: .35rem;
  height: .05rem;
  background: rgba(0, 89, 255, 1);
}

.container .news .news_list .new_list_item:hover .new_list_item_line .new_list_item_line_1 {
  width: 100%;
  height: .05rem;
  background: rgba(0, 89, 255, 1);
}

.container .news .news_list .new_list_item .new_list_item_line .new_list_item_line_2 {
  width: .35rem;
  height: .05rem;
  background: rgba(0, 89, 255, 1);
}

.container .news .news_list .new_list_item .time {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: .5rem 0 .475rem 0;
  color: rgba(153, 153, 153, 1);
}

.container .news .news_list .new_list_item .time label {
  font-size: .35rem;
  font-weight: 500;
  font-family: 'HarmonyOS Sans SC', sans-serif;
  color: rgba(153, 153, 153, 1);
}

.container .news .news_list .new_list_item .time span {
  font-size: .35rem;
  font-weight: 400;
  font-family: 'HarmonyOS Sans SC', sans-serif;
  color: rgba(153, 153, 153, 1);
}

.container .news .news_list .new_list_item .img {
  width: 12.5rem;
  height: 7.5rem;
  border-radius: .25rem;
  transition: transform 0.3s ease;
}

.container .news .news_list .new_list_item:hover .img {
  transform: scale(1.05);
}

.container .news .news_list .new_list_item .title {
  font-size: 0.6rem;
  font-weight: 500;
  font-family: 'HarmonyOS Sans SC', sans-serif;
  color: rgba(51, 51, 51, 1);
  margin-top: .8rem;
}

.container .news .news_list .new_list_item:hover .title {
  color: rgba(0, 89, 255, 1);
}

.container .news .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  margin-top: 2.775rem;
}

.container .news .pagination .page-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  background-color: #fff;
  color: rgba(51, 51, 51, 1);
  font-size: .4rem;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
}

.container .news .pagination .page-item.active {
  background: linear-gradient(90deg, #0059FF 0%, #0038B1 100%);
  color: #fff;

}

.container .news .pagination .next_page img {
  width: 1.125rem;
  height: 1.125rem;
}