 /* Header 基础样式 */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 64px;
            background-color: #fff;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            z-index: 1000;
            display: flex;
            align-items: center;
        }

        /* 安全内容区域容器 */
        .header-content {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
        }

        /* Logo 样式 */
        .logo img {
            height: 21px; /* 根据实际Logo比例调整，确保在64px高度内美观 */
            width: auto;
            display: block;
        }

        /* 导航栏样式 */
        .nav-menu {
            display: flex;
            gap: 48px;
            list-style: none;
        }

        .nav-item {
            font-weight: 500;
            font-size: 14px;
            color: #1F1F1F;
            text-decoration: none;
            padding: 8px 0; /* 增加点击区域 */
            transition: all 0.3s ease;
            border: 2px solid transparent; /* 预留边框位置，防止抖动 */
            border-radius: 4px; /* 可选：圆角让边框更柔和 */
        }

        .nav-item:hover {
            color: #54C8E8;
        }

        /* 选中/激活状态 */
        .nav-item.active {
            border-bottom: 2px solid #54C8E8;
            color: #1F1F1F; /* 保持文字颜色不变，或根据需要调整 */
        }
