 /* 基础样式重置 */
        

        /* 页面容器控制整体间距 */
        .page-container {
            margin: 0 auto;
            max-width: 100%;
            padding: 0;
        }
        
        /* 视频背景容器 */
        .fullscreen-bg {
            width: 100%;
            height: 300px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #000; /* 视频加载前显示黑色背景 */
            margin: 0 0 -60px 0;
            overflow: hidden; /* 防止视频超出容器 */
        }
        
        /* 视频元素样式 */
        .fullscreen-bg video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%); /* 居中视频 */
            object-fit: cover; /* 保持比例填充容器 */
            z-index: 0;
        }
        
        /* 半透明遮罩层（增强文字可读性） */
        .fullscreen-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }
        
        /* 文字内容 */
        .bg-text {
            position: relative;
            color: white;
            text-align: center;
            padding: 0 20px;
            z-index: 2; /* 确保文字在视频和遮罩上方 */
        }
        
        .bg-text h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .bg-text p {
            font-size: 1.2rem;
            max-width: 800px;
            line-height: 1.6;
        }

        
        
        
        /* 视频加载提示（可选） */
        .video-loading {
            position: absolute;
            color: white;
            z-index: 1;
            font-size: 14px;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .fullscreen-bg {
                margin-bottom: 15px;
            }
            .bg-text h2 {
                font-size: 1.8rem;
            }
            .bg-text p {
                font-size: 1rem;
            }
            .bottom-content {
                padding: 15px;
            }
        }