/* 为屏幕宽度小于480px的设备定义样式 */
@media screen and (max-width: 800px) {

    /* 固定图片样式 */
    /* 固定底部容器样式 */
    .fixed-bottomB {
        position: fixed;
        /* 固定位置 */
        bottom: 0;
        /* 距离底部 0 */
        width: 100%;
        /* 宽度为100% */
        background-color: #fff;
        /* 可选：设置背景色 */
        display: flex;
        /* 使用 flex 布局 */
        z-index: 1000;
        /* 确保图片层级较高，始终在最上面 */
      }
  
      .fixed-bottomB img {
        width: 100%;
        /* 两张图片各占 50% 宽度 */
        height: auto;
        /* 保持图片比例 */
      }
  
  
      .fixed-imageB {
        position: fixed;
        /* 固定位置 */
        right: 10px;
        /* 距离屏幕右边 10px */
        top: 50%;
        /* 距离屏幕顶部 50%，即垂直居中 */
        transform: translateY(-50%);
        /* 居中对齐 */
        width: 40px;
        /* 图片宽度 */
        height: auto;
        /* 自动调整高度 */
        z-index: 1000;
        /* 保证图片显示在最前面 */
      }
  
      /* 模态框样式 */
      .modal {
        display: none;
        position: fixed;
        z-index: 9999;
        /* 确保模态框在最上层 */
        left: 0;
        top: 0;
        width: 50%;
        height: 100%;
        overflow: auto;
        background-color: rgb(0, 0, 0);
        background-color: rgba(0, 0, 0, 0.9);
  
  
      }
  
      .modal-content {
        margin: auto;
        display: block;
        width: 60%;
        max-width: 350px;
      }
  
      .close {
        position: absolute;
        top: 15px;
        right: 35px;
        color: rgb(255, 0, 0);
        font-size: 40px;
        font-weight: bold;
        transition: 0.3s;
      }
  
      .close:hover,
      .close:focus {
        color: #bbb;
        text-decoration: none;
        cursor: pointer;
      }
  
      .table2 {
        width: 100%;
        /* 表格宽度为100% */
        background-color: #273067;
        /* 背景色为橘色 */
        border-collapse: collapse;
        /* 去掉单元格间的空隙 */
        position: fixed;
        /* 固定在页面顶部 */
        top: 0;
        /* 距顶部 0 */
        left: 0;
        /* 距左侧 0 */
        z-index: 1000;
        /* 确保表格位于顶部 */
      }
  
      .td2 {
        text-align: center;
        /* 单元格内容水平居中 */
        vertical-align: middle;
        /* 单元格内容垂直居中 */
        padding: -10px;
        /* 单元格内边距 */
      }
  
      .img2 {
        /* width:100px 图片宽度 */
        height: auto;
        /* 自适应高度 */
        cursor: pointer;
        /* 鼠标悬停时显示为手指 */
      }
  
      .service-container {
      border: 1px solid #ddd;
      padding: 20px;
      max-width: 800px;
      margin: 20px auto;
      font-family: Arial, sans-serif;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      overflow: hidden;
  }
  
  .service-content {
      display:flex;
      flex-wrap: wrap;
      align-items: center;
  }
  
  .service-image {
      flex: 1;
      text-align: center;
      padding: 10px;
  }
  
  .service-image img {
      width: 100%;
      max-width: 300px;
      border-radius: 8px;
  }
  
  .service-text {
      flex: 2;
      padding: 10px;
  }
  
  .service-title {
              color: #222;
              margin-bottom: 15px;
              font-size: 28px;
              font-weight: bold;
              text-align: center;
              background: linear-gradient(to right, #007BFF, #00C6FF);
              -webkit-background-clip: text;
              -webkit-text-fill-color: transparent;
          }
  
  .service-description {
      color: #555;
      font-size: 16px;
      line-height: 1.8;
  }
  
  .service-button {
      display: inline-block;
      margin-top: 15px;
      background-color: #007BFF;
      color: white;
      padding: 10px 20px;
      text-decoration: none;
      border-radius: 4px;
      font-size: 16px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .service-button:hover {
      background-color: #0056b3;
  }
  
  .title-container {
              text-align: center;
              margin: 20px auto;
              padding: 20px;
              max-width: 800px;
              height: 80px; /* 设置固定高度 */
              background: orange;
              border-radius: 12px;
              box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
              
              /* 使用 Flexbox 居中内容 */
              display: flex;
              flex-direction: column;
              justify-content: center; /* 垂直居中 */
              align-items: center; /* 水平居中 */
          }
  
          .title-text {
              font-family: 'Arial', sans-serif;
              font-size: 32px;
              color: white;
              font-weight: bold;
              letter-spacing: 1px;
              text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
              margin: 0;
          }
  
          .subtitle-text {
              font-family: 'Arial', sans-serif;
              font-size: 18px;
              color: #fdf5e6;
              font-style: italic;
              margin-top: 10px;
              margin-bottom: 0;
          }
  
          .faq-container {
              max-width: 1000px;
              margin: 40px auto;
              background: #ededed;
              border-radius: 10px;
              padding: 5px;
              box-shadow: 0 4px 12px rgba(226, 142, 142, 0.1);
          }
  
          .faq-title {
              text-align: center;
              font-size: 18px;
              color: rgb(54, 54, 54);
              font-weight: bold;
              margin-bottom: 30px;
              text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
          }
  
          .faq-item {
              background-color: rgb(214, 95, 40);
              margin: 15px 0;
              padding: 15px;
              border-radius: 8px;
              box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
          }
  
          .faq-item h3 {
              font-size: 10px;
              color: #ffffff;
              margin: 0;
              cursor: pointer;
          }
  
          .faq-item p {
              font-size: 10px;
              color: #333;
              margin-top: 10px;
              display: none; /* 初期状態では非表示 */
          }
  
          .faq-item.active p {
              display: block; /* アクティブ時に表示 */
          }
  
          .faq-item h3:hover {
              color: #FF7F50;
          }

          .faq-item-ask {
            background-color: rgb(214, 95, 40);
            margin: 15px 0;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .faq-item-ask h3 {
            font-size: 10px;
            color: #ffffff;
            margin: 0;
            cursor: pointer;
        }

        .faq-item-ask p {
            font-size: 10px;
            color: #333;
            margin-top: 10px;
            display: none; /* 初期状態では非表示 */
        }

        .faq-item-ask.active p {
            display: block; /* アクティブ時に表示 */
        }

        .faq-item-ask h3:hover {
            color: #FF7F50;
        }
  
      /* 左上角图标 */
      .logoMenu-icon {
        position: absolute;
        top: 20px;
        left: 20px;
        font-size: 30px;
        cursor: pointer;
        transition: transform 0.3s ease;
        color: white;
      }
  
      /* 右侧菜单，初始时完全隐藏 */
      .logoMenu-menu {
        position: fixed;
        top: 0;
        right: -300px;  /* 初始状态完全隐藏在右侧 */
        width: 300px;
        background:  #273067;
        color: white;
        padding: 20px;
        border-top-left-radius: 10px; /* 圆角效果 */
        border-bottom-left-radius: 10px;
        box-shadow: -4px 0px 15px rgba(0, 0, 0, 0.2); /* 阴影效果 */
        transition: right 0.3s ease; /* 平滑过渡效果 */
        z-index: 9999;  /* 确保菜单在最上层 */
      }
  
      .logoMenu-menu a {
        color: white;
        text-decoration: none;
        display: block;
        padding: 12px 0;
        font-size: 18px;
        font-weight: bold;
        opacity: 0;
        transform: translateX(-20px);  /* 初始时菜单项稍微偏移 */
        transition: all 0.3s ease; /* 菜单项动画 */
      }
  
      .logoMenu-menu a:hover {
        background-color: rgba(255, 255, 255, 0.2); /* hover效果 */
        padding-left: 15px; /* 增加一点左侧内边距 */
      }
  
      /* 菜单打开时 */
      .logoMenu-menu.open {
        right: 0; /* 菜单滑入 */
      }
      
      /* 菜单项动画：菜单显示时逐个项显现 */
      .logoMenu-menu.open a {
        opacity: 1;
        transform: translateX(0);
      }
  
      /* 菜单项延迟动画 */
      .logoMenu-menu.open a:nth-child(1) {
        transition-delay: 0.1s;
      }
  
      .logoMenu-menu.open a:nth-child(2) {
        transition-delay: 0.2s;
      }
  
      .logoMenu-menu.open a:nth-child(3) {
        transition-delay: 0.3s;
      }
  
      .logoMenu-menu.open a:nth-child(4) {
        transition-delay: 0.4s;
      }
      /* 文字悬停效果 */
  .logoMenu-menu a:hover {
    background-color: rgba(243, 0, 0, 0.2); /* 背景色改变 */
    padding-left: 15px; /* 增加一点左侧内边距 */
    color: #ffd700; /* 文字颜色改变为金色 */
  }
}