/**
 * inspection-specialist.css — 智能巡检产品页专属样式
 * 从 inspection-specialist.html 内联 <style> 提取（2026-06-17）
 *
 * 迁移原则：保留页面既有手动间距参数，仅将裸选择器收敛到 body.inspection-specialist-page-body。
 * 加载顺序：product-detail-fix.css → inspection-specialist.css → mobile.css
 */

body.inspection-specialist-page-body {
    overflow-x: hidden;
}

/* 页眉与首屏背景融合 - 初始透明，滚动后变白 */
body.inspection-specialist-page-body .header:not(.header-active) {
            background-color: transparent !important;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
        }

        body.inspection-specialist-page-body .header.header-active {
            background-color: #FFFFFF !important;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        /* 智能巡检专家 首屏 - 对齐 ITAM 页面参数 */
body.inspection-specialist-page-body .product-hero {
            background-image: url('/frontStatic/cn/image/newIndex/Header.png'),
                              linear-gradient(135deg, #F5F4FF 0%, #E1DBFF 100%);
            background-color: #F5F4FF;
            background-position: center center, center center;
            background-repeat: no-repeat, no-repeat;
            background-size: cover, cover;
            height: 640px;
            padding-top: 160px;
            padding-bottom: 164px;
            align-items: flex-start;
            /* PC 标准：首屏下边界→第2屏主标题 120px 由 lifecycle 的 padding-top 表达 */
        }

        /* 1. 左侧标签 */
body.inspection-specialist-page-body .product-hero .product-badge {
            color: #6B7280;
            font-size: 14px;
            line-height: 22px;
            margin-bottom: 24px;
        }
        body.inspection-specialist-page-body .product-hero .product-badge .badge-accent {
            color: #6246E8;
            font-weight: 700;
        }

        /* 2. 标题 */
body.inspection-specialist-page-body .product-hero .product-hero-title {
            color: #6246E8;
            font-size: var(--title-hero);
            line-height: 68px;
        }

        /* 3. 描述文本 */
body.inspection-specialist-page-body .product-hero .product-hero-description {
            color: #1E293B;
            font-size: 20px;
            line-height: 28px;
            max-width: 680px;
        }

        /* 4. 按钮：233×62，radius 12，主色 #6246E8 */
body.inspection-specialist-page-body .product-hero .product-btn-primary {
            border-radius: 12px;
            height: 62px;
            min-width: 233px;
            font-size: 18px;
            line-height: 21px;
            gap: 43px;
            box-shadow: none;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            border-left: none;
            border-right: none;
            background: linear-gradient(180deg, #6246E8 0%, #6246E8 100%);
            transition: opacity 0.25s ease, box-shadow 0.25s ease;
        }
        body.inspection-specialist-page-body .product-hero .product-btn-primary svg {
            transition: transform 0.25s ease;
        }
        body.inspection-specialist-page-body .product-hero .product-btn-primary:hover,

        body.inspection-specialist-page-body .product-hero .product-btn-primary:focus {
            opacity: 0.9;
            box-shadow: 0 8px 24px rgba(98, 70, 232, 0.45);
        }
        body.inspection-specialist-page-body .product-hero .product-btn-primary:hover svg,

        body.inspection-specialist-page-body .product-hero .product-btn-primary:focus svg {
            transform: translateX(4px);
        }

        /* 5. 右侧图片 */
body.inspection-specialist-page-body .product-hero .product-hero-image-wrapper img {
            width: 600px;
            height: 335px;
            border-radius: 8px;
            object-fit: cover;
        }

        /* 复用 DOSM 区块样式：lifecycle / benefits / features / cta */
body.inspection-specialist-page-body .inspection-specialist-page .product-lifecycle {
            background: #FFFFFF;
            /* PC 标准：首屏下边界→第2屏主标题 120px + 底部留白 */
            padding: 120px var(--page-gutter) 0;
        }

        body.inspection-specialist-page-body .inspection-specialist-page .product-lifecycle-header {
            max-width: 1280px;
            /* PC 标准：副标题→生命周期图片 60px */
            margin: 0 auto 60px;
            text-align: center;
        }

        body.inspection-specialist-page-body .inspection-specialist-page .product-lifecycle-title {
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
            /* PC 标准：模块主标题 48px/56px */
            font-size: var(--title-section);
            font-weight: 600;
            line-height: 56px;
            color: #1F2A28;
            margin-top: 0;
            /* PC 标准：主标题→副标题 20px */
            margin-bottom: 20px;
        }

        body.inspection-specialist-page-body .inspection-specialist-page .product-lifecycle-subtitle {
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
            font-size: 18px;
            font-weight: 400;
            color: #1E293B;
            line-height: 26px;
            text-transform: uppercase;
            letter-spacing: 0;
            margin-bottom: 0;
        }

        body.inspection-specialist-page-body .inspection-specialist-page .product-lifecycle-image {
            max-width: 1280px;
            margin: 0 auto;
            text-align: center;
        }

        body.inspection-specialist-page-body .inspection-specialist-page .product-lifecycle-image img {
            width: 100%;
            max-width: var(--content-max-w);
            aspect-ratio: 1000 / 376;
            height: auto;
            display: block;
            margin: 0 auto;
            object-fit: contain;
        }

        body.inspection-specialist-page-body .inspection-specialist-page .product-benefits {
            background: #FFFFFF;
            /* PC 标准：第2屏图片下边界→第3屏标题 152px */
            padding: 152px var(--page-gutter) 152px;
        }

        body.inspection-specialist-page-body .inspection-specialist-page .product-benefits .product-section-content {
            max-width: 1232px;
            margin: 0 auto;
        }

        body.inspection-specialist-page-body .inspection-specialist-page .inspection-benefits-header {
            /* PC 标准：标题→文本及图片区域 60px */
            margin-bottom: 60px;
            text-align: center;
        }

        body.inspection-specialist-page-body .inspection-specialist-page .inspection-benefits-title {
            margin: 0;
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
            /* PC 标准：模块主标题 48px/56px */
            font-size: var(--title-section);
            font-weight: 600;
            line-height: 56px;
            color: #1E293B;
        }

        body.inspection-specialist-page-body .inspection-specialist-page .inspection-benefits-subtitle {
            margin-top: 10px;
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
            font-size: 18px;
            font-weight: 400;
            line-height: 22px;
            color: #98A2B3;
        }

        body.inspection-specialist-page-body .inspection-specialist-page .inspection-benefits-list {
            display: flex;
            flex-direction: column;
            /* PC 标准：每行特性之间 80px */
            gap: 80px;
        }

        body.inspection-specialist-page-body .inspection-specialist-page .inspection-benefit-row {
            display: grid;
            grid-template-columns: minmax(420px, 520px) minmax(460px, 560px);
            justify-content: space-between;
            gap: 56px;
            align-items: center;
        }

        body.inspection-specialist-page-body .inspection-specialist-page .inspection-benefit-row.reverse .inspection-benefit-text {
            order: 2;
        }

        body.inspection-specialist-page-body .inspection-specialist-page .inspection-benefit-row.reverse .inspection-benefit-media {
            order: 1;
        }

        body.inspection-specialist-page-body .inspection-specialist-page .inspection-benefit-text {
            max-width: 520px;
        }

        body.inspection-specialist-page-body .inspection-specialist-page .inspection-benefit-title {
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
            /* PC 标准：图文行标题 36px/44px */
            font-size: 36px;
            font-weight: 600;
            line-height: 44px;
            color: #1E293B;
            margin: 0 0 14px;
        }

        body.inspection-specialist-page-body .inspection-specialist-page .inspection-benefit-desc {
            margin: 0;
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
            font-size: 16px;
            font-weight: 400;
            line-height: 26px;
            color: #475467;
        }

        body.inspection-specialist-page-body .inspection-specialist-page .inspection-benefit-media {
            width: 100%;
        }

        body.inspection-specialist-page-body .inspection-specialist-page .inspection-benefit-media img {
            width: 100%;
            max-width: 560px;
            aspect-ratio: 560 / 290;
            height: auto;
            display: block;
            margin: 0 auto;
            object-fit: cover;
            border-radius: 12px;
            border: 1px solid #E5E7EB;
            box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
            transition: box-shadow 0.3s ease, transform 0.3s ease;
        }

        body.inspection-specialist-page-body .inspection-specialist-page .inspection-benefit-media img:hover {
            box-shadow: 0px 12px 20px -6px rgba(98, 70, 232, 0.15), 0px 30px 40px -5px rgba(98, 70, 232, 0.10);
            transform: translateY(-4px);
        }

        body.inspection-specialist-page-body .product-features {
            background: linear-gradient(90deg, #EBF0FF 0%, #FFFFFF 47%, #EBF0FF 100%);
            /* PC 标准：标题到容器上边框 80px，功能卡片到容器下边框 80px */
            padding: 80px var(--page-gutter);
        }

        body.inspection-specialist-page-body .inspection-specialist-page .product-features .product-section-content {
            max-width: 1232px;
            margin: 0 auto;
        }

        body.inspection-specialist-page-body .inspection-specialist-page .product-features .product-features-header {
            margin-bottom: 0;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        body.inspection-specialist-page-body .inspection-specialist-page .product-features .product-features-title {
            margin: 0;
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
            font-size: var(--title-section);
            font-weight: 600;
            line-height: 56px;
            color: #1F2A28;
            text-align: center;
        }

        body.inspection-specialist-page-body .inspection-specialist-page .product-features .product-features-description {
            margin: 12px 0 0;
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
            font-size: 18px;
            font-weight: 400;
            line-height: 26px;
            color: #667085;
            text-align: center;
            width: 100%;
            margin-left: auto;
            margin-right: auto;
        }

        body.inspection-specialist-page-body .inspection-specialist-page .product-features .product-features-grid.cols-3-max {
            display: grid;
            grid-template-columns: repeat(3, minmax(320px, 1fr));
            align-items: stretch;
            justify-content: center;
            gap: 24px;
            width: 100%;
            max-width: 1120px;
            margin: 40px auto 0;
        }

        body.inspection-specialist-page-body .inspection-specialist-page .product-features .product-feature-card {
            box-sizing: border-box;
            width: 100%;
            min-height: 216px;
            border-radius: 10px;
            border: 1px solid #D6DBE4;
            box-shadow: none;
            padding: 18px 20px 22px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            text-align: left;
            background: #FFFFFF;
            transition: all 0.3s;
        }

        body.inspection-specialist-page-body .inspection-specialist-page .product-features .product-feature-card:hover {
            border-color: rgba(98, 70, 232, 0.6);
            box-shadow: 0 8px 24px rgba(98, 70, 232, 0.18);
        }

        body.inspection-specialist-page-body .inspection-specialist-page .product-features .product-feature-icon {
            width: 48px;
            height: 48px;
            margin-bottom: 16px;
            display: block;
        }

        body.inspection-specialist-page-body .inspection-specialist-page .product-features .product-feature-title {
            margin: 0 0 12px;
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
            font-size: 20px;
            font-weight: 600;
            line-height: 28px;
            color: #1F2A28;
        }

        body.inspection-specialist-page-body .inspection-specialist-page .product-features .product-feature-description {
            margin: 0;
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
            font-size: 14px;
            font-weight: 400;
            line-height: 22px;
            color: #5A6B67;
            text-align: left;
        }

        body.inspection-specialist-page-body .product-cta {
            background: #FFFFFF;
            /* PC 标准：CTA模块到上下相邻屏 120px */
            padding: 120px var(--page-gutter);
        }

        body.inspection-specialist-page-body .inspection-specialist-page .product-cta .product-cta-content {
            width: min(1280px, calc(100% - 48px));
            max-width: 1280px;
            min-height: 310px;
            margin: 0 auto;
            background:
                linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
                linear-gradient(89.89deg, #6246E8 0%, #411CF5 100%);
            background-size: 36px 36px, 36px 36px, 100% 100%;
            border-radius: 16px;
            box-sizing: border-box;
            padding: 56px 40px 48px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

@keyframes inspection-specialist-cta-gradient-shift {
            from { background-position: 0% 50%; }
            to   { background-position: 100% 50%; }
        }


        body.inspection-specialist-page-body .inspection-specialist-page .product-cta .product-cta-title {
            margin: 0;
            padding: 0;
                        /* 渐变光流文字 */
            background: linear-gradient(to right, #fff, #ede9fe, #c4b5fd, #a78bfa, #c4b5fd, #ede9fe, #fff);
            background-size: 200% 100%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
            animation: inspection-specialist-cta-gradient-shift 5s linear infinite alternate;
            text-align: center;
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
            /* PC 标准：模块主标题 48px/56px（渐变文字用 1.3 兜底） */
            font-size: var(--title-section);
            font-weight: 600;
            line-height: 1.3;
            letter-spacing: 0;
        }

        body.inspection-specialist-page-body .inspection-specialist-page .product-cta .product-cta-buttons {
            width: 420px;
            height: 62px;
            margin: 40px auto 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }

        body.inspection-specialist-page-body .inspection-specialist-page .product-cta .product-cta-buttons .product-btn-primary,


        body.inspection-specialist-page-body .inspection-specialist-page .product-cta .product-cta-buttons .product-btn-secondary {
            width: 200px;
            height: 62px;
            min-height: 62px;
            padding: 0 20px;
            box-sizing: border-box;
            border-radius: 6px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-decoration: none;
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
            font-size: 18px;
            font-weight: 600;
            line-height: 21px;
            box-shadow: none;
            border: none;
        }

        body.inspection-specialist-page-body .inspection-specialist-page .product-cta .product-cta-buttons .product-btn-primary {
            background: #FFFFFF;
            color: #6246E8;
            transition: opacity 0.2s ease, box-shadow 0.2s ease;
        }
        body.inspection-specialist-page-body .inspection-specialist-page .product-cta .product-cta-buttons .product-btn-primary:hover,

        body.inspection-specialist-page-body .inspection-specialist-page .product-cta .product-cta-buttons .product-btn-primary:focus {
            opacity: 0.9;
            box-shadow: 0 6px 20px rgba(255, 255, 255, 0.35);
        }

        body.inspection-specialist-page-body .inspection-specialist-page .product-cta .product-cta-buttons .product-btn-secondary {
            background: #1E293B;
            color: #FFFFFF;
            transition: opacity 0.2s ease, box-shadow 0.2s ease;
        }
        body.inspection-specialist-page-body .inspection-specialist-page .product-cta .product-cta-buttons .product-btn-secondary:hover,

        body.inspection-specialist-page-body .inspection-specialist-page .product-cta .product-cta-buttons .product-btn-secondary:focus {
            opacity: 0.9;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
        }

        body.inspection-specialist-page-body .inspection-specialist-page .product-cta .product-cta-buttons .product-btn-primary svg,


        body.inspection-specialist-page-body .inspection-specialist-page .product-cta .product-cta-buttons .product-btn-secondary svg {
            width: 18px;
            height: 18px;
            transition: transform 0.2s ease;
        }
        body.inspection-specialist-page-body .inspection-specialist-page .product-cta .product-cta-buttons .product-btn-primary:hover svg,

        body.inspection-specialist-page-body .inspection-specialist-page .product-cta .product-cta-buttons .product-btn-primary:focus svg,

        body.inspection-specialist-page-body .inspection-specialist-page .product-cta .product-cta-buttons .product-btn-secondary:hover svg,

        body.inspection-specialist-page-body .inspection-specialist-page .product-cta .product-cta-buttons .product-btn-secondary:focus svg {
            transform: translateX(4px);
        }

        @media (max-width: 767px) {
            body.inspection-specialist-page-body .inspection-specialist-page .inspection-benefits-title {
                font-size: 28px;
                line-height: 34px;
            }

            body.inspection-specialist-page-body .inspection-specialist-page .inspection-benefits-list {
                gap: 44px;
            }

            body.inspection-specialist-page-body .inspection-specialist-page .inspection-benefit-row {
                grid-template-columns: 1fr;
                gap: 22px;
            }

            body.inspection-specialist-page-body .inspection-specialist-page .inspection-benefit-row.reverse .inspection-benefit-text,


            body.inspection-specialist-page-body .inspection-specialist-page .inspection-benefit-row.reverse .inspection-benefit-media {
                order: initial;
            }

            body.inspection-specialist-page-body .inspection-specialist-page .inspection-benefit-title {
                font-size: 22px;
                line-height: 30px;
            }

            body.inspection-specialist-page-body .inspection-specialist-page .product-features {
                padding: 64px 20px 56px;
            }

            body.inspection-specialist-page-body .inspection-specialist-page .product-features .product-features-title {
                font-size: 28px;
                line-height: 36px;
            }

            body.inspection-specialist-page-body .inspection-specialist-page .product-features .product-features-description {
                font-size: 16px;
                line-height: 24px;
            }

            body.inspection-specialist-page-body .inspection-specialist-page .product-features .product-features-grid.cols-3-max {
                width: 100%;
                display: grid;
                grid-template-columns: repeat(2, minmax(280px, 1fr));
                gap: 24px;
            }

            body.inspection-specialist-page-body .inspection-specialist-page .product-features .product-feature-card {
                width: 100%;
                max-width: 100%;
                height: auto;
                min-height: 200px;
            }

            body.inspection-specialist-page-body .inspection-specialist-page .product-features .product-feature-title {
                font-size: 18px;
                line-height: 26px;
            }

            body.inspection-specialist-page-body .inspection-specialist-page .product-cta {
                padding: 88px 20px;
            }

            body.inspection-specialist-page-body .inspection-specialist-page .product-cta .product-cta-content {
                width: 100%;
                max-width: 100%;
                height: auto;
                min-height: 310px;
                padding: 64px 32px;
            }

            body.inspection-specialist-page-body .inspection-specialist-page .product-cta .product-cta-title {
                padding: 0;
                font-size: 28px;
                line-height: 34px;
            }
        }

        @media (max-width: 767px) {
            /* 第2屏 lifecycle 区块：对齐 castrel integration 的 H5 间距规范 */
body.inspection-specialist-page-body .inspection-specialist-page .product-lifecycle {
                padding: 0 16px 40px;
            }

            body.inspection-specialist-page-body .inspection-specialist-page .product-lifecycle-header {
                margin: 0 auto 20px;
            }

            body.inspection-specialist-page-body .inspection-specialist-page .product-lifecycle-title {
                font-size: 22px;
                line-height: 30px;
                margin-top: 32px;
                margin-bottom: 16px;
            }

            body.inspection-specialist-page-body .inspection-specialist-page .product-lifecycle-subtitle {
                font-size: 13px;
                line-height: 20px;
            }

            body.inspection-specialist-page-body .inspection-specialist-page .inspection-benefits-header {
                margin-bottom: 60px;
            }

            body.inspection-specialist-page-body .inspection-specialist-page .inspection-benefits-title {
                font-size: 42px;
                line-height: 50px;
            }

            body.inspection-specialist-page-body .inspection-specialist-page .inspection-benefits-subtitle {
                font-size: 18px;
                line-height: 22px;
            }

            body.inspection-specialist-page-body .inspection-specialist-page .inspection-benefits-list {
                gap: 44px;
            }

            body.inspection-specialist-page-body .inspection-specialist-page .inspection-benefit-row {
                grid-template-columns: 1fr;
                gap: 22px;
            }

            body.inspection-specialist-page-body .inspection-specialist-page .inspection-benefit-row.reverse .inspection-benefit-text,


            body.inspection-specialist-page-body .inspection-specialist-page .inspection-benefit-row.reverse .inspection-benefit-media {
                order: initial;
            }

            body.inspection-specialist-page-body .inspection-specialist-page .inspection-benefit-title {
                font-size: 22px;
                line-height: 30px;
            }

            body.inspection-specialist-page-body .product-features {
                padding: 56px 16px 48px;
            }

            body.inspection-specialist-page-body .product-features .product-features-title {
                font-size: 32px;
                line-height: 40px;
            }

            body.inspection-specialist-page-body .product-features .product-features-description {
                font-size: 14px;
                line-height: 22px;
                margin-top: 10px;
            }

            body.inspection-specialist-page-body .product-features .product-features-grid.cols-3-max {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            body.inspection-specialist-page-body .product-features .product-feature-title {
                font-size: 20px;
                line-height: 28px;
            }

            body.inspection-specialist-page-body .product-features .product-feature-description {
                font-size: 14px;
                line-height: 22px;
            }

            body.inspection-specialist-page-body .product-cta {
                padding: 64px 16px;
            }

            body.inspection-specialist-page-body .product-cta .product-cta-content {
                min-height: 0;
                padding: 44px 20px;
            }

            body.inspection-specialist-page-body .product-cta .product-cta-title {
                font-size: 28px;
                line-height: 36px;
            }

            body.inspection-specialist-page-body .product-cta .product-cta-buttons {
                width: 100%;
                height: auto;
                margin-top: 28px;
                flex-direction: column;
                gap: 12px;
            }

            body.inspection-specialist-page-body .product-cta .product-cta-buttons .product-btn-primary,


            body.inspection-specialist-page-body .product-cta .product-cta-buttons .product-btn-secondary {
                width: 100%;
                max-width: 280px;
                height: 54px;
                min-height: 54px;
                font-size: 16px;
                line-height: 20px;
            }
        }
