/* ===== 全局重置 & 基础 ===== */
        /* 移除默认边距，设置盒模型为 border-box */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* 页面主体背景黑色，白色文字，禁止横向滚动，平滑滚动 */
        body {
            background-color: #000000;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* ===== 自定义滚动条 ===== */
        /* 整个滚动条宽度 */
        ::-webkit-scrollbar {
            width: 6px;
        }

        /* 滚动条轨道背景 */
        ::-webkit-scrollbar-track {
            background: #0a0a0a;
        }

        /* 滚动条滑块颜色和圆角 */
        ::-webkit-scrollbar-thumb {
            background: #2c2c3a;
            border-radius: 6px;
        }

        /* 滑块 hover 状态 */
        ::-webkit-scrollbar-thumb:hover {
            background: #4a4a6a;
        }

        /* --- 导航栏容器 --- */
        /* 固定定位，模糊毛玻璃效果，底部边框和阴影 */
        .navbar {
            background: rgba(6, 6, 14, 1);
            -webkit-backdrop-filter: blur(32px) saturate(1.5);
            backdrop-filter: blur(32px) saturate(1.5);
            padding: 0.9rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
            box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.02);
            transition: all 0.4s ease;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1050;
        }

        /* 滚动后导航栏样式变化：更透明，更重阴影 */
        .navbar.scrolled {
            background: rgba(4, 4, 12, 0.75);
            -webkit-backdrop-filter: blur(40px) saturate(1.6);
            backdrop-filter: blur(40px) saturate(1.6);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 8px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.03);
        }

        /* --- Logo --- */
        /* Logo 链接使用 flex 布局，调整间距和字重 */
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 700;
            font-size: 1.5rem;
            letter-spacing: -0.02em;
            color: #ffffff !important;
            text-decoration: none;
            position: relative;
            padding: 0.2rem 0;
        }

        /* Logo 图片尺寸与阴影效果 */
        .navbar-brand img {
            height: 50px;
            width: auto;
            filter: drop-shadow(0 0 16px rgba(100, 160, 255, 0.12));
            transition: filter 0.4s ease;
        }

        /* Logo 图片 hover 时阴影加强 */
        .navbar-brand:hover img {
            filter: drop-shadow(0 0 30px rgba(100, 160, 255, 0.25));
        }

        /* 品牌文字渐变色 */
        .brand-text {
            font-weight: 600;
            font-size: 1.25rem;
            background: linear-gradient(135deg, #ffffff 20%, #8ab4ff 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -0.02em;
        }

        /* =====  导航链接 ===== */
        /* 导航项之间增加间距，垂直居中 */
        .navbar-nav {
            gap: 0.15rem;
            align-items: center;
        }

        .nav-item {
            position: relative;
        }

        /* 导航链接的样式：白色文字，圆角按钮感，过渡效果 */
        .navbar-nav .nav-link {
            font-weight: 700;
            font-size: 1.1rem;
            padding: 0.55rem 1.2rem;
            color: rgb(255, 255, 255) !important;
            border-radius: 40px;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            letter-spacing: 0.01em;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            white-space: nowrap;
        }

        /* 链接中的图标透明度 */
        .navbar-nav .nav-link i {
            font-size: 0.9rem;
            opacity: 0.5;
            transition: opacity 0.3s ease;
        }

        /* 链接 hover 或激活状态：背景微亮，阴影 */
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: #ffffff !important;
            background: rgba(255, 255, 255, 0.05);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 0 24px rgba(138, 180, 255, 0.04);
        }

        /* hover/active 时图标完全显示 */
        .navbar-nav .nav-link:hover i,
        .navbar-nav .nav-link.active i {
            opacity: 1;
        }

        /* 导航链接下划线动画效果（伪元素） */
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 60%;
            height: 2px;
            border-radius: 4px;
            background: linear-gradient(90deg, #6a8cff, #a78bfa, #6a8cff);
            background-size: 200% 100%;
            transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
            transform-origin: center;
            opacity: 0.5;
        }

        /* hover/active 时下划线展开并播放动画 */
        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after {
            transform: translateX(-50%) scaleX(1);
            animation: shimmerLine 2s ease-in-out infinite;
        }

        /* 下划线光晕流动动画 */
        @keyframes shimmerLine {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

        /* 下拉菜单的头部容器（用于对齐） */
        .dropdown-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 0;
        }

        .dropdown-header .nav-link {
            flex: 1;
            margin: 0;
        }

        /* ===== 桌面端下拉菜单 ===== */
        @media (min-width: 992px) {

            /* 导航项之间更大间距 */
            .navbar-nav {
                gap: 5rem;
            }

            /* ---- 普通下拉菜单 ---- */
            .dropdown .dropdown-menu:not(.dropdown-menu-mega) {
                position: absolute;
                top: calc(100% + 0.5rem);
                left: 50%;
                transform: translateX(-50%) translateY(8px) scale(0.97);
                min-width: 260px;
                padding: 0.8rem 0.6rem;
                background: rgba(255, 255, 255, 0.97);
                -webkit-backdrop-filter: blur(24px) saturate(1.3);
                backdrop-filter: blur(24px) saturate(1.3);
                border: 1px solid rgba(0, 0, 0, 0.06);
                border-radius: 18px;
                box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.8);
                /* 默认隐藏，通过 hover 显示 */
                display: block !important;
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transform-origin: top center;
                transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.3s;
                transition-delay: 0.25s, 0.25s, 0.25s;
            }

            /* 在菜单上方增加透明区域，防止鼠标移出时菜单立即消失 */
            .dropdown .dropdown-menu:not(.dropdown-menu-mega)::before {
                content: '';
                position: absolute;
                top: -16px;
                left: 0;
                width: 100%;
                height: 16px;
                background: transparent;
                pointer-events: auto;
            }

            /* 鼠标悬停父级时显示菜单 */
            .dropdown:hover .dropdown-menu:not(.dropdown-menu-mega) {
                opacity: 1;
                visibility: visible;
                transform: translateX(-50%) translateY(0) scale(1);
                pointer-events: auto;
            }

            /* 下拉菜单项样式 */
            .dropdown-menu:not(.dropdown-menu-mega) .dropdown-item {
                color: rgba(0, 0, 0, 0.8);
                font-weight: 600;
                font-size: 1rem;
                padding: 0.6rem 1.4rem;
                border-radius: 10px;
                transition: all 0.2s ease;
                display: flex;
                align-items: center;
                gap: 0.6rem;
                background: transparent;
            }

            .dropdown-menu:not(.dropdown-menu-mega) .dropdown-item i {
                width: 1.4rem;
                text-align: center;
                font-size: 1.5rem;
                transition: color 0.2s;
            }

            /* 菜单项 hover 效果 */
            .dropdown-menu:not(.dropdown-menu-mega) .dropdown-item:hover {
                background: rgba(0, 0, 0, 0.04);
                color: #000000;
            }

            /* 分割线样式 */
            .dropdown-divider {
                border-top: 1px solid rgba(0, 0, 0, 0.06);
                margin: 0.3rem 1rem;
            }

            /* 针对较小桌面屏幕 (992px ~ 1200px) 优化导航栏 */
            @media (min-width: 992px) and (max-width: 1199.98px) {

                /* 减小导航项之间的水平间距 */
                .navbar-nav {
                    gap: clamp(0.5rem, 1.5vw, 2.5rem);
                }

                /* 缩小导航链接的字体和内边距 */
                .navbar-nav .nav-link {
                    font-size: 0.95rem;
                    padding: 0.45rem 0.9rem;
                }

                /* 稍微缩小 Logo 高度，腾出横向空间 */
                .navbar-brand img {
                    height: 42px;
                }

                /* 调整右侧“科研铺子”按钮 */
                .btn-outline-light-custom {
                    padding: 0.4rem 1.1rem;
                    font-size: 0.9rem;
                }

                /* （可选）产品中心 Mega Menu 偏移量微调，避免菜单超出屏幕 */
                .dropdown-menu-mega {
                    transform: translateX(-50%) translateY(10px) scale(0.98) !important;
                }

                .dropdown:hover .dropdown-menu-mega {
                    transform: translateX(-50%) translateY(0) scale(1) !important;
                }
            }

            /* ===== 产品中心 Mega Menu (全屏宽幅) ===== */
            .dropdown-menu-mega {
                position: absolute;
                top: calc(100% + 0.5rem);
                left: 50%;
                transform: translateX(-50%) translateY(10px) scale(0.98);
                width: 100vw;
                max-width: 1280px;
                padding: 2.8rem 3rem;
                background: rgba(255, 255, 255, 0.97);
                -webkit-backdrop-filter: blur(32px) saturate(1.5);
                backdrop-filter: blur(32px) saturate(1.5);
                border: 1px solid rgba(0, 0, 0, 0.06);
                border-radius: 30px;
                box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.8);
                /* 使用三列网格布局 */
                display: grid !important;
                grid-template-columns: 1fr 1fr 1fr;
                gap: 2.5rem;
                /* 默认隐藏，hover 显示 */
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.4s;
                transform-origin: top center;
                transition-delay: 0.25s, 0.25s, 0.25s;
            }

            /* 鼠标悬停时 Mega Menu 出现 */
            .dropdown:hover .dropdown-menu-mega {
                opacity: 1;
                visibility: visible;
                transform: translateX(-50%) translateY(0) scale(1);
                pointer-events: auto;
                transition-delay: 0s, 0s, 0s;
            }

            /* 菜单上方透明区域，防止鼠标离开触发 */
            .dropdown-menu-mega::before {
                content: '';
                position: absolute;
                top: -20px;
                left: 0;
                width: 100%;
                height: 20px;
                background: transparent;
                pointer-events: auto;
            }

            /* 默认 Mega Menu 居中显示 */
            .dropdown-menu-mega {
                left: 50% !important;
                transform: translateX(-50%) translateY(10px) scale(0.98) !important;
            }

            .dropdown:hover .dropdown-menu-mega {
                transform: translateX(-50%) translateY(0) scale(1) !important;
            }

            /* 在 992px~1200px 窗口范围内向右偏移 160px，避免菜单溢出或覆盖 */
            @media (min-width: 992px) and (max-width: 1200px) {
                .dropdown-menu-mega {
                    transform: translateX(calc(-50% + 115px)) translateY(10px) scale(0.98) !important;
                }

                .dropdown:hover .dropdown-menu-mega {
                    transform: translateX(calc(-50% + 115px)) translateY(0) scale(1) !important;
                }
            }

            /* 在 1200px~1600px 窗口范围内向右偏移 160px，避免菜单溢出或覆盖 */
            @media (min-width: 1200px) and (max-width: 1600px) {
                .dropdown-menu-mega {
                    transform: translateX(calc(-50% + 160px)) translateY(10px) scale(0.98) !important;
                }

                .dropdown:hover .dropdown-menu-mega {
                    transform: translateX(calc(-50% + 160px)) translateY(0) scale(1) !important;
                }
            }

            /* --- Mega Menu 列样式 --- */
            .mega-col {
                position: relative;
                overflow: hidden;
                display: flex;
                flex-direction: column;
                gap: 0.5rem;
                border-radius: 18px;
                padding: 0.8rem 0.6rem 0.8rem 0.6rem;
                transition: background 0.3s ease;
            }

            /* 背景图标 — 大号半透明、位于右下角 */
            .mega-bg-icon {
                position: absolute;
                right: -10px;
                bottom: -10px;
                font-size: 160px;
                opacity: 0.1;
                color: #4a6aff;
                pointer-events: none;
                z-index: 0;
                line-height: 1;
                transform: rotate(-4deg);
                filter: drop-shadow(0 0 40px rgba(74, 106, 255, 0.08));
                transition: opacity 0.4s ease, transform 0.4s ease;
            }

            /* 悬停列时背景图标变明显并轻微旋转 */
            .mega-col:hover .mega-bg-icon {
                opacity: 0.5;
                transform: rotate(-10deg) scale(1.02);
            }

            /* 列内标题和链接置于背景图标之上 */
            .mega-col-title,
            .mega-col a {
                position: relative;
                z-index: 1;
            }

            /* 列标题样式：底部边框，颜色深灰 */
            .mega-col-title {
                font-weight: 700;
                font-size: 1.05rem;
                color: #1a1a2e;
                letter-spacing: 0.03em;
                margin-bottom: 0.6rem;
                display: flex;
                align-items: center;
                gap: 0.5rem;
                border-bottom: 1px solid rgba(0, 0, 0, 0.06);
                padding-bottom: 0.6rem;
            }

            /* 列标题前的图标颜色 */
            .mega-col-title i {
                color: #4a6aff;
                font-size: 0.95rem;
                opacity: 0.8;
            }

            /* 列内链接样式 */
            .mega-col a {
                color: rgba(0, 0, 0, 0.7);
                text-decoration: none;
                font-weight: 600;
                font-size: 1rem;
                padding: 0.4rem 0.6rem;
                border-radius: 8px;
                transition: all 0.2s ease;
                display: flex;
                align-items: center;
                gap: 0.4rem;
            }

            /* 链接 hover 时文字变黑，背景浅灰 */
            .mega-col a:hover {
                color: #000000;
                background: rgba(0, 0, 0, 0.04);
                padding-left: 0.6rem;
            }

            /* 链接前的小箭头图标 */
            .mega-col a i {
                font-size: 0.7rem;
                opacity: 0.3;
                transition: opacity 0.2s;
                color: #4a6aff;
            }

            .mega-col a:hover i {
                opacity: 0.8;
            }

            /* 桌面端隐藏移动端专用的展开箭头按钮 */
            .dropdown-arrow-btn {
                display: none !important;
            }
        }

        /* ===== 移动端适配(≤992px) ===== */
        @media (max-width: 992px) {

            /* 折叠菜单滚动区域 */
            .navbar-collapse {
                max-height: calc(100vh - 80px);
                overflow-y: auto;
                padding: 0.5rem 0 1.5rem;
                background: transparent;
            }

            /* 移动端滚动条细条 */
            .navbar-collapse::-webkit-scrollbar {
                width: 3px;
            }

            .navbar-collapse::-webkit-scrollbar-track {
                background: transparent;
            }

            .navbar-collapse::-webkit-scrollbar-thumb {
                background: rgba(138, 180, 255, 0.2);
                border-radius: 6px;
            }

            /* 移动端导航链接样式调整 */
            .navbar-nav .nav-link {
                padding: 0.6rem 1rem;
                font-size: 1.05rem;
                border-radius: 12px;
                color: rgba(255, 255, 255, 0.85) !important;
            }

            .navbar-nav .nav-link:hover {
                background: rgba(255, 255, 255, 0.04);
                color: #ffffff !important;
            }

            /* 移除桌面端下划线动画 */
            .navbar-nav .nav-link::after {
                display: none !important;
            }

            /* --- 普通下拉菜单 (移动端) --- */
            .dropdown .dropdown-menu:not(.dropdown-menu-mega) {
                position: static;
                float: none;
                background: rgba(255, 255, 255, 0.97);
                -webkit-backdrop-filter: blur(8px);
                backdrop-filter: blur(8px);
                border: 1px solid rgba(0, 0, 0, 0.06);
                border-radius: 14px;
                margin: 0.2rem 0 0.4rem 0.8rem;
                padding: 0.4rem 0.2rem;
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
                display: none;
                /* 默认隐藏，点击按钮后显示 */
            }

            .dropdown .dropdown-menu.show {
                display: block;
            }

            .dropdown-menu .dropdown-item {
                color: rgba(0, 0, 0, 0.8);
                font-weight: 600;
                font-size: 1rem;
                padding: 0.5rem 1.2rem;
                border-radius: 8px;
                transition: 0.15s;
                display: flex;
                align-items: center;
                gap: 0.6rem;
            }

            .dropdown-menu .dropdown-item:hover {
                background: rgba(0, 0, 0, 0.04);
                color: #000000;
            }

            .dropdown-menu .dropdown-item i {
                width: 1.4rem;
                text-align: center;
                font-size: 1.5rem;
                color: rgba(0, 0, 0, 0.25);
            }

            /* --- Mega Menu 移动端降级为普通列表 --- */
            .dropdown-menu-mega {
                display: none !important;
                flex-direction: column !important;
                min-width: auto !important;
                padding: 0.6rem 0.4rem !important;
                background: rgba(255, 255, 255, 0.97) !important;
                -webkit-backdrop-filter: blur(8px) !important;
                backdrop-filter: blur(8px) !important;
                border: 1px solid rgba(0, 0, 0, 0.06) !important;
                border-radius: 14px !important;
                margin: 0.2rem 0 0.4rem 0.8rem;
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
                gap: 0.25rem;
            }

            .dropdown-menu-mega.show {
                display: block !important;
            }

            /* Mega Menu 内的列样式 */
            .dropdown-menu-mega .mega-col {
                margin-bottom: 0.5rem;
                position: relative;
                overflow: hidden;
                border-radius: 12px;
                padding: 0.4rem 0.4rem 0.4rem 0.4rem;
            }

            /* 移动端背景图标缩小 */
            .dropdown-menu-mega .mega-bg-icon {
                position: absolute;
                right: 0px;
                bottom: 0px;
                font-size: 72px;
                opacity: 0.045;
                color: #4a6aff;
                pointer-events: none;
                z-index: 0;
                line-height: 1;
                transform: rotate(-2deg);
            }

            .dropdown-menu-mega .mega-col-title,
            .dropdown-menu-mega .mega-col a {
                position: relative;
                z-index: 1;
            }

            .dropdown-menu-mega .mega-col-title {
                font-weight: 700;
                font-size: 0.95rem;
                color: #1a1a2e;
                padding: 0.2rem 0.4rem;
                border-bottom: 1px solid rgba(0, 0, 0, 0.06);
                display: flex;
                align-items: center;
                gap: 0.4rem;
            }

            .dropdown-menu-mega .mega-col-title i {
                color: #4a6aff;
            }

            .dropdown-menu-mega .mega-col a {
                color: rgba(0, 0, 0, 0.7);
                font-weight: 600;
                font-size: 0.92rem;
                padding: 0.25rem 0.8rem;
                display: flex;
                align-items: center;
                gap: 0.4rem;
                text-decoration: none;
                border-radius: 6px;
                transition: 0.15s;
            }

            .dropdown-menu-mega .mega-col a:hover {
                background: rgba(0, 0, 0, 0.04);
                color: #000000;
            }

            .dropdown-divider {
                border-top: 1px solid rgba(0, 0, 0, 0.06);
                margin: 0.2rem 1rem;
            }

            /* --- 移动端箭头按钮 --- */
            /* 用于点击展开/折叠下拉菜单的按钮 */
            .dropdown-arrow-btn {
                display: inline-flex !important;
                align-items: center;
                justify-content: center;
                background: rgba(255, 255, 255, 0.06);
                border: none;
                color: rgba(255, 255, 255, 0.5);
                font-size: 0.8rem;
                padding: 0.3rem 0.7rem;
                border-radius: 8px;
                transition: all 0.25s ease;
                cursor: pointer;
                flex-shrink: 0;
                margin-left: 0.2rem;
            }

            .dropdown-arrow-btn:hover,
            .dropdown-arrow-btn:focus {
                color: #ffffff;
                background: rgba(255, 255, 255, 0.10);
            }

            /* 旋转箭头表示展开状态 */
            .dropdown-arrow-btn.rotated i {
                transform: rotate(180deg);
            }

            .dropdown-arrow-btn i {
                transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
            }
        }

        /* ===== 右上角“科研铺子”按钮 ===== */
        /* 自定义轮廓按钮，圆角胶囊形，半透明背景 */
        .btn-outline-light-custom {
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.02);
            color: rgb(255, 255, 255);
            border-radius: 40px;
            padding: 0.5rem 1.6rem;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 0.02em;
            transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
            -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            white-space: nowrap;
        }

        .btn-outline-light-custom i {
            font-size: 0.9rem;
            opacity: 0.6;
            transition: opacity 0.3s;
        }

        /* hover 时背景加深，边框增亮，微上移 */
        .btn-outline-light-custom:hover {
            background: rgba(255, 255, 255, 0.06);
            color: #ffffff;
            border-color: rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 30px rgba(138, 180, 255, 0.06);
            transform: translateY(-1px);
        }

        .btn-outline-light-custom:hover i {
            opacity: 1;
        }

        /* ===== 汉堡菜单按钮 ===== */
        .navbar-toggler {
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 12px;
            padding: 0.5rem 0.6rem;
            transition: border-color 0.3s;
            min-width: 44px;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .navbar-toggler:hover {
            border-color: rgba(255, 255, 255, 0.15);
        }

        /* 汉堡图标颜色反相为白色 */
        .navbar-toggler-icon {
            filter: invert(1) brightness(0.7);
            width: 1.2em;
            height: 1.2em;
        }

        /* ===== 面包屑 ===== */
        .breadcrumb-nav {
            padding: 120px 0 0.5rem 0;
            background: transparent;
        }

        .breadcrumb {
            background: transparent;
            margin-bottom: 0;
            padding: 0.5rem 0;
            font-size: 0.9rem;
            color: #8a9bb5;
        }

        .breadcrumb a {
            color: #8a9bb5;
            text-decoration: none;
            transition: color 0.2s;
        }

        .breadcrumb a:hover {
            color: #38bdf8;
        }

        .breadcrumb .active {
            color: #ffffff;
            font-weight: 500;
        }

        /* 面包屑分隔符样式 */
        .breadcrumb-item+.breadcrumb-item::before {
            display: inline-flex;
            align-items: center;
            color: #6a8cff !important;
            font-weight: 700;
            font-size: 1.2rem;
            padding: 0 0.6rem;
            content: "›";
            /* 如果仍有偏移，可微调 line-height */
            line-height: 1;
        }

        /* ===== Banner ===== */
        .banner {
            background-image: url('/img/company.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            /* ---- 固定宽高比 4:1 ---- */
            aspect-ratio: 4 / 1;
            margin-top: 80px;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-align: center;
            position: relative;
            overflow: hidden;
            min-height: 180px;
        }

        .banner::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
            z-index: 1;
            pointer-events: none;
        }

        .banner .container {
            position: relative;
            z-index: 2;
        }

        .banner h2 {
            font-size: 58px;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: 4px;
            color: #ffffff !important;
            text-shadow: 0 0 60px rgba(0, 0, 0, 0.6);
            line-height: 1.2;
        }

        .banner p {
            font-size: 20px;
            font-weight: 300;
            opacity: 0.92;
            max-width: 720px;
            margin: 0 auto;
            color: #ffffffb0;
            letter-spacing: 1px;
            text-shadow: 0 0 30px rgba(56, 189, 248, 0.08);
        }

        @media (max-width: 768px) {
            .banner {
                margin-top: 60px;
                width: 100%;
                max-width: 100%;
                aspect-ratio: auto;
                box-sizing: border-box;
                /* 移动端导航栏通常较矮 */
                min-height: 140px;
                /* 适当减小 */
            }

            .banner h2 {
                font-size: 34px;
                letter-spacing: 2px;
            }

            .banner p {
                font-size: 18px;
                padding: 0 1rem;
            }
        }

        /* ===== 文章主容器 ===== */
        .article-detail-container {
            max-width: 960px;
            margin: 0 auto;
            padding: 1.5rem 1.5rem 3rem;
            background: #f8f8f8;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }

        .article-header {
            margin-bottom: 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            padding-bottom: 1.5rem;
        }

        .article-header h1 {
            font-weight: 700;
            font-size: 2.2rem;
            letter-spacing: -0.5px;
            color: #000000;
            margin-bottom: 0.8rem;
            line-height: 1.3;
        }

        .article-header .article-meta {
            color: #6b7a93;
            font-size: 0.9rem;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .article-header .article-meta span {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }

        .article-cover {
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 2rem;
        }

        .article-cover img {
            width: 100%;
            height: auto;
            max-height: 450px;
            object-fit: cover;
            border-radius: 16px;
        }

        /* ===== 文章内容 ===== */
        .article-content {
            background: #ffffff;
            /* 纯白卡片背景 */
            border: 1px solid #e9edf4;
            /* 浅灰边框 */
            border-radius: 16px;
            /* 圆角 */
            padding: 2rem 2.5rem;
            color: inherit;
            /* 移除固定颜色，让内联样式决定 */
            line-height: 1.8;
            font-size: 1rem;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
            /* 轻阴影 */
            position: relative;
            transition: box-shadow 0.2s ease;
        }

        /* 针对块级元素恢复必要的 display 属性 */
        /* 正文元素保持后台 TinyMCE 输出的 display、margin 和对齐方式。 */

        /* 表格内单元格恢复显示 */
        .article-content table tr {
            display: table-row;
        }

        .article-content table td,
        .article-content table th {
            display: table-cell;
            padding: 0.3rem 0.6rem;
            border: 1px solid #e2e8f0;
        }

        .article-content table {
            max-width: 100%;
        }

        .article-content blockquote {
            border-left: 4px solid #3b82f6;
            /* 品牌蓝 */
            background: #f0f4ff;
            padding: 0.75rem 1.25rem;
            margin: 1.25rem 0;
            border-radius: 0 10px 10px 0;
            color: #1e293b;
        }

        .article-content pre {
            background: #f1f5f9;
            padding: 1rem 1.25rem;
            border-radius: 10px;
            overflow-x: auto;
            border: 1px solid #e2e8f0;
            color: #0f172a;
            font-size: 0.9rem;
        }

        .article-content a {
            color: #2563eb;
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        .article-content a:hover {
            color: #1d4ed8;
        }

        .article-content h1,
        .article-content h2,
        .article-content h3,
        .article-content h4,
        .article-content h5,
        .article-content h6 {
            color: #0f172a;
            margin-top: 1.5rem;
            margin-bottom: 0.75rem;
        }

        .article-content hr {
            border-color: #e2e8f0;
        }

        .article-content .text-muted {
            color: #64748b !important;
        }

        .article-content img {
            max-width: 100%;
        }

        .article-content table th,
        .article-content table td {
            border: 1px solid #e2e8f0;
            padding: 0.6rem 0.9rem;
        }

        .article-content table th {
            background: #f8fafc;
            font-weight: 600;
        }

        /* 页脚样式 */
        footer {
            background-color: #000000;
            text-align: center;
            padding: 2rem;
            color: #d1d5db;
            margin-top: 3rem;
        }

        .footer-dark {
            background-color: #000000;
            border-top: 1px solid #15273f;
            padding: 3rem 0 2rem;
        }

        footer p {
            margin-bottom: 0.25rem;
        }

        footer .small {
            color: #9ca3af;
        }

        footer a {
            color: #a0b4c8 !important;
            transition: color 0.2s;
        }

        footer a:hover {
            color: #38bdf8 !important;
            text-decoration: none;
        }

        /* 公众号二维码图片 */
        footer .qr-img {
            width: 120px;
            height: 120px;
            margin-bottom: 10px;
            flex-shrink: 0;
            align-self: center;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            padding: 4px;
            background: #0a0a0a;
        }

        @media (max-width: 768px) {
            .article-detail-container {
                padding: 0.75rem;
                border-radius: 12px;
            }

            .article-content {
                padding: 1.25rem 1rem;
                border-radius: 12px;
            }

            .article-cover img {
                max-height: 300px;
            }

            .article-content h1 {
                font-size: 1.5rem;
            }

            .navbar {
                padding: 0.5rem 0;
            }

            .navbar-brand img {
                height: 36px;
            }

            .btn-outline-light-custom {
                padding: 0.4rem 1.2rem;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 576px) {
            .navbar {
                padding: 0.4rem 0;
            }

            .navbar-brand img {
                height: 32px;
            }

            .btn-outline-light-custom {
                padding: 0.35rem 1rem;
                font-size: 0.8rem;
            }
        }
