@charset "utf-8";
/* ==========================================================================
   chunyam ITAD 首页样式 (snc-home.css)
   - 基于 Bootstrap 3.4.1 栅格 (snc 模板原本无 bootstrap, 由 _head.html 引入)
   - 沿用现有绿色配色: #6aa84f / #70ad47 (墨绿系), 辅以 #81c784 薄荷绿 / #E8F4F8 科技浅蓝
   - 响应式: 移动端优先, 断点 768px / 992px / 1200px
   ========================================================================== */

:root {
    --brand: #6aa84f;          /* 主色: 生态墨绿 (沿用现有) */
    --brand-2: #70ad47;        /* 辅色: 深绿 (沿用现有) */
    --brand-dark: #3d6b2e;     /* 深绿 hover */
    --mint: #81c784;           /* 薄荷绿 (文档辅助色) */
    --tech-blue: #E8F4F8;      /* 科技浅蓝 (文档辅助色) */
    --ink: #222222;            /* 正文黑 */
    --text: #333333;           /* 正文灰 */
    --text-light: #666666;     /* 次级灰 */
    --bg-soft: #F5F7F5;        /* 浅灰背景 */
    --white: #ffffff;
    --radius: 6px;
    --shadow: 0 4px 20px rgba(60, 90, 40, 0.08);
    --shadow-hover: 0 8px 30px rgba(60, 90, 40, 0.16);
}

/* ==========================================================================
   首页布局修正: 修复万网建站 header/footer 通栏元素导致的横向溢出
   万网通栏(tem_23_17 宽1920px left:-360 / bannerWrap_tem_28_40 宽1680 left:-240)
   假设画布1920px居中, 在响应式首页会撑爆视口产生横向滚动条。
   仅首页生效(本文件由 _head.html 在 currentDiyname=sy 时加载)。
   ========================================================================== */
html, body { overflow-x: hidden !important; }
#mainContentWrapper {
    min-width: 0 !important;
    max-width: 100vw;
    overflow-x: hidden;
}
/* header 顶部绿色通栏: 收回负偏移, 改为视口宽度居中 */
#smv_tem_23_17,
#smv_tem_23_17 > .yibuFrameContent,
#smv_tem_23_17 > .yibuFrameContent > .w-container,
#smv_tem_23_17 > .yibuFrameContent > .w-container > #smc_Area0 {
    width: 100vw !important;
    left: 0 !important;
    margin-left: 0 !important;
}
/* header 主容器随视口收缩, 内容居中 */
.header,
#smv_tem_22_17 > .yibuFrameContent > .fullcolumn-inner {
    width: 100% !important;
    max-width: 1200px;
    margin: 0 auto;
}
/* footer 通栏背景层 */
#bannerWrap_tem_28_40 {
    width: 100vw !important;
    left: 0 !important;
}
.footer {
    width: 100% !important;
    max-width: 1200px;
    margin: 0 auto;
}
/* banner 全屏层(JS fullScreen 注入的内联 width)限制在视口内 */
.fullcolumn-outer { max-width: 100vw; }

/* ==========================================================================
   万网内页顶部窄带白底修正
   万网页面 CSS(.tem_23_17 > .w-container { background-color:#fff }) 会让
   header 顶部窄带变白, 遮住 .tem_22_17 .fullcolumn-outer 的绿色背景。
   全站强制透明, 让绿色背景透过来, 与首页视觉统一。
   规则源: 147227_Pc_en-US.css 的 .tem_23_17 > .w-container
   ========================================================================== */
.tem_23_17 > .w-container {
    background-color: transparent !important;
    background-image: none !important;
}

/* ==========================================================================
   万网 header/footer 通栏背景色补全
   首页 home.html 不再加载模板级CSS(147229_Pc_en-US.css 等), 原本由
   .tem_22_17 .fullcolumn-outer / .tem_28_40 .fullcolumn-outer 定义的
   绿色 header 背景(106,168,79) 与深色 footer 背景(34,34,34) 丢失,
   导致白色 logo/导航文字在透明 header 上不可见。这里补回背景色。
   规则源: 147229_Pc_en-US.css 的 .tem_22_17/.tem_28_40 .fullcolumn-outer
   ========================================================================== */
/* header 绿色通栏背景 */
.tem_22_17 .fullcolumn-outer {
    background-color: rgb(106, 168, 79);
    position: absolute; top: 0; bottom: 0; left: 0;
    z-index: -1;
}
/* footer 深色背景 */
.tem_28_40 .fullcolumn-outer {
    background-color: rgb(34, 34, 34);
    position: absolute; top: 0; bottom: 0; left: 0;
    z-index: -1;
}

/* ==========================================================================
   万网 PC 导航样式补全
   首页 home.html 不再输出 fa_page.content 整页HTML, 原本由模板级CSS定义的
   .w-nav 导航布局(float横向)失效, 加之 Bootstrap3 的 li{display:block} 干扰,
   导航项会垂直堆叠。这里补全导航必需的布局规则(仅首页 header 需要)。
   规则源: 147229_Pc_en-US.css 等模板级样式, 精简后只保留布局与配色。
   ========================================================================== */
.w-nav {
    margin: 0; padding: 0;
    width: 797px; height: 29px;
    border: 0; border-radius: 0; box-shadow: none;
}
.w-nav:after { content: ''; display: table; clear: both; zoom: 1; }
/* 关键: 覆盖 Bootstrap 的 li{display:block}, 恢复 float 横向 */
.w-nav .w-nav-inner {
    padding: 0; margin: 0;
    float: left !important;
    display: block !important;
    list-style: none;
    width: 16.6667%;
    height: 29px;
    line-height: 29px;
    background: transparent;
}
.w-nav .w-nav-item {
    padding: 0; margin: 0;
    position: relative;
    height: 100%; line-height: inherit;
}
.w-nav .w-nav-item .w-nav-item-link {
    margin: 0; padding: 0;
    text-decoration: none; outline: none;
    display: block; height: 100%;
    color: #ffffff; font-weight: normal; font-style: normal;
    text-align: center;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.w-nav .w-nav-item .w-nav-item-link .w-link-txt {
    font-family: Arial, "Microsoft YaHei", sans-serif;
    font-size: 15px;
}
.w-nav .w-nav-item .w-nav-item-link .mw-iconfont { font-size: 15px; }
.w-nav .w-nav-item .w-nav-item-line {
    padding: 0; margin: 0;
    display: block; position: absolute;
    height: 100%; width: 0; top: 0; left: 0;
    border-left: 0 solid #EEE;
}
.w-nav-item .w-nav-item-line { display: none; }
.w-nav .w-nav-item.current .w-nav-item-link,
.w-nav .w-nav-inner:hover .w-nav-item-link {
    color: #fff; font-weight: 400; text-decoration: none;
}
/* 二级子菜单 */
.w-nav .w-subnav {
    margin: 0; padding: 0;
    position: relative; display: none; overflow: hidden;
}
.w-nav .w-subnav.userWidth { width: 290px; }
.w-nav .w-subnav-item {
    margin: 0; padding: 0;
    list-style: none;
    background-color: rgb(106, 168, 79);
}
.w-nav .w-subnav-item .w-subnav-link {
    margin: 0; padding: 0 15px;
    height: 41px; line-height: 41px;
    outline: none; display: block;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    color: #fff; font-size: 14px; font-weight: normal;
    text-decoration: none; text-align: left;
}
.w-nav .w-subnav-item.current { background-color: rgb(147, 196, 125); }
.w-nav .w-subnav-item.current .w-subnav-link,
.w-nav .w-subnav-item:hover .w-subnav-link:hover {
    color: #fff; text-decoration: underline;
}

/* ---- 语言切换按钮 (PC 顶部, 固定定位) ---- */
.snc-lang-switch-wrap {
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(4px);
    border-radius: 16px;
    padding: 2px 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.snc-lang-switch {
    font-family: "Microsoft YaHei", Arial, sans-serif;
    font-size: 13px;
    line-height: 26px;
    color: #ffffff;
}
.snc-lang-switch .snc-lang-link {
    color: #ffffff;
    text-decoration: none;
    padding: 2px 6px;
    opacity: 0.7;
    transition: opacity 0.2s;
    border-radius: 12px;
}
.snc-lang-switch .snc-lang-link:hover,
.snc-lang-switch .snc-lang-link.active {
    opacity: 1;
    background: rgba(255,255,255,0.25);
}
.snc-lang-switch .snc-lang-sep {
    color: #ffffff;
    opacity: 0.4;
    margin: 0 2px;
}

/* ---- 移动端导航语言项 ---- */
.mw-nav-item-lang {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
    border-top: 1px solid #eee;
    font-size: 15px;
}
.mw-nav-lang-label { color: #666; margin-right: 8px; }
.mw-nav-lang-link { color: var(--brand); text-decoration: none; padding: 4px 10px; }
.mw-nav-lang-link.active { font-weight: bold; border-bottom: 2px solid var(--brand); }
.mw-nav-lang-sep { color: #ccc; margin: 0 4px; }

/* ==========================================================================
   首页主体容器 (独立于万网建站系统的绝对定位布局)
   ========================================================================== */
.snc-home {
    font-family: "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
}
.snc-home * { box-sizing: border-box; }
.snc-home .container { width: 1200px; max-width: 100%; }

/* ---- 通用板块 ---- */
.snc-section { padding: 64px 0; }
.snc-section--soft { background: var(--bg-soft); }
.snc-section--blue { background: var(--tech-blue); }
.snc-section--green {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
    color: var(--white);
}
.snc-section-head { text-align: center; margin-bottom: 40px; }
.snc-section-head h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 12px;
    letter-spacing: 1px;
}
.snc-section--green .snc-section-head h2 { color: var(--white); }
.snc-section-head .snc-section-sub {
    font-size: 16px;
    color: var(--text-light);
    max-width: 720px;
    margin: 0 auto;
}
.snc-section--green .snc-section-head .snc-section-sub { color: rgba(255,255,255,0.85); }
.snc-section-head::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--brand);
    margin: 16px auto 0;
    border-radius: 2px;
}
.snc-section--green .snc-section-head::after { background: var(--white); }

/* ==========================================================================
   1. Hero 首屏 (三图轮播, Bootstrap 3 Carousel 定制)
   ========================================================================== */
.snc-hero {
    position: relative;
    min-height: 620px;
    color: var(--white);
    text-align: center;
    overflow: hidden;
    background: #2e7d32; /* 兜底色, 防轮播初始化前白屏 */
}
.snc-hero-carousel,
.snc-hero-carousel .carousel-inner { height: 100%; min-height: 620px; }
/* 每张轮播图: 三套品牌绿色系渐变 */
.snc-hero-slide {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    /* 兜底渐变(图未加载时防白屏); 真实背景图由 --1/2/3 覆盖, cover 自适应 PC/移动端裁切 */
    background: linear-gradient(135deg, #2e7d32 0%, #6aa84f 50%, #81c784 100%);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
/* 三张真实高清背景图(2048x1152, AI 生成, 主体居中); background-color 作图片未加载时的兜底色 */
.snc-hero-slide--1 { background-image: url('../img/home/banner1.jpg'); background-color: #1b5e20; }
.snc-hero-slide--2 { background-image: url('../img/home/banner2.jpg'); background-color: #2e7d32; }
.snc-hero-slide--3 { background-image: url('../img/home/banner3.jpg'); background-color: #1b4d4a; }
/* 装饰性光斑纹理(纯 CSS, 真实背景图上减弱透明度避免干扰文字) */
.snc-hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 18% 28%, rgba(255,255,255,0.06) 0, transparent 38%),
        radial-gradient(circle at 82% 72%, rgba(255,255,255,0.04) 0, transparent 40%);
    pointer-events: none;
}
/* 半透明遮罩: 真实背景图上叠加暗化+品牌绿调, 保证白色标题文字在任何位置可读 */
.snc-hero-mask {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(15,50,25,0.45) 0%, rgba(0,0,0,0.55) 100%);
    pointer-events: none;
}
.snc-hero-inner { width: 100%; padding: 90px 0; position: relative; z-index: 2; }
/* 业务图标(纯 SVG, 颜色继承白色) */
.snc-hero-icon {
    width: 72px; height: 72px; margin: 0 auto 18px;
    color: rgba(255,255,255,0.92);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.18));
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .6s ease .1s, transform .6s ease .1s;
}
.snc-hero-slide.active .snc-hero-icon { opacity: 1; transform: translateY(0); }
.snc-hero-icon svg { width: 100%; height: 100%; display: block; }
.snc-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 16px;
    letter-spacing: 2px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.snc-hero .snc-hero-tagline {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 8px;
    opacity: 0.95;
}
.snc-hero .snc-hero-divider {
    width: 80px; height: 3px; background: rgba(255,255,255,0.7);
    margin: 20px auto;
    border-radius: 2px;
}
.snc-hero .snc-hero-sub { font-size: 16px; opacity: 0.9; margin-bottom: 32px; }
.snc-hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
/* 指示器(底部圆点) */
.snc-hero-indicators {
    bottom: 22px; margin-bottom: 0;
}
.snc-hero-indicators li {
    width: 10px; height: 10px; margin: 0 5px;
    background: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 50%;
    transition: all .25s;
}
.snc-hero-indicators li.active {
    width: 28px; border-radius: 6px;
    background: var(--white);
    border-color: var(--white);
}
/* 左右控制箭头 */
.snc-hero-control {
    width: 8% !important;
    opacity: 0;
    background: none !important;
    transition: opacity .3s;
    z-index: 6;
}
.snc-hero-carousel:hover .snc-hero-control { opacity: .85; }
.snc-hero-arrow {
    display: inline-block;
    font-size: 54px; line-height: 1; font-weight: 300;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.snc-hero-arrow--left { margin-left: 12px; }
.snc-hero-arrow--right { margin-right: 12px; }
.snc-btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.25s;
    border: 2px solid transparent;
    cursor: pointer;
}
.snc-btn--primary { background: var(--white); color: var(--brand); }
.snc-btn--primary:hover { background: var(--brand-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.snc-btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.8); }
.snc-btn--ghost:hover { background: var(--white); color: var(--brand); transform: translateY(-2px); }

/* ==========================================================================
   2. 品牌简介
   ========================================================================== */
.snc-intro-text { font-size: 16px; color: var(--text); line-height: 1.9; }
.snc-intro-tags { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.snc-intro-tag {
    text-align: center;
}
.snc-intro-tag .snc-tag-num {
    font-size: 36px; font-weight: 700; color: var(--brand); line-height: 1;
}
.snc-intro-tag .snc-tag-label { font-size: 14px; color: var(--text-light); margin-top: 6px; }

/* 服务理念段落(品牌简介板块内, 统计数字下方) */
.snc-intro-mission {
    max-width: 860px; margin: 36px auto 0;
    padding: 24px 28px; border-left: 3px solid var(--brand);
    background: var(--bg-soft); border-radius: 0 8px 8px 0;
}
.snc-intro-mission p {
    font-size: 15px; color: var(--text); line-height: 1.9; margin: 0;
}

/* ==========================================================================
   3. 核心业务品类
   ========================================================================== */
.snc-cat-grid { display: flex; flex-wrap: wrap; }
.snc-cat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    height: 100%;
    border-top: 4px solid var(--brand);
}
.snc-cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-top-color: var(--mint); }
.snc-cat-icon {
    width: 72px; height: 72px; margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 32px;
}
.snc-cat-card h3 { font-size: 20px; color: var(--ink); margin: 0 0 10px; }
.snc-cat-card p { font-size: 14px; color: var(--text-light); margin: 0; }

/* ==========================================================================
   4. 四大核心优势
   ========================================================================== */
.snc-adv-card {
    text-align: center;
    padding: 32px 20px;
    height: 100%;
}
.snc-adv-icon {
    width: 84px; height: 84px; margin: 0 auto 20px;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 36px;
}
.snc-section--green .snc-adv-card h3 { color: #fff; font-size: 20px; margin: 0 0 12px; }
.snc-section--green .snc-adv-card p { color: rgba(255,255,255,0.9); font-size: 14px; margin: 0; }

/* ==========================================================================
   5. 服务流程
   ========================================================================== */
.snc-process-steps { display: flex; flex-wrap: wrap; align-items: stretch; }
.snc-step {
    text-align: center;
    padding: 20px 12px;
    position: relative;
}
.snc-step-num {
    width: 56px; height: 56px; margin: 0 auto 14px;
    background: var(--white);
    border: 3px solid var(--brand);
    border-radius: 50%;
    color: var(--brand);
    font-size: 22px; font-weight: 700;
    line-height: 50px;
}
.snc-step h4 { font-size: 16px; color: var(--ink); margin: 0 0 6px; }
.snc-step p { font-size: 13px; color: var(--text-light); margin: 0; }
/* 步骤之间箭头 (PC) */
.snc-step-arrow {
    position: absolute; right: -10px; top: 38px;
    color: var(--mint); font-size: 20px;
}

/* ==========================================================================
   6. 资质荣誉 (奖章徽章卡片)
   ========================================================================== */
.snc-qual-grid { display: flex; flex-wrap: wrap; }
.snc-qual-item {
    background: var(--white);
    border-radius: 10px;
    padding: 28px 16px 22px;
    text-align: center;
    box-shadow: var(--shadow);
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(106,168,79,0.08);
    position: relative;
}
.snc-qual-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(106,168,79,0.3);
}
/* 奖章圆形徽章 */
.snc-qual-badge {
    width: 72px; height: 72px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand) 0%, var(--mint) 100%);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 16px rgba(106,168,79,0.3);
    transition: transform 0.3s;
}
.snc-qual-item:hover .snc-qual-badge { transform: scale(1.08) rotate(-3deg); }
.snc-qual-badge img { max-width: 60%; max-height: 60%; height: auto; border-radius: 0; margin: 0; }
.snc-qual-icon {
    font-size: 32px;
    color: var(--white);
    line-height: 1;
}
.snc-qual-item h4 { font-size: 16px; color: var(--ink); margin: 0 0 4px; font-weight: 600; }
.snc-qual-item p { font-size: 12px; color: var(--text-light); margin: 0; line-height: 1.5; }

/* ==========================================================================
   7. 客户案例 (特色案例 + 列表布局)
   ========================================================================== */
.snc-case-layout { display: flex; flex-wrap: wrap; align-items: stretch; }
/* 让两列等高: 列内 flex, 内部卡片撑满列高 */
.snc-case-layout > [class*="col-"] { display: flex; flex-direction: column; }
.snc-case-layout > [class*="col-"] > .snc-case-feature,
.snc-case-layout > [class*="col-"] > .snc-case-list { flex: 1 1 auto; width: 100%; }

/* ---- 左侧: 特色大案例 ---- */
.snc-case-feature {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.35s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.snc-case-feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.snc-case-media { position: relative; overflow: hidden; }
.snc-case-feature-media .snc-case-img {
    width: 100%; height: 300px; object-fit: cover;
    background: var(--bg-soft); display: block;
    transition: transform 0.5s;
}
.snc-case-feature:hover .snc-case-img { transform: scale(1.05); }
/* 图片渐变遮罩 */
.snc-case-overlay {
    position: absolute; left: 0; right: 0; bottom: 0; height: 60%;
    background: linear-gradient(to top, rgba(34,46,20,0.55) 0%, rgba(34,46,20,0) 100%);
    pointer-events: none;
}
/* 左上角分类标签 */
.snc-case-tag {
    position: absolute; top: 16px; left: 16px;
    display: inline-block; font-size: 12px; color: var(--white);
    background: rgba(106,168,79,0.92); padding: 4px 14px;
    border-radius: 20px; font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    backdrop-filter: blur(4px);
}
/* 右上角"精选案例"徽章 */
.snc-case-feature-badge {
    position: absolute; top: 16px; right: 16px;
    display: inline-block; font-size: 11px; color: var(--brand-dark);
    background: rgba(255,255,255,0.95); padding: 4px 12px;
    border-radius: 20px; font-weight: 600; letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.snc-case-feature-body { padding: 26px 28px 24px; flex: 1; }
.snc-case-feature-body h3 {
    font-size: 22px; color: var(--ink); margin: 0 0 12px;
    font-weight: 700; line-height: 1.4;
}
.snc-case-feature-body p {
    font-size: 14px; color: var(--text-light); margin: 0 0 20px;
    line-height: 1.7;
}
/* 特色案例统计数字 */
.snc-case-feature-stats {
    display: flex; gap: 28px;
    padding-top: 18px;
    border-top: 1px solid var(--bg-soft);
}
.snc-case-stat strong {
    display: block; font-size: 24px; font-weight: 700;
    color: var(--brand); line-height: 1.2;
}
.snc-case-stat span {
    display: block; font-size: 12px; color: var(--text-light);
    margin-top: 2px;
}

/* ---- 右侧: 案例列表(竖排小卡片) ---- */
.snc-case-list { display: flex; flex-direction: column; gap: 20px; height: 100%; }
.snc-case-mini {
    display: flex; gap: 16px;
    background: var(--white);
    border-radius: 10px;
    padding: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    flex: 1;
    align-items: stretch;
}
.snc-case-mini:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-hover);
}
.snc-case-mini-media {
    flex-shrink: 0;
    width: 110px; height: 110px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-soft);
}
.snc-case-mini-media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s;
}
.snc-case-mini:hover .snc-case-mini-media img { transform: scale(1.08); }
.snc-case-mini-body { flex: 1; display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.snc-case-mini-tag {
    display: inline-block; font-size: 11px; color: var(--brand);
    background: rgba(106,168,79,0.12); padding: 2px 10px;
    border-radius: 12px; margin-bottom: 8px; align-self: flex-start;
    font-weight: 500;
}
.snc-case-mini-body h4 {
    font-size: 15px; color: var(--ink); margin: 0 0 6px;
    font-weight: 600; line-height: 1.4;
}
.snc-case-mini-body p {
    font-size: 13px; color: var(--text-light); margin: 0;
    line-height: 1.5;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden;
}

.snc-cases-more { text-align: center; margin-top: 36px; }
.snc-btn--green {
    background: var(--brand); color: var(--white);
}
.snc-btn--green:hover { background: var(--brand-dark); color: var(--white); transform: translateY(-2px); }

/* ==========================================================================
   8. 底部转化 CTA
   ========================================================================== */
.snc-cta { text-align: center; }
.snc-cta h2 { font-size: 30px; font-weight: 700; margin: 0 0 12px; }
.snc-cta p { font-size: 16px; opacity: 0.9; margin-bottom: 28px; }
.snc-cta-contacts { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.snc-cta-contact { color: rgba(255,255,255,0.92); font-size: 15px; }
.snc-cta-contact strong { display: block; font-size: 13px; opacity: 0.75; margin-bottom: 4px; font-weight: 400; }

/* ==========================================================================
   响应式 (<=991px 平板/小平板)
   ========================================================================== */
@media (max-width: 1199px) {
    .snc-home .container { width: 100%; padding: 0 24px; }
}
@media (max-width: 991px) {
    .snc-section { padding: 48px 0; }
    .snc-section-head h2 { font-size: 28px; }
    .snc-hero h1 { font-size: 32px; }
    .snc-hero .snc-hero-tagline { font-size: 17px; }
}
/* 步骤箭头在窄屏隐藏 */
@media (max-width: 767px) {
    .snc-step-arrow { display: none; }
}

/* ==========================================================================
   内页 Banner (zz/hbln 等用 snc-page-hero, PC 高 290px, 移动端由 snc-home-m.css 覆盖)
   ========================================================================== */
.snc-page-hero { height: 290px; min-height: 290px; }

/* ==========================================================================
   wmdfw/cpzx/gywm/zp 内页: 隐藏正文自带的万网原生轮播 banner
   - 这四页正文 fa_page.content(_m) 顶部含万网 slideset banner, 已改由 _page_banner 组件统一渲染
   - 隐藏后, 画布顶部留与 banner 等高的空白(绝对定位画布, 后续模块 top 写死不会上移),
     由 _page_banner.html 输出的负 margin-bottom 下移覆盖填补(透明留白被 banner 图盖住)
   - .has-native-banner 由 page.html 在 hideNativeBanner 时加到 .snc-page-responsive 上
   ========================================================================== */
.has-native-banner .smvContainer > [ctype="slideset"]:first-child {
    display: none !important;
}
