
/* =========================================================================== */
/* CUSTOM STYLES FOR List.aspx — Alpaca Fleece Edition                        */
/* 仿照参考页 "列表页1-考生特情记录.html" 风格                                  */
/* 2026-03-05                                                                  */
/* =========================================================================== */

/* ── 色彩变量 ── */
:root {
  --alpaca-deep:    #5C3D1E;
  --alpaca-dark:    #7A5230;
  --alpaca-mid:     #9B6E42;
  --alpaca-warm:    #B8875A;
  --alpaca-bright:  #C99E70;
  --alpaca-light:   #D4AD7E;
  --alpaca-pale:    #E8CBA5;
  --alpaca-cream:   #F5EAD8;
  --alpaca-snow:    #FAF4EA;
  --accent:         #2A8F7A;
  --accent-dim:     #1F7565;
  --accent-light:   #3AB59A;
  --accent-pale:    rgba(42,143,122,0.12);
  --rose-accent:    #C47A6E;
  --bg:             #F7F0E5;
  --surface:        rgba(255,255,255,0.82);
  --text:           #2C1E0E;
  --text-dim:       rgba(60,40,18,0.62);
  --text-muted:     rgba(90,65,30,0.42);
  --glass-bg:       rgba(255,255,255,0.52);
  --glass-border:   rgba(180,135,90,0.2);
  --popwin-z:       10600; /* PopWin z-index基准值，高于Bootstrap modal(1050) */
}

/* ── Body 背景 (性能优化版) ── */
body {
    /* 兜底颜色，*******主要调整这个颜色和 .panel 颜色******* */
    background-color: rgb(230, 222, 213);
    /*background-color: rgb(222, 218, 215);*/
    /* 组合渐变 */
    background-image: radial-gradient(ellipse at 65% 15%, rgba(153, 111, 72, 0.02) 0%, transparent 60%), radial-gradient(ellipse at 8% 65%, rgba(155,110,66,0.03) 0%, transparent 60%);
    /* 关键修正：
     1. fixed: 让背景相对于视口固定，无论滚多远，背景都是同一张“大图”，不会有拼接感。
     2. 如果内容非常多，fixed 可能导致底部背景重复（取决于 repeat 设置），通常 radial 配合 no-repeat 最好。
  */
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: top center;
    /* 如果页面非常高，而你希望渐变只出现在顶部然后自然过渡到纯色，
     上面的代码已经足够。如果第二屏觉得突兀，说明渐变范围太小，
     请增大上面 transparent 的百分比（如从 55% 改到 70%+）。


  */
    /* --- 背景图片核心设置 --- */
    /* 1. 引用图片路径（确保背景1.jpg放在 wwwroot/images 或对应目录下） */
    /*background-image: url('bj.jpg') !important;
    background-image: url('bj2.jpg') !important;*/
    /*background-size: cover !important;*/
    /*background-image: url('/Skin/dl_bg.jpg') !important;*/
    /*background-repeat: repeat !important;*/ /* 🌟 核心：让图片在水平和垂直方向重复平铺 */
    /*background-size: auto !important;*/ /* 🌟 核心：保持图片 200x200 的真实物理大小，绝不拉伸 */
}

/* ── 纹理层 + 光球 ── */
/*.fleece-texture {
  position:fixed;inset:0;pointer-events:none;opacity:0.02;z-index:-1;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='6' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size:300px;
}
.orb{position:fixed;border-radius:50%;filter:blur(100px);pointer-events:none;z-index:-1;}
.o1{width:500px;height:500px;background:radial-gradient(circle,rgba(184,135,90,0.1),transparent 65%);top:-100px;left:-80px;animation:drift 24s ease infinite;}
.o2{width:400px;height:400px;background:radial-gradient(circle,rgba(155,110,66,0.08),transparent 65%);top:50%;right:-60px;animation:drift 28s ease infinite;animation-delay:-10s;}
.o3{width:350px;height:350px;background:radial-gradient(circle,rgba(42,143,122,0.05),transparent 65%);bottom:-80px;left:30%;animation:drift 32s ease infinite;animation-delay:-17s;}
@keyframes drift{0%,100%{transform:translate(0,0) scale(1);}33%{transform:translate(38px,-30px) scale(1.05);}66%{transform:translate(-25px,35px) scale(0.97);}}*/

/* ── 页面标题渐变动画 (性能优化版) ── */
.modal-header {
    border-bottom: none !important;
    padding: 18px 8px !important;
    /* 保留入场动画 fadeUp，因为它只播放一次，消耗较小。如果依然卡顿，可注释下面这行 */
    /*animation: fadeUp .6s ease both;*/
}

/* ── 标题渐变文字（modal h3 与 page-header h1 公共样式） ── */
.modal-header h3,
.page-header h1 {
    font-size: 35px !important;
    font-weight: 700 !important;
    letter-spacing: -1px;
    /* 静态渐变背景：保留颜色效果，但不流动 */
    background: linear-gradient(120deg,#7A5230,#9B6E42,#B8875A,#D4AD7E,#C99E70,#9B6E42);
    background-size: 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* [优化] 已注释掉无限循环动画 fleeceShift，防止 CPU 持续高负荷计算背景位移 */
    /* animation: fleeceShift 5s ease infinite; */

    font-family: 'Microsoft YaHei', sans-serif !important;
    /* [优化] 已注释掉 will-change，释放显存占用，因为不再需要为动画做预备 */
    /* will-change: background-position; */
}

.modal-header h3 small {
    -webkit-text-fill-color: var(--text-dim);
    font-size: 16px !important;
    font-family: 'Microsoft YaHei', sans-serif !important;
}

.modal-header h3 small b {
    -webkit-text-fill-color: var(--accent);
    font-weight: 700;
    font-size: 16px !important;
    font-family: 'Microsoft YaHei', sans-serif !important;
    padding-left: 3px;
    padding-right: 3px;
}

.modal-header a {
    font-size: 14px !important;
}

.modal-header a.btn-default {
    -webkit-text-fill-color: var(--text-dim);
    font-size: 14px !important;
}

.page-header {
    border-bottom: none !important;
    padding: 0px 8px !important;
    /* 保留入场动画，若卡顿可注释 */
    /*animation: fadeUp .6s ease both;*/
}

/* .page-header h1 样式已合并到上方 .modal-header h3, .page-header h1 规则 */

.page-header h1 small {
    /* 【核心修改】强制恢复实心颜色，不受父级渐变影响 */
    -webkit-text-fill-color: #999 !important;
    color: #999 !important;
    /* 清除可能继承的背景裁剪属性 */
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    font-size: 22px !important;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important ;
    font-weight: 500 !important;
}

.page-header h1 small b {
    -webkit-text-fill-color: var(--accent);
    font-weight: 700;
    font-size: 18px;
    padding-left: 3px;
    padding-right: 3px;
}

.page-header a {
    font-size: 14px !important;
}

.page-header a.btn-default {
    -webkit-text-fill-color: var(--text-dim);
    font-size: 14px !important;
}


.panel .row {
    margin-bottom: 20px;
}

/* 已注释：背景位移动画，消耗 CPU 进行重绘，低配电脑建议关闭 */
/* @keyframes fleeceShift {
    0%,100%{background-position:0% 50%;}
    50%{background-position:100% 50%;}
} */

/* 已注释：淡入上浮动画，虽由 GPU 加速，但大量元素同时执行仍可能卡顿 */
/* @keyframes fadeUp {
    from{opacity:0;transform:translateY(26px);}
    to{opacity:1;transform:translateY(0);}
} */


/* ── 毛玻璃面板 (性能平衡版) ── */
.panel {
    /* 
     [优化策略] 
     原 blur(28px) 计算量过大，易导致低配电脑滚动卡顿/白屏。
     已调整为 blur(12px)，保留毛玻璃质感的同时大幅降低 GPU 负载。
  */
    background: rgba(250, 247, 247, 0.65) !important; /* 稍微提高不透明度，弥补模糊减少带来的通透感损失 */
    /* 优化后的模糊参数：半径减小，计算更快 ，占用GPU*/
    /*backdrop-filter: blur(12px) saturate(1.2);
    -webkit-backdrop-filter: blur(12px) saturate(1.2);*/
    border: 1px solid rgba(0, 0, 0, 0.26) !important;
    border-radius: 24px !important;
    /* 阴影保持不动，这是 CSS 绘制，性能消耗极低 */
    box-shadow: 0 4px 32px rgba(122,82,48,0.06), inset 0 1px 0 rgba(255,252,235,0.9) !important;
    overflow: hidden;
    position: relative;
    z-index: 1;
    /* [可选] 如果依然感觉打开面板瞬间卡顿，请注释下面这行 animation */
    animation: fadeUp .6s .1s ease both;
}

    /* ── 极端性能模式 (备用) ── */
    /* 
   如果用户在非常老旧的设备上，可以取消下面这段注释，
   完全禁用毛玻璃特效，改为纯色背景，性能最佳。
*/
    /*
@media (prefers-reduced-motion: reduce) {
  .panel {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(255,255,255,0.95) !important;
    animation: none !important;
  }
}
*/


/* ── 毛玻璃面板 ── */
/*body {
    background: rgba(255,255,255,0.55) !important;
    -webkit-backdrop-filter: blur(28px) saturate(1.5);
    border: 1px solid rgba(184,135,90,0.16) !important;
    box-shadow: 0 4px 32px rgba(122,82,48,0.06), inset 0 1px 0 rgba(255,252,235,0.9) !important;
}*/
    /* ── 面板装饰层 (性能优化版) ── */
    .panel::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none; /* 确保不拦截鼠标事件 */
        /* 
     [优化说明]
     原代码有 2 层渐变。为减少 GPU 重绘压力，已注释掉第二层 (右下角绿色光晕)。
     仅保留左上角的主色调光晕，视觉影响极小，但渲染量减半。
     如果依然卡顿，可将下面整个 background 属性注释掉，改为 transparent。
  */
        background: radial-gradient(ellipse at 0% 0%, rgba(212,173,126,0.06) 0%, transparent 50%)
        /* , radial-gradient(ellipse at 100% 100%, rgba(42,143,122,0.03) 0%, transparent 50%) */
        ;
        /* 确保装饰层在内容下方 */
        z-index: 0;
    }

/* ── 面板内容区 ── */
.panel-body {
    padding: 20px 28px !important;
    position: relative;
    /* 确保内容浮在装饰层 (::before) 之上 */
    z-index: 1;
}

/* ── 表格整体 (无性能风险，保持原样) ── */
.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: transparent !important;
    border: none !important;
}

.table-bordered {
    border: none !important;
}

    /* 表格单元格边框移除 */
    .table-bordered > thead > tr > th,
    .table-bordered > tbody > tr > th,
    .table-bordered > tfoot > tr > th,
    .table-bordered > thead > tr > td,
    .table-bordered > tbody > tr > td,
    .table-bordered > tfoot > tr > td {
        border: none !important;
    }




/* ── 表头 ── */
.table > thead > tr > th, .table th {
    /*padding: 14px 16px !important;*/
    padding-bottom: 14px !important;
    padding-top: 14px !important;
    /*text-align: left;*/
    font-weight: 600 !important;
    color: var(--alpaca-dark) !important;
    font-size: 15px;
    letter-spacing: 0.3px;
    border-bottom: 1.5px solid rgba(184,135,90,0.12) !important;
    border-top: none !important;
    background: rgba(184,135,90,0.04) !important;
    /*white-space: nowrap;*/
    position: sticky;
    top: 0;
    z-index: 2;
    will-change: transform;
}
/* ── 表格行 ── */
.table > tbody > tr > td, .table td {
    /*padding: 14px 16px !important;*/
    padding-bottom: 14px !important;
    padding-top: 14px !important;
    color: var(--text) !important;
    border-top: 1px solid rgba(184,135,90,0.06) !important;
    /*vertical-align: middle;*/
    line-height: 1.55;
}



.table > tbody > tr {
    /* 已注释掉 transition，移除所有过渡动画效果，提升性能 */
    /* transition: transform .3s cubic-bezier(.34,1.56,.64,1), background-color .3s, box-shadow .3s !important; */

    border-bottom: 1px solid rgba(184,135,90,0.06);
}

/* 行 hover：背景高亮 (已移除位移和阴影动画) */
.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
    background-color: rgba(184,135,90,0.06) !important;
}

.table-hover > tbody > tr:hover {
    /* 已注释掉 transform，移除鼠标悬停时的右移效果 */
    /* transform: translateX(4px); */
    /* 已注释掉 box-shadow，移除左侧高光条动画，减少渲染压力 */
    /* box-shadow: inset 3px 0 0 var(--alpaca-warm); */
}

/* ── active 行（底部操作） ── */
/* 静态背景色和边框，无性能问题 */
.table > thead > .active > td,
.table > thead > .active > th,
.table > tbody > .active > td,
.table > tbody > .active > th,
.table > tfoot > .active > td,
.table > tfoot > .active > th,
tr.active > td {
    background-color: rgba(184,135,90,0.04) !important;
    border-top: 1px solid rgba(184,135,90,0.1) !important;
}




/* ── 表格内链接（排除.btn按钮） ── */
/* 简单的颜色过渡，GPU 友好 */
.table a:not(.btn) {
    color: var(--accent) !important;
    text-decoration: none !important;
    font-weight: 500;
    padding: 2px 6px;
    border-radius: 6px;
    transition: background-color .25s, color .25s;
}

    .table a:not(.btn):hover {
        background: var(--accent-pale) !important;
        color: var(--accent-dim) !important;
        text-decoration: none !important;
    }
    
/* ── 输入框和下拉框 (保持原样，性能极佳) ── */
.form-control {
    padding: 8px 14px !important;
    border-radius: 12px !important;
    color: var(--text) !important;
    box-shadow: none !important;
    transition: border-color .25s, box-shadow .25s !important;
    height: 40px;
    background-color:#fbfbfb;
}

    .form-control:hover {
        border-color: rgba(184,135,90,0.4) !important;
    }

    .form-control:focus {
        border-color: var(--accent) !important;
        box-shadow: 0 0 0 3px rgba(42,143,122,0.1) !important;
        outline: none !important;
    }

    /* ── Disabled 状态样式 ── */
    .form-control:disabled,
    .form-control[disabled] {
        background-color: rgba(0, 0, 0, 0.03) !important;
        color: rgba(0, 0, 0, 0.5) !important;
        border-color: rgba(0, 0, 0, 0.1) !important;
        cursor: not-allowed !important;
        backdrop-filter: none !important;
        /* [注意] pointer-events: none 会禁止用户选中/复制框内文字。
       如果需要允许复制文字，请删除下面这行，并添加 user-select: text; */
        pointer-events: none;
        box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05) !important;
    }
/* ── 按钮 - Primary (最终性能修复版) ── */
.btn-primary {
    border-radius: 12px !important;
    background: linear-gradient(135deg, var(--alpaca-dark), var(--alpaca-warm)) !important;
    color: #ebe8e8 !important;
    border: none !important;
    box-shadow: 0 4px 18px rgba(41, 36, 32, 0.2) !important;
    /* [性能] 移除全局 will-change */
    /* 过渡属性：仅包含 GPU 友好属性 */
    transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), box-shadow .25s cubic-bezier(.34, 1.56, .64, 1), background .25s cubic-bezier(.34, 1.56, .64, 1) !important;
    position: relative;
    overflow: hidden; /* 必须：用于裁剪伪元素 */
    /* [性能] 温和的硬件加速，建立独立合成层 */
    transform: translateZ(0);
}

    /* ── 光泽扫过伪元素 (核心修复：使用 transform) ── */
    .btn-primary::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0; /* 定位基准设为 0 */
        width: 100%;
        height: 100%;
        /* 光泽渐变 */
        background: linear-gradient(90deg, transparent, rgba(129, 51, 51, 0.25), transparent);
        /* [关键修复] 
       原代码: left: -100% (触发重排，CPU 渲染，卡顿!)
       新代码: transform: translateX(-100%) (GPU 渲染，丝滑!)
    */
        transform: translateX(-100%);
        /* 过渡也改为 transform */
        transition: transform 0.4s cubic-bezier(.34, 1.56, .64, 1);
        /* 可选：确保伪元素也在合成层，防止干扰父级 */
        will-change: transform;
    }

    /* ── Hover & Focus: 上浮 + 高亮 + 触发光泽 ── */
    .btn-primary:hover,
    .btn-primary:focus {
        /* [性能] 仅在交互瞬间请求高性能资源 */
        will-change: transform, box-shadow, background;
        /*  background: linear-gradient(135deg, var(--alpaca-warm), var(--alpaca-light)) !important; */
        transform: translateY(0px) scale(1.02);
        box-shadow: 0 8px 28px rgba(122, 82, 48, 0.3) !important;
        border-color: transparent !important;
        color: #fff !important;
        outline: none;
    }

        /* 触发光泽动画 (配合父级的 transform) */
        .btn-primary:hover::after {
            /* [关键修复] 使用 translateX 移动 */
            transform: translateX(100%);
        }

    /* ── Active: 按下反馈 (物理下沉) ── */
    .btn-primary:active {
        will-change: transform;
        /* [UX 优化] 覆盖 hover 的上浮，改为下沉和缩小 */
        transform: translateY(0px) scale(0.98);
        box-shadow: 0 2px 10px rgba(122, 82, 48, 0.15) !important;
        /* 背景稍微变暗，模拟按压 */
        background: linear-gradient(135deg, var(--alpaca-dark), var(--alpaca-warm)) !important;
        filter: brightness(0.95);
        /* [性能] 加快过渡，让点击响应更跟手 */
        transition-duration: 0.1s !important;
    }

/* ── 移动端优化 (可选但推荐) ── */
@media (hover: none) and (pointer: coarse) {
    .btn-primary::after {
        display: none; /* 触摸屏禁用光泽，省电且避免误触 */
    }

    .btn-primary:hover,
    .btn-primary:focus {
        transform: translateZ(0); /* 重置悬浮效果 */
        box-shadow: 0 4px 18px rgba(122, 82, 48, 0.2) !important;
        will-change: auto;
    }
}

/* ── 通用按钮基础优化 (应用于所有按钮) ── */
/* 
   [策略] 
   1. 移除所有全局 will-change。
   2. 使用 translateZ(0) 开启温和的硬件加速。
   3. 仅在 :hover 时动态添加 will-change。
*/

/* ── 按钮 - Success ── */
.btn-success {
    border-radius: 12px !important;
    background: linear-gradient(135deg, var(--accent-dim), var(--accent)) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(42,143,122,0.2) !important;
    transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s cubic-bezier(.34,1.56,.64,1) !important;
    /* [优化] 移除全局 will-change，改用温和加速 */
    will-change: auto;
    transform: translateZ(0);
}

    .btn-success:hover {
        /* [优化] 仅在 hover 时请求高性能 */
        will-change: transform, box-shadow;
        transform: translateY(-1px) scale(1.02);
        box-shadow: 0 8px 24px rgba(42,143,122,0.3) !important;
    }

/* ── 按钮 - Info ── */
.btn-info {
    border-radius: 12px !important;
    background: linear-gradient(135deg, #2980B9, #3498DB) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(41,128,185,0.2) !important;
    transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s cubic-bezier(.34,1.56,.64,1), background .25s cubic-bezier(.34,1.56,.64,1) !important;
    will-change: auto;
    transform: translateZ(0);
}

    .btn-info:hover, .btn-info:focus, .btn-info:active {
        will-change: transform, box-shadow, background;
        background: linear-gradient(135deg, #3498DB, #5DADE2) !important;
        transform: translateY(-1px) scale(1.02);
        box-shadow: 0 8px 24px rgba(41,128,185,0.3) !important;
        border-color: transparent !important;
        color: #fff !important;
    }

/* ── 按钮 - Warning ── */
.btn-warning {
    border-radius: 12px !important;
    background: linear-gradient(135deg, #E67E22, #F39C12) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(230,126,34,0.2) !important;
    transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s cubic-bezier(.34,1.56,.64,1), background .25s cubic-bezier(.34,1.56,.64,1) !important;
    will-change: auto;
    transform: translateZ(0);
}

    .btn-warning:hover, .btn-warning:focus, .btn-warning:active {
        will-change: transform, box-shadow, background;
        background: linear-gradient(135deg, #F39C12, #F5B041) !important;
        transform: translateY(-1px) scale(1.02);
        box-shadow: 0 8px 24px rgba(230,126,34,0.3) !important;
        border-color: transparent !important;
        color: #fff !important;
    }

/* ── 按钮 - Danger ── */
.btn-danger {
    border-radius: 12px !important;
    background: linear-gradient(135deg, #C0392B, #E74C3C) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(192,57,43,0.2) !important;
    transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s cubic-bezier(.34,1.56,.64,1), background .25s cubic-bezier(.34,1.56,.64,1) !important;
    will-change: auto;
    transform: translateZ(0);
}

    .btn-danger:hover, .btn-danger:focus, .btn-danger:active {
        will-change: transform, box-shadow, background;
        background: linear-gradient(135deg, #E74C3C, #EC7063) !important;
        transform: translateY(-1px) scale(1.02);
        box-shadow: 0 8px 24px rgba(192,57,43,0.3) !important;
        border-color: transparent !important;
        color: #fff !important;
    }
/* ── 按钮 - Default (最终完善版) ── */
.btn-default {
    border-radius: 12px;
    background: rgb(248, 243, 243, 0.70);
    color: var(--text);
   /*  border: 1.5px solid rgba(184, 135, 90, 0.2);*/
    box-shadow: 0 2px 8px rgba(122, 82, 48, 0.06);
    /* 过渡属性：涵盖所有可能变化的属性 */
    transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), box-shadow .25s cubic-bezier(.34, 1.56, .64, 1), background-color .25s cubic-bezier(.34, 1.56, .64, 1), border-color .25s cubic-bezier(.34, 1.56, .64, 1);
    /* [完美] 默认不预占资源 */
    will-change: auto;
    /* [完美] 强制开启硬件加速 */
    transform: translateZ(0);
}

    /* Hover & Focus: 上浮 + 高亮 */
    .btn-default:hover, .btn-default:focus {
        /* [完美] 仅在需要时请求高性能资源 */
        will-change: transform, box-shadow, background-color, border-color;
        background: rgba(184, 135, 90, 0.08) !important;
        transform: translateY(-0px) scale(1.01); /* 上浮 */
        box-shadow: 0 6px 18px rgba(122, 82, 48, 0.12);
        border-color: rgba(184, 135, 90, 0.35);
        color: var(--alpaca-deep);
        outline: none; /* 移除默认焦点轮廓，用边框色代替 */
    }

    /* Active: 按下时的物理反馈 (新增优化) */
    .btn-default:active {
        /* 保持 will-change 以确保按下瞬间不卡顿 */
        will-change: transform, box-shadow;
        background: rgba(184, 135, 90, 0.12) !important; /* 更深一点的背景 */
        /* [关键 UX 优化] 按下时轻微下沉并缩小，模拟真实按压感 */
        /* 覆盖 hover 的 translateY(-2px)，改为 translateY(0) 或 1px，scale 改回 1 或 0.98 */
        transform: translateY(0px) scale(0.98);
        box-shadow: 0 2px 6px rgba(122, 82, 48, 0.08); /* 阴影变小，模拟靠近桌面 */
        border-color: rgba(184, 135, 90, 0.4);
        color: var(--alpaca-deep);
        /* 加快过渡速度，让按压响应更跟手 */
        transition-duration: 0.1s;
    }
/* ── 复选框美化 (性能极佳，保持原样) ── */
input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    border: 1.5px solid rgba(184,135,90,0.25);
    background: rgba(255,255,255,0.7);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color .25s, background-color .25s;
    position: relative;
    vertical-align: middle;
}

    input[type="checkbox"]:checked {
        background: linear-gradient(135deg, var(--accent-dim), var(--accent));
        border-color: transparent;
    }

        input[type="checkbox"]:checked::after {
            content: '√';
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 11px;
            font-weight: 700;
        }

    input[type="checkbox"]:hover {
        border-color: var(--accent);
    }

/* ── 分页 (性能极佳，保持原样) ── */
.pagination {
    display: flex !important;
    gap: 4px;
    flex-wrap: wrap;
    align-items: center;
}
    /* ── 分页组件 - 基础样式 (性能优化版) ── */
    .pagination > li > a,
    .pagination > li > span {
        border-radius: 10px !important;
        margin: 0 2px !important;
        padding: 8px 14px !important;
        /* 背景与边框 */
        background: rgba(255, 255, 255, 0.6) !important;
        border: 1px solid rgba(184, 135, 90, 0.15) !important;
        /* 文本 */
        color: var(--alpaca-dark) !important;
        font-weight: 500 !important;
        font-size: 13px !important;
        line-height: 1.4 !important;
        /* [性能] 仅包含 GPU 友好属性的过渡 */
        /* 注意：background-color 和 border-color 的变化在现代浏览器中通常也是高效的 */
        transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), box-shadow .25s cubic-bezier(.34, 1.56, .64, 1), background-color .25s cubic-bezier(.34, 1.56, .64, 1), border-color .25s cubic-bezier(.34, 1.56, .64, 1), color .25s cubic-bezier(.34, 1.56, .64, 1) !important;
        /* [性能] 建立独立合成层，但不过度预占资源 */
        transform: translateZ(0);
        /* 移除默认点击高亮 (移动端) */
        -webkit-tap-highlight-color: transparent;
    }

        /* ── Hover & Focus: 悬浮上浮 + 高亮 ── */
        .pagination > li > a:hover,
        .pagination > li > span:hover,
        .pagination > li > a:focus,
        .pagination > li > span:focus {
            /* [关键优化] 仅在交互瞬间请求高性能资源，防止大量页码同时占用显存 */
            will-change: transform, box-shadow, background-color, border-color;
            background: rgba(184, 135, 90, 0.08) !important;
            border-color: rgba(184, 135, 90, 0.3) !important;
            color: var(--alpaca-deep) !important;
            /* 上浮效果 */
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(122, 82, 48, 0.12);
            text-decoration: none !important;
            outline: none; /* 移除默认焦点框 */
            z-index: 2; /* 确保上浮时覆盖相邻元素 (如果有重叠) */
        }

        /* ── Active: 按下反馈 (物理下沉) ── */
        .pagination > li > a:active,
        .pagination > li > span:active {
            /* 保持 will-change 以确保流畅 */
            will-change: transform;
            /* [UX 核心] 覆盖 hover 的上浮，改为轻微下沉，模拟真实按键 */
            transform: translateY(-1px) scale(0.96); /* 稍微下沉并缩小 */
            box-shadow: 0 2px 6px rgba(122, 82, 48, 0.08);
            background: rgba(184, 135, 90, 0.15) !important; /* 按下时背景稍深 */
            border-color: rgba(184, 135, 90, 0.4) !important;
            /* [性能] 极快的响应速度 (0.1s) */
            transition-duration: 0.1s !important;
        }

    /* ── 当前页状态 (通常由 JS 添加 .active 类) ── */
    .pagination > .active > a,
    .pagination > .active > span,
    .pagination > .active > a:hover,
    .pagination > .active > span:hover {
        /* 强制禁用变换，保持静止 */
        transform: none !important;
        will-change: auto !important;
        /* 示例：当前页的高亮样式 (可根据需求调整) */
        background: linear-gradient(135deg, var(--alpaca-dark), var(--alpaca-warm)) !important;
        border-color: transparent !important;
        color: #fff !important;
        box-shadow: 0 4px 12px rgba(122, 82, 48, 0.25) !important;
        cursor: default;
    }

/* ── 移动端特别优化 ── */
@media (hover: none) and (pointer: coarse) {
    /* 触摸屏禁用 hover 的上浮效果，防止状态“卡住” */
    .pagination > li > a:hover,
    .pagination > li > span:hover,
    .pagination > li > a:focus,
    .pagination > li > span:focus {
        transform: translateZ(0) !important; /* 重置为初始位置 */
        box-shadow: 0 4px 12px rgba(122, 82, 48, 0.05); /* 保留轻微阴影即可 */
        will-change: auto;
        z-index: auto;
    }

    /* 触摸屏主要依赖 :active 的按压反馈，上面已定义 */
}

    .pagination > .active > a, .pagination > .active > span,
    .pagination > .active > a:hover, .pagination > .active > span:hover,
    .pagination > .active > a:focus, .pagination > .active > span:focus {
        background: linear-gradient(135deg, var(--alpaca-dark), var(--alpaca-warm)) !important;
        border-color: transparent !important;
        color: #fff !important;
        box-shadow: 0 4px 14px rgba(122,82,48,0.2) !important;
    }

    .pagination > .disabled > a, .pagination > .disabled > span {
        opacity: 0.4 !important;
        pointer-events: none;
    }

/* ── 弹层（浮动层）- 性能优化版 ── */

/* 背景遮罩：blur(6px) 是安全的，保留 */
.popbg {
    background: rgba(0,0,0,0.45) !important;
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
    z-index: 99 !important;
}

/* 弹窗内容：[关键优化] 降低模糊半径，移除过度饱和 */
.PopWin1 .modal-content {
    background: rgba(255,255,255,0.90) !important; /* 稍微提高不透明度，减少对模糊的依赖 */
    /* [优化说明]
     原代码: blur(24px) saturate(1.5) -> 极度消耗 GPU，易卡顿
     新代码: blur(10px) -> 视觉柔和且流畅，计算量减少 60%+
     去掉了 saturate，除非您的设计强依赖高饱和度，否则建议移除以提升流畅度。
  */
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(184,135,90,0.16) !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 60px rgba(122,82,48,0.15) !important;
    /* 确保弹窗自身开启硬件加速，防止重绘闪烁 */
    transform: translateZ(0);
}

/* ── 微粒动画 (JS生成) - 性能关键修复 ── */
.particle {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    animation: particleRise linear infinite;
    z-index: 0;
    /* [关键优化] 移除 will-change！
       原因：如果有 50+ 个粒子，每个都创建独立 GPU 图层会导致显存爆炸。
       现代浏览器对 transform/opacity 动画已有自动优化，无需手动干预。
    */
    /* will-change: transform, opacity;  <-- 已删除 */
    /* 如果需要强制硬件加速，使用这个轻量级替代方案，它不会预占过多显存 */
    transform: translateZ(0);
}

@keyframes particleRise {
    0% {
        transform: translateY(110vh) translateX(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: .3;
    }

    90% {
        opacity: .06;
    }

    100% {
        transform: translateY(-5vh) translateX(var(--dx)) rotate(360deg);
        opacity: 0;
    }
}

/* ── 点击波纹 (JS生成) - 保持原样 (一次性动画，无负担) ── */
@keyframes rip {
    to {
        transform: translate(-50%, -50%) scale(40);
        opacity: 0;
    }
}

/* ── Badge 标签 - 保持原样 ── */
.label {
    border-radius: 100px !important;
    padding: 4px 12px !important;
}

/* ── 容器间距微调 - 保持原样 ── */
.container-fluid {
    padding: 0 24px !important;
}

.btn-group {
    margin-right: 6px;
    margin-bottom: 6px;
}

/* ── 添加按钮样式 - 性能优化版 ── */
.btn-add {
    padding: 7px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--accent-dim), var(--accent));
    color: #fff !important;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 22px rgba(42,143,122,0.25);
    /* 过渡属性 */
    transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s cubic-bezier(.34,1.56,.64,1) !important;
    /* [优化] 移除全局 will-change，改用温和加速 */
    /* will-change: transform; <-- 已删除 */
    transform: translateZ(0);
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    width: auto !important;
    -webkit-text-fill-color: #fff;
    display: inline-flex; /* 建议加上，确保 gap 和 align-items 生效 */
}

    /* ── 光泽扫过伪元素 - 终极性能版 ── */
    .btn-add::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* 渐变保持原样 */
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
        /* [关键] 初始位置 */
        transform: translateX(-100%);
        /* [优化] 
       原代码: ease-in-out (起止慢，中间快，略显拖沓)
       新代码: cubic-bezier(.34, 1.56, .64, 1) (快速启动，带轻微回弹，感知更流畅)
       时间: 从 0.5s 缩短至 0.4s (减少动画占用资源的时间窗口)
    */
        transition: transform 0.4s cubic-bezier(.34, 1.56, .64, 1);
        /* [可选优化] 强制该伪元素独立分层，防止影响父元素重绘 */
        will-change: transform;
        /* 注意：伪元素的 will-change 通常开销很小，因为它随父元素销毁，但如果你极度在意，可以去掉这行，依靠父级 hover 触发 */
    }

    /* ── 交互状态 ── */
    .btn-add:hover {
        /* [完美] 仅在需要时激活 */
        will-change: transform, box-shadow;
        /* 使用相同的贝塞尔曲线，保持动作一致性 */
        transform: translateY(-1px) scale(1.02);
        box-shadow: 0 10px 32px rgba(42,143,122,0.35);
    }

        .btn-add:hover::after {
            /* 配合父级的贝塞尔曲线，光泽扫过会更“丝滑” */
            transform: translateX(100%);
        }

/* [重要] 移动端优化：移除触摸设备上的光泽动画 */
@media (hover: none) and (pointer: coarse) {
    .btn-add::after {
        display: none; /* 触摸屏不需要光泽，节省 GPU */
    }

    .btn-add:hover {
        /* 触摸屏 hover 状态通常不理想，重置变换以避免 stuck 状态 */
        transform: none;
        box-shadow: 0 6px 22px rgba(42,143,122,0.25);
        will-change: auto;
    }
}

/* ── 面板标题与底部 - 保持原样 ── */
.panel-default > .panel-heading {
    background-color: #FAF4EA;
    font-weight: 600;
    padding-left: 20px;
    font-size: 16px;
    font-family: 'Microsoft YaHei', sans-serif !important;
}

.panel-footer {
    background-color: #f2ece2;
}
/* ── PopWin 弹层 z-index (保持原样) ── */
.PopWin {
    z-index: var(--popwin-z) !important;
}

.container-fluid1 {
    z-index: 999 !important;
}

input[type="checkbox"] + label {
    font-weight: normal;
}

/* ── 羊驼毛玻璃导航 (性能优化版) ── */
.zdy-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 64px;
    /* [优化] 背景色稍微调整以配合降低的模糊度 */
    background: rgba(240, 236, 229, 0.85);
    /* [关键优化] 
     原代码: blur(32px) saturate(1.6) -> 极度消耗 GPU，滚动必卡
     新代码: blur(12px) saturate(1.2) -> 视觉柔和，计算量减少 70%+
     对于横跨全屏的导航栏，12px 是性能与美观的黄金平衡点。
  */
    /*backdrop-filter: blur(12px) saturate(1.2);
    -webkit-backdrop-filter: blur(12px) saturate(1.2);*/
    border-bottom: 2px solid rgba(172, 24, 24, 0.644);
    box-shadow: 0 1px 20px rgba(122, 82, 48, 0.04);
    /* [优化] 移除全局 will-change，导航栏本身不需要预占变换资源 */
    /* will-change: transform; <-- 已删除 */
    /* 确保导航栏自身位于独立合成层，防止子元素重绘影响整体 */
    transform: translateZ(0);
}

    .zdy-nav .nav-left {
        display: flex;
        align-items: center;
        gap: 28px;
    }

    .zdy-nav .logo {
        font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
        font-weight: 700;
        font-size: 20px;
        color: var(--text);
        letter-spacing: -0.5px;
        display: flex;
        align-items: center;
        gap: 10px;
        white-space: nowrap;
        text-decoration: none;
        /* 链接默认无需 will-change */
    }

        .zdy-nav .logo:hover {
            text-decoration: none;
            /* 可选：轻微缩放效果，如需可加 transition */
        }

        .zdy-nav .logo em {
            font-style: normal;
            color: var(--accent);
            margin-left: 2px;
        }

    .zdy-nav .nav-links {
        display: flex;
        gap: 4px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

        .zdy-nav .nav-links.collapse.in {
            display: flex !important;
        }

    .zdy-nav .nav-link {
        padding: 6px 16px;
        border-radius: 100px;
        font-size: 14px;
        color: var(--alpaca-dark);
        font-weight: 600;
        transition: background-color .25s cubic-bezier(.34,1.56,.64,1), transform .25s cubic-bezier(.34,1.56,.64,1), color .25s cubic-bezier(.34,1.56,.64,1);
        cursor: pointer;
        text-decoration: none;
        background: transparent;
        border: none;
        display: block;
    }

        .zdy-nav .nav-link:hover {
            background: rgba(184, 135, 90, 0.1);
            transform: translateY(-1px);
            text-decoration: none;
            color: var(--alpaca-deep);
        }

        .zdy-nav .nav-link.active {
            background: linear-gradient(135deg, var(--alpaca-dark), var(--alpaca-warm));
            color: #fff;
            box-shadow: 0 4px 14px rgba(122, 82, 48, 0.2);
            text-decoration: none;
        }

        .zdy-nav .nav-link:focus {
            text-decoration: none;
        }

        .zdy-nav .nav-link.active:focus {
            color: #fff;
        }

    .zdy-nav .nav-links li {
        margin: 0;
        padding: 0;
    }

    .zdy-nav .nav-right {
        display: flex;
        align-items: center;
        gap: 16px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

        .zdy-nav .nav-right li {
            margin: 0;
            padding: 0;
            display: flex;
            position: relative;
        }

    .zdy-nav .user-info {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 6px 14px;
        border-radius: 100px;
        background: rgba(255, 255, 255, 0.6);
        border: 1px solid rgba(184, 135, 90, 0.15);
        font-size: 14px;
        color: var(--text);
        font-weight: 500;
        /* 用户信息块的模糊可以保留稍高一点，因为面积小 */
        backdrop-filter: blur(12px);
        text-decoration: none;
        transition: background-color .25s ease;
    }

        .zdy-nav .user-info:hover {
            text-decoration: none;
            background: rgba(255, 255, 255, 0.8);
        }

        .zdy-nav .user-info:focus {
            text-decoration: none;
        }

    .zdy-nav .user-avatar {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--alpaca-pale), var(--alpaca-warm));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        color: #fff;
        font-weight: 700;
    }

    /* ── 退出按钮 - 性能优化版 ── */
    .zdy-nav .btn-logout {
        padding: 6px 18px;
        border-radius: 100px;
        font-size: 14px;
        background: linear-gradient(135deg, var(--rose-accent), #d4756a);
        color: #fff;
        border: none;
        font-weight: 600;
        cursor: pointer;
        box-shadow: 0 4px 14px rgba(196, 122, 110, 0.25);
        transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s cubic-bezier(.34,1.56,.64,1);
        /* [优化] 移除全局 will-change */
        /* will-change: transform; <-- 已删除 */
        transform: translateZ(0); /* 温和加速 */

        text-decoration: none;
        display: inline-flex;
        align-items: center;
        line-height: normal;
        height: 42px;
    }

        .zdy-nav .btn-logout:hover {
            /* [优化] 仅在 hover 时激活高性能模式 */
            will-change: transform, box-shadow;
            transform: translateY(-1px) scale(1.02);
            box-shadow: 0 8px 24px rgba(196, 122, 110, 0.35);
            text-decoration: none;
            color: #fff;
        }

        .zdy-nav .btn-logout:focus {
            text-decoration: none;
            color: #fff;
        }
    /* ── 下拉菜单 (Dropdown) - 性能与视觉优化 ── */
    .zdy-nav .dropdown-menu {
        border-radius: 12px;
        border: 1px solid rgba(184, 135, 90, 0.15);
        /* [优化] 降低模糊半径，提升展开时的流畅度 */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        /* [优化] 稍微提高背景不透明度，减少对人眼识别文字的干扰，同时减轻模糊计算压力 */
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 10px 30px rgba(122, 82, 48, 0.12);
        padding: 8px;
        margin-top: 10px;
        right: 0;
        left: auto;
        min-width: 200px;
        /* [优化] 确保下拉菜单自身开启硬件加速 */
        transform: translateZ(0);
        /* 添加展开动画的基础状态 (配合 JS 或 CSS :not(.hidden)) 
     注意：Bootstrap 默认通过 display 控制，若要纯 CSS 动画需修改结构或使用 max-height 技巧。
     此处保留 Bootstrap 逻辑，但优化静态渲染性能。
  */
    }

        .zdy-nav .dropdown-menu > li {
            display: block;
        }

            .zdy-nav .dropdown-menu > li > a {
                border-radius: 8px;
                padding: 8px 16px;
                color: var(--text);
                /* [优化] 使用 cubic-bezier 让 hover 反馈更自然 */
                transition: background-color .2s cubic-bezier(.34,1.56,.64,1), color .2s cubic-bezier(.34,1.56,.64,1), transform .2s cubic-bezier(.34,1.56,.64,1);
                font-size: 14px;
                display: block; /* 确保点击区域完整 */
            }

                .zdy-nav .dropdown-menu > li > a:hover {
                    background: rgba(184, 135, 90, 0.08) !important;
                    color: var(--alpaca-dark) !important;
                    /* 轻微位移增加质感 */
                    transform: translateX(2px);
                }

    .zdy-nav .open > a.user-info {
        background: rgba(184, 135, 90, 0.1);
        /* 保持按下状态的视觉稳定性 */
        transform: translateZ(0);
    }

    /* ── 汉堡菜单 (Mobile Menu) - 动画增强 ── */
    .zdy-nav .mobile-menu-btn {
        display: none;
        width: 42px;
        height: 42px;
        border-radius: 10px;
        background: rgba(184, 135, 90, 0.08);
        border: 1px solid rgba(184, 135, 90, 0.15);
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 22px;
        color: var(--alpaca-dark);
        /* [优化] 添加过渡效果 */
        transition: background-color .25s, transform .2s, color .25s;
        transform: translateZ(0);
    }

        .zdy-nav .mobile-menu-btn:hover {
            background: rgba(184, 135, 90, 0.15);
            text-decoration: none;
            transform: scale(1.05); /* 轻微放大 */
        }

        .zdy-nav .mobile-menu-btn:active {
            transform: scale(0.95); /* 点击收缩反馈 */
        }

        .zdy-nav .mobile-menu-btn:focus {
            text-decoration: none;
            outline: none; /* 自定义焦点样式可选 */
            box-shadow: 0 0 0 2px rgba(184, 135, 90, 0.3);
        }

/* ── 移动端响应式优化 ── */
@media(max-width: 768px) {
    .zdy-nav {
        padding: 0 16px;
        height: 56px;
    }

        .zdy-nav .logo {
            font-size: 18px;
        }

        /* [核心优化] 移动端菜单动画化 */
        .zdy-nav .nav-links {
            display: none; /* 默认隐藏 */
            position: absolute;
            top: 56px;
            left: 0;
            right: 0;
            background: rgba(247, 240, 229, 0.98); /* 提高不透明度，移动端阅读更重要 */
            flex-direction: column;
            padding: 10px 16px;
            border-bottom: 1px solid rgba(184, 135, 90, 0.2);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            /* 动画初始状态 */
            opacity: 0;
            transform: translateY(-10px);
            max-height: 0;
            overflow: hidden;
            /* 过渡属性：同时改变高度、透明度和位移 */
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, transform 0.3s ease;
        }

            /* [核心优化] 展开状态 */
            .zdy-nav .nav-links.collapse.in {
                display: flex !important; /* 先恢复 display */
                opacity: 1;
                transform: translateY(0);
                /* max-height 需要一个足够大的值，或者用 JS 动态设置 scrollHeight */
                /* 这里用一个较大的固定值适配一般菜单，若菜单极长建议配合 JS */
                max-height: 400px;
            }

        .zdy-nav .nav-link {
            padding: 12px 16px; /* 增大点击区域 */
            font-size: 15px;
            border-bottom: 1px solid rgba(184, 135, 90, 0.05); /* 增加分割线提升可读性 */
        }

            .zdy-nav .nav-link:last-child {
                border-bottom: none;
            }

        .zdy-nav .mobile-menu-btn {
            display: flex;
            text-decoration: none;
        }

        .zdy-nav .user-name {
            display: none;
        }

        /* 移动端下拉菜单调整 */
        .zdy-nav .dropdown-menu {
            position: static; /* 移动端改为流式布局，避免遮挡 */
            width: 100%;
            box-shadow: none;
            border: none;
            background: rgba(184, 135, 90, 0.05);
            margin-top: 5px;
            backdrop-filter: none; /* 移动端移除模糊以保性能 */
        }
}




/* ============================================
   炫酷浮动光球背景动画
   ============================================ */
/*.bg-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;*/
    /*filter: blur(35px);*/
    /*opacity: 0.7;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    will-change: transform;
    contain: layout style;
}*/

/* 蓝色大球 - 左上 */
/*.orb-1 {
    width: 200px;
    height: 150px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.5) 0%, rgba(59, 130, 246, 0) 65%);
    top: 8%;
    left: -8%;
    animation: orbFloat1 12s infinite alternate ease-in-out;
}*/

/* 紫色球 - 右上 */
/*.orb-2 {
    width: 100px;
    height: 150px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.45) 0%, rgba(139, 92, 246, 0) 65%);
    top: 2%;
    right: -5%;
    animation: orbFloat2 15s infinite alternate ease-in-out;
}*/

/* 青色球 - 中间偏左 */
/*.orb-3 {
    width: 160px;
    height: 120px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.35) 0%, rgba(34, 211, 238, 0) 65%);
    top: 40%;
    left: 10%;
    animation: orbFloat3 18s infinite alternate ease-in-out;
}*/

/* 绿色球 - 右下 */
/*.orb-4 {
    width: 220px;
    height: 180px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.4) 0%, rgba(16, 185, 129, 0) 65%);
    bottom: 5%;
    right: 5%;
    animation: orbFloat4 14s infinite alternate ease-in-out;
}*/

/* 玫瑰色球 - 左下 */
/*.orb-5 {
    width: 230px;
    height: 160px;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.35) 0%, rgba(244, 114, 182, 0) 65%);
    bottom: 15%;
    left: -3%;
    animation: orbFloat5 20s infinite alternate ease-in-out;
}*/

/* 金色球 - 中间偏右 */
/*.orb-6 {
    width: 130px;
    height: 220px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.3) 0%, rgba(251, 191, 36, 0) 65%);
    top: 25%;
    right: 20%;
    animation: orbFloat6 16s infinite alternate ease-in-out;
}

@keyframes orbFloat1 {
    0%   { transform: translate(0, 0); }
    50%  { transform: translate(80px, 60px); }
    100% { transform: translate(30px, 120px); }
}

@keyframes orbFloat2 {
    0%   { transform: translate(0, 0); }
    50%  { transform: translate(-70px, 50px); }
    100% { transform: translate(-40px, 100px); }
}

@keyframes orbFloat3 {
    0%   { transform: translate(0, 0); }
    50%  { transform: translate(50px, -40px); }
    100% { transform: translate(-30px, 30px); }
}

@keyframes orbFloat4 {
    0%   { transform: translate(0, 0); }
    50%  { transform: translate(-60px, -50px); }
    100% { transform: translate(20px, -80px); }
}

@keyframes orbFloat5 {
    0%   { transform: translate(0, 0); }
    50%  { transform: translate(40px, -60px); }
    100% { transform: translate(80px, -20px); }
}

@keyframes orbFloat6 {
    0%   { transform: translate(0, 0); }
    50%  { transform: translate(-40px, 40px); }
    100% { transform: translate(30px, -30px); }
}*/
