/* 主导航容器 */
        .main-nav {
            /*background-color: #2c3e50;*/
            /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);*/
            position: relative;
            z-index: 9999;
        }

        /* 导航列表 */
        .nav-list {
            display: flex;
            justify-content: center;
            list-style: none;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* 导航菜单项 */
        .nav-item {
            position: relative;
            perspective: 1000px; /* 3D透视效果 */
            transform-style: preserve-3d;
        }

        /* 导航链接 */
        .nav-item > a {
            display: block;
            color: #000;
            text-decoration: none;
            padding: 10x 10px;
            transition: all 0.3s ease;
            transform-style: preserve-3d;
            transform: translateZ(10px);
        }

        /* 导航项hover样式 */
        .nav-item:hover > a {
            background-color: #fff;
            color: #008040;
            transform: translateY(-2px) translateZ(10px);
        }

        /* 下拉菜单容器 */
        .dropdown {
            position: absolute;
            top: 100%;
            padding:0;
            left: 0;
            list-style: none;
            width: 220px;
            background-color: white;
            border-radius: 4px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
            overflow: hidden;
            transform-style: preserve-3d;
            transform-origin: top center;
            /* 初始3D折叠状态 */
            transform: rotateX(-90deg);
            opacity: 0;
            visibility: hidden;
            transition: 
                transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55),
                opacity 0.3s ease,
                visibility 0.3s ease;
            z-index: 999;
            max-height: 800px;
            overflow-y: auto; /* 处理下拉项过多的滚动 */
        }

        /* 鼠标滑过显示下拉菜单 */
        .nav-item:hover .dropdown {
            transform: rotateX(0deg);
            opacity: 1;
            visibility: visible;
        }

        /* 下拉菜单项 */
        .dropdown li {
            border-bottom: 1px solid #f1f1f1;
            transform-style: preserve-3d;
            transition: all 0.2s ease;
        }

        .dropdown li:last-child {
            border-bottom: none;
        }

        /* 下拉菜单链接 */
        .dropdown li a {
            display: block;
            padding: 12px 16px;
            color: #2c3e50;
            font-size:14px;
            text-decoration: none;
            transition: all 0.2s ease;
            transform: translateZ(5px);
        }

        /* 下拉菜单项hover */
        .dropdown li:hover {
            background-color: #f8f9fa;
            transform: translateZ(8px);
        }

        .dropdown li a:hover {
            color: #008040;
            padding-left: 20px;
        }

        /* 滚动条样式优化（下拉菜单） */
        .dropdown::-webkit-scrollbar {
            width: 6px;
        }

        .dropdown::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        .dropdown::-webkit-scrollbar-thumb {
            background: #ccc;
            border-radius: 3px;
        }

        .dropdown::-webkit-scrollbar-thumb:hover {
            background: #bbb;
        }

        /* 响应式适配 */
        @media (max-width: 768px) {
            .nav-list {
                flex-wrap: wrap;
            }

            .nav-item {
                flex: 1 1 auto;
                text-align: center;
            }

            .nav-item > a {
                padding: 12px 16px;
            }

            .dropdown {
                width: 100%;
                left: 0;
            }
        }
        
        
        
        
            /* 移动端菜单核心样式 - 解决滚动问题 */
    .mobile-menu {
      position: fixed;
      top: 0;
      right: 0;
      height: 100vh; /* 占满屏幕高度 */
      width: 100%; /* 侧边栏宽度 */
      /*max-width: 300px;*/
      background: #fff;
      z-index: 9999;
      transform: translateX(100%);
      transition: transform 0.3s ease;
      overflow-y: auto; /* 启用垂直滚动 */
      -webkit-overflow-scrolling: touch; /* 优化iOS滚动体验 */
      touch-action: pan-y; /* 优先响应垂直滚动 */
      padding: 20px 0;
    }
    /* 菜单激活显示 */
    .mobile-menu.active {
      transform: translateX(0);
    }

    /* 关闭按钮 */
    .close-menu {
      position: absolute;
      top: 15px;
      right: 15px;
      background: transparent;
      border: none;
      font-size: 20px;
      cursor: pointer;
      color: #333;
    }

    /* 移动端导航列表 */
    .mobile-nav-list {
      padding: 40px 15px 20px;
    }
    .mobile-nav-item {
      margin-bottom: 5px;
    }
    .mobile-nav-link {
      display: block;
      padding: 12px 15px;
      color: #333;
      font-size: 16px;
    }

    /* 二级菜单样式 */
    .mobile-nav-link-wrap {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
    }
    .menu-arrow {
      cursor: pointer;
      margin-right: 15px;
      transition: transform 0.3s ease;
      color: #666;
    }
    .menu-arrow.active {
      transform: rotate(180deg);
    }
    .mobile-dropdown {
      display: none;
      padding-left: 20px;
      max-height: 300px; /* 限制二级菜单高度，避免占满屏幕 */
      overflow-y: auto; /* 二级菜单自身也可滚动 */
      -webkit-overflow-scrolling: touch;
    }
    .mobile-dropdown.active {
      display: block;
    }
    .mobile-dropdown li {
      border-bottom: 1px solid #f5f5f5;
    }
    .mobile-dropdown a {
      display: block;
      padding: 10px 05px;
      font-size: 14px;
      color: #666;
    }

    /* 移动端菜单按钮 */
    .menu-toggle {
      background: transparent;
      border: none;
      font-size: 20px;
      cursor: pointer;
      color: #333;
      padding: 10px;
    }

    /* 隐藏滚动条但保留滚动功能（可选优化） */
    .mobile-menu::-webkit-scrollbar,
    .mobile-dropdown::-webkit-scrollbar {
      width: 0;
      height: 0;
    }