.newsCard{
    width: 333px;
    height: 340px;
    background: #FFFFFF;
    box-shadow: 0px 2px 28px 0px rgba(204,204,204,0.5);
    border-radius: 6px;
    transition: transform 0.3s, color 0.3s; /* 添加过渡效果 */
    overflow: hidden;
  }
  .newsCard:hover .newsCardImg img {
    transform: scale(1.2); /* 图片放大1.2倍 */
  }

  .newsCard:hover .newsCardText {
    color: #FCBF04; /* 文字颜色变为蓝色 */
  }
  .newsCardImg{
    width: 100%;
    height: 214px;
    overflow:hidden;
  }
  .newsCardImg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s; /* 添加过渡效果 */
  }
  .newsCardMore{
    width: 22px;
    height: 22px;
    overflow: hidden;
  }
  .newsCardMore img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .newsCardTimeInfo{
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }
  .newsCardTime{
    font-family: PingFangSC-Regular;
    font-size: 13px;
    color: #696A6C;
    letter-spacing: 0;
    text-align: justify;
    font-weight: 400;
  }
  .newsCardText{
    height: 48px;
    font-family: PingFangSC-Medium;
    font-size: 16px;
    color: #303133;
    letter-spacing: 0;
    line-height: 24px;
    font-weight: 500;
    overflow: hidden;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical
  }
  .newsInfo{
   width: 100%;;
   display: flex;
   flex-direction: column;
   padding-left: 24px;
   padding-right: 14px;
   margin-top: 16px;
  }
  .newsCardList{
    width: 1159px;
    display: grid;
    grid-template-columns: repeat(3, 333px);
    grid-gap: 80px;
    margin-top: 64px; 
  }
  .newsContainer{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .pagination{
    display: flex;
    justify-content: center;
    margin-top: 78px;
    margin-bottom: 76px;
  }
  .pagination>div:nth-child(2){
    display: flex;
  }
  .pageLeft,.pageRight,.pageNumber{
    width: 40px;
    height: 40px;
    background: #E6E6E6;
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 14.36px;
  }
  .pageNumber{
    font-family: PingFangSC-Medium;
    font-size: 12px;
    color: #2F2F2F;
    letter-spacing: 0;
    font-weight: 500;
  }
  .pageLeft img,.pageRight img{
    width:100%;
    height: 100%;
  }
  .pageNumberActive{
    background: #202F5B;
    font-family: PingFangSC-Medium;
    font-size: 12px;
    color: #FFFFFF;
    letter-spacing: 0;
    font-weight: 500;
  }
  @media(max-width:1024px){
    .newsCardList {width: auto;}
    .newsCardImg {height: 185px;}
    .newsCard {width: 290px;height: 320px;}
    .newsCardList {grid-template-columns: repeat(3, 290px);grid-gap: 20px;}
  }
  @media(max-width:990px){
    .newsCardList {grid-template-columns: repeat(1, 290px);}
  }