/**
 * Element UI → Bootstrap 5 视觉主题（仅样式，不改组件逻辑）
 * 作用于带 .bootstrap-theme 的页面
 */
.bootstrap-theme {
    --bs-font-sans-serif: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", sans-serif;
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 0.9375rem;
    --bs-body-line-height: 1.6;
    --app-font-size-sm: 0.8125rem;
    --app-font-size-base: 0.9375rem;
    --app-font-size-lg: 1.0625rem;
    --el-color-primary: var(--bs-primary);
    --el-color-success: var(--bs-success);
    --el-color-warning: var(--bs-warning);
    --el-color-danger: var(--bs-danger);
    --el-color-info: var(--bs-secondary);
    --el-border-color: var(--bs-border-color);
    --el-border-color-light: var(--bs-border-color-translucent);
    --el-text-color-primary: var(--bs-body-color);
    --el-text-color-regular: var(--bs-secondary-color);
    --el-text-color-secondary: var(--bs-secondary-color);
    --el-text-color-placeholder: var(--bs-secondary-color);
    --el-fill-color-blank: var(--bs-body-bg);
    --el-bg-color: var(--bs-body-bg);
    --el-font-family: var(--bs-body-font-family);
    font-family: var(--bs-body-font-family);
    font-size: var(--app-font-size-base);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.bootstrap-theme .table-container {
    background: var(--bs-body-bg);
    padding: 1.25rem;
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius-lg);
    box-shadow: var(--bs-box-shadow-sm);
}

.bootstrap-theme .table-toolbar {
    border-bottom-color: var(--bs-border-color);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

.bootstrap-theme .list-search-bar .el-form-item__label {
    color: var(--bs-body-color);
    font-weight: 500;
    font-size: var(--app-font-size-sm);
    padding-right: 0.5rem;
    letter-spacing: 0.01em;
}

.bootstrap-theme .list-search-bar.el-form--inline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.bootstrap-theme .list-search-bar .el-form-item {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0;
    vertical-align: middle;
}

.bootstrap-theme .list-search-bar .el-form-item__content {
    display: inline-flex;
    align-items: center;
    line-height: 32px;
}

.bootstrap-theme .list-search-bar .el-input--small .el-input__inner {
    height: 32px;
    line-height: 32px;
}

.bootstrap-theme .list-search-bar .el-form-item__label {
    line-height: 32px;
    padding-top: 0;
    padding-bottom: 0;
}

.bootstrap-theme .list-search-bar .list-search-bar-actions .el-form-item__content {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 32px;
}

.bootstrap-theme .list-search-bar .list-search-bar-actions .el-form-item__content .el-button + .el-button {
    margin-left: 0;
}

/* 按钮 → Bootstrap btn */
.bootstrap-theme .el-button {
    border-radius: var(--bs-border-radius);
    font-weight: 500;
    font-family: inherit;
    letter-spacing: 0.01em;
    line-height: 1.5;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.bootstrap-theme .el-button--default,
.bootstrap-theme .el-button:not([class*="el-button--"]) {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: var(--bs-border-color);
}

.bootstrap-theme .el-button--default:hover,
.bootstrap-theme .el-button--default:focus,
.bootstrap-theme .el-button:not([class*="el-button--"]):hover {
    color: var(--bs-body-color);
    background-color: var(--bs-secondary-bg);
    border-color: var(--bs-border-color);
}

.bootstrap-theme .el-button--primary {
    color: #fff;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.bootstrap-theme .el-button--primary:hover,
.bootstrap-theme .el-button--primary:focus {
    color: #fff;
    background-color: var(--bs-primary-border-subtle, #0b5ed7);
    border-color: var(--bs-primary-border-subtle, #0a58ca);
}

.bootstrap-theme .el-button--primary.is-plain {
    color: var(--bs-primary);
    background-color: transparent;
    border-color: var(--bs-primary);
}

.bootstrap-theme .el-button--primary.is-plain:hover {
    color: #fff;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.bootstrap-theme .el-button--success {
    color: #fff;
    background-color: var(--bs-success);
    border-color: var(--bs-success);
}

.bootstrap-theme .el-button--warning {
    color: #212529;
    background-color: var(--bs-warning);
    border-color: var(--bs-warning);
}

.bootstrap-theme .el-button--danger {
    color: #fff;
    background-color: var(--bs-danger);
    border-color: var(--bs-danger);
}

.bootstrap-theme .el-button--info {
    color: #fff;
    background-color: var(--bs-info);
    border-color: var(--bs-info);
}

.bootstrap-theme .el-button--mini,
.bootstrap-theme .el-button--small {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: var(--bs-border-radius-sm);
}

.bootstrap-theme .el-button + .el-button {
    margin-left: 0.375rem;
}

/* 输入框 / 下拉 → form-control / form-select */
.bootstrap-theme .el-input__inner,
.bootstrap-theme .el-textarea__inner {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    font-family: inherit;
    font-size: var(--app-font-size-sm);
    line-height: 1.5;
    letter-spacing: 0.01em;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.bootstrap-theme .el-input__inner:focus,
.bootstrap-theme .el-textarea__inner:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.bootstrap-theme .el-input.is-disabled .el-input__inner {
    background-color: var(--bs-secondary-bg);
    opacity: 1;
}

.bootstrap-theme .el-select .el-input.is-focus .el-input__inner {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* 表格 → table */
.bootstrap-theme .el-table {
    color: var(--bs-body-color);
    font-family: inherit;
    font-size: var(--app-font-size-sm);
    line-height: 1.5;
    border-radius: var(--bs-border-radius);
    overflow: hidden;
}

.bootstrap-theme .el-table,
.bootstrap-theme .el-table__expanded-cell {
    background-color: var(--bs-body-bg);
}

.bootstrap-theme .el-table th.el-table__cell {
    background-color: var(--bs-tertiary-bg) !important;
    color: var(--bs-emphasis-color);
    font-weight: 600;
    font-size: var(--app-font-size-sm);
    letter-spacing: 0.02em;
    border-bottom: 2px solid var(--bs-border-color);
    padding: 0.65rem 0.5rem;
}

.bootstrap-theme .el-table td.el-table__cell {
    border-bottom: 1px solid var(--bs-border-color);
    padding: 0.4rem 0.5rem;
    vertical-align: middle;
}

.bootstrap-theme .el-table td.el-table__cell .cell {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.25rem;
    min-height: 2rem;
    line-height: 1.4;
    box-sizing: border-box;
}

.bootstrap-theme .el-table td.el-table__cell.is-left .cell {
    justify-content: flex-start;
}

.bootstrap-theme .el-table td.el-table__cell.is-right .cell {
    justify-content: flex-end;
}

.bootstrap-theme .el-table--border,
.bootstrap-theme .el-table--group {
    border: 1px solid var(--bs-border-color);
}

.bootstrap-theme .el-table--border .el-table__cell,
.bootstrap-theme .el-table__body-wrapper .el-table--border.is-scrolling-left ~ .el-table__fixed {
    border-right: 1px solid var(--bs-border-color);
}

.bootstrap-theme .el-table--striped .el-table__body tr.el-table__row--striped td.el-table__cell {
    background-color: var(--bs-tertiary-bg);
}

.bootstrap-theme .el-table__body tr:hover > td.el-table__cell {
    background-color: rgba(var(--bs-primary-rgb), 0.06) !important;
}

.bootstrap-theme .el-table__empty-text {
    color: var(--bs-secondary-color);
}

.bootstrap-theme .el-table::before,
.bootstrap-theme .el-table--border::after,
.bootstrap-theme .el-table--group::after {
    background-color: var(--bs-border-color);
}

/* 标签 → badge */
.bootstrap-theme .el-tag {
    border-radius: var(--bs-border-radius-pill);
    font-weight: 500;
    font-size: 0.75rem;
    border-width: 1px;
    padding: 0.25em 0.55em;
}

/* 表格内状态徽章 */
.bootstrap-theme .el-table .table-badge.el-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 1.5rem;
    min-width: 3.25rem;
    margin: 0;
    padding: 0 0.5rem;
    border: none;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.01em;
    vertical-align: middle;
    box-sizing: border-box;
}

.bootstrap-theme .el-table .table-badge.el-tag--info {
    color: #495057;
    background-color: #e9ecef;
}

.bootstrap-theme .el-table .table-badge.el-tag--success {
    color: #0f5132;
    background-color: #d1e7dd;
}

.bootstrap-theme .el-table .table-badge.el-tag--warning {
    color: #664d03;
    background-color: #fff3cd;
}

.bootstrap-theme .el-table .table-badge.el-tag--danger {
    color: #842029;
    background-color: #f8d7da;
}

.bootstrap-theme .el-table .table-badge.table-badge--primary {
    color: #084298;
    background-color: #cfe2ff;
}

.bootstrap-theme .el-table .table-badge.table-badge--domestic {
    color: #9a3412;
    background-color: #ffedd5;
}

.bootstrap-theme .el-table .table-badge.table-badge--western {
    color: #3730a3;
    background-color: #e0e7ff;
}

.bootstrap-theme .el-table .table-badge.table-badge--num {
    min-width: 2rem;
    padding: 0 0.45rem;
    color: #495057;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.bootstrap-theme .el-table .table-badge.table-badge--empty {
    min-width: 1.5rem;
    color: #adb5bd;
    background-color: transparent;
    border: 1px dashed #dee2e6;
    font-weight: 500;
}

/* 表格操作按钮 */
.bootstrap-theme .table-action-group {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.3rem;
    white-space: normal;
}

.bootstrap-theme .el-table td.table-col-actions .cell {
    flex-wrap: wrap;
    white-space: normal;
}

.bootstrap-theme .table-action-group .el-button + .el-button {
    margin-left: 0 !important;
}

.bootstrap-theme .table-action-btn.el-button {
    height: 1.625rem;
    margin: 0;
    padding: 0 0.45rem;
    flex-shrink: 0;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease,
        box-shadow 0.15s ease, transform 0.15s ease;
}

.bootstrap-theme .table-action-btn__inner {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.bootstrap-theme .table-action-btn__icon {
    width: 0.875rem;
    height: 0.875rem;
    flex-shrink: 0;
}

.bootstrap-theme .table-action-btn--detail.el-button {
    color: #495057;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
}

.bootstrap-theme .table-action-btn--detail.el-button:hover,
.bootstrap-theme .table-action-btn--detail.el-button:focus {
    color: #0d6efd;
    background-color: #e7f1ff;
    border-color: #b6d4fe;
    box-shadow: 0 2px 6px rgba(13, 110, 253, 0.12);
    transform: translateY(-1px);
}

.bootstrap-theme .table-action-btn--edit.el-button.is-plain {
    color: #0d6efd;
    background-color: #fff;
    border: 1px solid #9ec5fe;
}

.bootstrap-theme .table-action-btn--edit.el-button.is-plain:hover,
.bootstrap-theme .table-action-btn--edit.el-button.is-plain:focus {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
    box-shadow: 0 2px 8px rgba(13, 110, 253, 0.22);
    transform: translateY(-1px);
}

.bootstrap-theme .table-action-btn--film.el-button {
    color: #0f766e;
    background-color: #fff;
    border: 1px solid #99f6e4;
}

.bootstrap-theme .table-action-btn--film.el-button:hover,
.bootstrap-theme .table-action-btn--film.el-button:focus {
    color: #fff;
    background-color: #0d9488;
    border-color: #0d9488;
    box-shadow: 0 2px 8px rgba(13, 148, 136, 0.22);
    transform: translateY(-1px);
}

.bootstrap-theme .table-action-btn--delivery.el-button {
    color: #9f1239;
    background-color: #fff;
    border: 1px solid #fda4af;
}

.bootstrap-theme .table-action-btn--delivery.el-button:hover,
.bootstrap-theme .table-action-btn--delivery.el-button:focus {
    color: #fff;
    background-color: #be123c;
    border-color: #be123c;
    box-shadow: 0 2px 8px rgba(190, 18, 60, 0.22);
    transform: translateY(-1px);
}

.bootstrap-theme .table-action-btn.el-button:active {
    transform: translateY(0);
}

/* 带图标按钮（搜索栏 / 工具栏） */
.bootstrap-theme .btn-with-icon.el-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1;
    vertical-align: middle;
}

.bootstrap-theme .btn-with-icon.el-button > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.bootstrap-theme .btn-with-icon__inner {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    line-height: 1;
}

.bootstrap-theme .btn-with-icon__icon {
    display: block;
    width: 0.875rem;
    height: 0.875rem;
    flex-shrink: 0;
}

.bootstrap-theme .btn-with-icon--toolbar .btn-with-icon__icon {
    width: 1rem;
    height: 1rem;
}

.bootstrap-theme .btn-with-icon--toolbar.el-button {
    min-height: 2rem;
    padding: 0.45rem 0.9rem 0.45rem 0.75rem;
}

.bootstrap-theme .list-search-bar .btn-with-icon--search.el-button {
    height: 32px;
    min-height: 32px;
    padding: 0 0.75rem;
    box-sizing: border-box;
}

.bootstrap-theme .list-search-bar .btn-with-icon--search .btn-with-icon__icon {
    width: 0.875rem;
    height: 0.875rem;
}

.bootstrap-theme .btn-with-icon--muted.el-button {
    color: #495057;
    background-color: #fff;
    border-color: #dee2e6;
}

.bootstrap-theme .btn-with-icon--muted.el-button:hover,
.bootstrap-theme .btn-with-icon--muted.el-button:focus {
    color: #0d6efd;
    background-color: #f8f9fa;
    border-color: #ced4da;
}

.bootstrap-theme .btn-with-icon--danger.el-button {
    color: #dc3545;
    background-color: #fff;
    border-color: #f1aeb5;
}

.bootstrap-theme .btn-with-icon--danger.el-button:hover,
.bootstrap-theme .btn-with-icon--danger.el-button:focus {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

/* 弹窗等区域通用 tag */
.bootstrap-theme .el-tag--info {
    color: var(--bs-secondary-color);
    background-color: var(--bs-secondary-bg);
    border-color: var(--bs-border-color);
}

.bootstrap-theme .el-tag--success {
    color: #fff;
    background-color: var(--bs-success);
    border-color: var(--bs-success);
}

.bootstrap-theme .el-tag--warning {
    color: #212529;
    background-color: var(--bs-warning);
    border-color: var(--bs-warning);
}

.bootstrap-theme .el-tag--danger {
    color: #fff;
    background-color: var(--bs-danger);
    border-color: var(--bs-danger);
}

.bootstrap-theme .el-tag:not([class*="el-tag--"]) {
    color: var(--bs-primary);
    background-color: rgba(var(--bs-primary-rgb), 0.1);
    border-color: rgba(var(--bs-primary-rgb), 0.25);
}

/* 弹窗 → modal */
.bootstrap-theme .el-dialog {
    border-radius: var(--bs-border-radius-lg);
    border: 1px solid var(--bs-border-color-translucent);
    box-shadow: var(--bs-box-shadow-lg);
}

.bootstrap-theme .el-dialog__header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--bs-border-color);
    background-color: var(--bs-tertiary-bg);
    border-radius: var(--bs-border-radius-lg) var(--bs-border-radius-lg) 0 0;
}

.bootstrap-theme .el-dialog__title {
    font-size: var(--app-font-size-lg);
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--bs-emphasis-color);
}

.bootstrap-theme .el-dialog__headerbtn .el-dialog__close {
    color: var(--bs-secondary-color);
}

.bootstrap-theme .el-dialog__body {
    padding: 1.25rem;
    color: var(--bs-body-color);
}

.bootstrap-theme .el-dialog__footer {
    padding: 0.75rem 1.25rem 1rem;
    border-top: 1px solid var(--bs-border-color);
}

/* 单选按钮组 → btn-group */
.bootstrap-theme .el-radio-button__inner {
    border-color: var(--bs-border-color);
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
}

.bootstrap-theme .el-radio-button__orig-radio:checked + .el-radio-button__inner {
    color: #fff;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    box-shadow: none;
}

.bootstrap-theme .el-radio-button:first-child .el-radio-button__inner {
    border-radius: var(--bs-border-radius) 0 0 var(--bs-border-radius);
}

.bootstrap-theme .el-radio-button:last-child .el-radio-button__inner {
    border-radius: 0 var(--bs-border-radius) var(--bs-border-radius) 0;
}

/* 日期选择器 */
.bootstrap-theme .el-range-editor.el-input__inner {
    border-radius: var(--bs-border-radius);
    border-color: var(--bs-border-color);
}

.bootstrap-theme .el-range-editor.is-active,
.bootstrap-theme .el-range-editor.is-active:hover {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* 加载遮罩 */
.bootstrap-theme .el-loading-mask {
    background-color: rgba(255, 255, 255, 0.75);
}

.bootstrap-theme .el-loading-spinner .path {
    stroke: var(--bs-primary);
}

/* 复选框 */
.bootstrap-theme .el-checkbox__input.is-checked .el-checkbox__inner,
.bootstrap-theme .el-checkbox__input.is-indeterminate .el-checkbox__inner {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

/* 下拉面板 */
.bootstrap-theme .el-select-dropdown {
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    box-shadow: var(--bs-box-shadow);
}

.bootstrap-theme .el-select-dropdown__item.selected {
    color: var(--bs-primary);
    font-weight: 600;
}

.bootstrap-theme .el-select-dropdown__item.hover,
.bootstrap-theme .el-select-dropdown__item:hover {
    background-color: rgba(var(--bs-primary-rgb), 0.08);
}

/* 分页 / 消息等（若页面用到） */
.bootstrap-theme .el-pagination.is-background .el-pager li:not(.disabled).active {
    background-color: var(--bs-primary);
}

.bootstrap-theme .el-message-box {
    border-radius: var(--bs-border-radius-lg);
    border: 1px solid var(--bs-border-color);
    box-shadow: var(--bs-box-shadow-lg);
}

/* 页面内统计区块沿用 Bootstrap 色 */
.bootstrap-theme .stats-top3-num {
    color: var(--bs-primary);
}

.bootstrap-theme .shortplay-gate-pill {
    border-radius: var(--bs-border-radius);
}

.bootstrap-theme .shortplay-gate-pill--ok {
    background: rgba(var(--bs-success-rgb), 0.1);
    border-color: rgba(var(--bs-success-rgb), 0.35);
}

.bootstrap-theme .shortplay-gate-pill--ok .p {
    color: var(--bs-success);
}

.bootstrap-theme .shortplay-gate-pill--no {
    background: rgba(var(--bs-danger-rgb), 0.1);
    border-color: rgba(var(--bs-danger-rgb), 0.35);
}

.bootstrap-theme .shortplay-gate-pill--no .p {
    color: var(--bs-danger);
}

.bootstrap-theme .floating-export-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 999;
    width: 0;
    height: 0;
    overflow: visible;
    pointer-events: none;
}

.bootstrap-theme .floating-export-actions .btn-download-floating.el-button {
    position: fixed !important;
    right: 1.75rem !important;
    left: auto !important;
    top: auto !important;
    margin: 0 !important;
    pointer-events: auto;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

.bootstrap-theme .floating-export-actions .btn-download-floating--download.el-button {
    bottom: 2rem !important;
}

.bootstrap-theme .floating-export-actions .btn-download-floating--performance.el-button {
    /* 下载按钮 bottom + 按钮高度(含 padding) + 间距 */
    bottom: calc(2rem + 4.15rem + 0.75rem) !important;
}

.bootstrap-theme .btn-download-floating.el-button {
    position: relative;
    height: auto;
    min-height: 2.75rem;
    padding: 0.7rem 1.2rem 0.7rem 1rem;
    border: none;
    border-radius: 999px;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    box-shadow:
        0 4px 16px rgba(13, 110, 253, 0.35),
        0 2px 6px rgba(15, 23, 42, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.bootstrap-theme .btn-download-floating.el-button::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.45), rgba(10, 88, 202, 0.15));
    opacity: 0.55;
    z-index: -1;
    filter: blur(8px);
    transition: opacity 0.22s ease;
}

.bootstrap-theme .btn-download-floating--performance.el-button {
    background: linear-gradient(135deg, #fd7e14 0%, #e8590c 100%);
    box-shadow:
        0 4px 16px rgba(253, 126, 20, 0.35),
        0 2px 6px rgba(15, 23, 42, 0.08);
}

.bootstrap-theme .btn-download-floating--performance.el-button::before {
    background: linear-gradient(135deg, rgba(253, 126, 20, 0.45), rgba(232, 89, 12, 0.15));
}

.bootstrap-theme .btn-download-floating--performance.el-button:hover,
.bootstrap-theme .btn-download-floating--performance.el-button:focus {
    background: linear-gradient(135deg, #e8590c 0%, #d9480f 100%);
    box-shadow:
        0 10px 28px rgba(253, 126, 20, 0.42),
        0 4px 12px rgba(15, 23, 42, 0.12);
}

.bootstrap-theme .btn-download-floating.el-button:hover,
.bootstrap-theme .btn-download-floating.el-button:focus {
    color: #fff;
    border: none;
    transform: translateY(-3px);
    background: linear-gradient(135deg, #0b5ed7 0%, #084298 100%);
    box-shadow:
        0 10px 28px rgba(13, 110, 253, 0.42),
        0 4px 12px rgba(15, 23, 42, 0.12);
}

.bootstrap-theme .btn-download-floating.el-button:hover::before,
.bootstrap-theme .btn-download-floating.el-button:focus::before {
    opacity: 0.85;
}

.bootstrap-theme .btn-download-floating.el-button:active {
    transform: translateY(-1px);
    box-shadow:
        0 6px 18px rgba(13, 110, 253, 0.34),
        0 2px 8px rgba(15, 23, 42, 0.1);
}

.bootstrap-theme .btn-download-floating__inner {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.bootstrap-theme .btn-download-floating__icon {
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
}

.bootstrap-theme .btn-download-floating__text {
    line-height: 1;
    white-space: nowrap;
}

@media (max-width: 576px) {
    .bootstrap-theme .floating-export-actions .btn-download-floating.el-button {
        right: 1rem !important;
        padding: 0.65rem 0.95rem 0.65rem 0.85rem;
    }

    .bootstrap-theme .floating-export-actions .btn-download-floating--download.el-button {
        bottom: 1.25rem !important;
    }

    .bootstrap-theme .floating-export-actions .btn-download-floating--performance.el-button {
        bottom: calc(1.25rem + 3.95rem + 0.75rem) !important;
    }

    .bootstrap-theme .btn-download-floating__text {
        font-size: 0.8125rem;
    }
}

/* Element 组件统一继承页面字体 */
.bootstrap-theme .el-form-item__label,
.bootstrap-theme .el-select-dropdown,
.bootstrap-theme .el-message-box,
.bootstrap-theme .el-radio-button__inner,
.bootstrap-theme .el-checkbox__label,
.bootstrap-theme .el-date-editor,
.bootstrap-theme .el-pagination {
    font-family: inherit;
}
