/* 全屏覆盖层样式 */
        #myVideo_overlay {
            display: none; /* 默认隐藏 */
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.75); /* 半透明黑色 */
            z-index: 1000;
            text-align: center;
            padding-top: 10%; /* 调整以居中内容 */
            overflow: auto; /* 确保内容超出时可滚动 */
        }

        /* 视频播放器容器 */
        #myVideo_videoContainer {
            background-color: white;
            display: inline-block;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
        }

        /* 关闭按钮样式 */
        .myVideo_close-btn {
            position: fixed; /* 固定在视口的位置 */
            top: 20px; /* 距离顶部的距离 */
            right: 20px; /* 距离右侧的距离 */
            font-size: 72px; /* 增加字体大小到原来的3倍 */
            color: white; /* 改变颜色为白色 */
            cursor: pointer;
            background: transparent;
            border: none;
            z-index: 1001; /* 确保关闭按钮在最前面 */
        }