﻿/* ============================================================
   鹰牛官网 · /features 功能详情页（设计稿详情页 S1-S10 版式）
   复用首页设计系统：home.css 的 .hn-* 组件 + 本文件 .fd-* 补充。
   仅作用于 /features（render_features 输出 .hn-page 容器）。
   进场动效复用 style.css 的 .fx + main.js 观察器。
   ============================================================ */

/* ---------- S1 封面：居中 Hero ---------- */
.fd-hero { text-align: center; }
.fd-hero .hn-hero-badge { margin-inline: auto; }
.fd-hero-shot { margin-top: 40px; } /* 截图宽度固定、高度自适应（3840px 超清源图） */
.fd-hero .hn-hero-stats { text-align: left; }

/* 编号方块（01/02…，嵌在段标题左侧） */
.fd-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--hn-grad);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    vertical-align: -8px;
    margin-right: 14px;
    box-shadow: 0 8px 22px rgba(59, 130, 246, .35);
    flex-shrink: 0;
}

/* ---------- 横向图标卡（图标左 + 文案右，2 列网格） ---------- */
.fd-hcards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.hn-card--h {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.hn-card--h > div { min-width: 0; }
.hn-card--h h3 { margin: 4px 0 6px; }

/* ---------- 双截图并排 ---------- */
.fd-duo { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; align-items: start; }

/* ---------- 大数字统计卡行 ---------- */
.fd-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
    margin-top: 30px;
}
.fd-stat { text-align: center; padding: 24px 20px; }
.fd-stat-unit { font-size: 15px; font-weight: 700; margin-left: 4px; }
.fd-stat-label { color: var(--hn-muted); font-size: 13.5px; }

/* ---------- 对话示例框（S3 AI智脑） ---------- */
.fd-example {
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: 12px;
    color: var(--hn-muted);
    font-size: 14px;
    line-height: 1.75;
    background:
        linear-gradient(var(--hn-card-solid), var(--hn-card-solid)) padding-box,
        var(--hn-grad) border-box;
    border: 1px solid transparent;
}

/* ---------- CTA 段（S10） ---------- */
.fd-cta-chips { justify-content: center; margin: 0 0 22px; }
.fd-cta .fd-stats { width: 100%; }

/* ---------- 响应式 ---------- */
@media (max-width: 900px) {
    .fd-hcards { grid-template-columns: 1fr; }
    .fd-duo { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .fd-no { width: 38px; height: 38px; font-size: 15px; border-radius: 10px; vertical-align: -6px; margin-right: 10px; }
    .fd-stat { padding: 18px 14px; }
    .fd-hero-shot { margin-top: 26px; }
}
