 /* 你的原有页面容器样式 */
        .page-container {margin:0 auto;max-width:100%;padding:0;}

        /* 背景容器：去掉边框+黑色兜底+布局完全匹配 */
        .fullscreen-bg {
            width: 100%;
            height: 370px; /* 你的原有高度，不变 */
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            /* 核心：黑色兜底（和原视频风格一致）+ 稳定图片链接 */
            background: #000 url("https://picsum.photos/1920/1080") center center / cover no-repeat;
            margin: 0 0 -60px 0; /* 你的原有负间距，不变 */
            overflow: hidden;
            /* 删掉所有边框，恢复美观 */
        }

        /* 原有遮罩层，保留（保证文字清晰） */
        .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;
            z-index: 2;
            color: #fff;
            text-align: center;
            padding: 0 20px;
        }
        .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;
            margin: 0 auto;
        }

        /* 响应式：你的原有样式，不变 */
        @media (max-width: 768px) {
            .fullscreen-bg {margin-bottom:15px;height:280px;}
            .bg-text h2 {font-size:1.8rem;}
            .bg-text p {font-size:1rem;}
        }