@charset "UTF-8";
.video-container {
  position: relative;
  width: 100%;
  max-width: 800px; /* 视频最大宽度，可自行调整 */
  margin: 1.5rem auto; /* 上下间距 + 水平居中 */
  padding-bottom: 56.25%; /* 对应 16:9 画面比例 */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/*# sourceMappingURL=video.css.map */