/* 容器样式，用于限制视频的最大宽度和高度 */
.video-container {
    max-width: 100%; /* 最大宽度为父容器的100% */
    width: 100%; /* 宽度自适应 */
    height: auto; /* 高度自适应 */
    position: relative;
    padding-top: 200%; /* 16:9 宽高比 (9 / 16 * 100%) */
}

/* 视频样式 */
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* 宽度填满容器 */
    height: 100%; /* 高度填满容器 */
    object-fit: cover; /* 保持视频比例，裁剪多余部分 */
}