
        /* 独立容器样式，避免全局样式污染 */
        .inspection-display-container {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
            font-family: "Microsoft YaHei", Arial, sans-serif;
            box-sizing: border-box;
            /* 相对定位，作为箭头按钮的父容器 */
            position: relative;
        }
        /* 检测信息头部卡片 */
        .report-info-card {
            background: #f8f9fa;
            padding: 24px;
            border-radius: 12px;
            margin-bottom: 40px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .report-info-card p {
            margin: 10px 0;
            font-size: 16px;
            color: #333;
            line-height: 1.6;
        }
        .report-info-card strong {
            color: #2c3e50;
            margin-right: 8px;
        }
        /* 分区标题样式 */
        .section-heading {
            font-size: 22px;
            color: #2c3e50;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e4e7ed;
            font-weight: 600;
        }
        /* 场景图网格布局（PC端一行2列，响应式） */
        .image-grid {
            /* 移动端默认1列 */
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            margin-bottom: 50px;
        }
        .image-grid img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            object-fit: cover;
            box-shadow: 0 3px 12px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        .image-grid img:hover {
            transform: translateY(-5px);
        }
        /* PC端（屏幕宽度≥992px）强制一行2列 */
        @media (min-width: 992px) {
            .image-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        /* 证书区域容器（包含滚动区和箭头） */
        .certificate-container {
            position: relative;
            margin-bottom: 50px;
        }
        /* 证书横向滚动布局 */
        .certificate-scroll {
            /* 开启横向滚动，隐藏纵向滚动条 */
            overflow-x: auto;
            overflow-y: hidden;
            /* 给滚动条预留少量底部间距，优化视觉 */
            padding-bottom: 16px;
            /* 取消默认grid布局，改为行内排列 */
            white-space: nowrap;
            /* 避免箭头遮挡证书，添加左右内边距 */
            padding-left: 10px;
            padding-right: 10px;
            /* 滚动平滑过渡 */
            scroll-behavior: smooth;
        }
        .certificate-scroll img {
            /* 行内块级排列，实现横向并排 */
            display: inline-block;
            /* 固定证书宽度，适配竖版比例，可调整 */
            width: 260px;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            /* 证书之间的间距 */
            margin-right: 20px;
            /* 保留微动效 */
            transition: transform 0.2s ease;
        }
        .certificate-scroll img:hover {
            transform: scale(1.02);
        }
        /* 隐藏浏览器默认横向滚动条（优化美观，不影响滚动功能） */
        .certificate-scroll::-webkit-scrollbar {
            height: 6px;
        }
        .certificate-scroll::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 3px;
        }
        .certificate-scroll::-webkit-scrollbar-thumb {
            background: #ddd;
            border-radius: 3px;
        }
        .certificate-scroll::-webkit-scrollbar-thumb:hover {
            background: #ccc;
        }
        /* 左右箭头按钮样式 */
        .scroll-btn {
            /* 绝对定位，固定在证书区域两侧 */
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            /* 按钮样式 */
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: none;
            background: rgba(255, 255, 255, 0.85);
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            cursor: pointer;
            font-size: 18px;
            color: #2c3e50;
            display: flex;
            align-items: center;
            justify-content: center;
            /* 鼠标悬浮效果 */
            transition: all 0.2s ease;
            /* 防止按钮被选中 */
            user-select: none;
            z-index: 10;
        }
        .scroll-btn:hover {
            background: #ffffff;
            box-shadow: 0 3px 12px rgba(0,0,0,0.2);
            color: #1a2533;
        }
        /* 左箭头位置 */
        .scroll-btn-left {
            left: 0;
        }
        /* 右箭头位置 */
        .scroll-btn-right {
            right: 0;
        }
        /* 移动端微调 */
        @media (max-width: 768px) {
            .section-heading {
                font-size: 20px;
            }
            .report-info-card {
                padding: 18px;
            }
            .image-grid {
                gap: 16px;
            }
            /* 移动端证书宽度略缩小，间距减小，提升体验 */
            .certificate-scroll img {
                width: 220px;
                margin-right: 16px;
            }
            /* 移动端箭头按钮缩小 */
            .scroll-btn {
                width: 34px;
                height: 34px;
                font-size: 16px;
            }
        }
    