/* 外层容器（控制宽高比） */
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 比例 (9 / 16 = 0.5625) */
  overflow: hidden;
}

/* iframe 绝对定位填满容器 */
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
