<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.page{
	display: flex;
	justify-content: center;
	margin: 0 auto;
}

.page ul {
    list-style: none;
    padding-left: 0;
}

.page ul li {
    padding: 0 10px;
    vertical-align: top;
    display: inline-block;
    min-width: 36px;
    min-height: 32px;
    line-height: 32px;
    cursor: pointer;
    box-sizing: border-box;
    text-align: center;
    background-color: #ffffff;
    color: #333333;
    border-radius: 2px;
    margin: 0 5px;
    background: #F1F1F1;
    height: 32px;
}

.page ul li:hover {
    /*transform: scale(1.1);*/
    background-color: #E8EEF6;
}

.page  li.active {
    background: #1A56A8;
    color: white;
    /* cursor: not-allowed; */
}

.page li.disabled {
    cursor: not-allowed;
}
.page li.totalPage {
    background: transparent;
    cursor: default;
    border: none;
    padding: 0 6px;
}

.page li.totalPage:hover {
    transform: none;
    background-color: #ffffff;
}


#number {
    -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: 36px;
    height: 32px;
    margin: 0 6px;
}

.page li input:focus{
    border-color: #98A6AD;
}
.page{
    user-select: none;
}

.page 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;
}
</pre></body></html>