html {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: hidden;  /* 改为 hidden，只让 body 显示滚动条，避免双滚动条 */
  }

body {
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
  }

/* 背景层 - 覆盖整个页面高度 */
.background-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    background-image: url('images/页面底板.png');
    background-size: 100% 100%;
    background-position: top center;
    background-repeat: no-repeat;
    z-index: -1;
    pointer-events: none;
}

  /* 主内容区域，用于占据空间，确保页脚能够推到底部 */
  .main-content {
    flex: 1;
    min-height: calc(100vh - 200px); /* 减去页眉和页脚的高度 */
  }

  .header {
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    padding: 30px 20px;
    min-height: 100px;
    box-sizing: border-box;
    z-index: 1000;
    /* 毛玻璃效果 */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    
    /* 圆角效果 */
    border-radius: 20px 20px 20px 20px;
  }

  .logo {
    height: 80px;
    width: auto;
    top: 10px;
    left: 30px;
    position: absolute;
  }

  .logo-footer {
    height: 50px;
    width: auto;
    top: 20px; /* 距离容器顶部20px */
    left: 50%;
    transform: translateX(-50%); /* 水平居中 */
    position: absolute;
    z-index: 10; /* 确保logo在顶部 */
  }
  
  /* 确保包含logo-footer的footer-section有足够的高度，并在logo下方留出20px间距 */
  .footer-section:first-child {
    position: relative;
    min-height: 70px; /* 减小高度，从90px改为70px */
    padding-bottom: 10px; /* 减小padding，从20px改为10px */
    width: 100%; /* 确保section占满整个宽度 */
    grid-column: 1 / -1; /* 让第一个section跨越所有grid列，占据整个footer宽度 */
  }

  /* 汉堡菜单按钮 - 默认隐藏 */
  .hamburger-menu {
    display: none;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10002; /* 确保在最上层 */
    flex-direction: column;
    gap: 6px;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    -webkit-tap-highlight-color: transparent; /* 移除移动端点击高亮 */
    touch-action: manipulation; /* 优化触摸响应 */
    pointer-events: auto; /* 确保可以点击 */
  }

  .hamburger-line {
    display: block;
    width: 30px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }

  .hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .header-nav {
    position: absolute;
    top: 50%;
    right: 70px;
    transform: translateY(-50%);
    display: flex;
    gap: 40px;
    align-items: center;
  }

  .nav-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.8;
  }

  .nav-icon:hover {
    transform: scale(1.1);
    opacity: 1;
  }

  .nav-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    pointer-events: none; /* 确保点击事件传递到父元素 <a> 标签 */
  }

  /* 饭团滚动动画容器 */
  .rice-ball-container {
    position: absolute;
    top: 25%;
    left: 0;
    width: 100%;
    height: 200px;
    transform: translateY(-50%);
    overflow: hidden;
    pointer-events: none;
    z-index: 100;
  }

  .rice-ball {
    position: absolute;
    width: 220px;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    animation: moveLeft 12s linear infinite, tilt 2s ease-in-out infinite;
  }

  /* 水平移动动画：从右边进入，向左移动，从左边出去 */
  @keyframes moveLeft {
    0% {
      left: 95%;
    }
    100% {
      left: -200px;
    }
  }

  /* 倾斜动画：左右倾斜正负15度（不影响translateY） */
  @keyframes tilt {
    0%, 100% {
      transform: translateY(-50%) rotate(-15deg);
    }
    50% {
      transform: translateY(-50%) rotate(15deg);
    }
  }

  /* 每张图片不同的延迟，形成排队效果 */
  /* 假设每张图片宽度250px + 间隔40px = 290px，在20s内移动需要的时间 */
  .rice-ball-1 {
    animation-delay: 0s, 0s;
  }

  .rice-ball-2 {
    animation-delay: 1.72s, 0.33s;
  }

  .rice-ball-3 {
    animation-delay: 3.44s, 0.66s;
  }

  .rice-ball-4 {
    animation-delay: 5.16s, 1s;
  }

  .rice-ball-5 {
    animation-delay: 6.88s, 1.33s;
  }

  .rice-ball-6 {
    animation-delay: 8.60s, 1.66s;
  }

  .rice-ball-7 {
    animation-delay: 10.32s, 1.99s;
  }

   /* 鸡块鸡串滚动动画容器 */
   .chicken-container {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 300px;
    transform: translateY(-50%);
    overflow: hidden;
    pointer-events: none;
    z-index: 100;
  }

  .chicken {
    position: absolute;
    width: 300px;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    left: -300px;
    top: 50%;
    transform: translateY(-50%);
    animation: moveRight 12s linear infinite, tiltRight 2s ease-in-out infinite;
  }

  /* 从左向右移动动画 */
  @keyframes moveRight {
    0% {
      left: -250px;
      opacity: 1;
    }
    100% {
      left: 100%;
      opacity: 1;
    }
  }

  /* 倾斜动画：左右倾斜正负15度 */
  @keyframes tiltRight {
    0%, 100% {
      transform: translateY(-50%) rotate(-15deg);
    }
    50% {
      transform: translateY(-50%) rotate(15deg);
    }
  }

  /* 交替循环：chicken-1在0s开始，chicken-2在2.82s开始 */
  .chicken-1 {
    animation-delay: 0s, 0s;
    animation-fill-mode: forwards;
  }

  .chicken-2 {
    animation-delay: 2.00s, 0s;
  }
  
 

  .chicken-3 {
    animation-delay: 4.00s, 0s;
  }

  .chicken-4 {
    animation-delay: 6.00s, 0s;
  }

  .chicken-5 {
    animation-delay: 8.00s, 0s;
  }

  .chicken-6 {
    animation-delay: 10.00s, 0s;
  }

  /* 页脚样式 - 符合法国规范 */
  .footer {
    position: relative;
    margin: 50px 10px 50px 10px; /* 底部margin增加到50px，整体下移40px */
    margin-top: 250px; /* 增加上边距，从120px增加到250px，为 origini-solo 容器留出空间 */
    margin-bottom: 20px; /* 使用 flexbox 将页脚推到底部 */
    width: calc(100% - 20px);
    padding: 25px 20px; /* 减小padding，从50px改为25px，降低页脚高度 */
    box-sizing: border-box;
    z-index: 100;
    /* 毛玻璃效果，与页眉保持一致 */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 -8px 32px 0 rgba(0, 0, 0, 0.1);
    border-radius: 20px 20px 20px 20px;
  }
  
  /* 页脚前的间距元素，确保与chicken-container之间有间隔，并下移页脚 */
  .footer-spacer {
    height: 650px; /* 增加间距高度，为 origini-solo 容器留出空间 */
    width: 100%;
    flex-shrink: 0;
  }

  /* index.html 页面中，页脚和 chicken-container 之间的间距为 20px */
  .index-page .footer-spacer {
    height: 120px; /* index 页面中，页脚和 chicken-container 之间的间距为 20px */
  }

  .index-page .footer {
    margin-top: 50px; /* index 页面中，减少页脚的上边距 */
  }

  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, auto)); /* 将1fr改为auto，让列根据内容宽度，不自动扩展 */
    column-gap: 120px;
    row-gap: 20px;
    margin-bottom: 20px; /* 减小底部间距，从40px改为20px */
    position: relative; /* 为logo-footer提供定位上下文 */
    justify-content: center; /* 水平居中grid内容 */
    max-width: 1200px; /* 限制最大宽度，让内容居中 */
    margin-left: auto; /* 水平居中 */
    margin-right: auto; /* 水平居中 */
  }

  .footer-section h3 {
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    font-family: Arial, sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .footer-section h4 {
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    font-family: Arial, sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .footer-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
    margin: 8px 0;
    font-family: Arial, sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  }

  .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-section ul li {
    margin: 10px 0;
  }

  .footer-section ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    font-family: Arial, sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  }

  .footer-section ul li a:hover {
    color: white;
    text-decoration: underline;
  }

  .social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .social-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease, transform 0.3s ease;
    font-family: Arial, sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    display: inline-block;
  }

  .social-links a:hover {
    color: white;
    text-decoration: underline;
  }

  /* Instagram 图片样式 */
  .social-links a img,
  .social-contact a img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  }

  .social-links a:hover img,
  .social-contact a:hover img {
    transform: scale(1.1);
    opacity: 0.9;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 10px; /* 减小padding，从20px改为10px */
    text-align: center;
  }

  .footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    margin: 5px 0;
    font-family: Arial, sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  }

  /* 响应式设计 - 小屏幕（小于450px）显示汉堡菜单 */
  @media screen and (max-width: 450px) {
    /* 移动端汉堡菜单显示 */
    .hamburger-menu {
      display: flex !important;
      visibility: visible !important;
      opacity: 1 !important;
      pointer-events: auto !important;
    }

    /* 移动端隐藏默认导航图标显示 */
    .header-nav {
      position: fixed !important;
      top: 0 !important;
      right: -100% !important;
      width: 80% !important;
      max-width: 300px !important;
      height: 100vh !important;
      background: rgba(255, 255, 255, 0.15) !important;
      backdrop-filter: blur(15px) !important;
      -webkit-backdrop-filter: blur(15px) !important;
      flex-direction: column !important;
      justify-content: flex-start !important;
      align-items: center !important;
      padding-top: 100px !important;
      gap: 30px !important;
      transition: right 0.3s ease !important;
      z-index: 10001 !important;
      box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2) !important;
      border-radius: 0 !important;
      /* 重置桌面端的定位样式 */
      transform: none !important;
      /* 移动端默认隐藏，但保持可见以便过渡 */
      display: flex !important;
      visibility: visible !important;
      opacity: 1 !important;
    }

    /* 菜单打开状态 */
    .header-nav.active {
      right: 0 !important;
    }

    /* 菜单遮罩层 */
    .menu-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: rgba(0, 0, 0, 0.5);
      z-index: 10000;
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
    }

    .menu-overlay.active {
      display: block;
      opacity: 1;
      pointer-events: auto;
    }

    /* 移动端调整logo大小 */
    .logo {
      height: 60px;
      left: 15px;
    }

    /* 移动端调整header */
    .header {
      padding: 20px 15px;
      min-height: 80px;
    }

    /* 移动端导航图标放大 */
    .header-nav .nav-icon {
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 1;
      position: relative;
      z-index: 1001;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 12px;
      padding: 8px;
      box-sizing: border-box;
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .header-nav .nav-icon:active {
      transform: scale(0.95);
      background: rgba(255, 255, 255, 0.3);
    }

    /* 移动端菜单中的图片样式 */
    .header-nav .nav-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
      pointer-events: none;
    }

    .footer-content {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .footer {
      padding: 20px 15px;
    }

    .footer-section h3 {
      font-size: 20px;
    }

    .footer-section h4 {
      font-size: 16px;
    }

    /* 移动端：统一页脚间距设置 */
    /* 页脚与上一个容器间距统一为20px */
    .footer-spacer {
      height: 20px;
      flex-shrink: 0;
    }

    /* 页脚容器：只保留底部和左右边距，移除上边距 */
    .footer {
      margin-top: 0;
      margin-bottom: 20px;
      margin-left: 10px;
      margin-right: 10px;
      width: calc(100% - 20px);
    }

    /* 确保主内容区域有足够的底部空间，避免绝对定位的容器被页脚遮挡 */
    .main-content {
      position: relative;
      min-height: calc(100vh - 200px);
      padding-bottom: 80px; /* 为页脚留出足够空间（20px间距 + 页脚高度 + 安全边距） */
    }

    /* 移动端：index.html页面中，上移动画容器 */
    .index-page .rice-ball-container {
      top: 15%;
    }

    .index-page .chicken-container {
      top: 35%;
    }

    /* 移动端：调整index.html页面的主内容底部间距和页脚间距 */
    .index-page .main-content {
      min-height: calc(50vh + 100px); /* 确保有足够空间容纳chicken-container */
      padding-bottom: 20px;
    }

    /* 移动端：index.html页面的footer-spacer，确保与chicken-container间距20px */
    .index-page .footer-spacer {
      height: 20px;
    }

    /* 移动端：origini-solo容器上移，根据浏览器宽度自适应排列 */
    /* 移动端调整rice-ball-drawing的位置和大小 */
    .rice-ball-drawing {
      position: relative; /* 移动端改为相对定位 */
      top: auto; /* 移除绝对定位的top值 */
      width: calc(100% - 20px);
      max-width: none;
      left: auto; /* 移除绝对定位的left值 */
      transform: none;
      margin-left: 10px; /* 左边距10px */
      margin-right: 10px; /* 右边距10px */
      margin-top: 10px; /* 距离顶部10px */
      padding: 15px;
    }

    /* 移动端：origini-solo容器上移，与rice-ball-drawing底部距离20px */
    .origini-solo {
      position: relative; /* 移动端改为相对定位，便于控制与上方元素的间距 */
      top: auto; /* 移除绝对定位的top值 */
      margin-top: 20px; /* 与上方容器距离20px */
      width: calc(100% - 20px); /* 左右各留10px边距 */
      max-width: none; /* 移除最大宽度限制 */
      left: auto; /* 移除绝对定位的left值 */
      transform: none; /* 移除居中transform */
      margin-left: 10px; /* 左边距10px */
      margin-right: 10px; /* 右边距10px */
      /* Grid布局自适应排列，不再固定两行，根据移动端浏览器宽度自适应 */
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      grid-template-rows: auto; /* 自动行数，不再固定两行 */
      gap: 15px; /* 移动端减小间距 */
      padding: 20px 15px; /* 移动端减小内边距 */
    }
  }
  
  /* Origini 页面样式 */
  .rice-ball-drawing {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%); /* 水平居中 */
    width: 95%; /* 增加宽度，从90%增加到95% */
    max-width: 1600px; /* 增加最大宽度，从1200px增加到1600px */
    height: auto;
    text-align: center;
    z-index: 10;
    box-sizing: border-box;
    /* 毛玻璃效果 */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 30px 20px; /* 添加内边距 */
  }

  .rice-ball-drawing img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .origini-solo {
    position: absolute;
    top: calc(10% + 505px); /* 在 rice-ball-drawing 下方，可以根据实际需要调整 */
    left: 50%;
    transform: translateX(-50%); /* 水平居中 */
    width: 95%; /* 与 rice-ball-drawing 相同的宽度 */
    max-width: 1600px; /* 与 rice-ball-drawing 相同的最大宽度 */
    min-height: auto; /* 高度随内容自动增加 */
    height: auto;
    box-sizing: border-box;
    z-index: 10;
    /* 毛玻璃效果 */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 30px 20px; /* 添加内边距 */
    /* Grid 布局，两行排列，居中对齐 */
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 每行最多5列 */
    grid-template-rows: auto auto; /* 两行 */
    gap: 20px;
    justify-content: center;
    align-items: center;
    justify-items: center; /* 子容器居中对齐 */
  }

  .food-item {
    display: flex;
    justify-content: center;
    align-items: center;
    /* 不需要毛玻璃底板 */
    background: transparent;
    padding: 10px;
    box-sizing: border-box;
  }

  /* 需要垂直排列图片和标牌的容器 */
  .seafood-item,
  .chicken-item,
  .beef-item,
  .pork-item,
  .beef-spicy-item {
    flex-direction: column; /* 垂直排列 */
  }

  .food-item img {
    max-width: 100%;
    height: auto;
    display: block;
    max-height: 450px; /* 增大图片最大高度，从300px增加到450px */
    width: auto;
    min-width: 200px; /* 设置最小宽度，确保图片不会太小 */
    object-fit: contain;
  }

  /* 标牌通用样式，位于容器下方，水平居中，宽度50px */
  .seafood-badge,
  .badge-icon {
    width: 50px !important;
    height: auto !important;
    max-height: none !important;
    min-width: auto !important;
    margin-top: 0px; /* 与上方图片的间距 */
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  /* 辣牛肉饭团的两个标牌容器，水平排列 */
  .badge-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px; /* 两个标牌之间的间距 */
    margin-top: 0px;
  }

  .badge-container .badge-icon {
    margin: 0; /* 移除单独标牌的margin */
  }

  /* Contact 页面样式 */
  .contact-hours,
  .contact-info {
    position: absolute;
    left: 50%;
    transform: translateX(-50%); /* 水平居中 */
    width: 95%; /* 与 origini-solo 相同的宽度 */
    max-width: 1600px; /* 与 origini-solo 相同的最大宽度 */
    min-height: auto; /* 高度随内容自动增加 */
    height: auto;
    box-sizing: border-box;
    z-index: 10;
    /* 毛玻璃效果 */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 30px 20px; /* 添加内边距 */
    text-align: center;
  }

  .contact-hours {
    top: 15%; /* 页眉下方 */
  }

  .contact-info {
    top: calc(15% + 500px); /* 在 contact-hours 下方 */
  }

  .contact-hours h2,
  .contact-info h2 {
    color: white;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 25px;
    font-family: Arial, sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .hours-content {
    text-align: left;
    display: inline-block;
  }

  .hours-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 2;
    margin: 10px 0;
    font-family: Arial, sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  }

  .contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
  }

  .contact-item {
    text-align: center;
  }

  .contact-item h3 {
    color: white;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    font-family: Arial, sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .contact-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.8;
    margin: 10px 0;
    font-family: Arial, sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  }

  .contact-item a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: underline;
    transition: color 0.3s ease;
  }

  .contact-item a:hover {
    color: white;
  }

  .social-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .social-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease, transform 0.3s ease;
    font-family: Arial, sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    display: inline-block;
  }

  .social-contact a:hover {
    color: white;
    text-decoration: underline;
  }
  
  /* Set 页面样式 - 使用 origini-solo 的设置 */
  .set-container {
    position: absolute;
    top: 8%; /* 页眉下方 */
    left: 50%;
    transform: translateX(-50%); /* 水平居中 */
    width: 95%; /* 与 origini-solo 相同的宽度 */
    max-width: 1600px; /* 与 origini-solo 相同的最大宽度 */
    min-height: auto; /* 高度随内容自动增加 */
    height: auto;
    box-sizing: border-box;
    z-index: 10;
    /* 毛玻璃效果 */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 30px 20px; /* 添加内边距 */
    text-align: center; /* 内容居中对齐 */
  }

  .set-container img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  
  .cookie-banner p {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.6;
  }

  .cookie-banner button {
    margin: 0 5px;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
  }