     /* 全局重置 - 消除所有边距和空隙 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html,
        body {
            width: 100%;
            overflow-x: hidden;
            position: relative;
        }

        body {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            background-color: white;
            /* 备用背景色 */
        }

        /* 背景图 - 确保完全覆盖 */
        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-image: url(images/background.webp);
            background-size: cover;
            background-position: center;
            opacity: 0.7;
            z-index: -1;
        }

        /* 顶部横幅 */
        .top-section {
            width: 100vw;
            height: 150px;
            overflow: hidden;
            position: relative;
            left: 50%;
            transform: translateX(-50%);
        }

        .top-section img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .navbar-1 {
            width: 100%;
            min-height: 60px;
            /* 初始高度 */
            background-color: #5da5a7;
            display: flex;
            justify-content: center;
            padding: 10px 0;
            /* 增加上下内边距 */
            transition: min-height 0.3s ease;
            /* 高度变化动画 */
        }

        .nav-area-1 {
            width: 100%;
            max-width: 800px;
            height: auto;
            display: flex;
            flex-wrap: wrap;
            /* 启用换行 */
            justify-content: center;
            align-items: center;
            gap: 5px;
            /* 项目间距 */
        }

        .nav-item-1 {
            flex: 1;
            /* 弹性伸缩 */
            min-width: 80px;
            /* 最小宽度限制 */
            max-width: 100px;
            /* 最大宽度限制 */
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: clamp(12px, 3vw, 22px);
        }

        .nav-item-1 a {
            color: white;
            text-decoration: none;
        }

        .navbar-1 .nav-item-1 a:hover {
            color: #447278;
        }

        /* 智能换行控制 */
        @media (max-width: 700px) {
            .nav-item-1 {
                min-width: calc(25% - 10px);
                /* 四列布局 */
                max-width: calc(25% - 10px);
            }
        }

        /* 超小屏幕优化 */
        @media (max-width: 480px) {
            .nav-item-1 {
                min-width: calc(25% - 10px);
                /* 两列布局 */
                max-width: calc(25% - 10px);
                height: 50px;
                font-size: clamp(10px, 2.5vw, 14px);
            }
        }

        @media (max-width: 480px) {
            .navbar-1 {
                height: 80px;
                padding: 5px 0;
                overflow: hidden;
            }

            .nav-item-1 {
                width: 25%;
                height: 35px;
                font-size: 12px;
                padding: 0 2px;
            }

            .nav-item-1 a {
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                display: block;
                width: 100%;
                text-align: center;
                font-size: 12px;
            }

            .top-section {
                height: 120px;
            }
        }

        /* 主内容区域 */
        .main-container {
            width: 100%;
            position: relative;
        }

        /* 保护层 */
        .wheel-menu-protector {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.1);
            z-index: 99;
            display: none;
        }

        .wheel-menu-protector.active {
            display: block;
        }

        /* 圆形菜单容器 */
        .wheel-menu-container {
            position: fixed;
            top: 300px;
            left: 20px;
            width: 60px;
            height: 60px;
            z-index: 100;
        }

        /* 主菜单按钮 */
        .wheel-main-button {
            position: absolute;
            width: 60px;
            height: 60px;
            background-color: #5da5a7;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 14px;
            cursor: pointer;
            z-index: 101;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            text-align: center;
            line-height: 1.2;
            padding: 5px;
            user-select: none;
        }

        .wheel-main-button:hover {
            background-color: #447278;
            transform: scale(1.05);
        }

        /* 菜单项容器 */
        .wheel-items {
            position: absolute;
            top: -120px;
            left: -120px;
            width: 300px;
            height: 300px;
            transition: transform 0.5s ease-out;
            transform: rotate(0deg);
            display: none;
            z-index: 102;
        }

        .wheel-items.visible {
            display: block;
        }

        /* 菜单项 */
        .wheel-item {
            position: absolute;
            width: 60px;
            height: 60px;
            background-color: #85c0c2;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 12px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            padding: 5px;
            line-height: 1.2;
            transform-origin: center;
            transform: rotate(0deg);
            user-select: none;
        }

        .wheel-item:hover {
            background-color: #5da5a7;
            transform: scale(1.1) rotate(var(--item-rotation)) !important;
            z-index: 103;
        }

        /* 卡片容器 */
        .card-container {
            display: flex;
            padding: 20px;
            width: 100%;
            padding: 20px;
            background-color: rgba(255, 255, 255, 0.7);
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-content: flex-start;
            justify-content: center;
        }

  /* 卡片容器保持原有布局 */
  .cards-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
  }

  /* 修改后的标题框样式 - 响应式 */
  .year-title {
      width: 90%;
      /* 改为相对宽度 */
      /* 设置最大宽度 */
      height: auto;
      /* 高度自适应 */
      min-height: 50px;
      /* 最小高度 */
      background-color: #85c0c2;
      color: white;
      font-size: clamp(24px, 5vw, 40px);
      /* 使用clamp()实现字体大小响应式 */
      font-weight: bold;
      text-align: center;
      line-height: 1.2;
      /* 改为相对行高 */
      padding: 15px 60px;
      /* 调整内边距 */
      border-radius: 10px;
      margin: 20px auto;
      /* 居中 */
      position: relative;
      box-sizing: border-box;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  /* 返回按钮响应式调整 */
  .year-title .back-button {
      width: 40px;
      /* 缩小默认尺寸 */
      height: 40px;
      background-image: url('images/back2.webp');
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      position: absolute;
      left: 10px;
      cursor: pointer;
  }


  /* 确保标题文字居中 */
  .year-title span {
      display: inline-block;
      width: calc(100% - 80px);
      /* 减去按钮空间 */
      text-align: center;
  }


  /* 修改后的图像框样式 */
.image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    padding: 0 5%; /* 添加左右内边距确保内容不贴边 */
}

.main-image {
    width: 90%; /* 直接设置为90%宽度 */
    max-width: 1200px; /* 可选：设置最大宽度防止在大屏幕上过宽 */
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* 关键修改：高度自适应 */
.responsive-img {
    width: 100%;
    height: auto;
    display: block;
}

/* 小屏幕设备进一步优化 */
@media (max-width: 768px) {
    .image-container {
        padding: 0; /* 在小屏幕上移除内边距 */
    }
    
    .main-image {
        width: 90%; /* 保持90%宽度 */
    }
}

/* 超小屏幕设备优化 */
@media (max-width: 480px) {
    .main-image {
        width: 95%; /* 在非常小的屏幕上可以稍微增加宽度 */
    }
}

  /* 修改后的文本框样式 - 响应式 */
  .text-box {
      width: 90%;
      /* 改为相对宽度 */
      max-width: 800px;
      /* 设置最大宽度 */
      margin: 0 auto 30px;
      /* 居中并添加底部间距 */
      padding: 30px;
      background-color: rgba(255, 255, 255, 0.7);
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
  }

  .text-box p {
      font-size: clamp(16px, 2.5vw, 20px);
      /* 响应式字体大小 */
      color: #5da5a7;
      font-weight: bold;
      text-align: justify;
      text-justify: inter-word;
      word-break: break-word;
      /* 改为break-word更合理 */
      margin-bottom: 1em;
      white-space: pre-wrap;
      line-height: 1.5;
      /* 增加行高提高可读性 */
  }

  /* 小屏幕设备进一步优化 */
  @media (max-width: 480px) {
      .year-title {
          padding: 10px 10px;
          /* 减小内边距 */

      }

      .year-title .back-button {
          width: 30px;
          height: 30px;
          left: 5px;
          font-size: 12px;
      }

      .text-box {
          padding: 10px;
      }
  }

  /* 超小屏幕设备优化 */
  @media (max-width: 360px) {
      .year-title {
          font-size: 10px;
          /* 固定最小字号 */
          padding: 8px 20px;
      }
  }

  /* 活动详细区域占满宽度 */
  .activity-details {
      width: 100%;
  }

  /* 卡片容器保持原有布局 */
  .cards-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      width: 100%;
      /* 确保占满宽度 */
      justify-content: flex-start;
      /* 左对齐 */
  }

  /* 调整卡片宽度计算方式 */
  .card {
      width: calc(25% - 15px);
      /* 4个卡片，考虑gap间距 */
      height: 400px;
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 10px;
      box-sizing: border-box;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      margin-bottom: 20px;
      /* 移除float属性 */
  }

  .card-1 {
      background-color: #efa4a4;
      /* 卡片1的背景颜色 */
  }

  .card-2 {
      background-color: #5da5a7;
      /* 卡片2的背景颜色 */
  }

  /* 图片容器 */
  .card-image {
      width: 100%;
      height: 500px;
      /* 图片区域高度 */
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
      /* 防止图片溢出 */
      cursor: pointer;
      /* 鼠标悬停时显示手型 */
      background-color: #fff;
      border-radius: 10px;
      /* 四角圓潤 */
  }

  /* 图片样式 */
  .card-image img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      /* 图片按比例缩放，不剪裁 */
  }

  /* 卡片文字区域 */
  .card-text {
      font-size: 24px;
      /* 图片介绍字体大小 */
      text-align: center;
      /* 图片介绍居中 */
      margin-top: 0 px;
      padding: 40px 0;
      font-weight: bold;
      color: white
  }

 /* 价格样式 */
  .card-price {
      bottom: 10px;
      /* 距离卡片底部 */
      text-align: center;
      font-size: 24px;
      /* 价格字体大小 */
      font-weight: bold;
      /* 价格加粗 */
      background-color: white;
      border-radius: 15px;
      color: rgb(255, 0, 0);
      /* 价格颜色 */
  }

  /* 移动端导航展开时的特殊处理 */
  @media (max-width: 767px) {
      .nav-area-1.active {
          --nav-height: 300px;
          /* 估计的展开高度，可根据实际内容调整 */
      }
  }

  /* 模态框样式 */
  .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      justify-content: center;
      align-items: center;
      z-index: 1000;
  }

  /* 模态框内容 */
  .modal-content {
      max-width: 90%;
      max-height: 90%;
      overflow: auto;
      /* 如果图片过大，允许滚动 */
      display: flex;
      justify-content: center;
      align-items: center;
  }

  /* 图片样式 */
  .modal-content img {
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      object-fit: contain;
      /* 保持图片比例并适应容器 */
  }

  /* 关闭按钮 */
  .close {
      position: absolute;
      top: 20px;
      right: 20px;
      color: white;
      font-size: 30px;
      cursor: pointer;
  }

  /* 响应式设计 */
  @media (max-width: 1200px) {
      .card {
          width: calc(33.33% - 20px);
          /* 一排 3 张卡片 */
      }
  }

  @media (max-width: 900px) {
      .card {
          width: calc(50% - 20px);
          /* 一排 2 张卡片 */
      }
  }

  @media (max-width: 600px) {
      .card {
          width: calc(100% - 20px);
          /* 一排 1 张卡片 */
      }
  }

  /* 移动端导航展开时的特殊处理 */
  @media (max-width: 767px) {
      .nav-area-1.active {
          --nav-height: 300px;
          /* 估计的展开高度，可根据实际内容调整 */
      }
  }


  /* 修改后的頁腳樣式 */
        footer {
            width: 100%;
            height: auto;
            /* 改为自动高度 */
            padding: 10px 0;
            /* 增加上下内边距 */
            background-color: #5da5a7;
            display: flex;
            flex-direction: column;
            /* 改为垂直排列 */
            justify-content: center;
            align-items: center;
            font-size: 14px;
            color: white;
            position: relative;
            bottom: 0;
            z-index: 1;
        }

        .footer-line {
            margin: 2px 0;
            /* 行间距 */
            text-align: center;
            width: 100%;
        }

        @media (max-width: 768px) {
            .wheel-menu-container {
                top: 300px;
                left: 10px;
            }

            .wheel-main-button {
                width: 50px;
                height: 50px;
                font-size: 12px;
            }

            .wheel-items {
                top: -100px;
                left: -100px;
                width: 250px;
                height: 250px;
            }

            .wheel-item {
                width: 50px;
                height: 50px;
                font-size: 10px;
            }
        }

        @media (max-width: 480px) {

            .year-title {
                font-size: 24px;
                height: 50px;
                line-height: 40px;
            }

            .wheel-menu-container {
                top: 250px;
            }

            .wheel-items {
                top: -80px;
                left: -80px;
                width: 200px;
                height: 200px;
            }
        }

          #back-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: transparent;
    cursor: pointer;
    padding: 0;
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3)); /* 添加阴影效果 */
    transition: all 0.3s ease; /* 添加过渡效果使交互更平滑 */
}

#back-to-top:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4)); /* 悬浮时阴影更深更扩散 */
}

#back-to-top img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    background-color: white; /* 只在图片区域添加白色背景 */
}

        /* 移除媒体查询中的 max-width 限制 */
        @media (max-width: 480px) {
            #back-to-top {
                width: 50px;
                /* 保持相同大小 */
                height: 50px;
            }
        }