        /* --- 副 Banner 模块2 样式开始 --- */
        .qlbd-banner-2 {
            position: relative;
            width: 100%;
            height: 360px;
            display: flex;
            align-items: center;
            color: #ffffff;
            background-image: url('https://placehold.co/1920x400/2c3e50/ffffff?text=Secondary+Banner+Background');
            background-size: cover;
            background-position: center;
            overflow: hidden;
        }

        /* 背景遮罩，压暗背景图 */
        .qlbd-banner-2::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(0,0,0,0.45), rgba(0,0,0,0.25));
            z-index: 0;
        }

        /* 内层主容器（控制在 1200px 内） */
        .qlbd-banner-2__inner {
            position: relative;
            z-index: 1;
            width: 100%;
        }

        .qlbd-banner-2__content {
            max-width: var(--ql-container-width);
            width: 100%;
            margin: 0 auto;
            padding: 0 16px;
            text-align: left;
        }

        /* 大标题（靠左） */
        .qlbd-banner-2__title {
            font-size: 32px;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 8px;
            letter-spacing: 0.05em;
        }

        /* 描述文案（靠左） */
        .qlbd-banner-2__subtitle {
            font-size: 16px;
            line-height: 1.6;
            color: rgba(255,255,255,0.85);
            max-width: 640px;
        }

        /* 响应式调整：中小屏字体变小，高度降低 */
        @media (max-width: 996px) {
            .qlbd-banner-2 {
                height: 320px;
            }
        }

        @media (max-width: 768px) {
            .qlbd-banner-2 {
                height: 260px;
            }
            .qlbd-banner-2__title {
                font-size: 24px;
            }
            .qlbd-banner-2__subtitle {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .qlbd-banner-2 {
                height: 220px;
            }
        }
        /* --- 副 Banner 模块2 样式结束 --- */