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

        /* 新闻内页模块1 内容包裹层 */
        .qlbd-news-detail-1__main {
            max-width: var(--ql-container-width);
            margin: 0 auto;
            background-color: #ffffff;
            border-radius: 12px;
            padding: calc(16px * 2.5);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }

        /* 装饰元素 */
        .qlbd-news-detail-1__main::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--ql-color-primary), #3d566e);
        }

        /* 新闻标题 */
        .qlbd-news-detail-1__title {
            font-size: 32px;
            color: var(--ql-color-primary);
            margin-bottom: 12px;
            font-weight: 600;
            line-height: 1.4;
            letter-spacing: -0.5px;
            position: relative;
            padding-bottom: 12px;
        }

        .qlbd-news-detail-1__title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--ql-color-primary);
            border-radius: 3px;
        }

        /* 新闻元信息（发布时间、浏览人数） */
        .qlbd-news-detail-1__meta {
            font-size: 14px;
            color: #777777;
            margin-bottom: calc(16px * 1.5);
            padding-bottom: 12px;
            border-bottom: 1px solid #eeeeee;
            display: flex;
            align-items: center;
            gap: calc(16px + 4px);
            flex-wrap: wrap;
        }
        
        .qlbd-news-detail-1__meta span {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        
        .qlbd-news-detail-1__meta i {
            color: #3d566e;
            font-size: 16px;
        }

        /* 新闻内容 */
        .qlbd-news-detail-1__content {
            font-size: 16px;
            color: #333333;
            line-height: 1.8;
        }
        
        .qlbd-news-detail-1__content p {
            margin-bottom: 16px;
            text-align: justify;
        }
        
        .qlbd-news-detail-1__content img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: calc(16px * 1.5) 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
            cursor: pointer;
        }
        
        .qlbd-news-detail-1__content img:hover {
            transform: scale(1.01);
        }
        
        .qlbd-news-detail-1__content h3 {
            color: var(--ql-color-primary);
            margin: calc(16px * 2) 0 12px;
            font-weight: 600;
            font-size: 20px;
            position: relative;
            padding-left: 12px;
        }
        
        .qlbd-news-detail-1__content h3::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 18px;
            background-color: var(--ql-color-primary);
            border-radius: 2px;
        }
        
        .qlbd-news-detail-1__content h4 {
            color: var(--ql-color-primary);
            margin: calc(16px * 1.5) 0 8px;
            font-weight: 500;
            font-size: 16px;
        }
        
        .qlbd-news-detail-1__content ul,
        .qlbd-news-detail-1__content ol {
            margin-left: 16px;
            margin-bottom: 16px;
        }
        
        .qlbd-news-detail-1__content li {
            margin-bottom: 8px;
            position: relative;
        }
        
        .qlbd-news-detail-1__content ul li::before {
            content: '';
            position: absolute;
            left: -16px;
            top: 8px;
            width: 6px;
            height: 6px;
            background-color: #3d566e;
            border-radius: 50%;
        }
        
        .qlbd-news-detail-1__content strong {
            color: var(--ql-color-primary);
            font-weight: 500;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .qlbd-news-detail-1 {
                padding: 16px 8px;
            }
            
            .qlbd-news-detail-1__main {
                padding: 16px;
            }
            
            .qlbd-news-detail-1__title {
                font-size: 24px;
                padding-bottom: 8px;
            }
            
            .qlbd-news-detail-1__content {
                font-size: 14px;
                line-height: 1.7;
            }
            
            .qlbd-news-detail-1__meta {
                gap: 12px;
            }
        }
        /* --- 新闻内页模块1 样式结束 --- */