
    .responsive-video {
      position: relative;
      width: 100%;
      max-width: 800px; /* 可根据需要调整最大宽度 */
      margin: 0 ; /* 居中 */
      padding-bottom: 56.25%; /* 16:9 比例，高度=宽度的56.25% */
      height: 0;
      overflow: hidden;
    }
    .responsive-video video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  