        body {
            margin: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            background-color: #f0f0f0; /* 可调背景色 */
        }
        #header {
            width: 82%;
            max-width: 900px;
            font-size: 32px;

            font-weight: bold; /* 加粗文字 */
            color: #336; /* 可调文字颜色 */
            margin-top: 10px; /* 调整顶部文字的间距 */
        }
        #header2 {
            width: 62%;
            max-width: 900px;
            font-size: 32px;

            font-weight: bold; /* 加粗文字 */
            color: #222; /* 可调文字颜色 */
            margin-top: 100px; /* 调整顶部文字的间距 */
        }
        #videoContainer {
            position: relative;
            width: 45%; /* 设定视频容器的宽度 */
            max-width: 900px;
            margin-top: 0px; /* 视频距离页面顶部10px */
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        video {
            width: 100%;
            height: auto;
        }
        .control-button {
            position: absolute;
            cursor: pointer;
            z-index: 1;
        }
        #playPauseBtn {
            width: 900px;
            height: 120px;
            bottom: 52%;
            left: 50%;
            transform: translate(-50%, 50%);
        }
        #fullscreenBtn {
            width: 180px;
            height: 60px;
            bottom: 35px;
            right: 30px;
        }
        /* 视频下方的文字区域 */
        .description {
            width: 80%;
            max-width: 900px;
            margin-top: 30px;

            font-size: 40px;
            font-weight: bold; /* 加粗文字 */
            color: #336; /* 可调文字颜色 */
            margin-left: auto;
            margin-right: auto;
        }
        /* 视频下方的文字区域 */
        .description2 {
            width: 88%;
            max-width: 900px;
            margin-top: 20px;

            font-size: 35px;
            color: #336; /* 可调文字颜色 */
            margin-left: auto;
            margin-right: auto;
        }