/*
 * SkyEye Plus 系列页与详情页专用样式。
 *
 * 设计目标：
 * - 延续蓝湖深色星空、冷蓝高光和大字号产品叙事；
 * - 以 375/390px 移动端设计为默认样式，再通过 min-width 逐级增强至 PC；
 * - 页面在正式图片缺失时仍保持完整排版，不显示占位区域或 broken image；
 * - 所有选择器限定在 skyeye-plus 命名空间内，避免影响现有产品页面。
 */

.skyeye-plus-page {
    --skyeye-plus-navy: #020b1e;
    --skyeye-plus-deep: #06142d;
    --skyeye-plus-panel: #0b1c39;
    --skyeye-plus-blue: #4f89e0;
    --skyeye-plus-blue-bright: #79abed;
    --skyeye-plus-ice: #d4e9ff;
    --skyeye-plus-text: #171a1d;
    --skyeye-plus-muted: #607086;
    --skyeye-plus-line: rgba(111, 155, 220, 0.22);
    --skyeye-plus-radius: 14px;
    --skyeye-plus-container: 1240px;
    background: #fff;
    color: var(--skyeye-plus-text);
}

/*
 * 详情页首屏图片路径由专用样式统一维护。PHP 模板只负责内容结构，
 * 避免同一套系列素材在六个型号页面中重复生成行内 CSS。
 */
.skyeye-plus-detail-page {
    --skyeye-plus-hero-desktop: url('/assets/image/product/SkyEye_Plus/hero-background.webp');
    --skyeye-plus-hero-mobile: url('/assets/image/product/SkyEye_Plus/hero-background-mobile.webp');
}

.skyeye-plus-page .page-wrapper {
    background: #fff;
}

.skyeye-plus-main {
    overflow: clip;
}

/*
 * 详情页左侧快速导航沿用既有产品页的交互方式，但样式限定在 SkyEye Plus
 * 命名空间内，避免加载旧详情页整套 CSS 或改变当前 1240px 内容版心。
 */
.skyeye-plus-detail-page .skyeye-plus-floating-nav {
    display: none;
}

@media (min-width: 1720px) {
    .skyeye-plus-detail-page .skyeye-plus-floating-nav {
        position: fixed;
        z-index: 1000;
        top: 50%;
        left: 0;
        display: block;
        transform: translateY(-50%);
    }

    .skyeye-plus-detail-page .skyeye-plus-floating-nav .nav-toggle {
        display: flex;
        align-items: center;
        gap: 8px;
        min-height: 44px;
        padding: 11px 16px;
        border: 0;
        border-radius: 0 10px 10px 0;
        background: var(--v2-primary-500, #2967d3);
        box-shadow: 0 8px 24px rgba(2, 11, 30, 0.22);
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.2s ease, padding 0.2s ease, opacity 0.2s ease;
    }

    .skyeye-plus-detail-page .skyeye-plus-floating-nav .nav-toggle:hover,
    .skyeye-plus-detail-page .skyeye-plus-floating-nav .nav-toggle:focus-visible {
        padding-right: 20px;
        background: var(--v2-primary-600, #184aad);
    }

    .skyeye-plus-detail-page .skyeye-plus-floating-nav .nav-toggle:focus-visible,
    .skyeye-plus-detail-page .skyeye-plus-floating-nav .nav-close:focus-visible,
    .skyeye-plus-detail-page .skyeye-plus-floating-nav a:focus-visible {
        outline: 3px solid var(--v2-primary-500, #2967d3);
        outline-offset: 3px;
    }

    .skyeye-plus-detail-page .skyeye-plus-floating-nav.active .nav-toggle {
        opacity: 0;
        pointer-events: none;
    }

    .skyeye-plus-detail-page .skyeye-plus-floating-nav .nav-content {
        position: relative;
        width: 240px;
        max-height: calc(100vh - 120px);
        padding: 22px 38px 24px 20px;
        overflow-y: auto;
        border: 1px solid rgba(111, 155, 220, 0.2);
        border-left: 0;
        border-radius: 0 14px 14px 0;
        background: #fff;
        box-shadow: 0 14px 38px rgba(2, 11, 30, 0.2);
        opacity: 0;
        visibility: hidden;
        transform: translateX(-100%);
        transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    }

    .skyeye-plus-detail-page .skyeye-plus-floating-nav.active .nav-content {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .skyeye-plus-detail-page .skyeye-plus-floating-nav h2 {
        margin: 0 0 14px;
        padding: 0 0 12px;
        border-bottom: 1px solid rgba(111, 155, 220, 0.2);
        color: var(--skyeye-plus-text);
        font-size: 17px;
        font-weight: 700;
        line-height: 1.35;
    }

    .skyeye-plus-detail-page .skyeye-plus-floating-nav ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .skyeye-plus-detail-page .skyeye-plus-floating-nav li + li {
        margin-top: 5px;
    }

    .skyeye-plus-detail-page .skyeye-plus-floating-nav .nav-link {
        position: relative;
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 8px 11px;
        overflow: hidden;
        border-radius: 7px;
        color: #46566c;
        font-size: 14px;
        line-height: 1.45;
        text-decoration: none;
        transition: background-color 0.2s ease, color 0.2s ease;
    }

    .skyeye-plus-detail-page .skyeye-plus-floating-nav .nav-link::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        width: 3px;
        height: 0;
        border-radius: 2px;
        background: var(--v2-primary-500, #2967d3);
        transform: translateY(-50%);
        transition: height 0.2s ease;
    }

    .skyeye-plus-detail-page .skyeye-plus-floating-nav .nav-link:hover,
    .skyeye-plus-detail-page .skyeye-plus-floating-nav .nav-link.active {
        background: rgba(79, 137, 224, 0.1);
        color: var(--v2-primary-600, #184aad);
    }

    .skyeye-plus-detail-page .skyeye-plus-floating-nav .nav-link.active::before {
        height: 58%;
    }

    .skyeye-plus-detail-page .skyeye-plus-floating-nav .nav-divider {
        height: 1px;
        margin: 17px 0;
        background: rgba(111, 155, 220, 0.2);
    }

    .skyeye-plus-detail-page .skyeye-plus-floating-nav .manual-link {
        display: flex;
        align-items: center;
        gap: 9px;
        padding: 10px 12px;
        border-radius: 8px;
        min-height: 44px;
        background: var(--v2-primary-500, #2967d3);
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        transition: background-color 0.2s ease, transform 0.2s ease;
    }

    .skyeye-plus-detail-page .skyeye-plus-floating-nav .manual-link:hover {
        background: var(--v2-primary-600, #184aad);
        transform: translateY(-1px);
    }

    .skyeye-plus-detail-page .skyeye-plus-floating-nav .manual-link span {
        flex: 1;
    }

    .skyeye-plus-detail-page .skyeye-plus-floating-nav .manual-link .fa-external-link-alt {
        font-size: 11px;
        opacity: 0.78;
    }

    .skyeye-plus-detail-page .skyeye-plus-floating-nav .nav-close {
        position: absolute;
        top: 12px;
        right: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: #eef3f9;
        color: #53657c;
        cursor: pointer;
        transition: background-color 0.2s ease, color 0.2s ease;
    }

    .skyeye-plus-detail-page .skyeye-plus-floating-nav .nav-close:hover {
        background: var(--v2-primary-500, #2967d3);
        color: #fff;
    }
}

/* 移动稿未包含浮动入口；窄屏隐藏入口，避免覆盖图片叠字和小字号注释。 */
@media (max-width: 767px) {
    .skyeye-plus-detail-page .atf-progress-contact,
    .skyeye-plus-detail-page .atf-progress-wrap {
        display: none;
    }
}

/*
 * 详情页 PC 内容最大宽度为 1240px；1500px 以下的侧边空间不足以
 * 同时容纳内容与浮动入口，因此暂时隐藏入口，避免覆盖正文和图片。
 */
@media (min-width: 768px) and (max-width: 1499px) {
    .skyeye-plus-detail-page .atf-progress-contact,
    .skyeye-plus-detail-page .atf-progress-wrap {
        display: none;
    }
}

.skyeye-plus-container {
    width: min(calc(100% - 32px), var(--skyeye-plus-container));
    margin-inline: auto;
}

.skyeye-plus-hero {
    position: relative;
    isolation: isolate;
    min-height: 680px;
    display: flex;
    align-items: center;
    color: #fff;
    background:
        radial-gradient(circle at 76% 24%, rgba(79, 137, 224, 0.28), transparent 34%),
        radial-gradient(circle at 18% 84%, rgba(34, 77, 149, 0.24), transparent 36%),
        linear-gradient(145deg, #020817 0%, #06142d 56%, #020b1e 100%);
}

.skyeye-plus-hero::after {
    content: '';
    position: absolute;
    z-index: -1;
    inset: auto 0 0;
    height: 180px;
    background: linear-gradient(180deg, transparent, rgba(1, 7, 19, 0.78));
    pointer-events: none;
}

.skyeye-plus-hero__inner {
    padding-block: 92px 78px;
}

.skyeye-plus-series-hero .skyeye-plus-hero__copy {
    max-width: 850px;
}

.skyeye-plus-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 12px;
    line-height: 1.6;
}

.skyeye-plus-breadcrumb a {
    color: rgba(255, 255, 255, 0.82);
}

.skyeye-plus-breadcrumb a:hover,
.skyeye-plus-breadcrumb a:focus-visible {
    color: #fff;
}

.skyeye-plus-hero h1 {
    max-width: 960px;
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 13vw, 58px);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.03;
}

.skyeye-plus-hero__tagline {
    margin: 20px 0 0;
    color: var(--skyeye-plus-ice);
    font-size: 23px;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.35;
}

.skyeye-plus-hero__description {
    max-width: 800px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    line-height: 1.75;
}

.skyeye-plus-button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.skyeye-plus-button:hover,
.skyeye-plus-button:focus-visible {
    transform: translateY(-2px);
}

.skyeye-plus-button--primary {
    margin-top: 26px;
    color: #fff;
    background: var(--v2-primary-500, #2967d3);
}

.skyeye-plus-button--primary:hover,
.skyeye-plus-button--primary:focus-visible {
    color: #fff;
    background: var(--v2-primary-600, #184aad);
}

.skyeye-plus-button--secondary {
    width: 100%;
    margin-top: 28px;
    color: #fff;
    background: var(--skyeye-plus-deep);
}

.skyeye-plus-button--secondary:hover,
.skyeye-plus-button--secondary:focus-visible {
    color: #fff;
    background: #0b2859;
}

.skyeye-plus-button--ghost {
    margin-top: 26px;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(4, 20, 45, 0.45);
    backdrop-filter: blur(10px);
}

.skyeye-plus-button--ghost:hover,
.skyeye-plus-button--ghost:focus-visible {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(15, 43, 84, 0.72);
}

.skyeye-plus-section {
    position: relative;
    padding-block: 74px;
    scroll-margin-top: calc(var(--skyeye-plus-sticky-offset, 64px) + 64px);
}

.skyeye-plus-section--light {
    background: #fff;
}

.skyeye-plus-section--muted {
    background: #f4f7fb;
}

.skyeye-plus-section--dark {
    color: #fff;
    background:
        radial-gradient(circle at 8% 14%, rgba(79, 137, 224, 0.13), transparent 32%),
        linear-gradient(150deg, var(--skyeye-plus-deep), var(--skyeye-plus-navy));
}

.skyeye-plus-section__heading {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: left;
}

.skyeye-plus-section__heading--wide {
    max-width: 940px;
}

.skyeye-plus-section__heading h2,
.skyeye-plus-feature__copy h2 {
    margin: 0;
    color: var(--skyeye-plus-text);
    font-size: 34px;
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.18;
}

.skyeye-plus-section__heading p,
.skyeye-plus-feature__copy p {
    margin: 16px 0 0;
    color: var(--skyeye-plus-muted);
    font-size: 15px;
    line-height: 1.75;
}

.skyeye-plus-feature--dark .skyeye-plus-feature__copy p {
    color: #515860;
}

.skyeye-plus-section__heading--light h2,
.skyeye-plus-section__heading--light p,
.skyeye-plus-feature--dark .skyeye-plus-feature__copy h2,
.skyeye-plus-feature--dark .skyeye-plus-feature__copy p {
    color: #fff;
}

.skyeye-plus-section__heading--light p,
.skyeye-plus-feature--dark .skyeye-plus-feature__copy p {
    color: rgba(255, 255, 255, 0.7);
}

.skyeye-plus-series-banner {
    background-position: center;
    background-size: cover;
}

@media (max-width: 767px) {
    body.skyeye-plus-series-page .skyeye-plus-series-banner > .container {
        padding-bottom: 22px;
    }

    body.skyeye-plus-series-page .skyeye-plus-series-banner .atf-page-heading-title {
        color: var(--v2-text-heading) !important;
        text-shadow: 0 2px 10px rgba(255, 255, 255, 0.72) !important;
    }

    body.skyeye-plus-series-page .skyeye-plus-series-banner .atf-post-label > span,
    body.skyeye-plus-series-page .skyeye-plus-series-banner .atf-post-label > span a,
    body.skyeye-plus-series-page .skyeye-plus-series-banner .atf-post-label > span:not(:last-child)::after {
        color: var(--v2-text-heading) !important;
    }

    body.skyeye-plus-series-page .skyeye-plus-series-banner .atf-post-label > span:last-child,
    body.skyeye-plus-series-page .skyeye-plus-series-banner .atf-post-label > span:not(:has(a)) {
        color: rgba(23, 26, 29, 0.68) !important;
    }
}

.skyeye-plus-series-page .skyeye-plus-model-grid > .grid-item {
    scroll-margin-top: 132px;
}

.skyeye-plus-table-wrap {
    max-width: 100%;
    overflow-x: auto;
    border: 1px solid rgba(136, 173, 225, 0.24);
    border-radius: var(--skyeye-plus-radius);
    background: rgba(6, 20, 45, 0.7);
    scrollbar-color: rgba(121, 171, 237, 0.65) transparent;
}

.skyeye-plus-table-wrap:focus-visible {
    outline: 3px solid rgba(121, 171, 237, 0.6);
    outline-offset: 4px;
}

.skyeye-plus-table-wrap--light {
    border-color: #dce6f2;
    background: #fff;
}

.skyeye-plus-table {
    width: 100%;
    min-width: 1140px;
    border-collapse: collapse;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    line-height: 1.55;
}

.skyeye-plus-table th,
.skyeye-plus-table td {
    min-width: 150px;
    padding: 20px 18px;
    border-bottom: 1px solid rgba(136, 173, 225, 0.14);
    text-align: left;
    vertical-align: top;
}

.skyeye-plus-table thead th {
    position: sticky;
    top: 0;
    z-index: 2;
    color: #fff;
    background: #0b1d3b;
    font-weight: 600;
}

.skyeye-plus-table tbody th {
    position: sticky;
    left: 0;
    z-index: 1;
    color: #fff;
    background: #081a36;
    font-weight: 600;
}

.skyeye-plus-table tr:last-child th,
.skyeye-plus-table tr:last-child td {
    border-bottom: 0;
}

.skyeye-plus-table--compact {
    min-width: 820px;
    color: var(--skyeye-plus-text);
}

.skyeye-plus-table--compact thead th {
    color: #fff;
    background: var(--skyeye-plus-deep);
}

.skyeye-plus-table--compact tbody th {
    color: var(--skyeye-plus-text);
    background: #f2f6fb;
}

.skyeye-plus-table--compact th,
.skyeye-plus-table--compact td {
    border-bottom-color: #e1e8f1;
}

.skyeye-plus-detail-hero {
    min-height: 0;
    display: block;
    background: #050505;
}

/* 详情页使用独立媒体层，移动端标题保持在图片下方，PC 再叠放到图片左侧。 */
.skyeye-plus-detail-hero::after {
    display: none;
}

.skyeye-plus-detail-hero__media {
    position: relative;
    min-height: 500px;
    background-color: var(--skyeye-plus-navy);
    background-image: var(--skyeye-plus-hero-mobile);
    background-position: center top;
    background-size: 100% auto;
    background-repeat: no-repeat;
}

.skyeye-plus-detail-hero__media::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 180px;
    background: linear-gradient(180deg, transparent, rgba(1, 7, 19, 0.78));
    pointer-events: none;
}

.skyeye-plus-detail-hero__content {
    width: min(calc(100% - 20px), 980px);
    display: flow-root;
    margin-inline: auto;
}

.skyeye-plus-anchor-nav {
    position: sticky;
    z-index: 90;
    top: var(--skyeye-plus-sticky-offset, 64px);
    border-bottom: 1px solid #e4eaf1;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
}

.skyeye-plus-anchor-nav__track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.skyeye-plus-anchor-nav__track::-webkit-scrollbar {
    display: none;
}

.skyeye-plus-anchor-nav a {
    flex: 0 0 auto;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    padding-block: 12px;
    border-bottom: 3px solid transparent;
    color: #516276;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.skyeye-plus-anchor-nav a:hover,
.skyeye-plus-anchor-nav a:focus-visible,
.skyeye-plus-anchor-nav a.active {
    border-bottom-color: var(--v2-primary-500, #2967d3);
    color: var(--v2-primary-600, #184aad);
}

.skyeye-plus-anchor-nav a:focus-visible {
    outline: 3px solid var(--v2-primary-500, #2967d3);
    outline-offset: -3px;
}

@media (min-width: 1720px) {
    .skyeye-plus-detail-page .skyeye-plus-anchor-nav {
        display: none;
    }
}

.skyeye-plus-parameter-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 12px;
    margin: 0;
    padding: 22px 14px 24px;
    border-radius: 18px;
    background: #eef3f8;
}

.skyeye-plus-parameter-card {
    min-width: 0;
    display: grid;
    grid-template-rows: auto 1fr;
    justify-items: center;
    align-content: start;
    gap: 3px;
    text-align: center;
}

.skyeye-plus-parameter-icon {
    width: min(100%, 88px);
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skyeye-plus-parameter-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.skyeye-plus-parameter-card dt,
.skyeye-plus-parameter-card dd {
    min-width: 0;
    margin: 0;
    overflow-wrap: anywhere;
}

.skyeye-plus-parameter-card dt {
    display: grid;
    justify-items: center;
    gap: 3px;
    color: #202b38;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;
}

.skyeye-plus-parameter-card dd {
    color: #111922;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    overflow-wrap: anywhere;
    white-space: pre-line;
}

.skyeye-plus-design-copy {
    margin: 0 auto;
}

/* 移动端保持设计稿中的紧凑正文宽度，PC 端再与下方参数面板统一边界。 */
.skyeye-plus-design-intro .skyeye-plus-container {
    width: min(calc(100% - 20px), 980px);
}

.skyeye-plus-product-heading {
    margin: 0 auto 26px;
    padding: 38px 0 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    text-align: center;
}

.skyeye-plus-product-heading__badge {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.4;
}

.skyeye-plus-product-heading__badge span {
    display: inline-block;
    margin-left: 5px;
    padding: 1px 6px 2px;
    color: #fff;
    background: #f25a00;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.3;
    vertical-align: middle;
}

.skyeye-plus-product-heading h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(32px, 9.2vw, 38px);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.08;
    white-space: nowrap;
}

.skyeye-plus-product-heading__meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
}

.skyeye-plus-product-heading__format,
.skyeye-plus-product-heading__tagline {
    margin: 0;
}

.skyeye-plus-product-heading__format {
    padding: 0;
    color: rgba(255, 255, 255, 0.92);
    background: transparent;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.55;
}

.skyeye-plus-product-heading__tagline {
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.55;
}

.skyeye-plus-design-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    line-height: 1.8;
}

.skyeye-plus-design-copy p + p {
    margin-top: 16px;
}

/* 设计稿指定的正文断行只作用于移动端，PC 端仍随 1240px 版心自然排版。 */
@media (min-width: 768px) {
    .skyeye-plus-design-copy__mobile-break {
        display: none;
    }
}

.skyeye-plus-detail-page #overview {
    padding-block: 0 24px;
}

.skyeye-plus-design-intro {
    padding-block: 0 32px;
    background:
        radial-gradient(circle at 50% 0, rgba(8, 170, 240, 0.12), transparent 42%),
        #050505;
}

.skyeye-plus-parameter-wrap {
    padding-top: 24px;
}

.skyeye-plus-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3px;
    margin: 0;
    padding: 0;
    list-style: none;
}

#highlights {
    padding-block: 30px 20px;
}

#highlights .skyeye-plus-container {
    width: min(calc(100% - 28px), var(--skyeye-plus-container));
}

.skyeye-plus-section__heading--design {
    margin-bottom: 16px;
    text-align: center;
}

.skyeye-plus-section__heading--design h2 {
    color: var(--v2-primary-500, #2967d3);
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.2;
}

.skyeye-plus-section__heading--design h2::after {
    content: '';
    width: 112px;
    height: 2px;
    display: block;
    margin: 10px auto 0;
    background: #1a222b;
}

#dimensions,
#back-focus-solutions,
#package {
    padding-block: 54px;
}

#dimensions .skyeye-plus-container,
#back-focus-solutions .skyeye-plus-container,
#afw-connection .skyeye-plus-container,
#package .skyeye-plus-container {
    width: min(calc(100% - 32px), var(--skyeye-plus-container));
}

.skyeye-plus-highlight-card {
    position: relative;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 4px;
    color: #fff;
    background: #0a2448;
}

.skyeye-plus-highlight-card--standard {
    aspect-ratio: 1763 / 1422;
}

.skyeye-plus-highlight-card--cooling-min {
    aspect-ratio: 1763 / 1419;
}

.skyeye-plus-highlight-card--wide {
    grid-column: 1 / -1;
}

.skyeye-plus-highlight-card--sensor {
    aspect-ratio: 3556 / 1422;
}

.skyeye-plus-highlight-card--back-focus {
    aspect-ratio: 3559 / 1522;
}

.skyeye-plus-highlight-card--tall {
    grid-row: span 2;
}

.skyeye-plus-highlight-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.skyeye-plus-highlight-card__title {
    position: absolute;
    z-index: 1;
    top: 14px;
    left: 22px;
    max-width: calc(100% - 44px);
    color: inherit;
    font-size: clamp(15px, 4.1vw, 16px);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.3;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.46);
}

.skyeye-plus-highlight-card__title > span {
    display: block;
}

.skyeye-plus-highlight-card--wide .skyeye-plus-highlight-card__title {
    max-width: 52%;
}

.skyeye-plus-highlight-card--sensor .skyeye-plus-highlight-card__title {
    top: 40px;
    left: 26px;
}

.skyeye-plus-highlight-card--back-focus .skyeye-plus-highlight-card__title {
    top: 40px;
    left: 24px;
}

.skyeye-plus-highlight-card--title-center .skyeye-plus-highlight-card__title {
    right: 0;
    left: 0;
    max-width: none;
    text-align: center;
}

.skyeye-plus-highlight-card--title-compact .skyeye-plus-highlight-card__title {
    top: 10px;
}

.skyeye-plus-highlight-card.dark-copy {
    color: #0c0c0c;
    text-shadow: 0 1px 4px rgba(255, 255, 255, 0.62);
}

.skyeye-plus-feature--light {
    background: #fff;
}

.skyeye-plus-feature--muted {
    background: #fff;
}

.skyeye-plus-feature--dark {
    color: var(--skyeye-plus-text);
    background: #fff;
}

.skyeye-plus-feature__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 16px;
}

.skyeye-plus-detail-page .skyeye-plus-feature {
    padding-block: 20px;
}

.skyeye-plus-feature .skyeye-plus-container {
    width: min(calc(100% - 32px), var(--skyeye-plus-container));
}

.skyeye-plus-feature__heading {
    margin: 0 0 8px;
    text-align: center;
}

.skyeye-plus-feature__heading h2 {
    margin: 0;
    color: var(--v2-primary-500, #2967d3);
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.25;
}

.skyeye-plus-feature__heading::after {
    content: '';
    width: 112px;
    height: 2px;
    display: block;
    margin: 10px auto 0;
    background: #1a222b;
}

.skyeye-plus-feature__subtitle {
    margin: 2px 0 0;
    color: var(--v2-primary-500, #2967d3);
    font-size: 23px;
    font-weight: 400;
    line-height: 1.25;
}

.skyeye-plus-feature__copy:empty {
    display: none;
}

.skyeye-plus-feature__copy p {
    margin: 0;
    color: #515860;
    font-size: 16px;
    line-height: 1.65;
}

.skyeye-plus-feature__copy p + p,
.skyeye-plus-feature__copy ul + p,
.skyeye-plus-feature__copy p + ul {
    margin-top: 10px;
}

.skyeye-plus-feature__media {
    position: relative;
    min-width: 0;
    overflow: hidden;
    margin: 0;
    border-radius: 10px;
}

.skyeye-plus-feature__image {
    width: 100%;
    max-height: 680px;
    display: block;
    object-fit: contain;
}

/* 独立内容图复用全站灯箱；叠字图片不会生成该链接，因此仍保持纯展示状态。 */
.skyeye-plus-image-preview {
    width: 100%;
    display: block;
    color: inherit;
    cursor: zoom-in;
    touch-action: manipulation;
}

.skyeye-plus-image-preview:focus-visible {
    outline: 3px solid var(--v2-primary-500, #2967d3);
    outline-offset: -3px;
}

.skyeye-plus-feature__image-overlay {
    position: absolute;
    top: 50%;
    left: 7%;
    max-width: 42%;
    display: flex;
    flex-direction: column;
    gap: 1px;
    color: #fff;
    font-size: clamp(15px, 4vw, 18px);
    font-weight: 500;
    line-height: 1.28;
    text-shadow: 0 1px 3px rgba(8, 40, 76, 0.28);
    transform: translateY(-50%);
    pointer-events: none;
}

.skyeye-plus-feature__image-overlay > span {
    white-space: nowrap;
}

/* 传感器与制冷切图共用左侧叠字区，并按设计稿分隔技术名称与性能描述。 */
#sensor .skyeye-plus-feature__image-overlay,
#cooling .skyeye-plus-feature__image-overlay {
    left: 7%;
    max-width: 46%;
}

#sensor .skyeye-plus-feature__image-overlay > span:nth-child(3),
#cooling .skyeye-plus-feature__image-overlay > span:nth-child(3) {
    margin-top: 0.55em;
}

.skyeye-plus-copy-list {
    display: grid;
    gap: 8px;
    margin: 0;
    padding-left: 22px;
    color: #515860;
    font-size: 15px;
    line-height: 1.65;
}

.skyeye-plus-note {
    color: #515860 !important;
    font-size: 12px !important;
    line-height: 1.7 !important;
}

.skyeye-plus-copy-list--tilt,
.skyeye-plus-copy-list--back-focus {
    padding: 0;
    list-style: none;
}

.skyeye-plus-copy-list--standard {
    padding-left: 30px;
    list-style: disc;
}

.skyeye-plus-copy-list--standard li::marker {
    color: #3e4348;
    font-size: 0.9em;
}

.skyeye-plus-feature__copy strong,
.skyeye-plus-copy-list strong {
    color: #41474d;
    font-weight: 700;
}

/*
 * Detail feature sections now share a white canvas, including sections whose
 * data still carries the legacy "dark" tone. Override the earlier dark-theme
 * selector with equal-or-higher specificity so confirmed copy stays legible.
 */
.skyeye-plus-detail-page .skyeye-plus-feature--dark .skyeye-plus-feature__copy p {
    color: #515860;
}

.skyeye-plus-copy-list--tilt li,
.skyeye-plus-copy-list--back-focus li {
    position: relative;
    padding-left: 24px;
}

.skyeye-plus-copy-list--tilt {
    gap: 4px;
    font-size: 14px;
    line-height: 1.6;
}

.skyeye-plus-copy-list--tilt li::before,
.skyeye-plus-copy-list--back-focus li::before {
    content: '';
    position: absolute;
    top: 0.62em;
    left: 4px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #2859ca;
    transform: translateY(-50%);
}

.skyeye-plus-copy-list--tilt li:nth-child(2)::before,
.skyeye-plus-copy-list--back-focus li:nth-child(2)::before {
    background: #d52b1e;
}

.skyeye-plus-copy-list--back-focus li:nth-child(3)::before {
    background: #000;
}

#back-focus .skyeye-plus-feature__media {
    border: 1px solid #d9e3ec;
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
}

#back-focus .skyeye-plus-feature__copy--after-media {
    margin-top: -16px;
    padding: 8px 10px 10px;
    border: 1px solid #d9e3ec;
    border-top: 0;
    border-radius: 0 0 8px 8px;
    background: #f8fafc;
}

#back-focus .skyeye-plus-copy-list {
    gap: 4px;
    color: #565d65;
    font-size: 12px;
    line-height: 1.6;
}

#back-focus .skyeye-plus-copy-list li {
    padding-left: 18px;
}

#back-focus .skyeye-plus-copy-list li::before {
    left: 2px;
    width: 7px;
    height: 7px;
}

.skyeye-plus-feature__media figcaption {
    padding: 8px 10px 0;
    color: var(--skyeye-plus-muted);
    font-size: 13px;
    line-height: 1.55;
}

.skyeye-plus-curve-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
}

#camera-curves .skyeye-plus-feature__inner {
    grid-template-columns: minmax(0, 1fr);
}

.skyeye-plus-curve-card {
    position: relative;
    margin: 0;
    overflow: hidden;
    border: 1px solid #e1e8f1;
    border-radius: var(--skyeye-plus-radius);
    background: #fff;
}

.skyeye-plus-curve-card__image {
    width: 100%;
    height: auto;
    display: block;
}

.skyeye-plus-curve-card figcaption {
    position: static;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px 16px;
    border-top: 1px solid #e1e8f1;
    color: var(--skyeye-plus-muted);
    background: #fff;
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}

.skyeye-plus-package__media {
    margin-bottom: 0;
    overflow: hidden;
    border-radius: var(--skyeye-plus-radius);
    background: #f5f8fc;
}

.skyeye-plus-package__image {
    width: 100%;
    height: auto;
    display: block;
}

.skyeye-plus-design-image-wrap {
    overflow: hidden;
    border-radius: var(--skyeye-plus-radius);
    background: #fff;
}

/* 结构尺寸与连接方案图片按设计稿保留直角边缘。 */
#dimensions .skyeye-plus-package__media,
#dimensions .skyeye-plus-feature__image,
#back-focus-solutions .skyeye-plus-design-image-wrap,
#back-focus-solutions .skyeye-plus-design-image,
#afw-connection .skyeye-plus-design-image-wrap,
#afw-connection .skyeye-plus-design-image {
    border-radius: 0;
}

.skyeye-plus-design-image {
    width: 100%;
    height: auto;
    display: block;
}

.skyeye-plus-package-note {
    max-width: 940px;
    margin: 16px 0 0;
    color: var(--skyeye-plus-muted);
    font-size: 13px;
    line-height: 1.75;
}

.skyeye-plus-spec-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0 40px;
    margin: 0;
}

.skyeye-plus-spec-list div {
    display: grid;
    grid-template-columns: minmax(104px, 0.72fr) minmax(0, 1.28fr);
    gap: 14px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(121, 171, 237, 0.17);
}

.skyeye-plus-spec-list dt {
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
}

.skyeye-plus-spec-list dd {
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    overflow-wrap: anywhere;
}

.skyeye-plus-manual-callout {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    margin-top: 64px;
    padding: 28px;
    border: 1px solid rgba(121, 171, 237, 0.22);
    border-radius: var(--skyeye-plus-radius);
    background: rgba(10, 31, 64, 0.72);
}

.skyeye-plus-manual-callout h3 {
    margin: 0;
    color: #fff;
    font-size: 24px;
}

.skyeye-plus-manual-callout p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 15px;
}

.skyeye-plus-manual-callout .skyeye-plus-button {
    width: 100%;
    margin-top: 0;
}

/*
 * Tablet enhancements are intentionally expressed with min-width so the
 * unqualified rules above remain the source of truth for the mobile design.
 */
@media (min-width: 768px) {
    .skyeye-plus-page {
        --skyeye-plus-radius: 24px;
    }

    .skyeye-plus-container {
        width: min(calc(100% - 48px), var(--skyeye-plus-container));
    }

    .skyeye-plus-design-intro .skyeye-plus-container {
        width: min(calc(100% - 48px), 980px);
    }

    .skyeye-plus-detail-page .atf-progress-contact,
    .skyeye-plus-detail-page .atf-progress-wrap {
        right: 50px;
    }

    .skyeye-plus-hero {
        min-height: clamp(620px, 72vw, 860px);
    }

    .skyeye-plus-detail-hero {
        min-height: 0;
    }

    .skyeye-plus-detail-hero__media {
        min-height: clamp(520px, 70vw, 620px);
        background-position: center 68%;
        background-size: cover;
    }

    .skyeye-plus-detail-hero__content {
        width: min(calc(100% - 48px), 980px);
    }

    .skyeye-plus-hero__inner {
        padding-block: clamp(110px, 12vw, 180px) clamp(90px, 10vw, 150px);
    }

    .skyeye-plus-hero h1 {
        font-size: clamp(52px, 7.2vw, 94px);
        letter-spacing: -0.045em;
    }

    .skyeye-plus-breadcrumb {
        margin-bottom: 36px;
        font-size: 14px;
    }

    .skyeye-plus-hero__tagline {
        margin-top: 28px;
        font-size: clamp(24px, 3vw, 40px);
    }

    .skyeye-plus-hero__description {
        margin-top: 28px;
        font-size: clamp(17px, 1.55vw, 21px);
        line-height: 1.85;
    }

    .skyeye-plus-button {
        min-height: 48px;
        padding: 12px 24px;
        font-size: 15px;
    }

    .skyeye-plus-button--primary,
    .skyeye-plus-button--ghost {
        margin-top: 36px;
    }

    .skyeye-plus-anchor-nav__track {
        gap: 28px;
    }

    .skyeye-plus-anchor-nav a {
        padding-block: 20px;
        font-size: 14px;
    }

    .skyeye-plus-section {
        padding-block: clamp(88px, 10vw, 148px);
        scroll-margin-top: calc(var(--skyeye-plus-sticky-offset, 64px) + 72px);
    }

    .skyeye-plus-section__heading {
        margin-bottom: clamp(48px, 6vw, 76px);
        text-align: center;
    }

    .skyeye-plus-section__heading h2,
    .skyeye-plus-feature__copy h2 {
        font-size: clamp(36px, 5vw, 62px);
        line-height: 1.15;
    }

    .skyeye-plus-section__heading p,
    .skyeye-plus-feature__copy p {
        margin-top: 22px;
        font-size: clamp(16px, 1.4vw, 19px);
        line-height: 1.85;
    }

    .skyeye-plus-design-copy p,
    .skyeye-plus-copy-list {
        font-size: clamp(16px, 1.4vw, 19px);
    }

    .skyeye-plus-feature__image-overlay {
        left: 7.5%;
        gap: 3px;
        font-size: clamp(28px, 3vw, 42px);
        line-height: 1.25;
    }

    #sensor .skyeye-plus-feature__image-overlay,
    #cooling .skyeye-plus-feature__image-overlay {
        left: 7.5%;
        max-width: 44%;
    }

    .skyeye-plus-product-heading {
        margin-bottom: clamp(32px, 3vw, 42px);
        padding: clamp(50px, 5vw, 66px) 0 clamp(32px, 3.4vw, 44px);
    }

    .skyeye-plus-product-heading__badge {
        margin-bottom: 14px;
        font-size: 19px;
    }

    .skyeye-plus-product-heading h1 {
        font-size: clamp(48px, 5.4vw, 68px);
    }

    .skyeye-plus-product-heading__meta {
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        margin-top: 24px;
    }

    .skyeye-plus-product-heading__format,
    .skyeye-plus-product-heading__tagline {
        font-size: 17px;
    }

    .skyeye-plus-design-intro {
        padding-bottom: clamp(40px, 4vw, 52px);
    }

    .skyeye-plus-design-copy {
        margin-bottom: clamp(48px, 6vw, 76px);
    }

    .skyeye-plus-detail-page .skyeye-plus-design-copy {
        margin-bottom: 0;
    }

    .skyeye-plus-highlight-grid {
        gap: 12px;
    }

    /*
     * Keep the desktop page rhythm proportional to the mobile design.
     * The former 10vw padding created more than 200px of empty space around
     * every content block and compounded across the long product story.
     */
    .skyeye-plus-detail-page #highlights {
        padding-block: clamp(56px, 4.5vw, 72px);
    }

    .skyeye-plus-detail-page #overview {
        padding-bottom: clamp(48px, 4vw, 56px);
    }

    #highlights .skyeye-plus-container {
        width: min(calc(100% - 48px), var(--skyeye-plus-container));
    }

    .skyeye-plus-detail-page .skyeye-plus-section__heading--design {
        margin-bottom: clamp(28px, 2.8vw, 40px);
    }

    .skyeye-plus-section__heading--design h2 {
        font-size: clamp(36px, 5vw, 62px);
    }

    .skyeye-plus-section__heading--design h2::after {
        width: 118px;
        height: 3px;
        margin-top: 18px;
    }

    .skyeye-plus-detail-page #dimensions,
    .skyeye-plus-detail-page #back-focus-solutions,
    .skyeye-plus-detail-page #afw-connection,
    .skyeye-plus-detail-page #package {
        padding-block: clamp(56px, 4.5vw, 68px);
    }

    #dimensions .skyeye-plus-container,
    #back-focus-solutions .skyeye-plus-container,
    #afw-connection .skyeye-plus-container,
    #package .skyeye-plus-container {
        width: min(calc(100% - 48px), var(--skyeye-plus-container));
    }

    .skyeye-plus-highlight-card {
        border-radius: 14px;
    }

    .skyeye-plus-highlight-card__title {
        top: 20px;
        left: 20px;
        max-width: calc(100% - 40px);
        font-size: 20px;
    }

    .skyeye-plus-highlight-card--sensor .skyeye-plus-highlight-card__title,
    .skyeye-plus-highlight-card--back-focus .skyeye-plus-highlight-card__title {
        top: clamp(32px, 4vw, 56px);
    }

    .skyeye-plus-highlight-card--title-compact .skyeye-plus-highlight-card__title {
        top: 20px;
    }

    .skyeye-plus-curve-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .skyeye-plus-curve-card figcaption {
        padding: 12px clamp(28px, 4.5%, 52px) 20px;
        font-size: 12px;
    }

    .skyeye-plus-parameter-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 38px 18px;
        padding: 46px 28px 52px;
    }

    .skyeye-plus-spec-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #camera-curves .skyeye-plus-feature__inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .skyeye-plus-parameter-card {
        gap: 7px;
    }

    .skyeye-plus-parameter-icon {
        width: min(100%, 96px);
    }

    .skyeye-plus-parameter-card dt {
        gap: 7px;
        font-size: 13px;
    }

    .skyeye-plus-parameter-card dd {
        font-size: 16px;
    }

    .skyeye-plus-feature__inner {
        gap: clamp(22px, 2.4vw, 32px);
    }

    .skyeye-plus-detail-page .skyeye-plus-feature {
        padding-block: clamp(52px, 4vw, 60px);
    }

    .skyeye-plus-feature .skyeye-plus-container {
        width: min(calc(100% - 48px), 980px);
    }

    .skyeye-plus-feature__heading h2 {
        font-size: clamp(36px, 4.4vw, 50px);
    }

    .skyeye-plus-feature__subtitle {
        font-size: clamp(30px, 3.8vw, 44px);
    }

    .skyeye-plus-feature__heading::after {
        width: 118px;
        height: 3px;
        margin-top: 18px;
    }

    .skyeye-plus-feature__copy p,
    .skyeye-plus-copy-list {
        font-size: clamp(16px, 1.45vw, 19px);
    }

    .skyeye-plus-note {
        font-size: 14px !important;
    }

    #back-focus .skyeye-plus-copy-list {
        gap: 8px;
        padding-block: 8px;
        font-size: 15px;
    }

    .skyeye-plus-spec-list div {
        grid-template-columns: minmax(120px, 0.8fr) minmax(0, 1.2fr);
        gap: 20px;
        padding: 20px 0;
    }

    .skyeye-plus-manual-callout {
        align-items: center;
        flex-direction: row;
        padding: 36px;
    }

    .skyeye-plus-manual-callout .skyeye-plus-button {
        width: auto;
        flex: 0 0 auto;
    }
}

@media (min-width: 992px) {
    /*
     * 详情页所有叙事与规格模块在 PC 端共用项目原有的 1240px 版心。
     * 核心亮点与浮动入口的问题由各自规则处理，不通过压窄整页内容规避。
     */
    .skyeye-plus-detail-page .skyeye-plus-design-intro .skyeye-plus-container,
    .skyeye-plus-detail-page .skyeye-plus-parameter-wrap,
    .skyeye-plus-detail-page #highlights > .skyeye-plus-container,
    .skyeye-plus-detail-page .skyeye-plus-feature > .skyeye-plus-container,
    .skyeye-plus-detail-page #dimensions > .skyeye-plus-container,
    .skyeye-plus-detail-page #back-focus-solutions > .skyeye-plus-container,
    .skyeye-plus-detail-page #afw-connection > .skyeye-plus-container,
    .skyeye-plus-detail-page #package > .skyeye-plus-container {
        width: min(calc(100% - 48px), var(--skyeye-plus-container));
    }

    .skyeye-plus-detail-hero {
        position: relative;
        min-height: clamp(450px, 41.68vw, 760px);
        display: grid;
        align-items: stretch;
        background-color: var(--skyeye-plus-navy);
    }

    .skyeye-plus-detail-hero__media {
        position: absolute;
        inset: 0;
        min-height: 0;
        background-color: var(--skyeye-plus-navy);
        background-image: var(--skyeye-plus-hero-desktop);
        background-position: center;
        background-size: cover;
    }

    .skyeye-plus-detail-hero__content {
        position: relative;
        z-index: 1;
        width: min(calc(100% - 48px), var(--skyeye-plus-container));
        min-height: inherit;
        display: flex;
        align-items: center;
        margin-inline: auto;
        padding: 96px 0 40px;
        box-sizing: border-box;
    }

    .skyeye-plus-detail-hero .skyeye-plus-product-heading {
        width: 50%;
        max-width: 600px;
        margin: 0;
        padding: 0;
        border-bottom: 0;
        text-align: left;
    }

    .skyeye-plus-detail-hero .skyeye-plus-product-heading h1 {
        max-width: none;
        font-size: clamp(44px, 4.4vw, 64px);
    }

    .skyeye-plus-detail-hero .skyeye-plus-product-heading__meta {
        align-items: flex-start;
        justify-content: flex-start;
    }

    /* 标题进入 Banner 后，为下方简介恢复原有的桌面内容呼吸空间。 */
    .skyeye-plus-detail-page .skyeye-plus-design-intro {
        padding-top: clamp(40px, 4vw, 52px);
    }

    .skyeye-plus-feature__inner {
        gap: clamp(24px, 2.2vw, 32px);
    }

    .skyeye-plus-highlight-grid {
        gap: 18px;
    }

    .skyeye-plus-detail-page #highlights .skyeye-plus-section__heading--design h2 {
        font-size: clamp(36px, 4.2vw, 50px);
    }

    .skyeye-plus-highlight-card {
        border-radius: 18px;
    }

    .skyeye-plus-highlight-card__title {
        top: 24px;
        left: 24px;
        max-width: calc(100% - 48px);
        font-size: clamp(20px, 2vw, 28px);
    }

    .skyeye-plus-highlight-card--title-compact .skyeye-plus-highlight-card__title {
        top: 24px;
    }

    .skyeye-plus-parameter-grid {
        grid-template-columns: repeat(8, minmax(0, 1fr));
        gap: clamp(26px, 2.5vw, 34px) clamp(10px, 1vw, 16px);
        padding:
            clamp(34px, 3vw, 44px)
            clamp(22px, 2.4vw, 34px)
            clamp(38px, 3.4vw, 50px);
        border-radius: 24px;
    }

    .skyeye-plus-parameter-card {
        gap: 6px;
    }

    .skyeye-plus-parameter-icon {
        width: min(100%, clamp(76px, 6vw, 94px));
    }

    .skyeye-plus-parameter-card dt {
        gap: 6px;
        font-size: clamp(11px, 0.9vw, 13px);
    }

    .skyeye-plus-parameter-card dd {
        font-size: clamp(13px, 1vw, 16px);
        overflow-wrap: anywhere;
        white-space: pre-line;
    }

    .skyeye-plus-curve-card figcaption {
        font-size: 14px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .skyeye-plus-detail-page .skyeye-plus-parameter-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.skyeye-plus-product-heading__actions {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

.skyeye-plus-product-heading__actions .skyeye-plus-button {
    min-width: 150px;
    gap: 9px;
    margin-top: 0;
}

.skyeye-plus-detail-page .mfp-close {
    min-width: 44px;
    min-height: 44px;
}

.skyeye-plus-detail-page .mfp-close:focus-visible,
.skyeye-plus-detail-page .mfp-arrow:focus-visible {
    outline: 3px solid var(--v2-primary-500, #2967d3);
    outline-offset: 3px;
}

@media (min-width: 992px) {
    .skyeye-plus-detail-hero .skyeye-plus-product-heading__actions {
        justify-content: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .skyeye-plus-page *,
    .skyeye-plus-page *::before,
    .skyeye-plus-page *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
