/* 分页组件样式 */
.el-pagination {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #606266;
    user-select: none;
    justify-content: center;
    margin: 30px 0;
}

.el-pagination .btn-prev,
.el-pagination .btn-next,
.el-pagination .number {
    min-width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    margin: 0 4px;
    background: #f4f4f5;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.el-pagination .btn-prev:hover,
.el-pagination .btn-next:hover,
.el-pagination .number:hover {
    color: #ba1b21;
}

.el-pagination .number {
    font-weight: 500;
}

.el-pagination .active {
    background: #ba1b21;
    color: white;
}

.el-pagination .active:hover {
    color: white;
}

.el-pagination .btn-prev:disabled,
.el-pagination .btn-next:disabled {
    color: #c0c4cc;
    cursor: not-allowed;
}

.el-pagination .el-pager {
    display: flex;
    margin: 0 8px;
}

.el-pagination .more {
    background: transparent;
    cursor: default;
}

.el-pagination .jump-to {
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.el-pagination .jump-to input {
    width: 50px;
    height: 32px;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    text-align: center;
    margin: 0 10px;
}

.el-pagination .total {
    margin-right: 15px;
}