.container {
  position: relative;
  background: url('/img/newsCenter/news_center.jpg') no-repeat center center;
  background-size: cover;
  min-height: 100vh;
}

.container .main {
  padding: 2.25rem 1.3rem 1.4rem 1.3rem;
  position: relative;
}

.container .top {
  display: flex;
  justify-content: space-between;
  margin: 0 0 .73rem 0;
}

.container .top .title {
  font-size: .4rem;
  line-height: .44rem;
  font-weight: 500;
  font-family: 'HarmonyOS Sans SC';
  color: rgba(0, 0, 0, 1);
}


.container .top .buttons {
  display: flex;
  align-items: center;
  gap: .14rem;
}

.container .top .buttons .button {
  border: .01rem solid transparent;
  background: linear-gradient(rgba(243, 245, 250, 1), rgba(243, 245, 250, 1)) padding-box,
    linear-gradient(93.3deg, #10499E 1.72%, #417CAC 40.85%, #72B32C 99.8%) border-box;
  border-radius: .26rem;
  width: 1.3rem;
  height: .44rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  cursor: pointer;
}

.container .top .buttons .button.active {
  /*border: .01rem solid transparent;*/
  border-style: none;
  background: linear-gradient(93.3deg, #10499E 1.72%, #417CAC 40.85%, #72B32C 99.8%);
}

.container .top .buttons .button:hover {
  /*border: .01rem solid transparent;*/
  border-style: none;
  background: linear-gradient(93.3deg, #10499E 1.72%, #417CAC 40.85%, #72B32C 99.8%);
}

.container .top .buttons .button:hover span,
.container .top .buttons .button.active span {
  color: white;
}

.container .top .buttons .button span {
  font-size: .16rem;
  line-height: .18rem;
  font-weight: 400;
  font-family: 'HarmonyOS Sans SC';
  color: rgba(51, 51, 51, 1);
  transition: color 0.3s ease;
}

.container .section-top-swiper {
    width: 16.7rem;
    background: rgba(255, 255, 255, 1);
      box-shadow: 0px 3px 60px 0px rgba(0, 0, 0, 0.08);
      border-radius: 0 .4rem 0 .4rem;
      overflow: hidden;
}

.container .banner {
  display: flex;
  gap: .56rem;
  
}

.container .banner .banner_img {
  width: 8.89rem;
  height: 5.09rem;
  object-fit: cover;
}

.container .banner .info {
  width: 5.27rem;
  display: flex;
  flex-direction: column;
}

.container .banner .info .title {
  font-size: .24rem;
  line-height: .36rem;
  font-weight: 700;
  font-family: 'HarmonyOS Sans SC';
  color: rgba(1, 104, 183, 1);
  margin: .545rem 0 .44rem 0;
  
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.container .banner .info .time {
  font-size: .18rem;
  line-height: .20rem;
  font-weight: 400;
  font-family: 'HarmonyOS Sans SC';
  color: rgba(51, 51, 51, 1);
  margin-top: .925rem;
}

.container .banner .info .desc {
  font-size: .16rem;
  line-height: .30rem;
  font-weight: 400;
  font-family: 'HarmonyOS Sans SC';
  color: rgba(51, 51, 51, 1);
  margin-bottom: .24rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  /*height: 1.15rem;*/
}

.container .banner .info .button {
  margin-top: .24rem;
  border: .01rem solid transparent;
  background: linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 1)) padding-box,
    linear-gradient(93.3deg, #10499E 1.72%, #417CAC 40.85%, #72B32C 99.8%) border-box;
  border-radius: .26rem;
  width: 1.7rem;
  height: .44rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s ease;
  cursor: pointer;
  padding: .14rem .14rem .14rem .25rem;
}

.container .banner .info .button:hover {
  border: .01rem solid transparent;
  background: linear-gradient(93.3deg, #10499E 1.72%, #417CAC 40.85%, #72B32C 99.8%);
}

.container .banner .info .button:hover span {
  color: white;
}

.container .banner .info .button span {
  font-size: .14rem;
  line-height: .16rem;
  font-weight: 400;
  font-family: 'HarmonyOS Sans SC';
  color: rgba(51, 51, 51, 1);
  transition: color 0.3s ease;
}

.container .banner .info .button .icons {
  width: .24rem;
  height: .24rem;
  border-radius: 50%;
  background: linear-gradient(93.3deg, #10499E 1.72%, #417CAC 40.85%, #72B32C 99.8%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.container .banner .info .button .icon {
  height: .064rem;
  width: .032rem;
}

.container .content {
  display: flex;
  flex-wrap: wrap;
  gap: .50rem;
  margin-top: .9rem;
  width: 16.70rem;
}

.container .content .content_item {
  display: flex;
  flex-direction: column;
  width: 5.21rem;
  border-radius: 0 .4rem 0 .4rem;
}

.container .content .content_item .content_img_box {
  width: 5.21rem;
  height: 2.82rem;
  overflow: hidden;
}

.container .content .content_item .content_img {
  width: 5.21rem;
  height: 2.82rem;
  object-fit: cover;
  transition: transform .4s ease;
}

.container .content .content_item .content_img_box:hover .content_img {
  transform: scale(1.1);
}



.container .content .content_item .content_item_info {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0px .03rem .6rem 0 rgba(0, 0, 0, 0.09);
  padding: .26rem .26rem .44rem .56rem;
  border-radius: 0 0 0 .4rem;
}

.container .content .content_item .content_item_info .time {
  font-size: .18rem;
  /* line-height: .20rem; */
  font-weight: 400;
  font-family: 'HarmonyOS Sans SC';
  color: rgba(51, 51, 51, 1);
}

.container .content .content_item .content_item_info .title {
  font-size: .20rem;
  /* line-height: .36rem; */
  font-weight: 500;
  font-family: 'HarmonyOS Sans SC';
  color: rgba(51, 51, 51, 1);
  margin: .23rem 0 .29rem 0;
}

.container .content .content_item .content_item_info .desc {
  font-size: .16rem;
  line-height: .30rem;
  font-weight: 400;
  font-family: 'HarmonyOS Sans SC';
  color: rgba(51, 51, 51, 0.7);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: .3rem;
}

.container .content .content_item .content_item_info .button {
  margin-top: .30rem;
  border: .01rem solid transparent;
  background: linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 1)) padding-box,
    linear-gradient(93.3deg, #10499E 1.72%, #417CAC 40.85%, #72B32C 99.8%) border-box;
  border-radius: .26rem;
  width: 1.7rem;
  height: .44rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s ease;
  cursor: pointer;
  padding: .14rem .14rem .14rem .25rem;
}

.container .content .content_item .content_item_info .button:hover {
  border: .01rem solid transparent;
  background: linear-gradient(93.3deg, #10499E 1.72%, #417CAC 40.85%, #72B32C 99.8%);
}

.container .content .content_item .content_item_info .button:hover span {
  color: white;
}

.container .content .content_item .content_item_info .button span {
  font-size: .14rem;
  line-height: .16rem;
  font-weight: 400;
  font-family: 'HarmonyOS Sans SC';
  color: rgba(51, 51, 51, 1);
  transition: color 0.3s ease;
}

.container .content .content_item .content_item_info .button .icons {
  width: .24rem;
  height: .24rem;
  border-radius: 50%;
  background: linear-gradient(93.3deg, #10499E 1.72%, #417CAC 40.85%, #72B32C 99.8%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 分页样式 */
.container .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .2rem;
  margin-top: .8rem;
}

.container .pagination .pagination_arrow {
  width: .4rem;
  height: .4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.container .pagination .pagination_arrow:hover {
  background-color: rgba(1, 104, 183, 0.1);
}

.container .pagination .pagination_arrow.left::before {
  content: '';
  width: .12rem;
  height: .12rem;
  border-left: .02rem solid #0168B7;
  border-bottom: .02rem solid #0168B7;
  transform: rotate(45deg);
}

.container .pagination .pagination_arrow.right::before {
  content: '';
  width: .12rem;
  height: .12rem;
  border-right: .02rem solid #0168B7;
  border-top: .02rem solid #0168B7;
  transform: rotate(45deg);
}

.container .pagination .pagination_number {
  width: .4rem;
  height: .4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: .16rem;
  font-weight: 400;
  font-family: 'HarmonyOS Sans SC';
  color: rgba(51, 51, 51, 1);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.container .pagination .pagination_number:hover {
  background-color: rgba(1, 104, 183, 0.1);
}

.container .pagination .pagination_number.active {
  background: linear-gradient(93.3deg, #10499E 1.72%, #417CAC 40.85%, #72B32C 99.8%);
  color: rgba(255, 255, 255, 1);
}

@media (max-width: 767px) {
    .container .main {
        padding: .25rem .32rem 1.4rem .32rem;
    }
    .container .top {
        flex-direction: column;
        justify-content: center;
        gap: .4rem;
        align-items: center;
    }
    .container .top .title {
        font-size: .46rem;
    }
    .container .top .buttons .button span {
        font-size: .22rem;
    }
    .container .banner {
        flex-direction: column;
    }
    .container .section-top-swiper {
        width: 100%;
    }
    .container .banner .banner_img {
        width: 100%;
    }
    .container .banner .info .time {
        font-size: .24rem;
        margin: 0;
    }
    .container .banner .info .title {
        font-size: .3rem;
    }
    .container .banner .info .desc {
        font-size: .22rem;
    }
    .container .banner .info {
        width: 100%;
        padding: .32rem;
    }
    .container .banner .info .combtn {
        font-size: .2rem;
    }
    .container .content {
        width: 100%;
        align-items: center;
        justify-content: center;
        /*padding: 0 .32rem;*/
    }
    .container .content .content_item {
        width: 100%
    }
    .container .content .content_item .content_img_box {
        width: 100%;
    }
    .container .content .content_item .content_img {
        width: 100%;
    }
    .container .content .content_item .content_item_info .time {
        font-size: .24rem;
    }
    .container .content .content_item .content_item_info .title {
        font-size: .26rem;
    }
    .container .content .content_item .content_item_info .desc {
        font-size: .22rem;
    }
    .container .content .content_item .content_item_info .combtn {
        font-size: .2rem;
    }
    
    
    
}
















