/* 全局样式重置，去除浏览器默认间距，让滚动更干净 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background-color: #f5f7fa;
            color: #1e293b;
            line-height: 1.6;
        }

        /* ===== 固定顶部导航栏 ===== */
        .navbar {
            position: fixed;        /* 固定定位，相对于视口 */
            top: 0;                 /* 紧贴顶部 */
            left: 0;
            width: 100%;            /* 横跨整个视口宽度 */
            background-color: #fff; /* 深色背景，现代感 */
            color: white;
            padding: 0.8rem 2rem 0 10rem;   /* 上下内边距稍小，左右留白 */
            display: flex;
            align-items: left;
            /*justify-content: space-between;*/
            gap:8rem;
            flex-wrap: wrap;        /* 如果屏幕太窄，项目可以换行，但仍固定顶部 */
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* 轻微阴影，与内容区分 */
            z-index: 1000;          /* 确保位于页面其他内容之上 */
            font-weight: 500;
            backdrop-filter: blur(0px); /* 默认无模糊，保持锐利 */
            transition: background-color 0.2s;
        }
        .foot_menu
        {
            width:180px;
            float:left;
        } 
        .foot_menuitem
        {
            float:left;
            width:180px;
            height:200px;
        }
        /* 屏幕宽度 ≤ 768px 时（平板） */
        @media (max-width: 768px) {
            body .navbar {
                padding-left: 1.5rem; /* 左侧留空 1.5rem (24px) */
                padding-right: 1.5rem;
            }
            body .content_left,               
            body .foot_menu,
            body .foot_menuitem
            {
                display: none;
            }
               
            
          
        }
            
        

       
        /* 滚动后 - 半透明背景 */
        .navbar.scrolled {
            background-color: rgba(0, 0, 0, 0.8);
            opacity: 0.8;
        }
        .navbar:hover {
            opacity: 1;  /* 悬停时完全不透明 */
        }

        /* 导航栏左侧品牌/logo区域 */
        .logo a {
            color: white;
            font-size: 1.7rem;
            font-weight: 700;
            text-decoration: none;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* 导航链接列表 */
        .nav-links {
            display: flex;
            gap: 1.8rem;            /* 链接间距 */
            list-style: none;
        }

        .nav-links li a {
            color: #e2e8f0;
            text-decoration: none;
            font-size: 1.1rem;
            padding: 0.5rem 0.2rem;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }

        .nav-links li a:hover {
            color: white;
            border-bottom-color: #fbbf24; /* 悬停时金色下划线 */
        }

        /* 右侧辅助按钮（示例） */
        .user-actions {
            display: flex;
            gap: 0.8rem;
        }

        .user-actions button {
            background: transparent;
            border: 1px solid #475569;
            color: #e2e8f0;
            padding: 0.4rem 1.2rem;
            border-radius: 30px;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.2s;
        }

        .user-actions button:hover {
            background-color: #fbbf24;
            border-color: #fbbf24;
            color: #0f172a;
            font-weight: 600;
        }

        /* 由于导航栏固定，它会遮盖页面顶部内容。
           给主体内容设置上内边距，腾出导航栏的高度 (导航栏高度约 70px，但不同浏览器可能有差异，多留一点保险) */
        .content {
            margin-top: 82px;        /* 导航栏固定占据的高度 + 一点额外空间 */
            max-width: 1200px;
            padding: 1.5rem 2rem 4rem;
            margin-left: auto;
            margin-right: auto;
            background-color: white;
            border-radius: 24px 24px 0 0;  /* 上方圆角，与固定栏形成层次 */
            box-shadow: 0 -4px 12px rgba(0,0,0,0.02);
        }

        /* 为了演示滚动，加入一些占位区块 */
        .section-block {
            background-color: #f8fafc;
            border-radius: 24px;
            padding: 2rem;
            margin-bottom: 2.5rem;
            border-left: 6px solid #0f172a;
            box-shadow: 0 8px 20px rgba(0,0,0,0.02);
        }

        .section-block h2 {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #0f172a;
            border-bottom: 2px dashed #cbd5e1;
            padding-bottom: 0.5rem;
        }

        .section-block p {
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        /* 卡片风格的额外滚动内容 */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .card {
            background: white;
            border-radius: 8px;
            padding: 1.5rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.04);
            border: 1px solid #e9eef2;
        }

        .card h3 {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #1e293b;
        }

        /* 一个回到顶部的辅助按钮（视觉上不干扰固定栏） */
        .dummy-footer {
            text-align: center;
            margin-top: 3rem;
            color: #64748b;
            font-size: 0.95rem;
        }

        /* 响应式小屏幕处理：导航可能换行，但仍然固定在顶部 */
        @media (max-width: 680px) {
            .navbar {
                padding: 0.8rem 1rem;
                justify-content: center;
                flex-direction: column;
                gap: 0.6rem;
            }
            .content {
                margin-top: 130px;    /* 换行后高度增加，需要调整间距 */
            }
            .nav-links {
                gap: 1.2rem;
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        /* 选中页面内锚点时平滑滚动（可选，体验更好） */
        html {
            scroll-behavior: smooth;
        }