/* ============================================================
   apple-silver.css  —  Apple 银白画廊风 覆盖层
   设计来源: awesome-design-md / apple  (白底 + 银灰 + Action Blue)
   作用: 在 cms.css 之后引入，同特异性后加载者胜，不改动原 49KB 结构
   适用: SDCMS theme/2026 全站换肤（新品牌，独立于善金坊/锭制金银）
   ============================================================ */

:root{
  /* —— 银白画廊配色 token（取自 Apple DESIGN.md）—— */
  --canvas:        #ffffff;   /* 主画布 白 */
  --surface-pearl: #fafafc;   /* 银珠灰 */
  --surface-gray:  #f5f5f7;   /* 苹果浅灰 */
  --chip:          #d2d2d7;   /* 半透明芯片银灰 */
  --ink:           #1d1d1f;   /* 主文字 墨黑 */
  --ink-2:         #6e6e73;   /* 次要文字 */
  --ink-3:         #86868b;   /* 辅助文字 */
  --border:        #e8e8ed;   /* 细分隔线 */
  --border-2:      #d2d2d7;   /* 略深边线 */
  --accent:        #54647a;   /* 钢蓝灰 强调色（冷、银感，替代 Action Blue） */
  --accent-hover:  #404e60;   /* 更深钢蓝灰，hover 态 */
  --accent-soft:   #eceff3;   /* 极浅钢蓝灰底，选中/高亮背景 */
  --shadow-sm:     0 1px 3px rgba(0,0,0,.06);
  --shadow-md:     0 6px 24px rgba(0,0,0,.08);
  --shadow-lg:     0 12px 40px rgba(0,0,0,.10);
  --radius:        16px;
  --radius-sm:     12px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
          "PingFang SC", "Microsoft YaHei UI", "Microsoft YaHei", system-ui, sans-serif;
}

/* 全局字体与基底 */
body{ font-family:var(--font); color:var(--ink); background:var(--canvas);
      -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility; }
*{ box-sizing:border-box; }

/* ============ 顶部条 topbars ============ */
.topbars{ background:var(--surface-gray); border-bottom:1px solid var(--border); min-width:1200px; }
.topbars .title{ color:var(--ink-2); line-height:50px; }
.topbars .title a{ color:var(--ink-2); }
.topbars .title a:hover{ color:var(--accent); }
.topbars .title span{ color:var(--accent); }
.topbars .lan .ui-nav li a{ color:var(--ink-2); }
.topbars .lan .ui-nav li a:hover{ color:var(--accent); }
.topbars .lan .ui-nav li ul li a{ color:var(--ink); }
.topbars .lan .ui-nav li ul li a:hover{ background:var(--accent-soft); color:var(--accent); }

/* ============ 头部 header ============ */
.header{ padding:18px 0 18px 0; background:var(--canvas); }
.header .logo{ height:96px; display:flex; align-items:center; gap:18px; }
.header .logo img{ max-height:96px; width:auto; }
.header .logo-slogan{ font-size:16px; font-weight:500; color:var(--accent); letter-spacing:2px; white-space:nowrap; padding-left:18px; border-left:2px solid var(--border); line-height:1.4; }
.header .search .ip{ border:1px solid var(--border-2); border-radius:10px; height:42px; line-height:40px;
                     transition:border-color .25s, box-shadow .25s; }
.header .search .ip:focus{ border-color:var(--accent); box-shadow:0 0 0 3px var(--accent-soft); }
.header .search .bnt{ border:1px solid var(--accent); background:var(--accent); border-radius:10px;
                       color:#fff; transition:background .25s; }
.header .search .bnt:hover{ background:var(--accent-hover); border-color:var(--accent-hover); }
.header .tel{ color:var(--ink-2); }
.header .tel span{ color:var(--ink); font-weight:600; }

/* ============ 主导航 nav_bg ============ */
.nav_bg{ background:var(--canvas); border-bottom:1px solid var(--border); height:64px; color:var(--ink);
         box-shadow:var(--shadow-sm); }
.nav_bg ul li a{ color:var(--ink); font-size:16px; line-height:64px; height:64px; padding:0 22px;
                 position:relative; transition:color .25s; }
.nav_bg ul li a:after{ content:""; position:absolute; left:22px; right:22px; bottom:0; height:2px;
                       background:var(--accent); transform:scaleX(0); transform-origin:center;
                       transition:transform .25s ease; }
.nav_bg ul li.active a{ background:transparent; color:var(--accent); }
.nav_bg ul li.active a:after{ transform:scaleX(1); }
.nav_bg ul li a:hover{ background:transparent; color:var(--accent); }
.nav_bg ul li a:hover:after{ transform:scaleX(1); }
.nav_bg ul li:hover ul{ display:block; border:1px solid var(--border); box-shadow:var(--shadow-md); }
.nav_bg ul li:hover ul li{ margin:0; }
.nav_bg ul li:hover ul li a{ line-height:46px; height:46px; font-size:14px; color:var(--ink);
                             background:#fff; }
.nav_bg ul li:hover ul li a:after{ display:none; }
.nav_bg ul li:hover ul li a:hover{ color:var(--accent); background:var(--accent-soft); }

/* ============ HERO 主视觉 ============ */
.hero-banner{ position:relative; }
/* 保留原 cms.css 的水平居中定位(left:50%+translateX)，只微调垂直位置让标题不偏上 */
.hero-overlay{ position:absolute; left:50%; top:38%; transform:translate(-50%,-50%);
             text-align:left; z-index:5; pointer-events:none; width:88%; max-width:860px; }
.hero-overlay .hero-text{ max-width:760px; }
.hero-overlay .hero-text h1{ color:#fff; font-size:46px; font-weight:700; letter-spacing:-.5px;
                              text-shadow:0 2px 18px rgba(0,0,0,.45); line-height:1.2; }
.hero-overlay .hero-text p{ color:rgba(255,255,255,.92); font-size:17px; margin-top:16px;
                            text-shadow:0 1px 10px rgba(0,0,0,.4); }
.hero-cta{ pointer-events:auto; margin-top:28px; display:flex; gap:14px; }
.btn-primary,.hero-cta .btn-primary{ display:inline-block; background:var(--accent); color:#fff;
             padding:13px 34px; border-radius:980px; font-size:16px; font-weight:500;
             text-decoration:none; transition:background .25s, transform .25s; box-shadow:var(--shadow-md); }
.btn-primary:hover,.hero-cta .btn-primary:hover{ background:var(--accent-hover); transform:translateY(-1px); }
.btn-outline,.hero-cta .btn-outline{ display:inline-block; border:1px solid rgba(255,255,255,.7);
             color:#fff; padding:13px 34px; border-radius:980px; font-size:16px; font-weight:500;
             text-decoration:none; transition:background .25s, border-color .25s; }
.btn-outline:hover,.hero-cta .btn-outline:hover{ background:rgba(255,255,255,.14); border-color:#fff; }

/* 信任数字条 */
.trust-bar{ display:flex; gap:0; background:rgba(255,255,255,.92); backdrop-filter:blur(8px);
            border-radius:var(--radius); box-shadow:var(--shadow-md); padding:26px 10px; margin-top:-40px;
            position:relative; z-index:6; }
.trust-item{ flex:1; text-align:center; border-right:1px solid var(--border); }
.trust-item:last-child{ border-right:0; }
.trust-num{ font-size:38px; font-weight:700; color:var(--ink); letter-spacing:-1px; }
.trust-num em{ font-size:18px; font-style:normal; color:var(--ink-3); margin-left:2px; }
.trust-label{ font-size:14px; color:var(--ink-2); margin-top:6px; }

/* ============ 通用区块标题 section-title ============ */
.section-title{ text-align:center; padding:0 0 10px; }
.section-title .cn{ color:var(--ink); font-size:30px; font-weight:700; letter-spacing:-.3px; }
.section-title .en{ color:var(--ink-3); font-size:14px; letter-spacing:2px; text-transform:uppercase; margin-top:6px; }
.section-title .divider{ width:46px; height:3px; background:var(--accent); border-radius:3px; margin:16px auto 0; }
.section-title p{ color:var(--ink-2); font-size:15px; margin-top:14px; }
/* 兼容原 home_title 金色圆点背景 */
.home_title{ background:none; padding-bottom:25px; }
.home_title .big{ color:var(--ink); font-size:30px; font-weight:700; }
.home_title .small{ color:var(--ink-3); font-size:16px; }

/* ============ 服务场景卡 service-card ============ */
.section-service{ padding:80px 0; }
.service-grid{ display:flex; flex-wrap:wrap; gap:24px; margin-top:40px; }
.service-card{ flex:1; min-width:240px; background:var(--canvas); border:1px solid var(--border);
               border-radius:var(--radius); padding:34px 28px; box-shadow:var(--shadow-sm);
               transition:transform .3s, box-shadow .3s, border-color .3s; }
.service-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-lg); border-color:var(--border-2); }
.service-icon{ margin-bottom:18px; }
.service-card h3{ color:var(--ink); font-size:19px; font-weight:600; margin-bottom:10px; }
.service-card p{ color:var(--ink-2); font-size:14px; line-height:24px; }
.service-card a{ display:inline-block; margin-top:14px; color:var(--accent); font-size:14px; font-weight:500;
                 text-decoration:none; }
.service-card a:hover{ color:var(--accent-hover); }
/* 把首页内联金色 SVG 重染为强调色 */
.service-icon svg [fill="#C9A96E"]{ fill:var(--accent) !important; }
.service-icon svg [stroke="#C9A96E"]{ stroke:var(--accent) !important; }

/* ============ 产品展示 home_pro / pro_list ============ */
.bg_gray{ background:var(--surface-gray); min-height:300px; min-width:1280px; }
.home_pro,.pro_list{ margin-top:30px; padding-bottom:40px; }
.home_pro ul li a,.pro_list ul li a{ display:block; border-radius:var(--radius-sm); overflow:hidden;
                                       background:var(--canvas); box-shadow:var(--shadow-sm);
                                       transition:transform .3s, box-shadow .3s; }
.home_pro ul li a:hover,.pro_list ul li a:hover{ transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.home_pro ul li a .top,.pro_list ul li a .top{ width:100%; height:305px; border:0; background:var(--surface-gray); }
.home_pro ul li a .top img,.pro_list ul li a .top img{ width:100%; height:100%; object-fit:cover; }
.home_pro ul li a .foot,.pro_list ul li a .foot{ border-top:1px solid var(--border); background:var(--canvas);
         padding:16px 56px 16px 20px; position:relative; font-size:16px; color:var(--ink);
         transition:color .25s; }
.home_pro ul li a .foot span,.pro_list ul li a .foot span{ display:block; font-size:14px; color:var(--ink-2);
         margin-top:5px; transition:color .25s; }
.home_pro ul li a .foot .icon,.pro_list ul li a .foot .icon{ background:url(../images/icon_right.png) no-repeat top;
         width:26px; height:20px; position:absolute; right:20px; top:30px; transition:all .4s ease;
         opacity:.55; }
/* hover: 浅银蓝强调，不再整块填金 */
.home_pro ul li a:hover .top,.pro_list ul li a:hover .top{ border:0; }
.home_pro ul li a:hover .foot,.pro_list ul li a:hover .foot{ background:var(--accent-soft); color:var(--accent); }
.home_pro ul li a:hover .foot span,.pro_list ul li a:hover .foot span{ color:var(--accent-hover); }
.home_pro ul li a:hover .foot .icon,.pro_list ul li a:hover .foot .icon{ background-position:bottom; opacity:1; filter:invert(38%) sepia(89%) saturate(2476%) hue-rotate(194deg) brightness(98%) contrast(97%); }

/* 产品分类导航 home_nav */
.home_nav ul li a{ border:1px solid var(--border); border-radius:980px; padding:9px 18px; color:var(--ink-2);
                   background:var(--canvas); transition:all .25s; }
.home_nav a:hover,.home_nav li.active a{ background:var(--accent); border-color:var(--accent); color:#fff; }

/* ============ 公司简介 home_about ============ */
.home_about{ background:var(--surface-gray); min-height:370px; margin-top:50px; display:flex; border-radius:var(--radius);
             overflow:hidden; box-shadow:var(--shadow-sm); }
.home_about .video{ width:550px; height:370px; margin:0; background:#000; }
.home_about .desc{ flex:1; color:var(--ink); padding:36px 50px; }
.home_about .desc p{ font-size:14px; margin:10px 0 18px 0; line-height:26px; color:var(--ink-2); }
.home_about .more{ text-align:right; margin-top:30px; }
.home_about .more a{ display:inline-block; color:var(--accent); border:1px solid var(--accent);
                     font-size:13px; padding:6px 32px; border-radius:980px; transition:all .25s; }
.home_about .more a:hover{ background:var(--accent); color:#fff; }

/* ============ 内页通用 ============ */
.bg_innner{ background:var(--surface-pearl); min-width:1200px; min-height:400px; }
.bg_position{ background:#fff; height:60px; line-height:60px; border-bottom:1px solid var(--border); }
.bg_position .submenu li a{ color:var(--ink-2); font-size:17px; }
.bg_position .submenu li a:hover{ color:var(--accent); border-bottom:2px solid var(--accent); }
.bg_position .submenu li.active a{ color:var(--accent); border-bottom:2px solid var(--accent); }
.container_right{ background:#fff; box-shadow:var(--shadow-sm); border:1px solid var(--border); border-radius:var(--radius-sm); }
.container_left{ border:1px solid var(--border); border-radius:var(--radius-sm); overflow:hidden; }
.left_subject{ background:var(--surface-gray); color:var(--ink); font-size:18px; padding-left:30px; line-height:58px;
               border-left:3px solid var(--accent); }
.left_ul .collapse-menu-title.active a{ color:var(--accent); }
.left_ul .collapse-menu-title.active{ background:var(--accent-soft); }

/* ============ 文章/列表 链接与标题强调 ============ */
.content a{ color:var(--accent); }
.content a:hover{ color:var(--accent-hover); }
.news_subject{ color:var(--ink); font-size:24px; border-bottom:1px solid var(--border); margin-bottom:30px; }
.news_subject span{ display:inline-block; border-bottom:2px solid var(--accent); line-height:40px; padding-bottom:15px; }
.artlist-item:hover .artlist-item-date{ color:var(--accent); }
.artlist-item:hover .artlist-item-body .title{ color:var(--accent); }
.link a:hover{ border-color:var(--accent); background:var(--accent); color:#fff; }

/* 联系页圆形图标 */
.contact em{ background:var(--accent); }

/* ============ 页脚 footer（改为银白浅底）============ */
.footer{ background:var(--surface-gray); border-top:1px solid var(--border); min-width:1200px; }
.footer .width{ color:var(--ink); min-height:320px; }
.foot-left{ padding-top:40px; }
.foot-nav-item{ border-right:1px solid var(--border); }
.foot-nav-item h3{ color:var(--ink); font-size:20px; }
.foot-nav-item li a{ color:var(--ink-2); }
.foot-nav-item li a:hover{ color:var(--accent); transform:translateX(6px); }
.foot-right{ background:var(--canvas); min-height:370px; width:260px; position:absolute; right:0; top:0; z-index:1;
             text-align:center; padding:60px 20px 0 20px; border-left:1px solid var(--border); }
.foot-right .tel{ font-size:16px; color:var(--ink-2); }
.foot-right .tel span{ font-family:Impact; font-size:30px; display:block; margin-top:5px; color:var(--ink); }
.copyright{ background:var(--surface-pearl); min-width:1200px; padding:15px 0; color:var(--ink-3); }
.copyright a{ color:var(--ink-3); }
.copyright a:hover{ color:var(--accent); }

/* ============ 右侧悬浮栏 ============ */
.right_bar ul li.active a{ background:var(--accent); border:1px solid var(--accent); }
.right_bar ul li a:hover{ background:var(--accent); border-color:var(--accent); }
.right_bar ul li a:hover i{ color:#fff; }

/* ============ 实力信赖区块 why-card ============ */
.home_why{ background:none; }
.why-icon span{ border:2px solid var(--accent); color:var(--accent); }
.why-card:hover .why-icon span{ background:var(--accent); color:#fff; }
.why-content h3{ color:var(--ink); }
.why-content p{ color:var(--ink-2); }
/* 标题分隔线（覆盖金渐变，含 divider-light 变体）*/
.section-title .divider,
.section-title .divider.divider-light{ background:var(--accent); }

/* ============ 产品详情页框架按钮（ui-btn-yellow 实为橙黄 #F37B1D，统一银白钢蓝）============ */
/* 覆盖 SDCMS 框架级 public/css/ui.css，全站黄色按钮统一为钢蓝灰，
   重点作用于产品详情页"我要订购"按钮，保持新品牌银白风一致 */
.ui-btn-yellow{ background:var(--accent) !important; border-color:var(--accent) !important; color:#fff !important; }
.ui-btn-yellow:hover{ background:var(--accent-hover) !important; border-color:var(--accent-hover) !important;
                      color:#fff !important; box-shadow:0 6px 22px rgba(84,100,122,.28) !important; }
a.ui-btn-yellow,a:hover.ui-btn-yellow{ color:#fff !important; }

/* ============ 响应式微调（窄屏保持可读）============ */
@media (max-width:1280px){
  .topbars,.nav_bg,.footer,.copyright,.bg_gray,.bg_innner,.bg_position,.home_about{ min-width:0; }
}

/* ============ 内容区高端大气增强（大厂卡片风）============ */
/* —— 新闻列表：大图卡片 —— */
.artlist-item{ border-bottom:0; background:#fff; border:1px solid var(--border); border-radius:var(--radius-sm);
               padding:18px; margin-bottom:22px; align-items:center; transition:box-shadow .3s ease, transform .3s ease; }
.artlist-item:hover{ box-shadow:var(--shadow-lg); transform:translateY(-3px); }
.artlist-item-image{ width:280px; margin-right:24px; flex-shrink:0; }
.artlist-item-image img{ width:100%; height:188px; object-fit:cover; border-radius:10px; transition:transform .45s ease; }
.artlist-item:hover .artlist-item-image img{ transform:scale(1.06); }
.artlist-item-body .title{ font-size:20px; font-weight:600; color:var(--ink); line-height:1.4; }
.artlist-item-body .desc{ font-size:14px; color:var(--ink-2); line-height:26px; margin-top:10px; }
.artlist-item-body .tags{ margin-top:12px; }
.artlist-item-body .tags a{ color:var(--accent); }
.artlist-item-date{ width:auto; padding:0; font-size:14px; color:var(--ink-3); font-family:var(--font); font-weight:400; }
.artlist-item-date:after{ display:none; }
.artlist-item:hover .artlist-item-body .title{ color:var(--accent); }

/* —— 产品网格：图片缩放 hover（其余沿用上方苹果风卡片） —— */
.pro_list ul li a .top{ overflow:hidden; }
.pro_list ul li a .top img{ transition:transform .5s ease; }
.pro_list ul li a:hover .top img{ transform:scale(1.06); }

/* —— 案例图集：图片缩放 + 标题底部渐变遮罩 —— */
.ui-piclist-item{ border:0; border-radius:var(--radius-sm); overflow:hidden; background:#fff;
                  box-shadow:var(--shadow-sm); transition:box-shadow .3s ease, transform .3s ease; }
.ui-piclist-item:hover{ box-shadow:var(--shadow-lg); transform:translateY(-4px); }
.ui-piclist-image{ overflow:hidden; }
.ui-piclist-image img{ transition:transform .5s ease; }
.ui-piclist-item:hover .ui-piclist-image img{ transform:scale(1.08); }
.ui-piclist-body{ background:linear-gradient(180deg, rgba(26,26,46,0) 0%, rgba(26,26,46,0.78) 100%);
                  position:absolute; left:0; right:0; bottom:0; padding:28px 16px 14px; z-index:2; }
.ui-piclist-title{ font-size:16px; line-height:1.4; }
.ui-piclist-title a{ color:#fff; }
.ui-piclist-title a:hover{ color:rgba(255,255,255,0.85); }

/* —— 单页内容排版增强（关于我们 / 联系我们等） —— */
.page_single{ padding:48px 36px; }
.page_single p{ line-height:32px; margin-bottom:18px; font-size:15px; color:var(--ink-2); }
.page_single img{ border-radius:var(--radius-sm); margin:12px 0; max-width:100%; height:auto; }
.page_single h2,.page_single h3{ color:var(--ink); margin:26px 0 14px; font-weight:600; }

/* —— 合作客户 Logo 墙 —— */
.client-logo-wall{ margin-top:36px; padding-top:30px; border-top:1px solid var(--border); }
.client-logo-wall ul{ display:flex; flex-wrap:wrap; gap:16px; justify-content:center; list-style:none; margin:0; padding:0; }
.client-logo-wall ul li{ width:calc(25% - 12px); min-width:150px; }
.client-logo-wall ul li a{ display:flex; align-items:center; justify-content:center; height:96px;
                           background:#fff; border:1px solid var(--border); border-radius:var(--radius-sm);
                           overflow:hidden; transition:box-shadow .3s ease, transform .3s ease, border-color .3s ease; }
.client-logo-wall ul li a:hover{ box-shadow:var(--shadow-lg); transform:translateY(-3px); border-color:var(--accent); }
.client-logo-wall ul li a img{ max-width:80%; max-height:60px; width:auto; height:auto; object-fit:contain;
                               filter:grayscale(100%); opacity:.72; transition:filter .3s ease, opacity .3s ease; }
.client-logo-wall ul li a:hover img{ filter:grayscale(0); opacity:1; }
@media (max-width:992px){
	.client-logo-wall ul li{ width:calc(33.333% - 12px); min-width:110px; }
	.client-logo-wall ul li a{ height:80px; }
}
@media (max-width:576px){
	.client-logo-wall ul li{ width:calc(50% - 10px); min-width:0; }
}

/* —— 友情链接 logo 墙 —— */
.link{ display:flex; flex-wrap:wrap; gap:10px; align-items:center; justify-content:center; padding:10px 0; }
.link a{ display:flex; align-items:center; justify-content:center; color:var(--ink-2); font-size:14px; padding:6px 12px; transition:color .2s ease; min-height:36px; }
.link a:hover{ color:var(--accent); }
.link a.link-logo{ padding:8px; background:#fff; border:1px solid var(--border); border-radius:var(--radius-sm);
                  width:170px; height:64px; transition:box-shadow .3s ease, border-color .3s ease, transform .3s ease; }
.link a.link-logo img{ width:100%; max-width:140px; max-height:42px; object-fit:contain; display:block;
                       filter:grayscale(100%); opacity:.78; transition:filter .3s ease, opacity .3s ease; }
.link a.link-logo:hover{ box-shadow:var(--shadow-md); border-color:var(--accent); transform:translateY(-2px); }
.link a.link-logo:hover img{ filter:grayscale(0); opacity:1; }
@media (max-width:992px){ .link a.link-logo{ width:calc(33.333% - 10px); } }
@media (max-width:576px){ .link a.link-logo{ width:calc(50% - 10px); } }

/* ================= 产品详情页 v2026（深蓝金定制） ================= */
.proshow-2026{ display:flex; gap:48px; padding:40px 32px; background:#fff; border-radius:20px; box-shadow:0 6px 30px rgba(26,26,46,.05); }
.proshow-gallery{ flex:0 0 540px; }
.proshow-big{ background:#f5f5f7; border-radius:18px; aspect-ratio:1/1; overflow:hidden; display:flex; align-items:center; justify-content:center; }
.proshow-big img{ width:100%; height:100%; object-fit:cover; }
.proshow-thumbs{ display:flex; gap:10px; margin-top:14px; flex-wrap:wrap; }
.proshow-thumb{ width:78px; height:78px; border-radius:12px; border:2px solid #e5e5ea; background:#fff; overflow:hidden; cursor:pointer; transition:border-color .2s ease,transform .2s ease; }
.proshow-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.proshow-thumb:hover{ transform:translateY(-2px); }
.proshow-thumb.active{ border-color:#C9A96E; box-shadow:0 0 0 3px rgba(201,169,110,.18); }
.proshow-info{ flex:1; min-width:0; padding-top:6px; }
.proshow-cat{ display:inline-block; font-size:13px; color:#B8924E; background:rgba(201,169,110,.12); padding:7px 16px; border-radius:999px; margin-bottom:18px; font-weight:600; }
.proshow-title{ font-size:34px; line-height:1.3; color:#1a1a2e; font-weight:700; letter-spacing:-.3px; margin:0 0 16px; }
.proshow-intro{ font-size:15px; line-height:1.85; color:#555; padding:18px 20px; background:#f5f5f7; border-left:3px solid #C9A96E; border-radius:0 12px 12px 0; margin-bottom:22px; }
.proshow-spec{ list-style:none; margin:0 0 24px; padding:0; display:grid; grid-template-columns:repeat(4,1fr); gap:10px; }
.proshow-spec li{ display:flex; flex-direction:column; padding:14px 16px; background:#f5f5f7; border-radius:12px; }
.proshow-spec .sp-k{ font-size:12px; color:#999; margin-bottom:6px; }
.proshow-spec .sp-v{ font-size:16px; color:#1a1a2e; font-weight:700; }
.proshow-actions{ display:flex; gap:12px; margin-bottom:24px; flex-wrap:wrap; }
.proshow-btn{ display:inline-flex; align-items:center; justify-content:center; padding:14px 30px; border-radius:999px; font-size:15px; font-weight:600; cursor:pointer; border:0; transition:all .2s ease; text-decoration:none; }
.proshow-btn-primary{ background:linear-gradient(135deg,#C9A96E 0%,#B8924E 100%); color:#1a1a2e; box-shadow:0 6px 18px rgba(201,169,110,.35); }
.proshow-btn-primary:hover{ transform:translateY(-2px); box-shadow:0 10px 24px rgba(201,169,110,.45); }
.proshow-btn-ghost{ background:#fff; color:#1a1a2e; border:1.5px solid #e5e5ea; }
.proshow-btn-ghost:hover{ border-color:#C9A96E; color:#B8924E; }
.proshow-tags{ display:flex; align-items:center; gap:8px; flex-wrap:wrap; padding-top:6px; }
.proshow-tags .tags-label{ font-size:13px; color:#999; margin-right:4px; }
.proshow-tag{ display:inline-block; font-size:12px; color:#666; background:#f5f5f7; border-radius:999px; padding:5px 12px; text-decoration:none; transition:all .2s ease; }
.proshow-tag:hover{ background:#C9A96E; color:#fff; }

/* Tabs */
.proshow-tabs{ margin-top:32px; background:#fff; border-radius:20px; box-shadow:0 6px 30px rgba(26,26,46,.05); padding:36px 40px; }
.proshow-tabs-nav{ display:flex; gap:36px; border-bottom:1px solid #e5e5ea; margin-bottom:28px; }
.proshow-tab-btn{ background:none; border:0; font-size:17px; color:#999; padding:0 0 14px; cursor:pointer; position:relative; font-weight:500; transition:color .2s ease; }
.proshow-tab-btn.active{ color:#1a1a2e; font-weight:700; }
.proshow-tab-btn.active:after{ content:''; position:absolute; left:0; right:0; bottom:-1px; height:2px; background:#C9A96E; border-radius:2px; }
.proshow-tabs-body{ min-height:200px; }
.proshow-pane{ display:none; }
.proshow-pane.active{ display:block; animation:fadeInUp .35s ease; }
.proshow-content{ font-size:15px; line-height:1.9; color:#444; }
.proshow-content h3{ color:#1a1a2e; font-size:18px; font-weight:700; margin:24px 0 12px; padding-left:12px; border-left:4px solid #C9A96E; }
.proshow-content h3:first-child{ margin-top:0; }
.proshow-content p{ margin:0 0 14px; }
.proshow-content img{ max-width:100%; height:auto; border-radius:12px; margin:14px 0; }
.spec-list{ list-style:none; margin:0; padding:0; }
.spec-list li{ display:flex; padding:14px 6px; border-bottom:1px solid #e5e5ea; font-size:15px; }
.spec-list li:last-child{ border-bottom:0; }
.spec-list .sp-k{ width:130px; color:#999; }
.spec-list .sp-v{ flex:1; color:#1a1a2e; }

/* Related - 1:1 square images */
.proshow-related{ margin-top:32px; background:#fff; border-radius:20px; box-shadow:0 6px 30px rgba(26,26,46,.05); padding:36px 40px; }
.proshow-related-title{ font-size:20px; font-weight:700; color:#1a1a2e; margin:0 0 22px; padding-left:14px; border-left:4px solid #C9A96E; }
.proshow-related-grid{ display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:20px; }
.proshow-related-card{ display:flex; flex-direction:column; width:100%; min-width:0; text-decoration:none; background:#fff; border-radius:14px; overflow:hidden; transition:all .25s ease; border:1px solid #f0f0f3; }
.proshow-related-card:hover{ transform:translateY(-4px); box-shadow:0 12px 30px rgba(26,26,46,.12); border-color:#C9A96E; }
.related-img{ aspect-ratio:1/1; overflow:hidden; background:#f5f5f7; }
.related-img img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.proshow-related-card:hover .related-img img{ transform:scale(1.06); }
.related-name{ font-size:15px; color:#1a1a2e; padding:16px 18px; font-weight:500; line-height:1.5; }

@keyframes fadeInUp{ from{ opacity:0; transform:translateY(8px); } to{ opacity:1; transform:translateY(0); } }
/* ===== 移动端（与 PC 同风格：深蓝金 · 卡片质感 · 适合阅读） ===== */
@media (max-width:992px){
	.proshow-2026{ flex-direction:column; gap:24px; padding:20px 16px; border-radius:16px; }
	.proshow-gallery{ flex:none; width:100%; }
	.proshow-big{ border-radius:14px; }
	.proshow-thumbs{ gap:10px; margin-top:12px; overflow-x:auto; padding-bottom:4px; -webkit-overflow-scrolling:touch; }
	.proshow-thumb{ flex:0 0 auto; width:72px; height:72px; border-radius:10px; }
	.proshow-info{ padding-top:0; }
	.proshow-cat{ font-size:12px; padding:6px 14px; margin-bottom:14px; }
	.proshow-title{ font-size:25px; line-height:1.38; margin-bottom:14px; }
	.proshow-intro{ font-size:15px; line-height:1.85; padding:16px 18px; margin-bottom:18px; }
	.proshow-spec{ grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; margin-bottom:20px; }
	.proshow-spec li{ padding:12px 14px; }
	.proshow-spec .sp-v{ font-size:15px; }
	.proshow-actions{ gap:10px; margin-bottom:18px; }
	.proshow-btn{ padding:14px 0; font-size:15px; flex:1; min-width:0; }
	.proshow-btn-ghost{ flex:0 0 46%; }
	.proshow-tags{ gap:8px; }
	.proshow-tag{ font-size:12px; padding:6px 12px; }
	.proshow-tabs{ margin-top:20px; padding:24px 18px; border-radius:16px; }
	.proshow-tabs-nav{ gap:24px; margin-bottom:20px; overflow-x:auto; -webkit-overflow-scrolling:touch; }
	.proshow-tab-btn{ font-size:16px; padding:0 2px 12px; white-space:nowrap; }
	.proshow-content{ font-size:15px; line-height:1.9; }
	.proshow-content h3{ font-size:17px; margin:20px 0 10px; }
	.proshow-related{ margin-top:20px; padding:24px 18px; border-radius:16px; }
	.proshow-related-title{ font-size:19px; margin-bottom:16px; }
	.proshow-related-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
	.related-name{ font-size:14px; padding:12px 14px; }
}
@media (max-width:576px){
	.proshow-2026{ padding:16px 14px; gap:20px; }
	.proshow-title{ font-size:22px; line-height:1.4; }
	.proshow-intro{ font-size:14px; line-height:1.8; }
	.proshow-spec{ grid-template-columns:repeat(2,minmax(0,1fr)); }
	.proshow-spec .sp-v{ font-size:14px; }
	.proshow-actions{ flex-direction:column; }
	.proshow-btn{ width:100%; flex:none; }
	.proshow-btn-ghost{ flex:none; width:100%; }
	.proshow-tabs{ padding:20px 16px; }
	.proshow-content{ font-size:15px; line-height:1.85; }
	.proshow-related-grid{ grid-template-columns:1fr; }
}

/* ===== PC 详情页体验优化 P0（2026-08-28） ===== */
/* B2 询价表单：咨询产品只读展示 */
.ui-form-static{ padding:9px 12px; background:#f5f5f7; border-radius:6px; color:#1a1a2e; font-weight:600; font-size:14px; }

/* B3 详情页吸底操作条 */
.detail-float-bar{ position:fixed; left:0; right:0; bottom:0; z-index:998; display:flex; align-items:stretch; gap:14px; max-width:1200px; margin:0 auto; padding:10px 20px calc(10px + env(safe-area-inset-bottom)); background:rgba(26,26,46,.97); -webkit-backdrop-filter:blur(8px); backdrop-filter:blur(8px); box-shadow:0 -6px 24px rgba(0,0,0,.22); }
.detail-float-bar .dfb-item{ flex:1; display:flex; flex-direction:column; align-items:center; justify-content:center; height:58px; border-radius:10px; text-decoration:none; cursor:pointer; border:0; font-family:inherit; transition:.2s; }
.detail-float-bar .dfb-ic{ font-size:18px; line-height:1; margin-bottom:3px; }
.detail-float-bar .dfb-txt{ font-size:15px; font-weight:700; line-height:1.2; }
.detail-float-bar .dfb-sub{ font-size:11px; line-height:1.2; opacity:.82; margin-top:2px; }
.detail-float-bar .dfb-phone{ background:rgba(201,169,110,.16); color:#C9A96E; border:1px solid rgba(201,169,110,.4); }
.detail-float-bar .dfb-phone:hover{ background:rgba(201,169,110,.26); }
.detail-float-bar .dfb-inquiry{ background:linear-gradient(135deg,#C9A96E,#B8924E); color:#1a1a2e; box-shadow:0 4px 14px rgba(201,169,110,.4); }
.detail-float-bar .dfb-inquiry:hover{ filter:brightness(1.05); }
/* 避让：避免吸底条遮住页脚与正文底部 */
.bg_innner{ padding-bottom:92px; }
.footer{ padding-bottom:92px; }
/* 移动端隐藏，避免与手机版底部导航冲突 */
@media (max-width:767px){ .detail-float-bar{ display:none; } }

/* ===== P1 体验优化（2026-08-28） ===== */
/* B4 询价提交成功引导弹窗 */
#inquiry-success .ui-modal-body{ padding:30px 24px 26px; }
.is-ico{ width:56px; height:56px; line-height:56px; margin:0 auto 14px; border-radius:50%; background:linear-gradient(135deg,#C9A96E,#B8924E); color:#1a1a2e; font-size:30px; font-weight:700; }
.is-title{ font-size:19px; font-weight:700; color:#1a1a2e; margin:0 0 6px; }
.is-desc{ font-size:14px; color:#666; margin:0 0 18px; line-height:1.6; }
.is-desc b{ color:#B8924E; }
.is-actions{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.is-btn{ display:inline-block; padding:11px 20px; border-radius:999px; font-size:15px; font-weight:700; text-decoration:none; transition:.2s; }
.is-call{ background:linear-gradient(135deg,#C9A96E,#B8924E); color:#1a1a2e; }
.is-call:hover{ filter:brightness(1.05); }
.is-wx{ background:rgba(201,169,110,.14); color:#C9A96E; border:1px solid rgba(201,169,110,.45); }
.is-wx:hover{ background:rgba(201,169,110,.24); }
.is-tip{ font-size:13px; color:#999; margin:16px 0 0; }

/* B5 详情页相关案例闭环 */
.rel-cases{ margin-top:28px; }
.rel-cases-hd{ display:flex; align-items:center; justify-content:space-between; padding-bottom:14px; border-bottom:1px solid #f0f0f3; margin-bottom:18px; }
.rel-cases-t{ font-size:18px; font-weight:700; color:#1a1a2e; padding-left:12px; border-left:4px solid #C9A96E; line-height:1.2; }
.rel-cases-more{ font-size:13px; color:#B8924E; text-decoration:none; }
.rel-cases-list{ list-style:none; margin:0; padding:0; display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:16px; }
.rel-cases-list a{ text-decoration:none; display:block; }
.rel-cases-img{ border-radius:12px; overflow:hidden; background:#f5f5f7; aspect-ratio:1/1; }
.rel-cases-img img{ width:100%; height:100%; object-fit:cover; transition:.3s; }
.rel-cases-list a:hover .rel-cases-img img{ transform:scale(1.05); }
.rel-cases-name{ font-size:14px; color:#1a1a2e; font-weight:600; margin:10px 0 0; line-height:1.4; }
@media (max-width:767px){ .rel-cases-list{ grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; } }

/* B6 全局客服/微信面板 */
.kf-panel-body{ padding:18px; }
.kf-row{ display:flex; align-items:center; gap:12px; padding:14px; border-radius:12px; background:#f5f5f7; margin-bottom:10px; text-decoration:none; transition:.2s; }
.kf-row:last-child{ margin-bottom:0; }
.kf-row:hover{ background:#ededf2; }
.kf-ic{ width:40px; height:40px; line-height:40px; text-align:center; border-radius:50%; background:#1a1a2e; color:#C9A96E; font-size:18px; flex:none; }
.kf-tx{ display:flex; flex-direction:column; }
.kf-tx b{ font-size:15px; color:#1a1a2e; }
.kf-tx i{ font-size:13px; color:#888; font-style:normal; margin-top:2px; }
.kf-qr{ display:block; width:120px; height:120px; border-radius:8px; margin-top:6px; }
.kf-call .kf-ic{ background:linear-gradient(135deg,#C9A96E,#B8924E); color:#1a1a2e; font-size:20px; }
.kf-call:hover{ background:rgba(201,169,110,.12); }
.kf-wx .kf-ic{ font-style:normal; font-weight:700; color:#C9A96E; }
.kf-wx:hover{ background:rgba(201,169,110,.12); }
.kf-msg .kf-ic{ background:linear-gradient(135deg,#C9A96E,#B8924E); color:#1a1a2e; }
.kf-msg:hover{ background:rgba(201,169,110,.12); }
/* 右侧栏微信入口 */
.right_bar .kf-wx-ic{ font-style:normal; font-weight:700; color:#C9A96E; font-size:15px; }

/* C2 案例列表分类筛选胶囊 */
.cate-pills{ display:flex; flex-wrap:wrap; gap:10px; margin:0 0 18px; }
.cate-pill{ padding:7px 20px; border-radius:999px; border:1px solid #e3e3ea; background:#fff; color:#555; font-size:14px; text-decoration:none; transition:all .2s ease; }
.cate-pill:hover{ border-color:#C9A96E; color:#B8924E; }
.cate-pill.active{ background:linear-gradient(135deg,#C9A96E,#B8924E); border-color:transparent; color:#fff; font-weight:600; }
