        /* --- 新闻模块1 样式开始 --- */
        /* 新闻模块1 最外层容器 */
        .qlbd-news-1 {
            width: 100%;
            padding: calc(16px * 2) 16px;
            background-color: #f5f5f5;
        }

        /* 新闻模块1 内容包裹层 */
        .qlbd-news-1__main {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* 新闻模块1 单个新闻条目 */
        .qlbd-news-1__item {
            display: flex;
            background-color: #ffffff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: 0.3s ease;
            margin-bottom: 16px;
            position: relative;
        }
        
        .qlbd-news-1__item:hover {
            transform: translateY(-4px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        /* 装饰线条 */
        .qlbd-news-1__item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, var(--ql-color-primary), #3d566e);
        }

        /* 新闻模块1 图片区域 */
        .qlbd-news-1__image {
            flex: 0 0 240px;
            height: 180px;
            overflow: hidden;
        }
        
        .qlbd-news-1__image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }
        
        .qlbd-news-1__item:hover .qlbd-news-1__image img {
            transform: scale(1.05);
        }

        /* 新闻模块1 文案区域 */
        .qlbd-news-1__content {
            flex: 1;
            padding: 16px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .qlbd-news-1__title {
            font-size: 20px;
            color: var(--ql-color-primary);
            margin-bottom: 8px;
            font-weight: 600;
            line-height: 1.4;
            transition: color 0.3s ease;
        }
        
        .qlbd-news-1__item:hover .qlbd-news-1__title {
            color: #3d566e;
        }
        
        .qlbd-news-1__desc {
            font-size: 16px;
            color: #777777;
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* 新闻模块1 时间区域 */
        .qlbd-news-1__date {
            flex: 0 0 100px;
            background-color: #fafafa;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 8px;
        }
        
        .qlbd-news-1__day {
            font-size: 32px;
            color: var(--ql-color-primary);
            font-weight: 700;
            line-height: 1;
        }
        
        .qlbd-news-1__month-year {
            font-size: 14px;
            color: #333333;
            margin-top: 4px;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .qlbd-news-1__item {
                flex-direction: column;
            }
            
            .qlbd-news-1__image {
                flex: none;
                width: 100%;
                height: 200px;
            }
            
            .qlbd-news-1__content {
                padding: 12px;
            }
            
            .qlbd-news-1__date {
                flex: none;
                width: 100%;
                flex-direction: row;
                justify-content: center;
                gap: 12px;
                padding: 8px 0;
                background-color: #fafafa;
            }
            
            .qlbd-news-1__day {
                font-size: 24px;
            }
        }
        /* --- 新闻模块1 样式结束 --- */