.ui-pagination {
  display: flex;
  justify-content: center;
  line-height: 36px;
  color: #464646;
}

.ui-pagination > ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
    text-align: center;
    user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
}

.ui-pagination > ul > li {
    line-height: 34px;
}

.ui-pagination .invalid {
    width: 70px;
    height: 34px;
    margin: 0 6px;
    border: 1px solid #e8e8e8;
    background: #fff;
    color: #ccc;
  }

.ui-pagination .valid {
    width: 70px;
    height: 34px;
    margin: 0 6px;
    border: 1px solid #e8e8e8;
    background: #f9f9f9;
    cursor: pointer;
  }

.ui-pagination .current {
    width: 34px;
    height: 34px;
    border: 1px solid #e8e8e8;
    background: #ed7612;
    color: #fff;
  }

.ui-pagination .other {
    background: #f9f9f9;
    width: 34px;
    height: 34px;
    border: 1px solid #e8e8e8;
    cursor: pointer;
  }

.ui-pagination .jump {
    padding: 0 10px;
    font-size: 12px;
  }

.ui-pagination .jump > input {
    width: 34px;
    height: 18px;
    margin: 0 5px;
    padding: 0;
    outline: none;
    border: 1px solid #e8e8e8;
    text-align: center;
  }

.ui-pagination .jump > button {
    width: 44px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    background: #fff;
    border: 1px solid #e8e8e8;
    outline: none;
    cursor: pointer;
    box-sizing: border-box;
  }

