.dataTables_wrapper .dataTables_filter input {
    border: 1px solid #aaa;
    border-radius: 6px;
    padding: 6px;
    background-color: whitesmoke;
}
.rank-page-select {
    width: 100%;
    height: 40px;
    border-radius: 6px;
    padding: 0px 30px 0px 20px;
    color: var(--text);
    border: 1px solid #aaaaaa;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
    color: #fff !important;
    pointer-events: none;
    background: var(--primary);
    opacity: 0.65;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    border: 1px solid #fff !important;
    color: var(--white) !important;
    background: green;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    border: 1px solid #fff !important;
    color: var(--white);
    background: var(--primary);
}

.dataTables_wrapper .dataTables_paginate .paginate_button:active {
    box-shadow: inset 0 0 0px #111 !important;
}

/* 分页容器样式 */
.dataTables_wrapper .dataTables_paginate {
    margin-top: 16px;
    position: relative;
    text-align: center;
}
/* 分页按钮样式 */
.dataTables_wrapper .dataTables_paginate .paginate_button {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    border: none;
    padding: 0px;
    color: var(--text);
    background: var(--border);
}
/* 当前页按钮样式 */
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    color: var(--white) !important;
    background: var(--primary);
}
/* 激活按钮样式 */
.dataTables_wrapper .dataTables_paginate .paginate_button.active {
    outline: none;
    background-color: #337ab7;
    color: #fff !important;
    border: 1px solid transparent;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
    font-size: 16px;
    margin: 0px 5px;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background-color: green;
}