/* ==========================================================================
   广州共赢 · 高端主题 (theme.css)
   说明：本文件在 style.css / common.css 之后加载，优先级最高。
   仅做视觉升级，保留全部原有 class 与功能（Repeater/下拉/滑块/表单 等）。
   ========================================================================== */

/* ---------- 设计变量 ---------- */
:root {
  --ink:        #0b1f3a;   /* 深海军蓝 */
  --ink-2:      #102a4c;
  --green:      #00b96b;   /* 主品牌绿 */
  --green-d:    #009a57;
  --green-l:    #2fe39b;
  --cyan:       #13c2c2;   /* 科技青 */
  --gold:       #e0a94a;   /* 高级金（点缀） */
  --bg:         #f4f7fb;   /* 页面浅灰蓝 */
  --bg-soft:    #eef3f9;
  --card:       #ffffff;
  --text:       #4a5568;
  --text-2:     #6b7686;
  --muted:      #9aa6b6;
  --line:       #e6ecf3;
  --shadow-sm:  0 4px 14px rgba(16,42,76,.06);
  --shadow:     0 12px 34px rgba(16,42,76,.10);
  --shadow-lg:  0 24px 60px rgba(16,42,76,.16);
  --radius:     16px;
  --radius-sm:  10px;
  --grad-brand: linear-gradient(120deg, #00b96b 0%, #13c2c2 100%);
  --grad-ink:   linear-gradient(120deg, #0b1f3a 0%, #0d3b53 55%, #0a6b52 100%);
  --maxw:       1200px;
  --header-h:   114px;   /* 兜底值：电话栏(34) + 导航(80)，运行时由 theme.js 按真实导航高度覆盖 */
  --font: "PingFang SC","Microsoft YaHei","Hiragino Sans GB",-apple-system,
          BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
}

/* ---------- 基础 ---------- */
html, body {
  margin: 0; padding: 0;
  /* 移动端禁止缩放 + 禁止横向滚动 */
  touch-action: pan-y;
  overscroll-behavior: none;
  -webkit-overflow-scrolling: touch;
}
body {
  font-family: var(--font);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
a { transition: color .25s, background .25s, box-shadow .25s, transform .25s; text-decoration: none; }
a:hover { text-decoration: none; }
img { max-width: 100%; }
.container { max-width: var(--maxw); }

/* 统一标题感 */
h1,h2,h3,h4,h5 { font-family: var(--font); }

/* 通用按钮 */
.btn-brand {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 999px;
  background: var(--grad-brand); color: #fff !important;
  font-size: 15px; font-weight: 600; letter-spacing: .5px;
  box-shadow: 0 10px 24px rgba(0,185,107,.32);
  border: none;
}
.btn-brand:hover { color:#fff; transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0,185,107,.45); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 26px; border-radius: 999px;
  background: rgba(255,255,255,.12); color:#fff !important;
  border: 1px solid rgba(255,255,255,.55); font-weight: 600;
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,.22); color:#fff; transform: translateY(-2px); }

/* ==========================================================================
   顶部细条 + 导航（玻璃拟态）
   ========================================================================== */
/* ─── 顶部电话栏（Banner 上方细条） ─── */
.top_menu {
  display: block !important;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  background: rgba(11,31,58,.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin: 0 !important;
  padding: 0 !important;
}
.top_menu .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 34px;
}
.top_name {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.7); font-size: 12px;
  padding: 0; border-left: none; margin-left: 0;
  line-height: 1;
}
.top_name .tel {
  font-weight: 700; font-size: 15px; color: #4ade80;
  letter-spacing: .5px;
}
.top_name .tel {
  font-weight: 700; font-size: 17px; color: var(--green-d);
  letter-spacing: .5px; margin-left: 4px;
}
.top_name .tel:hover { color: var(--green-l); }

/* 导航容器 */
header { position: relative; z-index: 1000; margin: 0 !important; padding: 0 !important; }
.navbar.navbar-default.navbar-fixed-top {
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border: none;
  box-shadow: 0 4px 20px rgba(16,42,76,.10);
  top: 30px !important; /* 坐在电话栏下方 */
  margin: 0 !important;
}
/* 单行导航：LOGO左 + 导航右 */
.nav-row {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  overflow: visible !important;
}
.navbar > .container { position: relative; overflow: visible !important; }
.navbar { overflow: visible !important; }

/* LOGO 品牌区（纯 LOGO，无电话） */
.brand-cell {
  display: flex !important; align-items: center;
  min-width: 0; flex-shrink: 0;
}

/* logo */
.navbar .logo { max-height: 58px; width: auto; transition: .3s; }

/* 导航项 */
.navbar-default .navbar-nav > li > a {
  color: #23304a !important;
  font-weight: 600; font-size: 14px; letter-spacing: .3px;
  position: relative;
  transition: color .25s;
  white-space: nowrap;
  padding-left: 12px !important;
  padding-right: 12px !important;
  outline: none !important;
}
/* 去掉点击菜单时的黑色边框/聚焦轮廓 */
.navbar-nav > li > a:focus,
.navbar-nav > li.dropdown > a:focus,
.dropdown-toggle:focus,
#app_menudown:focus,
.navbar-toggle:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: transparent !important;
}
.navbar-default .navbar-nav > li > a:not(#app_menudown)::after {
  content: ""; position: absolute; left: 50%; bottom: 16px;
  width: 0; height: 3px; border-radius: 3px;
  background: var(--grad-brand); transform: translateX(-50%);
  transition: width .3s ease;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .open > a {
  color: var(--green-d) !important;
  background: transparent !important;
}
.navbar-default .navbar-nav > li > a:not(#app_menudown):hover::after,
.navbar-default .navbar-nav > li > a.menu_cur::after,
.navbar-default .navbar-nav > .active > a::after,
.navbar-default .navbar-nav > .open > a::after { width: 42%; }

/* 当前菜单高亮（原 menu_cur） */
.menu_cur,
.navbar-default .navbar-nav > li > a.menu_cur {
  color: var(--green-d) !important;
  background: transparent !important;
}
.navbar-default .navbar-nav > li > a.menu_cur::after { width: 42%; }

/* 下拉小菜单 */
.navbar-default .navbar-nav > li.dropdown > .dropdown-menu,
.nav_small {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border: none; border-radius: 0 0 14px 14px;
  box-shadow: var(--shadow); padding: 10px 0; min-width: 168px;
  margin-top: 0 !important;
  position: absolute !important;
  z-index: 2000 !important;
}
.nav_small > li > a,
.navbar-default .navbar-nav .dropdown-menu > li > a {
  color: #23304a !important; font-size: 14px; font-weight: 500;
  padding: 9px 24px; transition: .2s;
}
.nav_small > li > a:hover,
.navbar-default .navbar-nav .dropdown-menu > li > a:hover {
  color: #fff !important; background: var(--grad-brand) !important;
  padding-left: 30px;
}
#app_menudown {
  position: absolute; top: 0; right: 0; font-size: 14px; color:#9aa6b6;
  outline: none !important; border: none !important; background: transparent !important;
}
#app_menudown:hover { background: transparent !important; color: var(--green-d); }

/* 移动端汉堡 */
.navbar-toggle {
  border-color: rgba(0,0,0,.12) !important;
  margin-top: 22px;
  outline: none !important;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(0,185,107,.2);
  min-width: 44px; min-height: 44px;
  padding: 10px 12px;
  position: relative;
  z-index: 1050;
}
.navbar-toggle:focus, .navbar-toggle:active { outline: none !important; box-shadow: none !important; }
.navbar-default .navbar-toggle .icon-bar { background-color: #23304a; }
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus { background: rgba(0,185,107,.1) !important; }

/* 汉堡菜单打开状态：三条线 → X */
.navbar-toggle.active .icon-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.navbar-toggle.active .icon-bar:nth-child(2) {
  opacity: 0;
}
.navbar-toggle.active .icon-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.navbar-toggle .icon-bar {
  transition: transform .25s ease, opacity .25s ease;
}

/* 移动端导航布局修复 */
@media (max-width: 768px) {
  .navbar-toggle { margin-top: 14px; margin-right: 0; margin-bottom: 0; min-width: 44px; min-height: 44px; }
  .navbar-header { display: flex !important; align-items: center !important; justify-content: space-between !important; width: 100%; position: relative; z-index: 1040; }
  .navbar-toggle { order: 1; }
  .brand-cell { order: 0; flex-direction: row !important; align-items: center !important; }
  .brand-cell .logo { max-height: 42px; }
  .nav-row { align-items: center; padding: 8px 0; }
}

/* 滚动收缩态（JS 加 .small-nav） */
.navbar.small-nav {
  background: rgba(255,255,255,.96);
  box-shadow: 0 8px 28px rgba(16,42,76,.14);
}
.navbar.small-nav .logo { max-height: 42px; }
.navbar.small-nav .navbar-nav > li > a { padding-top: 20px !important; padding-bottom: 20px !important; }
/* 收缩状态下下拉菜单仍正常显示 */
.navbar.small-nav .dropdown-menu { margin-top: 0 !important; }
/* 滚动时电话栏也收缩 */
header.small-header .top_menu { min-height: 0; }
header.small-header .top_name { font-size: 11px; }
header.small-header .top_name .tel { font-size: 13px; }

/* 桌面端单行导航 —— 彻底压制 Bootstrap 3 默认行为 */
@media (min-width: 769px) {
  .navbar { min-height: 80px; }
  /* header 区域：取消 float，改 flex */
  .navbar .navbar-header {
    float: none !important;
    display: flex !important;
    align-items: center;
  }
  /* collapse 区域：强制 flex 横排（覆盖 BS3 的 display:block / display:none） */
  .navbar .navbar-collapse,
  .navbar .navbar-collapse.collapse,
  .navbar .navbar-collapse.collapsing {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 6px !important;
    flex: 1 1 auto !important;
    height: auto !important;
    overflow: visible !important;
  }
  /* 导航列表：不换行 */
  .navbar-nav {
    float: none !important;
    margin: 0 !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center;
    position: relative !important;
    z-index: 1050 !important;
  }
  .navbar-nav > li { position: relative; }
  .navbar-default .navbar-nav > li > a {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }
}

/* CTA 按钮（导航右侧） */
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-left: 12px; padding: 9px 22px; border-radius: 999px;
  background: var(--grad-brand); color:#fff !important; font-weight: 700;
  font-size: 14px; box-shadow: 0 8px 20px rgba(0,185,107,.34);
  white-space: nowrap; flex-shrink: 0;
}
.nav-cta:hover { color:#fff; transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,185,107,.45); }
@media (max-width: 991px) { .nav-cta { display: none; } }

/* ==========================================================================
   英雄区 / Banner（叠加渐变标题层）
   ========================================================================== */
.flash { position: relative; overflow: hidden; margin-top: var(--header-h) !important; }
/* 滚动后保持紧凑，不出现多余间隙 */
.flash.toflash {
  margin-top: var(--header-h) !important;
}
/* min-height + object-fit：窄屏时 banner 不会被压扁，标题也永远不会被裁切 */
.flash img {
  width: 100%; display: block;
  min-height: 460px; max-height: 660px;
  object-fit: cover; object-position: center;
}
.flash .bx-viewport { min-height: 460px; }
.flash div.bx-pager { display: none; }          /* 隐藏旧式圆点 */
.flash .bx-wrapper, .flash .bx-viewport { box-shadow: none !important; border: 0 !important; left: 0 !important; }

/* 叠加层 */
.hero-caption {
  position: absolute; inset: 0; z-index: 5;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 8%;
  color: #fff; pointer-events: none;
  background:
    linear-gradient(105deg, rgba(11,31,58,.86) 0%, rgba(11,31,58,.45) 42%, rgba(10,107,82,.30) 100%);
}
/* 流动光晕 */
.hero-caption::before {
  content:""; position:absolute; width: 60vw; height: 60vw; right: -10vw; top: -20vw;
  background: radial-gradient(circle, rgba(47,227,155,.35), transparent 60%);
  filter: blur(20px); animation: floatOrb 14s ease-in-out infinite;
}
.hero-caption::after {
  content:""; position:absolute; width: 40vw; height: 40vw; left: -8vw; bottom: -16vw;
  background: radial-gradient(circle, rgba(19,194,194,.30), transparent 60%);
  filter: blur(20px); animation: floatOrb 18s ease-in-out infinite reverse;
}
.hero-inner { position: relative; z-index: 2; max-width: 720px; }
.hero-caption .hero-tag {
  display: inline-block; pointer-events: auto;
  padding: 6px 16px; border-radius: 999px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.4);
  font-size: 13px; letter-spacing: 2px; margin-bottom: 18px;
  backdrop-filter: blur(4px);
  animation: fadeUp .9s both;
}
.hero-caption h1 {
  font-size: clamp(28px, 4.4vw, 56px); font-weight: 800; line-height: 1.18;
  margin: 0 0 16px; letter-spacing: 1px;
  text-shadow: 0 4px 24px rgba(0,0,0,.35);
  animation: fadeUp 1s .1s both;
}
.hero-caption h1 .grad {
  background: linear-gradient(90deg, #6effb0, #7df0ff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-caption p {
  font-size: clamp(15px, 1.6vw, 19px); color: rgba(255,255,255,.9);
  max-width: 560px; margin: 0 0 28px; line-height: 1.9;
  animation: fadeUp 1s .2s both;
}
.hero-caption .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp 1s .3s both; }
.hero-caption .hero-actions a { pointer-events: auto; }
.hero-scroll {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  z-index: 3; color: rgba(255,255,255,.85); font-size: 12px; letter-spacing: 2px;
  text-align: center; pointer-events: none;
}
.hero-scroll span { display:block; width: 22px; height: 36px; margin: 0 auto 6px;
  border: 2px solid rgba(255,255,255,.7); border-radius: 14px; position: relative; }
.hero-scroll span::after { content:""; position:absolute; left:50%; top:7px; width:4px; height:8px;
  background:#fff; border-radius:2px; transform:translateX(-50%); animation: scrollDot 1.6s infinite; }

/* ==========================================================================
   首页栏目区块（卡片化）
   ========================================================================== */
.divsetion {
  background: var(--card); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 30px 30px 34px; margin-top: 26px;
  border: 1px solid var(--line);
  transition: transform .35s, box-shadow .35s;
}
.divsetion:hover { box-shadow: var(--shadow); }

.s_title {
  width: 100%; height: auto; margin: 6px auto 22px; padding-bottom: 14px;
  border-bottom: 2px solid var(--line); position: relative;
  display: flex; align-items: baseline; justify-content: space-between;
  font-size: 24px; font-weight: 800; color: var(--ink);
}
.s_title::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 84px; height: 3px;
  border-radius: 3px; background: var(--grad-brand);
}
.s_title .en { font-size: 13px; font-weight: 600; letter-spacing: 2px;
  color: var(--muted); text-transform: uppercase; margin-left: 12px; }
.stitle_a {
  position: static; color: var(--text-2) !important; font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 4px;
}
.stitle_a:hover { color: var(--green-d) !important; }
.stitle_a .more_text { position: relative; }
.stitle_a::after { content: "→"; transition: transform .25s; }
.stitle_a:hover::after { transform: translateX(4px); }
.more_icon { display: none; }

/* 内容网格 */
.s_content .show_img { padding: 0; }
.s_content .show_img img { border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); width: 100%; }
.s_content .con_img { padding: 0 14px 0 0; }
.s_content .imgw {
  width: 100%; border-radius: var(--radius-sm);
  transition: transform .4s, box-shadow .4s;
  box-shadow: var(--shadow-sm);
}
.s_content a:hover .imgw { transform: translateY(-4px); box-shadow: var(--shadow); }
.div_a {
  color: #55606f; display: block; text-align: left; font-size: 14px;
  padding: 7px 0; font-weight: 500;
  border-bottom: 1px dashed var(--line);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  transition: .25s;
}
.div_a::before { content: "▪"; color: var(--green); margin-right: 8px; font-size: 11px; }
.div_a:hover { color: var(--green-d); padding-left: 6px; }

/* ==========================================================================
   核心优势 / 亮点栏（首页新增）
   ========================================================================== */
.features { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 0; }
.features > [class*="col-"] { display: flex; }
.feature-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 26px; text-align: center;
  box-shadow: var(--shadow-sm); transition: transform .35s, box-shadow .35s, border-color .35s;
  position: relative; overflow: hidden; width: 100%; flex-direction: column;
}
.feature-card::before {
  content:""; position:absolute; inset: 0 0 auto 0; height: 4px;
  background: var(--grad-brand); transform: scaleX(0); transform-origin: left;
  transition: transform .4s;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-ico {
  width: 68px; height: 68px; margin: 0 auto 18px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(0,185,107,.14), rgba(19,194,194,.14));
  color: var(--green-d); font-size: 30px; font-weight: 800;
}
.feature-ico svg { width: 32px; height: 32px; fill: none; stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round; }
.feature-card h4 { font-size: 18px; font-weight: 800; color: var(--ink); margin: 0 0 10px; }
.feature-card p { font-size: 14px; color: var(--text-2); margin: 0; line-height: 1.8; flex: 1; }
.feature-card a { color: var(--green-d); font-weight: 700; font-size: 14px; display:inline-block; margin-top:auto; padding-top:14px; }
.feature-card a:hover { letter-spacing: 1px; }

/* 数据条 */
.stat-band {
  margin-top: 30px; border-radius: var(--radius); overflow: hidden;
  background: var(--grad-ink); color: #fff; padding: 36px 20px;
  box-shadow: var(--shadow); position: relative;
}
.stat-band::after { content:""; position:absolute; right:-60px; top:-60px; width:240px; height:240px;
  background: radial-gradient(circle, rgba(47,227,155,.4), transparent 65%); }
.stat { text-align: center; position: relative; z-index: 2; }
.stat .num { font-size: 38px; font-weight: 800; color:#fff;
  background: linear-gradient(90deg,#6effb0,#7df0ff);
  -webkit-background-clip:text; background-clip:text; }
.stat .lbl { font-size: 14px; color: rgba(255,255,255,.82); letter-spacing: 1px; }

/* CTA 行动条 */
.cta-band {
  margin-top: 30px; border-radius: var(--radius); overflow: hidden;
  background: var(--grad-ink); color: #fff; padding: 40px 44px;
  box-shadow: var(--shadow); position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.cta-band::after { content:""; position:absolute; right:-40px; top:-60px; width:260px; height:260px;
  background: radial-gradient(circle, rgba(47,227,155,.4), transparent 65%); }
.cta-band .cta-text { position: relative; z-index: 2; }
.cta-band h3 { font-size: 24px; font-weight: 800; margin: 0 0 8px; }
.cta-band p { margin: 0; color: rgba(255,255,255,.85); font-size: 15px; }
.cta-band .cta-action { position: relative; z-index: 2; }

/* ==========================================================================
   关于我们 / 新闻 / 联系（首页）
   ========================================================================== */
.aboutus { margin-top: 46px; }
.aboutus .about img {
  width: 100%; max-width: 520px; border-radius: var(--radius);
  box-shadow: var(--shadow); display: block;
}
.aboutus h2 {
  color: var(--ink); font-size: 30px; font-weight: 800; margin: 0;
  padding-left: 0; background: none; position: relative;
}
.aboutus h2::after { content:""; display:block; width:64px; height:4px; border-radius:4px;
  background: var(--grad-brand); margin-top: 14px; }
.aboutus span { color: var(--muted); display: block; padding-left: 0; margin: 6px 0 14px;
  font-family: "Times New Roman", serif; text-transform: uppercase; letter-spacing: 2px; }
.aboutus p { line-height: 1.95; font-size: 14px; padding-left: 0; color: var(--text); }
.about_contents { color: var(--text); }
.view-all {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1.5px solid var(--green); border-radius: 999px; color: var(--green-d) !important;
  padding: 9px 26px; font-size: 14px; font-weight: 600; margin-left: 0; margin-top: 12px;
}
.view-all:hover { background: var(--grad-brand); color: #fff !important; border-color: transparent;
  box-shadow: 0 10px 24px rgba(0,185,107,.3); transform: translateY(-2px); }

/* 新闻盒 */
.news_box, .index_contact {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 26px 22px; box-shadow: var(--shadow-sm); margin: 10px 0 18px;
}
.title_h2 { float: left; font-size: 20px; color: var(--ink); margin: 0 0 8px; font-weight: 800;
  position: relative; padding-left: 14px; }
.title_h2::before { content:""; position:absolute; left:0; top:4px; bottom:4px; width:4px;
  border-radius:4px; background: var(--grad-brand); }
.index_news { clear: both; list-style: none; margin: 0; padding: 14px 0 0; }
.index_news li {
  color: #545455; border-bottom: 1px dashed var(--line);
  background: url(../images/li.png) no-repeat left 14px;
  line-height: 1.6; padding: 11px 0; padding-left: 18px; transition: .25s;
}
.index_news li:hover { padding-left: 24px; }
.index_news li a { color: var(--text); font-size: 14px; }
.index_news li a:hover { text-decoration: none; color: var(--green-d); }
.news_time { float: right; color: var(--muted); font-size: 13px; }

/* 友情链接按钮美化 */
.index_contact .btn-group .btn-default {
  border-radius: 999px !important; border-color: var(--line); color: var(--text-2);
  background: #fff;
}
.index_contact .btn-group .btn-default:hover { border-color: var(--green); color: var(--green-d); }

/* ==========================================================================
   内页 Banner（page_bg）
   ========================================================================== */
.page_bg {
  height: 400px; margin-top: var(--header-h) !important; position: relative;
  background-size: cover !important; background-position: center !important;
  display: flex; align-items: center; justify-content: flex-start;
  padding-left: 8%;
}
.page_bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(11,31,58,.78), rgba(10,107,82,.45));
}
.page_bg::before {
  content: ""; position: absolute; right: -40px; top: -40px; width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(47,227,155,.35), transparent 65%); z-index: 1;
}
/* Banner 文字描述区 */
.page_bg .page_banner_text {
  position: relative; z-index: 2; color: #fff; max-width: 620px;
}
.page_bg .page_banner_text h1 {
  font-size: 36px; font-weight: 800; margin: 0 0 14px; letter-spacing: 4px;
  text-shadow: 0 4px 20px rgba(0,0,0,.3); line-height: 1.3;
}
.page_bg .page_banner_text p {
  font-size: 15px; line-height: 1.85; color: rgba(255,255,255,.88);
  margin: 0; letter-spacing: .5px; max-width: 520px;
}

/* ==========================================================================
   内页内容 / 左侧导航
   ========================================================================== */
.list_box {
  clear: both; padding: 30px 32px; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  margin-top: 26px;
}
.left_h2 {
  display: block; margin: 0 0 16px; padding: 0 0 12px; font-size: 22px; font-weight: 800;
  color: var(--ink); text-transform: none; border-bottom: 2px solid var(--line); position: relative;
}
.left_h2::after { content:""; position:absolute; left:0; bottom:-2px; width:70px; height:3px;
  border-radius:3px; background: var(--grad-brand); }

/* 左侧导航 */
.left_nav { clear: both; padding: 22px 22px; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm); margin-bottom: 22px; }
.left_nav_ul { list-style: none; margin: 14px 0 0; padding: 0; }
.left_nav_ul > li {
  position: relative; border-bottom: 1px solid var(--line);
  background: url(../images/left_li.gif) 6px 16px no-repeat; padding: 4px 0 4px 18px;
}
.left_nav_ul > li > a {
  display: block; text-decoration: none; color: #36425a; font-weight: 600; font-size: 15px;
  padding: 8px 10px; border-radius: 8px; transition: .25s;
}
.left_nav_ul > li > a:hover,
.left_nav_ul li a.left_active,
.left_nav_ul > li > a.menucur {
  color: #fff; background: var(--grad-brand); padding-left: 16px;
  box-shadow: 0 6px 16px rgba(0,185,107,.28);
}
ul.left_snav_ul > li > a:hover { color: var(--green-d); }

/* 文章内容 */
.contents { clear: both; padding: 6px 2px 20px; line-height: 2; color: #45506a; font-size: 15px; }
.contents_title { margin: 0; padding: 14px 0; text-align: center; color: var(--ink);
  font-size: 24px; font-weight: 800; line-height: 1.5; }
.contents img { max-width: 100%; border-radius: var(--radius-sm); margin: 10px 0; }

/* 新闻列表 */
.list_news { clear: both; list-style: none; margin: 0; padding: 0 0 20px; }
.list_news li {
  color: #5a6478; background: url(../images/li.png) no-repeat left 16px;
  line-height: 1.7; padding: 12px 0; padding-left: 16px; border-bottom: 1px dashed var(--line);
  transition: .25s;
}
.list_news li:hover { padding-left: 22px; }
.list_news li a { color: #36425a; font-size: 15px; }
.list_news li a:hover { text-decoration: none; color: var(--green-d); }

/* 分页 */
.page { clear: both; margin: 24px 0 4px; text-align: center; }
.page a, .page .current {
  display: inline-block; font-family: Arial; font-size: 14px; border: 1px solid var(--line);
  padding: 7px 14px; margin: 3px; color: var(--text-2); text-decoration: none; border-radius: 8px;
  transition: .25s;
}
.page a:hover, .page a:focus { border-color: var(--green); color: #fff; background: var(--grad-brand);
  box-shadow: 0 6px 16px rgba(0,185,107,.28); }
.page .current { border: 1px solid var(--green-d); color: #fff; background: var(--grad-brand); }

/* ==========================================================================
   产品 / 案例网格
   ========================================================================== */
.product_list { clear: both; padding: 20px 0 0; display: flex; flex-wrap: wrap; gap: 24px 16px; }
.product_img { padding-left: 0; padding-right: 0; min-height: 0; margin-bottom: 0; flex: 0 0 calc(33.333% - 11px); max-width: calc(33.333% - 11px); }
.product_img a { display: block; border-radius: var(--radius-sm);
  border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm); transition: .35s; padding: 10px; }
.product_img a:hover { box-shadow: var(--shadow); transform: translateY(-6px); border-color: transparent; }
.product_img img {
  margin: 0 auto; display: block; max-width: 100%; height: auto;
  transition: transform .5s; object-fit: contain;
}
.product_img a:hover img { transform: scale(1.04); }
.product_title { margin: 12px 0 0; height: auto; text-align: center; }
.product_title a { color: #36425a; font-weight: 600; font-size: 15px; }
.product_title a:hover { text-decoration: none; color: var(--green-d); }
.product_img a.js-lightbox { cursor: zoom-in; }

/* 产品图片弹窗预览 (Lightbox) */
.img-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  display: none; align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(8, 15, 26, .82);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.img-lightbox.open { display: flex; animation: lb-fade .25s ease; }
@keyframes lb-fade { from { opacity: 0; } to { opacity: 1; } }
.img-lightbox__inner { max-width: 92vw; max-height: 88vh; text-align: center; }
.img-lightbox__inner img {
  max-width: 92vw; max-height: 78vh; width: auto; height: auto;
  border-radius: 12px; background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .55);
  animation: lb-pop .3s cubic-bezier(.2, .8, .3, 1);
}
@keyframes lb-pop { from { transform: scale(.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.img-lightbox__caption { color: #e8eef6; margin: 16px 0 0; font-size: 15px; letter-spacing: .5px; }
.img-lightbox__close {
  position: absolute; top: 18px; right: 22px;
  width: 44px; height: 44px; border: none; border-radius: 50%;
  background: rgba(255, 255, 255, .12); color: #fff;
  font-size: 26px; line-height: 1; cursor: pointer; transition: .25s;
}
.img-lightbox__close:hover { background: var(--green-d); transform: rotate(90deg); }
body.lb-open { overflow: hidden; }

/* 产品详情 */
.showpic_box, .proinfo_box { margin: 26px 0 20px; }
.product_h1 { margin: 0; line-height: 1.5; font-size: 20px; color: var(--ink); font-weight: 800;
  padding-bottom: 12px; border-bottom: 2px solid var(--line); }
.product_info { list-style: none; padding: 0; margin-top: 14px; }
.product_info li { line-height: 1.9; padding-bottom: 10px; color: var(--text); }
.product_con { clear: both; border-top: 1px dashed var(--line); margin: 14px 0 20px; padding: 22px 0 0;
  line-height: 2; color: #45506a; }
.related_h1 { padding: 24px 0 12px; color: var(--ink); margin: 0; display: block; font-weight: 800;
  font-size: 22px; border-bottom: 2px solid var(--line); }

/* ==========================================================================
   表单（留言 / 联系）
   ========================================================================== */
.feedback { margin-top: 26px; margin-bottom: 30px; }
.form-horizontal .form-group { margin: 0 -10px 18px; }
.form-horizontal .control-label { text-align: right; color: var(--ink); font-weight: 600; padding-top: 10px; }
.form-control {
  border-radius: 10px; border: 1px solid var(--line); box-shadow: none !important;
  height: 46px; padding: 10px 14px; font-size: 14px; color: var(--text); transition: .25s;
  background: #fbfdff;
}
textarea.form-control { height: auto; }
.form-control:focus { border-color: var(--green); background: #fff;
  box-shadow: 0 0 0 4px rgba(0,185,107,.14) !important; }
.btn-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 38px; border-radius: 999px; border: none; color: #fff !important;
  background: var(--grad-brand); font-weight: 700; font-size: 15px; letter-spacing: 1px;
  box-shadow: 0 10px 24px rgba(0,185,107,.32); transition: .25s;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(0,185,107,.42); color:#fff; }
.codeimg { margin: 0 0 -10px -18px; }
.page-btn { background-color: var(--green-d); border: none; }
.page-btn:hover, .page-btn:focus { background-color: var(--green); }

/* ==========================================================================
   上一个 / 下一个
   ========================================================================== */
.point { clear: both; margin: 20px 0 30px; padding: 18px 22px; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  line-height: 1.8; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.point span.to_prev a, .point span.to_next a { color: var(--green-d); font-weight: 600; }
.point span.to_prev a:hover, .point span.to_next a:hover { color: var(--ink); }

/* ==========================================================================
   经营许可页 · 高端重设计
   ========================================================================== */

/* ─── 左侧导航栏（深色渐变品牌风） ─── */
.left_nav {
  clear: both; padding: 0 !important;
  background: linear-gradient(160deg, #0b1f3a 0%, #0d3a5c 40%, #006b54 100%) !important;
  border: none !important; border-radius: var(--radius-lg) !important;
  box-shadow: 0 12px 40px rgba(11,31,58,.3), inset 0 1px 0 rgba(255,255,255,.08) !important;
  overflow: hidden; position: relative;
}
.left_nav::before {
  content: ""; position: absolute; top: -40%; right: -30%; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(19,194,194,.15), transparent 65%);
  pointer-events: none;
}
.left_nav::after {
  content: ""; position: absolute; bottom: -20%; left: -20%; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,185,107,.12), transparent 65%);
  pointer-events: none;
}
.left_nav .left_h2 {
  color: #fff !important; font-size: 20px; font-weight: 800;
  margin: 0; padding: 28px 24px 16px; border-bottom: 1px solid rgba(255,255,255,.1);
  background: transparent; letter-spacing: 2px; text-align: center;
}
.left_nav .left_h2::after { display: none; }
/* 品牌副标题区 */
.left_nav .brand-sub {
  display: block; text-align: center; padding: 4px 20px 18px;
  color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.6;
}
.left_nav .brand-sub strong { color: var(--green-l); font-weight: 700; }
/* 侧栏装饰图 */
.left_nav .sidebar-hero {
  display: block; width: 100%; height: auto; max-height: 260px;
  object-fit: cover; object-position: center top;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0));
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0));
}
/* 侧栏菜单 */
.left_nav_ul { list-style: none; margin: 0 !important; padding: 0 14px 16px !important; }
.left_nav_ul > li {
  position: relative; border: none !important;
  background: none !important; padding: 0 !important;
  margin: 2px 0;
}
.left_nav_ul > li > a {
  display: block; text-decoration: none;
  color: rgba(255,255,255,.78) !important; font-weight: 500; font-size: 14px;
  padding: 10px 16px 10px 28px; border-radius: 10px; transition: .25s;
  position: relative; border-left: 3px solid transparent;
}
.left_nav_ul > li > a::before {
  content: ""; position: absolute; left: 12px; top: 50%;
  transform: translateY(-50%); width: 6px; height: 6px;
  border-radius: 50%; background: rgba(255,255,255,.25);
  transition: .25s;
}
.left_nav_ul > li > a:hover,
.left_nav_ul li a.left_active,
.left_nav_ul > li > a.menucur {
  color: #fff !important; background: rgba(255,255,255,.1) !important;
  border-left-color: var(--green-l) !important; padding-left: 28px !important;
  box-shadow: none !important;
}
.left_nav_ul > li > a:hover::before,
.left_nav_ul li a.left_active::before,
.left_nav_ul > li > a.menucur::before {
  background: var(--green-l); box-shadow: 0 0 8px rgba(74,222,128,.5);
}

/* ─── 二级菜单（深色侧栏内） ─── */
.left_nav ul.left_snav_ul {
  display: none; padding: 4px 0 8px 10px; margin: 2px 0 4px 22px;
  border-left: 1px solid rgba(255,255,255,.12);
}
.left_nav ul.left_snav_ul > li { padding: 0 !important; margin: 0; background: none !important; }
.left_nav ul.left_snav_ul > li > a {
  display: block; position: relative; color: rgba(255,255,255,.6) !important;
  font-size: 13.5px; padding: 8px 12px 8px 18px !important; border-radius: 8px; transition: .2s;
}
.left_nav ul.left_snav_ul > li > a::before {
  content: ""; position: absolute; left: 4px; top: 50%; transform: translateY(-50%);
  width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.25); transition: .2s;
}
.left_nav ul.left_snav_ul > li > a:hover,
.left_nav ul.left_snav_ul > li > a.cur {
  color: var(--green-l) !important; background: rgba(255,255,255,.08) !important; text-decoration: none;
}
.left_nav ul.left_snav_ul > li > a.cur::before,
.left_nav ul.left_snav_ul > li > a:hover::before {
  background: var(--green-l); box-shadow: 0 0 8px rgba(74,222,128,.5);
}

/* 一级菜单展开图标 + 展开态高亮 */
.left_nav .menu_head {
  color: rgba(255,255,255,.7) !important; top: 8px; right: 12px;
  width: 24px; height: 30px; line-height: 30px; font-size: 18px; font-weight: 700;
}
.left_nav .menu_head:hover { color: var(--green-l) !important; }
.left_nav_ul > li.open > a.biglink {
  background: rgba(255,255,255,.1) !important; border-left-color: var(--green-l) !important; color: #fff !important;
}
.left_nav_ul > li.open > a.biglink::before {
  background: var(--green-l); box-shadow: 0 0 8px rgba(74,222,128,.5);
}

/* ─── 内容区产品卡片网格（数据库内容内的 table/img 布局） ─── */
.contents {
  clear: both; padding: 4px 4px 30px; line-height: 1.9; color: #3a4558; font-size: 15px;
}
.contents_title {
  margin: 0; padding: 20px 0 12px; text-align: center; color: var(--ink);
  font-size: 24px; font-weight: 800; line-height: 1.5;
}
.contents img {
  max-width: 100%; border-radius: var(--radius); margin: 12px 0;
  transition: transform .3s, box-shadow .3s;
}
.contents img:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

/* 数据库内容中的表格 → 产品卡片网格 */
.contents table {
  width: 100% !important; border-collapse: separate; border-spacing: 16px 12px;
  background: transparent !important; margin: 16px 0;
}
.contents table td,
.contents table th {
  background: transparent !important; border: none !important; padding: 0 !important;
  vertical-align: top;
}
/* 单元格内图片 → 卡片封面 */
.contents table td img:first-child,
.contents table td > a > img:first-child {
  width: 100% !important; max-width: 100% !important;
  border-radius: var(--radius) var(--radius) 0 0 !important;
  margin: 0 0 8px 0 !important;
  object-fit: cover; aspect-ratio: 4/3;
  transition: transform .4s;
}
.contents table td:hover img:first-child,
.contents table td > a:hover > img:first-child {
  transform: scale(1.03);
}
/* 单元格整体 → 卡片容器 */
.contents table td {
  background: #fff !important; border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-sm) !important;
  overflow: hidden; transition: .3s;
  padding: 12px 16px 16px !important;
}
.contents table td:hover {
  box-shadow: var(--shadow) !important;
  border-color: var(--green-m) !important;
  transform: translateY(-4px);
}
/* 卡片内文字列表 */
.contents table td ul {
  list-style: none !important; padding: 0 !important; margin: 8px 0 0 !important;
}
.contents table td ul li {
  padding: 4px 0 4px 18px !important; position: relative;
  color: #4a5568; font-size: 13.5px; line-height: 1.7;
  border-bottom: none !important; background: none !important;
}
.contents table td ul li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--grad-brand);
}
.contents table td ul li a { color: var(--green-d); font-weight: 600; }
.contents table td ul li a:hover { color: var(--ink); }

/* ─── 10 步流程时间线（高端版） ─── */
.process-timeline {
  position: relative; margin: 20px 0 16px; padding: 24px 8px 14px;
  background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
  border-radius: var(--radius-lg); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.process-timeline::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-brand);
}
/* 时间线连接线 */
.timeline-track {
  position: relative; display: flex; justify-content: space-between;
  align-items: flex-start; margin-top: 20px; padding: 0 10px;
  z-index: 2;
}
.timeline-track::before {
  content: ""; position: absolute; top: 28px; left: 40px; right: 40px;
  height: 3px; background: linear-gradient(90deg,
    #ff6b6b, #ffa94d, #ffd43b, #69db7c, #38d9a9,
    #3bc9db, #4dabf7, #748ffc, #9775fa, #da77f2);
  border-radius: 3px; z-index: 0;
}
/* 每个步骤 */
.step-item {
  display: flex; flex-direction: column; align-items: center;
  width: 80px; position: relative; z-index: 1;
}
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 800; color: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.15), inset 0 -2px 6px rgba(0,0,0,.1);
  position: relative; transition: .3s; cursor: default;
  /* 渐变色按步骤分配 */
}
.step-item:nth-child(1) .step-num { background: linear-gradient(135deg,#ff6b6b,#ee5a5a); }
.step-item:nth-child(2) .step-num { background: linear-gradient(135deg,#ffa94d,#fd8f3c); }
.step-item:nth-child(3) .step-num { background: linear-gradient(135deg,#ffd43b,#fab005); }
.step-item:nth-child(4) .step-num { background: linear-gradient(135deg,#69db7c,#51cf66); }
.step-item:nth-child(5) .step-num { background: linear-gradient(135deg,#38d9a9,#20c997); }
.step-item:nth-child(6) .step-num { background: linear-gradient(135deg,#3bc9db,#22b8cf); }
.step-item:nth-child(7) .step-num { background: linear-gradient(135deg,#4dabf7,#339af0); }
.step-item:nth-child(8) .step-num { background: linear-gradient(135deg,#748ffc,#5c7cfa); }
.step-item:nth-child(9) .step-num { background: linear-gradient(135deg,#9775fa,#845ef7); }
.step-item:nth-child(10) .step-num { background: linear-gradient(135deg,#da77f2,#cc5de8); }

.step-num:hover { transform: scale(1.12) translateY(-3px); box-shadow: 0 10px 26px rgba(0,0,0,.2); }

.step-label {
  margin-top: 10px; font-size: 12px; font-weight: 600; color: #36425a;
  text-align: center; line-height: 1.4; max-width: 80px;
}

/* 步骤图标图片（可选：如果内容中有流程图） */
.contents .process-img {
  width: 100%; border-radius: var(--radius); margin: 16px 0;
  box-shadow: var(--shadow-sm);
}

/* ─── 联系我们卡片（侧栏底部） ─── */
.index_contact {
  background: linear-gradient(160deg, #f0fdf6 0%, #fff 100%) !important;
  border: 1px solid rgba(0,185,107,.2) !important;
  border-radius: var(--radius-lg) !important;
  padding: 22px 20px !important; margin-top: 18px;
  box-shadow: var(--shadow-sm) !important;
}
.index_contact .left_h2 {
  color: var(--green-d) !important; font-size: 17px !important;
  border-bottom-color: rgba(0,185,107,.2) !important;
  padding-bottom: 10px !important; margin-bottom: 12px !important;
}
.index_contact p { color: #4a5568; font-size: 13px; line-height: 1.8; margin: 0; }

/* ─── "更多"链接 ─── */
.more-link {
  display: inline-flex; align-items: center; gap: 4px;
  float: right; color: #9aa6b6; font-size: 13px; font-weight: 500;
  padding: 6px 14px; border-radius: 999px; border: 1px solid var(--line);
  transition: .25s; text-decoration: none !important;
}
.more-link:hover { color: var(--green-d); border-color: var(--green-m); }

/* 经营许可页响应式 */
@media (max-width: 991px) {
  .left_nav { margin-bottom: 20px; }
  .left_nav .sidebar-hero { max-height: 200px; }
  .timeline-track { flex-wrap: wrap; gap: 8px; justify-content: center; }
  .timeline-track::before { display: none; }
  .step-item { width: 72px; margin: 4px; }
  .step-num { width: 48px; height: 48px; font-size: 15px; }
  .contents table { border-spacing: 8px 8px; }
}
@media (max-width: 640px) {
  .step-label { font-size: 11px; max-width: 70px; }
  .contents table { border-spacing: 4px 4px; }
}

/* ==========================================================================
   底部（多栏高端）
   ========================================================================== */
footer {
  text-align: left; background: var(--grad-ink); color: #c7d4e6; padding: 0; margin-top: 20px;
  font-size: 14px; position: relative; overflow: hidden;
}
footer::before { content:""; position:absolute; left:-80px; bottom:-80px; width:320px; height:320px;
  background: radial-gradient(circle, rgba(47,227,155,.22), transparent 65%); }
.foot-grid {
  position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 38px;
  padding: 54px 20px 30px;
}
.foot-col h4 { color: #fff; font-size: 17px; font-weight: 800; margin: 0 0 18px; position: relative; padding-left: 14px; }
.foot-col h4::before { content:""; position:absolute; left:0; top:3px; bottom:3px; width:4px; border-radius:4px;
  background: var(--grad-brand); }
.foot-col p { color: #b6c4d8; line-height: 2; margin: 0 0 6px; font-size: 14px; }
.foot-col a { color: #b6c4d8; display: block; padding: 5px 0; font-size: 14px; transition: .2s; }
.foot-col a:hover { color: var(--green-l); padding-left: 6px; }
.foot-brand .f-logo { max-height: 56px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: .92; }
.foot-brand p { font-size: 14px; }
.foot-contact .ic { display:inline-block; width:22px; color: var(--green-l); font-weight:700; }
.foot-qr { background:#fff; border-radius: 12px; padding: 8px; width: 120px; margin-top: 6px; }
.foot-bottom {
  position: relative; z-index: 2; border-top: 1px solid rgba(255,255,255,.12);
  text-align: center; padding: 18px 20px; color: #9fb0c8; font-size: 13px; line-height: 1.9;
}
.foot-bottom a { color: #9fb0c8; }
.foot-bottom a:hover { color: var(--green-l); }

@media (max-width: 900px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 560px) {
  .foot-grid { grid-template-columns: 1fr 1fr; padding: 40px 20px 24px; gap: 20px 16px; }
  .foot-brand { grid-column: 1 / -1; }
  .foot-contact { grid-column: 1 / -1; }
}

/* ==========================================================================
   悬浮咨询窗（玻璃药丸）
   ========================================================================== */
.zaixian_div { z-index: 990; }
.consult {
  position: fixed; right: 18px; bottom: 90px; z-index: 990; padding: 0;
  background: transparent; display: flex; flex-direction: column; gap: 12px;
}
.consult li {
  width: 54px; height: 54px; line-height: 1; text-align: center; list-style: none;
}
.consult li a {
  width: 54px; height: 54px; margin: 0; display: flex; align-items: center; justify-content: center;
  border-radius: 16px; background: rgba(255,255,255,.9); backdrop-filter: blur(8px);
  box-shadow: var(--shadow); transition: .25s;
}
.consult li a:hover { background: var(--grad-brand); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.consult li a img { width: 24px; height: 24px; filter: grayscale(0); }
.consult li a:hover img { filter: brightness(0) invert(1); }
.consult li a span { display: none; }

/* 微信浮窗 */
.wcontainer {
  position: fixed; right: 84px; top: auto; bottom: 150px; z-index: 990; width: 130px; height: auto;
  background: rgba(255,255,255,.95); backdrop-filter: blur(8px); border-radius: 14px;
  box-shadow: var(--shadow); padding: 12px; text-align: center;
}
.w_title { font-size: 14px; text-align: center; color: var(--green-d); font-weight: 700; margin-bottom: 8px; }
.w_content { background: url(../images/weixin.jpg) center/cover no-repeat; height: 100px; border-radius: 8px; }

/* ==========================================================================
   动画
   ========================================================================== */
@keyframes fadeUp { from { opacity:0; transform: translateY(26px);} to {opacity:1; transform:none;} }
@keyframes floatOrb { 0%,100% { transform: translate(0,0);} 50% { transform: translate(20px,-26px);} }
@keyframes scrollDot { 0% {opacity:0; transform: translate(-50%,0);} 40%{opacity:1;} 80%,100%{opacity:0; transform: translate(-50%,12px);} }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* 尊重无障碍：减少动态 */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-caption::before, .hero-caption::after, .hero-scroll span::after { animation: none !important; }
}

/* ==========================================================================
   响应式微调
   ========================================================================== */
@media (max-width: 768px) {
  .flash { margin-top: var(--header-h); }
  /* 手机端 banner 降低高度，避免过长 */
  .flash img { min-height: 380px; max-height: 460px; }
  .flash .bx-viewport { min-height: 380px; }
  .page_bg { height: 240px; margin-top: var(--header-h); padding-left: 5%; }
  .page_bg .page_banner_text h1 { font-size: 24px; letter-spacing: 2px; margin-bottom: 10px; }
  .page_bg .page_banner_text p { font-size: 13px; }
  .hero-caption { padding: 0 7%; }
  .divsetion { padding: 22px 18px 24px; }
  .list_box { padding: 22px 18px; }
  /* 移动端新闻列表优化 */
  .list_news li { padding: 14px 0 14px 20px; font-size: 14px; background-position: left 8px; }
  .list_news li a { font-size: 14px; }
  .news_time { float: none; display: block; margin-top: 4px; font-size: 12px; }
  .aboutus .about img { display: block; margin: 0 auto 20px; }
  .consult { bottom: 76px; }
  .s_content .con_img { padding: 0; }

  /* 移动端：电话栏 + 导航恢复 Bootstrap 默认 */
  .top_menu {
    position: fixed;
    min-height: 30px;
  }
  .top_menu .container { justify-content: center; }
  .top_name { font-size: 11px; }
  .top_name .tel { font-size: 13px; }

  .nav-row {
    flex-wrap: nowrap !important;
    gap: 0 !important;
    position: relative;
  }
  .navbar .navbar-collapse,
  .navbar .navbar-collapse.collapse {
    display: none !important;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff;
    box-shadow: 0 8px 24px rgba(16,42,76,.12);
    border-top: 1px solid #eee;
    max-height: 70vh; overflow-y: auto;
  }
  .navbar .navbar-collapse.in,
  .navbar .navbar-collapse.collapsing.in {
    display: block !important;
  }
  /* 移动端菜单项 */
  .navbar-nav { margin: 0; padding: 8px 0; }
  .navbar-nav > li { float: none; }
  .navbar-nav > li > a {
    display: block; padding: 14px 20px !important;
    font-size: 15px !important; border-bottom: 1px solid #f2f4f7;
    color: #23304a !important;
  }
  .navbar-nav > li:last-child > a { border-bottom: none; }
  .navbar-nav > li > a::after { display: none !important; }
  /* 移动端下拉菜单 */
  .dropdown-menu {
    position: static !important; float: none;
    background: #f8fafd; box-shadow: none; border: none;
    border-radius: 0; margin: 0; padding: 0;
    display: none;
  }
  .open > .dropdown-menu { display: block; }
  .dropdown-menu > li > a {
    padding: 12px 32px !important; font-size: 13px !important;
    border-bottom: 1px solid #eee;
  }
  /* 隐藏桌面端下拉箭头 */
  #app_menudown { display: none !important; }
  .brand-cell {
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px !important;
  }
}
@media (max-width: 991px) and (min-width: 769px) {
  .navbar-default .navbar-nav > li > a { font-size: 13px; padding-left: 10px; padding-right: 10px; }
}

/* ==========================================================================
   首页 · 经营许可模块（license-module）
   ========================================================================== */
.license-module {
  padding: 32px 0 24px;
  background: linear-gradient(180deg, #f8fbfd 0%, #fff 100%);
}
.lm-header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 2px solid var(--line);
}
.lm-title {
  font-size: 28px; font-weight: 800; color: var(--navy);
  margin: 0; letter-spacing: 1px;
}
.lm-sub {
  display: block; font-size: 14px; font-weight: 400; color: #8896a7;
  margin-top: 4px; letter-spacing: 0;
}
.lm-more {
  font-size: 14px; color: var(--green-d); font-weight: 600;
  text-decoration: none; transition: color .25s;
  white-space: nowrap;
}
.lm-more:hover { color: var(--navy); }
.lm-more span { margin-left: 4px; transition: transform .25s; }
.lm-more:hover span { transform: translateX(4px); }

/* 左右布局 */
.lm-body {
  display: flex; gap: 28px; align-items: flex-start;
}

/* ── 左侧品牌栏（填满高度） ── */
.lm-sidebar { flex: 0 0 260px; display: flex; flex-direction: column; }
.sidebar-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform .35s, box-shadow .35s;
  flex: 1; /* 填满剩余高度 */
  display: flex;
  flex-direction: column;
}
.sidebar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(11,31,58,.14);
}
.sidebar-img {
  width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: top center;
  flex: 1; min-height: 0;
}
.sidebar-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 18px 20px;
  background: linear-gradient(transparent, rgba(11,31,58,.82));
  color: #fff;
}
.sidebar-overlay h3 {
  font-size: 20px; font-weight: 700; margin: 0 0 6px;
}
.sidebar-overlay p {
  font-size: 13px; line-height: 1.6; margin: 0; opacity: .85;
}

/* ── 右侧内容区 ── */
.lm-main { flex: 1; min-width: 0; }

/* ── 四分类卡片网格（两行等高） ── */
.lc-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr 1fr;   /* 强制两行等高 */
  gap: 20px; margin-bottom: 36px;
}
.lc-card {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  overflow: hidden;
  display: flex; align-items: stretch;
  transition: transform .3s, box-shadow .3s;
}
.lc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

/* 卡片图片区（固定高度，所有卡片一致） */
.lc-card-img {
  flex: 0 0 130px; overflow: hidden;
  align-self: stretch;   /* 撑满卡片高度 */
}
.lc-card-img a { display: block; width: 100%; height: 100%; }
.lc-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s;
}
.lc-card:hover .lc-card-img img { transform: scale(1.08); }

/* 卡片文字区 */
.lc-card-body {
  flex: 1; padding: 16px 18px 14px;
  display: flex; flex-direction: column;
}
.lc-card-body h4 {
  margin: 0 0 10px; font-size: 16px; font-weight: 700;
  line-height: 1.35;
}
.lc-card-body h4 a {
  color: var(--navy); text-decoration: none;
  transition: color .25s;
}
.lc-card-body h4 a:hover { color: var(--green-d); }

/* 列表链接 */
.lc-list {
  list-style: none; padding: 0; margin: 0;
  flex: 1;
}
.lc-list li {
  position: relative; padding: 4px 0 4px 14px;
  font-size: 13px; line-height: 1.55;
}
.lc-list li::before {
  content: ""; position: absolute; left: 0; top: 12px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--grad-brand);
}
.lc-list li a {
  color: #556680; text-decoration: none;
  transition: color .2s, padding-left .2s;
  display: inline-block;
}
.lc-list li a:hover {
  color: var(--green-d); padding-left: 3px;
}

/* ── 10步流程时间线（纯CSS，替换旧PNG） ── */
.process-timeline {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  padding: 30px 24px 28px; overflow: hidden;
}
.pt-header {
  text-align: center; margin-bottom: 26px;
}
.pt-header h3 {
  font-size: 20px; font-weight: 700; color: var(--navy); margin: 0 0 4px;
}
.pt-header p {
  font-size: 13px; color: #8896a7; margin: 0;
}

/* 时间线轨道 */
.pt-track {
  position: relative; display: flex;
  justify-content: space-between; align-items: flex-start;
  padding: 10px 0 0;
}
/* 连接线 */
.pt-line {
  position: absolute; top: 22px; left: 40px; right: 40px;
  height: 3px; border-radius: 3px;
  background: linear-gradient(90deg,
    #e74c3c, #e67e22, #f1c40f, #2ecc71, #1abc9c,
    #3498db, #9b59b6, #e91e63, #ff7043, #00bcd4
  );
  z-index: 0;
}

/* 每个步骤 */
.pt-step {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  flex: 1; min-width: 0;
}
/* 数字徽章 */
.pt-num {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  font-size: 14px; font-weight: 800; color: #fff;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  transition: transform .3s, box-shadow .3s;
  /* 每个步骤独立渐变色 */
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}
.pt-step[data-step="02"] .pt-num { background: linear-gradient(135deg, #e67e22, #d35400); }
.pt-step[data-step="03"] .pt-num { background: linear-gradient(135deg, #f1c40f, #f39c12); }
.pt-step[data-step="04"] .pt-num { background: linear-gradient(135deg, #2ecc71, #27ae60); }
.pt-step[data-step="05"] .pt-num { background: linear-gradient(135deg, #1abc9c, #16a085); }
.pt-step[data-step="06"] .pt-num { background: linear-gradient(135deg, #3498db, #2980b9); }
.pt-step[data-step="07"] .pt-num { background: linear-gradient(135deg, #9b59b6, #8e44ad); }
.pt-step[data-step="08"] .pt-num { background: linear-gradient(135deg, #e91e63, #c2185b); }
.pt-step[data-step="09"] .pt-num { background: linear-gradient(135deg, #ff7043, #e64a19); }
.pt-step[data-step="10"] .pt-num { background: linear-gradient(135deg, #00bcd4, #0097a7); }

.pt-step:hover .pt-num {
  transform: scale(1.18) translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,.22);
}

/* 标签文字 */
.pt-label {
  font-size: 12px; color: #556680; text-align: center;
  line-height: 1.45; max-width: 72px;
  transition: color .25s;
}
.pt-step:hover .pt-label { color: var(--navy); font-weight: 600; }

/* ── 响应式 ── */
@media (max-width: 991px) {
  .lm-body { flex-direction: column; }
  .lm-sidebar { flex: none; width: 100%; max-width: 320px; margin: 0 auto 24px; }
  .lc-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .lc-card-img { flex: 0 0 100px; }
  .lc-card-body { padding: 12px 14px 10px; }
  .lc-card-body h4 { font-size: 14px; }
  .lc-list li { font-size: 12px; }
  .pt-track { flex-wrap: wrap; justify-content: center; gap: 8px 0; }
  .pt-line { display: none; }
  .pt-step { flex: 0 0 18%; }
  .pt-num { width: 38px; height: 38px; font-size: 12px; }
  .pt-label { font-size: 11px; max-width: 56px; }
}

@media (max-width: 600px) {
  .license-module { padding: 36px 0 28px; }
  .lm-title { font-size: 22px; }
  .lc-grid { grid-template-columns: 1fr; }
  .lc-card { flex-direction: row; }
  .lc-card-img { flex: 0 0 90px; }
  .process-timeline { padding: 20px 14px 16px; }
  .pt-step { flex: 0 0 17%; }
  .pt-num { width: 34px; height: 34px; font-size: 11px; margin-bottom: 6px; }
  .pt-label { font-size: 10px; max-width: 48px; }
}

/* ==========================================================================
   首页 · 生产注册模块（sczc-module）—— 复用 license-module 全部样式
   ========================================================================== */
.sczc-module {
  padding: 32px 0 20px;
  background: linear-gradient(180deg, #f8fbfd 0%, #fff 100%);
}

/* ==========================================================================
   首页 · 新闻中心（news-module）—— 统一紧凑卡片布局
   ========================================================================== */
.news-module {
  padding: 32px 0 20px;
  background: #fff;
}

/* 头部 */
.nm-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 18px;
}
.nm-title {
  font-size: 28px; font-weight: 800; color: var(--ink); margin: 0 0 6px;
  letter-spacing: 1px; position: relative; display: inline-block;
}
.nm-title::after {
  content: ''; display: block; width: 40px; height: 3px;
  background: var(--grad-brand); border-radius: 2px; margin-top: 8px;
}
.nm-sub {
  font-size: 13px; color: var(--text-2); margin: 0;
  letter-spacing: 2px;
}
.nm-more {
  display: inline-flex; align-items: center;
  font-size: 13px; color: var(--green-d);
  border: 1px solid var(--line); border-radius: 24px;
  padding: 7px 20px; transition: .3s; background: #fff;
}
.nm-more:hover { color: #fff; border-color: transparent; background: var(--grad-brand);
  box-shadow: 0 4px 14px rgba(0,185,107,.20); }

/* 新闻网格 —— 3列统一卡片 */
.nm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* ---------- 所有卡片统一样式 ---------- */
.nm-card {
  display: flex; gap: 14px; padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid transparent;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(11,31,58,.04);
  transition: .3s; position: relative;
}
/* 左侧彩色边框（循环色） */
.nm-card:nth-child(3n+1) { border-left-color: #00b96b; }
.nm-card:nth-child(3n+2) { border-left-color: #13c2c2; }
.nm-card:nth-child(3n+3) { border-left-color: #e0a94a; }

.nm-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 26px rgba(11,31,58,.10);
}

/* 日期块 —— 左侧竖向 */
.nm-card-date {
  flex-shrink: 0; width: 52px; text-align: center;
  display: flex; flex-direction: column; justify-content: center;
  padding: 8px 0;
}
.nm-day {
  display: block; font-size: 22px; font-weight: 800;
  line-height: 1.1;
}
.nm-month {
  display: block; font-size: 10px; font-weight: 500;
  margin-top: 3px; letter-spacing: 0.5px;
}
/* 日期颜色跟随左边框 */
.nm-card:nth-child(3n+1) .nm-day,
.nm-card:nth-child(3n+1) .nm-month { color: #00b96b; }
.nm-card:nth-child(3n+2) .nm-day,
.nm-card:nth-child(3n+2) .nm-month { color: #13c2c2; }
.nm-card:nth-child(3n+3) .nm-day,
.nm-card:nth-child(3n+3) .nm-month { color: #c98a2f; }

/* 卡片内容 */
.nm-card-body { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.nm-card-title {
  font-size: 14px; font-weight: 600; color: var(--ink); margin: 0;
  line-height: 1.5;
  overflow: hidden; text-overflow: ellipsis;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  white-space: normal;
}
.nm-card-title:hover { color: var(--green-d); }

/* 摘要和标签隐藏 */
.nm-card-excerpt { display: none; }
.nm-card-tag { display: none; }

/* 友情链接 */
.nm-links {
  margin-top: 32px; padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 14px;
}
.nm-links-label {
  font-size: 12px; color: var(--muted); white-space: nowrap;
}
.nm-links-list {
  list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px;
}
.nm-links-list li a {
  font-size: 12px; color: var(--text-2); padding: 3px 12px;
  border-radius: 16px; border: 1px solid var(--line); transition: .25s; background: #fff;
}
.nm-links-list li a:hover { color: var(--green-d); border-color: var(--green-l); }

/* 响应式 */
@media (max-width: 992px) {
  .nm-grid { grid-template-columns: repeat(2, 1fr); }
  .product_img { flex: 0 0 calc(50% - 8px); max-width: calc(50% - 8px); }
}
@media (max-width: 600px) {
  .nm-grid { grid-template-columns: 1fr; }
  .product_img { flex: 0 0 100%; max-width: 100%; }

  /* 新闻头部：标题和"更多"保持同行，副标题紧贴下方 */
  .nm-header { flex-wrap: wrap; align-items: center; gap: 6px; margin-bottom: 18px; }
  .nm-title { font-size: 20px; margin-bottom: 0; }
  .nm-title::after { width: 32px; height: 3px; margin-top: 5px; }
  .nm-sub { font-size: 12px; order: 3; width: 100%; margin-top: 4px; }
  .nm-more { font-size: 12px; padding: 5px 14px; flex-shrink: 0; }

  /* 新闻卡片：更紧凑 */
  .news-module { padding: 20px 0 14px; }
  .nm-card { padding: 12px 14px; gap: 10px; border-radius: 8px; }
  .nm-card-date { width: 42px; padding: 6px 0; }
  .nm-day { font-size: 18px; }
  .nm-month { font-size: 9px; }
  .nm-card-title { font-size: 13px; -webkit-line-clamp: 2; }
}
.news-module {
  padding: 32px 0 20px;
  background: linear-gradient(180deg, #f5f8fc 0%, #ffffff 50%, #fafcfe 100%);
  position: relative;
}
.news-module::before {
  content: '';
  position: absolute; top: -80px; right: -40px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(19,194,194,.06) 0%, transparent 70%);
  pointer-events: none;
}

/* 头部 */
.nm-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 36px; position: relative; z-index: 1;
}
.nm-title {
  font-size: 30px; font-weight: 800; color: var(--ink); margin: 0 0 6px;
  letter-spacing: 2px; position: relative; display: inline-block;
}
.nm-title::after {
  content: ''; display: block; width: 48px; height: 4px;
  background: var(--grad-brand); border-radius: 2px; margin-top: 10px;
}
.nm-sub {
  font-size: 14px; color: var(--text-2); margin: 0;
  letter-spacing: 3px;
}
.nm-more {
  display: inline-flex; align-items: center;
  font-size: 14px; color: var(--green-d);
  border: 1px solid var(--line); border-radius: 30px;
  padding: 8px 22px; transition: .3s; background: #fff;
}
.nm-more:hover { color: #fff; border-color: transparent; background: var(--grad-brand);
  box-shadow: 0 6px 18px rgba(0,185,107,.22); }

}

/* ==========================================================================
   防御：保护内容区不被外部注入脚本隐藏
   ========================================================================== */
.list_box,
.contents {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
/* 右侧内容列强制可见 */
.col-md-9[class*="col-"],
.col-sm-8[class*="col-"] {
  display: block !important;
  float: right !important;
  visibility: visible !important;
}
