/* 营销模块表格分页（条数 20/50/100，样式接近 Element Plus） */
.marketing-pagination {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.marketing-pagination .pagination-total {
    font-size: 14px;
    color: #606266;
}
.marketing-pagination .pagination-pager {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.marketing-pagination .pager-page-size {
    height: 32px;
    min-width: 108px;
    padding: 0 28px 0 10px;
    font-size: 14px;
    color: #303133;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23909399' d='M3 4.5L6 7.5L9 4.5'/%3E%3C/svg%3E") no-repeat right 10px center;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}
.marketing-pagination .pager-page-size:hover {
    border-color: #c0c4cc;
}
.marketing-pagination .pager-btn {
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    box-sizing: border-box;
    border: 1px solid #dcdfe6;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    color: #606266;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.marketing-pagination .pager-btn:hover:not(:disabled) {
    color: #409eff;
    border-color: #409eff;
}
.marketing-pagination .pager-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    color: #c0c4cc;
}
.marketing-pagination .pager-btn-current {
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    box-sizing: border-box;
    border: 1px solid #409eff;
    background: #409eff;
    border-radius: 4px;
    font-size: 14px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    cursor: default;
}
