
    /* 默认隐藏导航栏（桌面） */
    .mobile-nav {
      display: none;
      position: fixed; /* 固定定位 */
      top: 50px; /* 设置导航栏距离页面顶部的距离，假设logo模块的高度为50px */
      left: 0;
      width: 100%;
      background: #F0F1F5; /* 模块背景颜色 */
      border-bottom: 1px solid #ddd;
      z-index: 999; /* 确保导航栏位于其他内容之上 */
    }

    /* 仅在屏幕宽度小于等于 1024px 时显示 */
    @media only screen and (max-width: 1024px) {
      .mobile-nav {
        display: block;
      }
      .mobile-nav ul {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0;
        padding: 0 15px; /* 设置左右内边距为15px */
        list-style-type: none; /* 去除列表默认样式 */
      }
      .mobile-nav li {
        text-align: center;
        padding: 0; /* 去除内边距 */
        margin: 0; /* 去除外边距 */
      }
      .mobile-nav a {
        display: block;
        padding: 20px 0 8px; /* 设置上边距为 20px */
        text-decoration: none;
        color: #404852; /* 更新文字颜色 */
        font-size: clamp(13px, 2.25vw, 17px); 
        font-family: 'Poppins', sans-serif; /* 设置字体为 Poppins */
        font-weight: 500; /* 非当前页面导航使用 Poppins Medium */
        position: relative;
        transition: all 0.3s ease; /* 平滑过渡 */
      }
      .mobile-nav a.active {
        font-weight: 700; /* 当前页面设置为 Poppins Bold 字体 */
        font-size: clamp(15px, 2.5vw, 19px); /* 当前导航字体加大 */
        color: #1D57A5; /* 当前导航颜色变成 #1D57A5 */
      }
      .mobile-nav a:hover {
        color: #0057B8; /* 悬停时文字颜色变深 */
        background-color: transparent; /* 去除背景颜色 */
      }
      /* 下横线效果 */
      .mobile-nav a::after {
        content: '';
        display: block;
        width: 0;
        height: 2px;
        background-color: #1D57A5;
        transition: width 0.3s;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
      }
      .mobile-nav a.active::after {
        width: 100%; /* 下横线长度与文字一致 */
      }
    }
  