.content1 {
             width: 100%;
            height: 100%;
            font-family: '微软雅黑', Arial, sans-serif;
            line-height: 1.6;
            margin: 20px;
        }


.container1 h1 {
    font-size: 32px;
    font-weight: bold;
    color: black;
    line-height: 1.6;
}

.container1 h2 {
    font-size: 24px;
    font-weight: bold;
    color: black;
    line-height: 1.6;
}

.container1 h3 {
    font-size: 18px;
    font-weight: bold;
    color: black;
    line-height: 1.6;
}

.container1 h4 {
    font-size: 16px;
    font-weight: bold;
    color: black;
    line-height: 1.6;
}

.container1 p {
    font-size: 14px;
    font-weight: normal;
    color: black;
    line-height: 1.6;
}


        .video-container {
            width: 640px; /* 设置固定的宽度 */
            height: 360px; /* 设置固定的高度 */
            margin-bottom: 20px;
             display: flex;           /* 使用flex布局 */
            justify-content: center; /* 水平居中 */
            align-items: center;     /* 垂直居中 */

        }
        video {
            width: 100%; /* 视频宽度占满容器 */
            height: 100%; /* 视频高度占满容器 */
        }
        .description {
            margin-bottom: 20px;
        }
         .description img {
        max-width: 48%; /* 调整图片宽度，确保一行能放下两张图片 */
        margin: 1%; /* 调整图片之间的间隔 */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 可选，为图片添加阴影效果 */
    }

        .image-container {
            width: 100%;
            margin-bottom: 20px;
        }
        .image-container img {
            width: 100%;
            height: auto;
            display: block; /* 防止图片下方有间隙 */
        }

