.page_btn li {
  transition: all 0s !important;
}

.list-animate-enter-active {
  animation: coming .1s;
}

.list-animate-leave-active {
  animation: going .1s;

}

.news-comment-more {
  display: block;
  width: 1.2rem;
  margin: 0 0 0 auto;
  text-align: right;
  color: #2532aa;
}

.page_btn li a {
  width: .5rem;
}

  @keyframes coming {
    from {
      /* transform: translateX(-50px); */
      opacity: 0;
    }

    to {
      /* transform: translateX(0); */
      opacity: 1;
    }
  }

  @keyframes going {
    from {
      /* transform: translateX(0); */
      opacity: 1;
    }

    to {
      /* transform: translateX(-50px); */
      opacity: 0;
    }
  }

  .page_btn {
    display: flex;
    justify-content: center;
  }

  .page_btn li {
    cursor: pointer;
  }

  .page_btn li a {
    margin: 0 0.02rem;
    text-align: center;
  }

  .page_btn li.active a {
    font-weight: bold;
    color: #253266;
  }

  .page-item.disabled a {
    color: rgb(201, 201, 201);
  }

  .page-item:first-child {
    margin-right: .1rem;
  }

  .page-item:last-child {
    margin-left: .1rem;
  }

  .news_comment .page_list ul li {
    position: relative;
  }

  .newsLink {
    width: 100%;
    height: 85%;
    position: absolute;
    left: 0;
    top: 0;
  }