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

.comp {}

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

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

  span {
    margin: 4.8px 8.4px;
    text-align: center;
  }

  .page-num {
    @extend .fcc;
    @extend .bb;
    padding: 0 4px;
    min-width: 27px;
    height: 30px;
    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: 60px;
  height: 30px;
  border: solid 1px #dcdddd;
  padding: 0 8.4px;
  text-align: center;
}

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