/* ==========================================================
   fzyxwl-ext.css — 站点新增业务页扩展样式（合并自 geo.css / aigeo.css / aicontent.css）
   站点规范：Pintuer 2.0（fzyxwl.min.css），主色 #80C021（绿）
   覆盖页面：geo.html（GEO/AI搜索优化）、ai.html（AI内容制作）
   类名规范：geo-* 前缀 = GEO 页；ai-* 前缀 = AI 内容制作页
   ========================================================== */

/* ========== 一、GEO 业务页（geo.html） ========== */
/* ==========================================================
   GEO 业务页面专用样式  geo.css
   站点规范：Pintuer 2.0（fzyxwl.min.css）
   主色 #80C021（绿）/ 辅助灰 #999 —— 全页统一主色
   仅作用于 geo.html，类名统一 geo- 前缀，避免与框架冲突
   ========================================================== */

/* ---------- 首屏 Hero（左右对称卡片，文字填充等高） ---------- */
.geo-hero-panel {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 38px 34px;
    min-height: 360px;
    display: -webkit-box; display: -ms-flexbox; display: flex;
    -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column;
    -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.geo-hero-panel:hover { border-color: #80C021; box-shadow: 0 10px 24px rgba(0,0,0,.07); }
.geo-hero-points { margin: 14px 0 0; padding: 0; list-style: none; }
.geo-hero-points span { display: block; color: #555; font-size: 13px; line-height: 2; }
.geo-hero-points .fa { color: #80C021; margin-right: 8px; }
.geo-hero-right {
    position: relative;
    display: -webkit-box; display: -ms-flexbox; display: flex;
    -webkit-box-align: center; -ms-flex-align: center; align-items: center;
    -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
}
.geo-hero-right img {
    width: 503px;
    max-width: 100%;
    max-height: 385px;
    height: auto;
}

/* ---------- 流量演进纯 CSS 柱状图（利于爬虫读取语义） ---------- */
.geo-chart { padding: 8px 0 4px; }
.geo-chart-row { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; margin-bottom: 26px; }
.geo-chart-name { width: 118px; -ms-flex-negative: 0; -webkit-flex-shrink: 0; flex-shrink: 0; font-size: 14px; color: #333; text-align: right; padding-right: 14px; }
.geo-chart-body { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; position: relative; height: 34px; background: #f6f7f9; border-radius: 4px; overflow: hidden; }
.geo-chart-fill {
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 0;
    border-radius: 4px;
    -webkit-transition: width 1.2s cubic-bezier(.22,.8,.36,1);
    transition: width 1.2s cubic-bezier(.22,.8,.36,1);
    background: #b5d98a;
}
.geo-chart-fill.green { background: -webkit-linear-gradient(90deg,#80C021,#a6dc4f); background: linear-gradient(90deg,#80C021,#a6dc4f); }
.geo-chart-num { width: 130px; -ms-flex-negative: 0; -webkit-flex-shrink: 0; flex-shrink: 0; font-size: 13px; color: #999; padding-left: 14px; }

/* ---------- 服务内容卡片（序号统一主色绿） ---------- */
.geo-svc {
    padding: 30px 24px 26px;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    background: #fff;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.geo-svc:hover {
    border-color: #80C021;
    box-shadow: 0 10px 22px rgba(0,0,0,.09);
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}
.geo-svc-head { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; margin-bottom: 12px; }
.geo-svc-num {
    width: 40px; height: 40px; line-height: 40px;
    text-align: center; color: #fff; font-size: 16px; font-weight: bold;
    background: #80C021;
    border-radius: 6px; margin-right: 12px; -ms-flex-negative: 0; -webkit-flex-shrink: 0; flex-shrink: 0;
}
.geo-svc h3 { font-size: 17px; margin: 0; color: #333; }
.geo-svc p { color: #666; font-size: 13px; line-height: 1.9; margin: 0 0 12px; }
.geo-svc ul { list-style: none; margin: 0; padding: 0; }
.geo-svc ul li { color: #666; font-size: 13px; line-height: 1.9; }
.geo-svc ul li .fa { color: #80C021; margin-right: 6px; }

/* ---------- SEO vs GEO 对比表（表头灰 + GEO 列主色绿） ---------- */
.geo-table-wrap { overflow-x: auto; }
.geo-table { width: 100%; border-collapse: collapse; background: #fff; }
.geo-table th, .geo-table td { border: 1px solid #e8e8e8; padding: 14px 16px; font-size: 14px; line-height: 1.7; text-align: left; }
.geo-table thead th { background: #4a5568; color: #fff; font-weight: bold; }
.geo-table thead th.geo-col-geo { background: #80C021; }
.geo-table tbody tr:nth-child(even) { background: #fafbfc; }
.geo-table tbody tr:hover { background: #f2f9e8; }
.geo-table td.geo-col-geo { background: #f6fcee; font-weight: bold; color: #33541c; }
.geo-table td.geo-dim { font-weight: bold; color: #333; width: 14%; }

/* ---------- 服务流程时间轴 ---------- */
.geo-steps { position: relative; padding-left: 0; }
.geo-step {
    position: relative;
    padding: 0 0 36px 74px;
}
.geo-step:last-child { padding-bottom: 6px; }
.geo-step::before {
    content: "";
    position: absolute;
    left: 24px; top: 52px; bottom: 0;
    width: 2px;
    background: -webkit-linear-gradient(#80C021,#dfeee0);
    background: linear-gradient(#80C021,#dfeee0);
}
.geo-step:last-child::before { display: none; }
.geo-step-num {
    position: absolute; left: 0; top: 0;
    width: 50px; height: 50px; line-height: 50px;
    border-radius: 50%;
    background: #80C021; color: #fff;
    font-size: 20px; font-weight: bold; text-align: center;
}
.geo-step-card {
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    background: #fafbfc;
    padding: 18px 20px;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.geo-step-card:hover { border-color: #80C021; background: #fff; box-shadow: 0 6px 14px rgba(0,0,0,.07); }
.geo-step-card h3 { font-size: 16px; margin: 0 0 8px; color: #333; }
.geo-step-card p { color: #666; font-size: 13px; line-height: 1.9; margin: 0; }

/* ---------- 数据展示（深色带，数字统一主色绿） ---------- */
.geo-stats {
    background: -webkit-linear-gradient(135deg,#1e2b3c 0%,#27374d 100%);
    background: linear-gradient(135deg,#1e2b3c 0%,#27374d 100%);
}
.geo-stat { text-align: center; padding: 10px 0; }
.geo-stat-num {
    font-size: 52px; font-weight: 900; line-height: 1.2;
    font-family: Impact, 'Arial Black', sans-serif;
    color: #a6dc4f;
}
.geo-stat-label { color: #9aa7b8; font-size: 14px; margin-top: 6px; }

/* 优化前后效果对比（深色竖版柱状图，参照深色数据带风格） */
.geo-vbar-wrap { margin-top: 46px; }
.geo-compare-title { color: #fff; font-size: 20px; text-align: center; margin: 0 0 30px; }
.geo-vbar-chart { display: -webkit-box; display: -ms-flexbox; display: flex; padding-top: 22px; }
.geo-vbar-y { width: 52px; position: relative; height: 340px; -ms-flex-negative: 0; -webkit-flex-shrink: 0; flex-shrink: 0; }
.geo-vbar-y span { position: absolute; right: 12px; -webkit-transform: translateY(50%); transform: translateY(50%); font-size: 11px; color: #8a97a8; line-height: 1; }
.geo-vbar-main { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; position: relative; height: 340px; }
.geo-vbar-grid i { position: absolute; left: 0; right: 0; border-top: 1px dashed rgba(255,255,255,.08); }
.geo-vbar-groups { position: absolute; left: 0; top: 0; right: 0; bottom: 0; display: -webkit-box; display: -ms-flexbox; display: flex; }
.geo-vbar-group { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; min-width: 0; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; }
.geo-vbar-pair { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: end; -ms-flex-align: end; align-items: flex-end; gap: 12px; padding-top: 26px; }
.geo-vbar-col { width: 30px; height: 100%; position: relative; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: end; -ms-flex-align: end; align-items: flex-end; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }
.geo-vbar-fill { display: block; width: 100%; height: 0; position: relative; border-radius: 4px 4px 0 0; -webkit-transition: height 1.1s cubic-bezier(.22,.8,.36,1); transition: height 1.1s cubic-bezier(.22,.8,.36,1); }
.geo-vbar-fill.before { background: #55657a; }
.geo-vbar-fill.after { background: -webkit-linear-gradient(top,#a6dc4f,#80C021); background: linear-gradient(180deg,#a6dc4f,#80C021); }
.geo-vbar-fill b { position: absolute; bottom: 100%; left: 50%; -webkit-transform: translateX(-50%); transform: translateX(-50%); margin-bottom: 4px; font-size: 11px; font-weight: normal; color: #cfd8e3; white-space: nowrap; }
.geo-vbar-fill.after b { color: #a6dc4f; }
.geo-vbar-label { text-align: center; font-size: 12px; color: #cfd8e3; padding: 14px 4px 0; white-space: nowrap; }
.geo-vbar-legend { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; margin-top: 20px; font-size: 13px; color: #cfd8e3; }
.geo-vbar-lg { display: inline-block; width: 18px; height: 12px; border-radius: 2px; margin-right: 8px; vertical-align: -1px; }
.geo-vbar-lg.before { background: #55657a; }
.geo-vbar-lg.after { background: -webkit-linear-gradient(top,#a6dc4f,#80C021); background: linear-gradient(180deg,#a6dc4f,#80C021); margin-left: 22px; }

/* ---------- 适用行业（图标统一主色绿） ---------- */
.geo-industry {
    padding: 22px 12px;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    background: #fff;
    text-align: center;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.geo-industry:hover {
    border-color: #80C021;
    color: #80C021;
    box-shadow: 0 6px 14px rgba(0,0,0,.07);
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
}
.geo-industry .fa { font-size: 30px; display: block; margin-bottom: 10px; color: #80C021; }
.geo-industry span { font-size: 14px; }

/* ---------- 客户案例（统一主色绿） ---------- */
.geo-case {
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    background: #fff;
    overflow: hidden;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.geo-case:hover { border-color: #80C021; box-shadow: 0 10px 22px rgba(0,0,0,.09); -webkit-transform: translateY(-5px); transform: translateY(-5px); }
.geo-case-top {
    height: 90px;
    display: -webkit-box; display: -ms-flexbox; display: flex;
    -webkit-box-align: center; -ms-flex-align: center; align-items: center;
    -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
    color: #fff; font-size: 38px;
    background: -webkit-linear-gradient(135deg,#80C021,#a6dc4f);
    background: linear-gradient(135deg,#80C021,#a6dc4f);
}
.geo-case-body { padding: 18px 20px 20px; }
.geo-case-tag {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 3px;
    font-size: 12px;
    color: #fff;
    background: #80C021;
    margin-bottom: 10px;
}
.geo-case-body h3 { font-size: 16px; margin: 0 0 8px; color: #333; }
.geo-case-body p { color: #666; font-size: 13px; line-height: 1.8; margin: 0 0 12px; }
.geo-case-data { border-top: 1px dashed #e0e0e0; padding-top: 12px; }
.geo-case-data .geo-cd { display: inline-block; width: 48%; }
.geo-case-data small { display: block; color: #999; font-size: 12px; }
.geo-case-data strong { font-size: 17px; color: #80C021; }

/* ---------- 响应式 ---------- */
@media (max-width: 760px) {
    .geo-hero-btns .button { display: block; text-align: center; margin-bottom: 12px; }
    .geo-hero-panel { min-height: 0; padding: 28px 20px; }
    .geo-chart-name { width: 84px; font-size: 12px; padding-right: 8px; }
    .geo-chart-num { width: 96px; font-size: 12px; padding-left: 8px; }
    .geo-step { padding-left: 62px; }
    .geo-step::before { left: 20px; }
    .geo-step-num { width: 42px; height: 42px; line-height: 42px; font-size: 17px; }
    .geo-stat-num { font-size: 38px; }
    .geo-vbar-y { display: none; }
    .geo-vbar-chart { padding-top: 0; }
    .geo-vbar-main { height: 260px; }
    .geo-vbar-col { width: 20px; }
    .geo-vbar-pair { gap: 8px; padding-top: 22px; }
    .geo-vbar-label { font-size: 11px; }
}


/* ========== 二、AI 搜索内容建设（geo.html 内容矩阵/套餐） ========== */
/* ==========================================================
   aigeo.html 专用样式  aigeo.css
   站点规范：Pintuer 2.0（fzyxwl.min.css）
   主色 #80C021（绿）—— 全页统一主色
   仅作用于 aigeo.html（AI 搜索内容建设），复用 geo.css 基础样式，
   本文件只包含 aigeo.html 新增模块：AI 内容矩阵 + 三档套餐卡
   ========================================================== */

/* ---------- AI 内容矩阵（三卡：问答内容库 / 知识图谱 / 权威信源） ---------- */
.geo-matrix {
    padding: 28px 24px 30px;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    background: #fff;
    text-align: center;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.geo-matrix:hover {
    border-color: #80C021;
    box-shadow: 0 10px 22px rgba(0,0,0,.09);
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}
.geo-matrix-icon {
    display: inline-block;
    width: 64px; height: 64px; line-height: 64px;
    border-radius: 50%;
    background: #eef7e3;
    color: #80C021;
    font-size: 28px;
    margin-bottom: 14px;
}
.geo-matrix h3 { font-size: 17px; margin: 0 0 10px; color: #333; }
.geo-matrix p { color: #666; font-size: 13px; line-height: 1.9; margin: 0; }

/* ---------- 三档套餐卡（含税价） ---------- */
.geo-pkg {
    position: relative;
    padding: 30px 26px 28px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    background: #fff;
    text-align: center;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.geo-pkg:hover {
    border-color: #80C021;
    box-shadow: 0 12px 26px rgba(0,0,0,.1);
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}
.geo-pkg-hot { border: 2px solid #80C021; }
.geo-pkg-tag {
    position: absolute; top: -13px; left: 50%;
    -webkit-transform: translateX(-50%); transform: translateX(-50%);
    background: #80C021; color: #fff;
    font-size: 12px; padding: 3px 14px;
    border-radius: 12px; white-space: nowrap;
}
.geo-pkg-name { font-size: 18px; font-weight: bold; color: #333; margin-bottom: 10px; }
.geo-pkg-price { color: #80C021; margin-bottom: 4px; }
.geo-pkg-price b {
    font-size: 34px; font-weight: 900;
    font-family: Impact, 'Arial Black', sans-serif;
}
.geo-pkg-price span { font-size: 14px; color: #999; }
.geo-pkg-sub { color: #999; font-size: 12px; margin: 0 0 16px; }
.geo-pkg ul { list-style: none; margin: 0 0 20px; padding: 0; text-align: left; }
.geo-pkg ul li {
    color: #555; font-size: 13px; line-height: 2.1;
    border-bottom: 1px dashed #f0f0f0;
}
.geo-pkg ul li:last-child { border-bottom: none; }
.geo-pkg ul li .fa { color: #80C021; margin-right: 6px; }
.geo-pkg .button { width: 100%; }

/* ---------- 响应式 ---------- */
@media (max-width: 760px) {
    .geo-matrix { padding: 22px 18px 24px; }
    .geo-pkg { padding: 24px 18px 22px; }
    .geo-pkg-price b { font-size: 28px; }
}


/* ========== 三、AI 内容制作页（ai.html） ========== */
/* aicontent.css v3 - AI 内容制作页样式
   原则：能用原站组件（fzyxwl.min.css / geo.css）的不重复写，
   本文件只保留页面特有样式：场景图片卡 / 明码标价表 / 服务保障。 */

/* ========== 1. 覆盖业务场景（图片卡） ========== */
.ai-scene-card {
    background: #fff; border: 1px solid #eef0ec; border-radius: 10px;
    overflow: hidden; height: 100%;
    -webkit-transition: all .3s; transition: all .3s;
}
.ai-scene-card:hover { border-color: #80C021; box-shadow: 0 10px 22px rgba(0,0,0,.08); -webkit-transform: translateY(-4px); transform: translateY(-4px); }
.ai-scene-card img { width: 100%; display: block; }
.ai-scene-body { padding: 20px 22px 24px; }
.ai-scene-body h3 { margin: 0 0 8px; font-size: 17px; color: #222; }
.ai-scene-body p { margin: 0; color: #888; font-size: 13px; line-height: 1.8; }

/* ========== 2. 明码标价表格 ========== */
.ai-table-wrap { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.ai-table { width: 100%; min-width: 760px; border-collapse: collapse; background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 6px 20px rgba(0,0,0,.05); }
.ai-table thead th { background: #80C021; color: #fff; padding: 14px 16px; font-size: 14px; text-align: left; }
.ai-table tbody td { padding: 15px 16px; border-bottom: 1px solid #f0f2ee; font-size: 13px; color: #555; vertical-align: middle; }
.ai-table tbody tr:last-child td { border-bottom: none; }
.ai-table tbody tr:hover { background: #f7faf2; }
.ai-table .ai-price { color: #80C021; font-weight: 900; font-size: 15px; white-space: nowrap; }
.ai-table .ai-btn {
    color: #80C021; border: 1px solid #80C021; border-radius: 14px;
    padding: 4px 16px; font-size: 12px; display: inline-block; white-space: nowrap;
}
.ai-table .ai-btn:hover { background: #80C021; color: #fff; }
.ai-hot {
    display: inline-block; background: #ff6a3d; color: #fff;
    font-size: 11px; line-height: 1; padding: 3px 8px;
    border-radius: 10px; margin-left: 6px; vertical-align: 1px;
}
.ai-price-note {
    display: inline-block; background: #fff; border: 1px solid #e3e8dc;
    border-left: 4px solid #80C021; border-radius: 6px;
    padding: 10px 22px; color: #666; font-size: 13px;
}

/* ========== 4. 核心优势（asd icoa 样式内 svg 图标） ========== */
.icoa .kuan img { width: 70px; height: 70px; max-width: none; display: block; margin: 0 auto; transition: all .5s; }
.icoa:hover .kuan img { -webkit-filter: brightness(0) invert(1); filter: brightness(0) invert(1); }
.icoa .bbb { color: #888; }
.icoa:hover .bbb { color: #fff; }

/* ========== 移动端适配 ========== */
@media (max-width: 600px) {
    .ai-table-wrap { -webkit-overflow-scrolling: touch; }
}
