  html, body {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: #fff;
    color: #333;
    height: auto; /* 默认高度由内容决定 */
  }

  iframe {
    display: block;
    width: 100%;
    border: none;
  }

  .mobile-wrapper {
    display: block;
  }

  .footer {
    height: 40px;
    background-color: #fff;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
    color: #fff;
  }

  .footer a {
    color: #fff;
    text-decoration: none;
  }

  .footer a:hover {
    text-decoration: underline;
  }

  /* 手机端样式（屏幕宽度 ≤ 600px） */
  @media (max-width: 600px) {
    html, body {
      height: 100%; /* 全屏高度 */
    }

    .mobile-wrapper {
      height: 100vh; /* 视口高度 */
    }

    iframe {
      height: 100%;
    }
  }

  /* 电脑端样式（屏幕宽度 > 600px） */
  @media (min-width: 601px) {
    body {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      min-height: 100vh;
    }

    .mobile-wrapper {
      width: 120vmin;
      height: calc(90vmin - 40px);
      margin-top: 20px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      border-radius: 12px;
      overflow: hidden;
    }

    iframe {
      height: 100%;
    }

    .footer {
      width: 120vmin;
    }
  }