
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    /* Video Banner Container */
    .hw-video-banner {
      position: relative;
      width: 100%;
      /* 电脑端比例 1920*1080 (16:9) */
      aspect-ratio: 1920 / 1080;
      max-height: 100vh;
      overflow: hidden;
      background-color: #000000;
    }

    /* 视频样式 */
    .hw-video-banner .banner-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* SEO Fallback 隐藏样式（保障图片 alt 能被搜索引擎抓取，同时不影响视觉） */
    .hw-video-banner .seo-poster-fallback {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    /* 手机端尺寸适配：800*800 (1:1 比例) */
    @media (max-width: 768px) {
      .hw-video-banner {
        aspect-ratio: 800 / 800;
        max-height: none;
      }
    }
  