.industry-pagination ul {
    list-style: none;
    padding-left: 0;
    text-align: center;
    margin-top: 20px;
}

.industry-pagination ul li {
    vertical-align: top;
    display: inline-block;
    font-size: 12px;
    cursor: pointer;
    box-sizing: border-box;
    text-align: center;
    background: #FFFFFF;
    border: 1px solid #979797;
    color: #666666;
    margin-left: 12px;
    height: 24px;
    width: 24px;
    line-height: 24px;
    border-radius: 12px;
}

.industry-pagination ul li:hover {
    transform: scale(1.1);
    background-color: #F4F6F8;
}

.industry-pagination ul li:nth-child(1),
.industry-pagination ul li:last-child {
    border: none;
    width: auto;
    background-color: #fff;
}

.industry-pagination ul li:nth-child(1):hover,
.industry-pagination ul li:last-child:hover {
    border: none;
    width: auto;
    background-color: transparent;
}

.industry-pagination li.active {
    background: #5581CC;
    color: white;
    cursor: not-allowed;
}

.industry-pagination li.disabled {
    cursor: not-allowed;
}

.industry-pagination li.totalPage {
    background: transparent;
    cursor: default;
    border: none;
    padding: 0 6px;
}

.industry-pagination li.totalPage:hover {
    transform: none;
    background-color: #666;
}

.industry-pagination li input {
    -webkit-appearance: none;
    background-color: #fff;
    background-image: none;
    border-radius: 4px;
    border: 1px solid #dcdfe6;
    box-sizing: border-box;
    color: #606266;
    display: inline-block;
    font-size: inherit;
    outline: none;
    padding: 3px 5px;
    transition: border-color .2s cubic-bezier(.645, .045, .355, 1);
    width: 40px;
    height: 25px;
    margin: 0 6px;
}

.industry-pagination li input:focus {
    border-color: #98A6AD;
}

.industry-pagination {
    user-select: none;
}

.industry-pagination ul:nth-child(2) {
    border-radius: 6px;
}

input[type=number] {
    -moz-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}