pagination.scss 923 Bytes
@import '@/styles/_support';

.comp {}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;

  &-item {
    @extend .bb;
    padding: 0 .8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }

  span {
    margin: 0.4rem 0.7rem;
    text-align: center;
  }

  .page-num {
    @extend .fcc;
    @extend .bb;
    padding: 0 4px;
    min-width: 2.25rem;
    height: 2.5rem;
    border: solid 1px #dcdddd;
    text-align: center;
    cursor: pointer;
  }

  .page-num:hover {
    color: #ffffff;
    background-color: #006441;
  }

}

.pagination-disabled {
  // color: #888888;
}

.active {
  color: #ffffff;
  background-color: #006441;
}


.ipt {
  @extend .bb;
  width: 5rem;
  height: 2.5rem;
  border: solid 1px #dcdddd;
  padding: 0 .7rem;
  text-align: center;
}

.jump {
  color: #006441;
  text-decoration: underline;
}