
  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    font-family: Arial, "Microsoft YaHei", sans-serif;
    color: #111;
    background: #fff;
  }

  .case-page {
    display: flex;
    max-width: 1500px;
    margin: 0 auto;
    padding: 48px 40px 80px;
    gap: 56px;
  }

  /* 左侧目录 */
  .case-sidebar {
    width: 260px;
    flex-shrink: 0;
    position: sticky;
    top: 40px;
    align-self: flex-start;
  }

  .sidebar-title {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
  }

  .sidebar-subtitle {
    font-size: 14px;
    color: #999;
    margin-bottom: 24px;
  }

  .industry-menu {
    border-top: 1px solid #e5e5e5;
  }

  .industry-menu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 46px;
    text-decoration: none;
    color: #555;
    font-size: 15px;
    line-height: 1.4;
    border-bottom: 1px solid #eee;
    transition: all 0.25s ease;
  }

  .industry-menu a::after {
    content: "";
    color: #222;
    font-size: 18px;
    font-weight: 300;
  }

  .industry-menu a:hover {
    color: #000;
    padding-left: 8px;
  }

  /* 右侧内容 */
  .case-content {
    flex: 1;
    min-width: 0;
  }

  .page-heading {
    margin-bottom: 55px;
  }

  .page-heading h1 {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 0 0 6px;
  }

  .page-heading p {
    font-size: 14px;
    color: #999;
    margin: 0;
  }

  .heading-line {
    height: 1px;
    background: #e5e5e5;
    margin-top: 22px;
  }

  /* Gallery 案例区块 */
  .case-section {
    margin-bottom: 55px;
    scroll-margin-top: 60px;
  }

  /* 👇 核心修改：标题栏使用 Flex 布局，使标题和按钮分列左右 👇 */
  .section-title {
    display: flex;
    justify-content: space-between; /* 左右两端对齐 */
    align-items: flex-end; /* 底部对齐，使文字看起来在同一水平线上 */
    margin-bottom: 20px;
    gap: 20px;
  }

  .section-title h2 {
    font-size: 22px;
    font-weight: 500;
    margin: 0; /* 移除原本的底部间距，由父容器控制 */
    flex: 1; /* 标题占据剩余空间 */
  }

  /* 👇 查看详情按钮样式 👇 */
  .view-details-btn {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    white-space: nowrap; /* 强制按钮文字不换行 */
  }

  .view-details-btn:hover {
    color: #cc0000; /* 悬停变红 */
  }

  .view-details-btn .finger {
    font-size: 18px;
    margin-right: 6px; /* 小手在前面，右侧留出间距 */
    transition: transform 0.3s ease;
  }

  .view-details-btn:hover .finger {
    transform: translateX(4px); /* 悬停时小手指稍微向右点一下 */
  }
  /* 👆 修改结束 👆 */

  .section-title span {
    display: block;
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .gallery-image {
    width: 100%;
    aspect-ratio: 64 / 45;
    background: #f3f3f3;
    overflow: hidden;
  }

  .gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
  }

  .gallery-image:hover img {
    transform: scale(1.03);
  }

  /* 响应式 */
  @media (max-width: 1200px) {
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 22px;
    }
  }

  @media (max-width: 900px) {
    .case-page {
      flex-direction: column;
      padding: 32px 20px 60px;
    }

    .case-sidebar {
      width: 100%;
      position: static;
    }

    .industry-menu {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0 20px;
    }

    .page-heading {
      margin-bottom: 52px;
    }

    .case-section {
      margin-bottom: 76px;
    }
  }

  @media (max-width: 768px) {
    /* 移动端屏幕太小时，将按钮放到标题下方并靠右对齐 */
    .section-title {
      flex-direction: column;
      align-items: flex-start;
    }
    .view-details-btn {
      align-self: flex-end;
    }
  }

  @media (max-width: 560px) {
    .industry-menu {
      grid-template-columns: 1fr;
    }

    .gallery-grid {
      grid-template-columns: 1fr;
    }
  }
