@charset "UTF-8";
/**
 * 产品页面样式
 * Products Page Styles
 */

/* ==========================================
   产品页 Hero 区域（pph = products-page-hero）
   设计稿：容器 760px，flex column，gap 60px
   ========================================== */

/* 品牌定位区域：功能介绍后的独立 section */
.products-brand-section {
    padding: 100px var(--spacing-md, 24px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pph-inner {
    width: 760px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xl);
}

/* ── 主内容组：gap 30px ── */
.pph-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* 标题：48px / 700 / #101828 / line-height 64px */
.pph-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 64px;
    color: var(--bg-dark);
    text-align: center;
    margin: 0;
}

/* 描述组：gap 10px */
.pph-desc-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* 描述文字：16px / 400 / #05173E / line-height 21px */
.pph-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    color: var(--text-primary);
    text-align: center;
    margin: 0;
}

/* 渐变口号：20px / 600 / gradient #8032DB→#175DFF */
.pph-slogan {
    font-size: 20px;
    font-weight: 600;
    line-height: 27px;
    text-align: center;
    margin: 0;
  
}

/* CTA 按钮：320×60px，gradient，border-radius 60px */
.pph-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    height: 60px;
    padding: 6px var(--spacing-md);
    background: linear-gradient(95deg, #8032DB 0%, #175DFF 100%);
    border-radius: 60px;
    box-shadow: var(--shadow-button);
    color: var(--text-white);
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.pph-cta:hover {
    opacity: 0.92;
    transform: translateY(-2px);
    color: var(--text-white);
}

/* 分割线：640×1px，#C8D2E6 */
.pph-divider {
    width: 640px;
    max-width: 100%;
    height: 1px;
    background: var(--border-color);
    flex-shrink: 0;
}


/* ── 响应式 ── */
/* ==========================================
   响应式 - 平板 (769px - 1200px)
   ========================================== */
@media (min-width: 769px) and (max-width: 1200px) {
    .pph-title {
        font-size: 36px;
        line-height: 48px;
    }

    .pph-cta {
        width: 280px;
        font-size: 16px;
    }

    .pph-brand-name {
        font-size: 22px;
        line-height: 28px;
    }
}

/* ==========================================
   响应式 - 手机 (≤768px)
   ========================================== */
@media (max-width: 768px) {
    .pph-inner {
        gap: 40px;
    }

    .pph-main {
        gap: 20px;
    }

    .pph-title {
        font-size: 36px;
        line-height: 38px;
    }
    .pph-desc {
        font-size: 14px;
    }
    .pph-slogan {
        font-size: 18px;
    }

    .pph-cta {
        width: 100%;
        max-width: 300px;
        font-size: 16px;
    }

    .pph-brand-name {
        font-size: 20px;
        line-height: 28px;
    }
}

/* ==========================================
   功能介绍区域
   ========================================== */
.product-features-section {
  padding:var(--spacing-2xl) 0;
}

/* 单个功能块 — 对应设计稿每行 1280×457px */
.pf-block {
    padding: 54px 0;

}


/* 内部 flex 容器：最大宽 1280px，左右居中 */
.pf-block-inner {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 0;
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

/* 奇数块（1、3）：图片在左，内容在右 */
.pf-block:nth-child(odd) .pf-block-inner {
    flex-direction: row-reverse;
}

/* 偶数块（2、4）：内容在左，图片在右（默认 row，显式声明） */
.pf-block:nth-child(even) .pf-block-inner {
    flex-direction: row;
}

/* ── 内容侧：width: 610px（设计稿原值） ── */
.pf-content {
    flex: 0 0 610px;
    width: 610px;
    display: flex;
    flex-direction: column;
    gap: 40px;    /* 设计稿：图标→文字组、文字组→列表之间 gap: 40px */
}

/* ── 图片侧：剩余空间 ── */
.pf-visual {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pf-visual img {
    width: 100%;
    height: auto;
    max-height: 457px;
    object-fit: contain;
    display: block;
}

/* 图片未提供时的占位背景 */
.pf-visual img:not([src]),
.pf-visual img[src=""] {
    min-height: 300px;
    background: linear-gradient(135deg, #f3f0ff 0%, #eef5ff 100%);
    border-radius: var(--border-radius);
}

/* ── 图标徽章：80×80px，border-radius: 16px（设计稿原值） ── */
.pf-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    /* 背景色通过 style inline 传入，与设计稿完全一致 */
}

/* ── 标题 + 描述组 ── */
.pf-text-group {
    display: flex;
    flex-direction: column;
    gap: 16px;    /* 设计稿：标题与描述 gap: 16px */
}

/* 标题：30px / 700 / #101828 / line-height 40px / letter-spacing 0.4px */
.pf-title {
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: 0.4px;
    color: var(--bg-dark);
    margin: 0;
    width: 600px;
}

/* 描述：16px / 400 / #4A5565 / line-height 21px */
.pf-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    color: #4A5565;
    margin: 0;
    margin-top: -25px; /* 补偿 flex gap 40px，保持与标题 16px 视觉间距 */
    width: 610px;
}

/* ── 功能列表：gap: 10px，图标与文字 gap: 6px ── */
.pf-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pf-list li {
    display: flex;
    gap: 6px;
}

/* 列表箭头图标：20×20px（设计稿原值） */
.pf-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* 列表文字：16px / 500 / #05173E / line-height 21px */
.pf-list li span {
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
    color: var(--text-primary);
}

.pf-list li span strong {
    font-weight: 500;
    color: var(--text-primary);
}



/* ==========================================
   响应式 - 平板 (769px - 1200px)
   ========================================== */
@media (min-width: 769px) and (max-width: 1200px) {
    .pf-block-inner {
        padding: 0 var(--spacing-sm);
        gap: var(--spacing-xl);
    }

    .pf-content {
        flex: 1 1 0;
        width: auto;
    }

    .pf-title {
        width: auto;
    }

    .pf-desc {
        width: auto;
    }
}

/* ==========================================
   响应式 - 手机 (≤768px)
   ========================================== */
@media (max-width: 768px) {
    .pf-block {
        padding: var(--spacing-lg) 0;
    }

    .product-features-section {
        padding: 80px 0;
    }

    .products-brand-section {
        padding: 0 var(--spacing-md, 24px) 80px;
    }

    .pf-block-inner {
        flex-direction: column !important;
        padding: 0 var(--spacing-sm);
        gap: var(--spacing-lg);
    }

    .pf-content {
        flex: none;
        width: 100%;
        gap: var(--spacing-xs);
        order: 2;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .pf-icon {
        flex-shrink: 0;
        width: 32px;
        height: 32px;
        border-radius: var(--border-radius-sm);
    }

    .pf-icon svg {
        width: 20px;
        height: 20px;
    }

    .pf-text-group {
        flex: 1;
        min-width: 0;
    }

    .pf-list {
        width: 100%;
    }

    .pf-visual {
        width: 100%;
        order: 1;
    }


    .pf-title {
        font-size: 20px;
        line-height: 30px;
        width: auto;
    }

    .pf-desc {
        width: 100%;
        margin-top: 0;
        font-size: 14px;
        line-height: 20px;
    }

    .pf-list li span {
        font-size: 14px;
        line-height: 20px;
    }
}



