/* ==========================================================================
   好商务网 · Modern Design System
   风格：简约时尚 / 科技感 / 国际化
   说明：本文件在 pintuer.css 与 style.css 之后加载，统一覆盖旧视觉
   ========================================================================== */

/* ---------- 设计变量 ---------- */
:root {
  --brand: #E11D48;            /* 品牌红（与 logo 红色系一致） */
  --brand-deep: #BE123C;
  --brand-grad: linear-gradient(135deg, #F43F5E 0%, #E11D48 60%, #BE123C 100%);
  --cyan: #22D3EE;             /* 科技感点缀色 */
  --ink: #0F172A;              /* 标题色 */
  --text: #475569;             /* 正文色 */
  --muted: #94A3B8;            /* 弱化文字 */
  --line: #E2E8F0;             /* 边框 */
  --bg: #FFFFFF;
  --bg-soft: #F8FAFC;          /* 浅色区块 */
  --navy: #0B1220;             /* 深色区块 */
  --navy-2: #111C33;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 12px rgba(15, 23, 42, .06);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, .10);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, .16);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
          "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}

/* ---------- 基础 ---------- */
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, figure {
  font-family: var(--font);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -.01em;
}

p { margin: 0 0 12px; }
a { color: var(--brand); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--brand-deep); }

::selection { background: var(--brand); color: #fff; }
::-moz-selection { background: var(--brand); color: #fff; }

/* 滚动条 */
body::-webkit-scrollbar { width: 8px; height: 8px; }
body::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background: linear-gradient(180deg, #F43F5E, #BE123C);
}
body::-webkit-scrollbar-track { background: #F1F5F9; }

/* 容器统一 */
.container { max-width: 1200px; padding-left: 24px; padding-right: 24px; }
.layout { overflow-x: hidden; }
.blankbig { height: 36px; line-height: 36px; }

/* 选中高亮文本的颜色统一 */

/* ---------- 通用区块标题 ---------- */
.sec-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.sec-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(225, 29, 72, .08);
  border: 1px solid rgba(225, 29, 72, .18);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.sec-title { font-size: clamp(26px, 3vw, 36px); font-weight: 800; line-height: 1.25; margin: 0 0 12px; }
.sec-title::after {
  content: "";
  display: block;
  width: 52px;
  height: 4px;
  border-radius: 4px;
  background: var(--brand-grad);
  margin: 18px auto 0;
}
.sec-desc { font-size: 16px; color: var(--text); margin: 0; }

/* 兼容旧模板的区块标题 */
.full-screen-en-title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.01em;
}
.full-screen-en-title::after {
  content: "";
  display: block;
  width: 52px;
  height: 4px;
  border-radius: 4px;
  background: var(--brand-grad);
  margin: 16px auto 0;
}

/* ---------- 顶部信息条 ---------- */
.h-topbar {
  background: var(--navy);
  color: #CBD5E1;
  font-size: 13px;
  position: relative;
  z-index: 1001;
}
.h-topbar .h-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 7px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.h-topbar-item { margin-right: 26px; color: #94A3B8; }
.h-topbar-item .h-ico { color: var(--brand); margin-right: 4px; font-style: normal; }
.h-tel { color: #FDE047; font-weight: 700; font-size: 15px; }
.h-tel:hover { color: #FEF08A; }
.h-topbar-link {
  color: #CBD5E1;
  margin-left: 22px;
  font-weight: 500;
  transition: color .25s ease;
}
.h-topbar-link:hover { color: #fff; }
.h-topbar-link.h-topbar-cta {
  color: #fff;
  background: var(--brand-grad);
  border-radius: 999px;
  padding: 5px 16px;
  margin-left: 22px;
  box-shadow: 0 4px 14px rgba(225, 29, 72, .35);
}
.h-topbar-link.h-topbar-cta:hover { transform: translateY(-1px); }

/* ---------- 主头部 ---------- */
#h-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .86);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, .7);
  transition: box-shadow .3s ease, background .3s ease;
}
#h-header.h-scrolled {
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 8px 30px rgba(15, 23, 42, .08);
}
#h-header .h-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.h-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.h-logo { display: flex; align-items: center; flex-shrink: 0; }
.h-logo img { height: 42px; width: auto; display: block; }

.h-nav { margin-left: 24px; }
.h-nav-list { display: flex; align-items: center; margin: 0; padding: 0; list-style: none; }
.h-nav-item { position: relative; margin: 0 2px; }
.h-nav-item > a {
  display: block;
  padding: 26px 16px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  transition: color .25s ease;
}
.h-nav-item > a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 18px;
  height: 3px;
  border-radius: 3px;
  background: var(--brand-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.h-nav-item:hover > a,
.h-nav-item.h-active > a { color: var(--brand); }
.h-nav-item:hover > a::after { transform: scaleX(1); }
.h-arrow { font-size: 11px; margin-left: 5px; color: var(--muted); }
.h-nav-hot { color: var(--brand) !important; }

/* 下拉菜单 */
.h-drop {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 210px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  padding: 8px;
  margin: 0;
  list-style: none;
  animation: h-drop-in .22s ease;
}
.h-nav-item:hover .h-drop { display: block; }
@keyframes h-drop-in {
  from { opacity: 0; transform: translate(-50%, 8px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
.h-drop a {
  display: block;
  padding: 9px 14px;
  font-size: 14px;
  color: var(--text);
  border-radius: 8px;
  white-space: nowrap;
}
.h-drop a::before { content: ""; display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--brand); margin-right: 8px; vertical-align: 2px; }
.h-drop a:hover { background: var(--bg-soft); color: var(--brand); padding-left: 18px; }

.h-header-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* 按钮 */
.h-btn {
  display: inline-block;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: 999px;
  padding: 11px 26px;
  transition: all .28s ease;
}
.h-btn-primary {
  color: #fff;
  background: var(--brand-grad);
  box-shadow: 0 8px 22px rgba(225, 29, 72, .32);
}
.h-btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(225, 29, 72, .42); }
.h-btn-ghost {
  color: var(--ink);
  border: 1.5px solid var(--line);
  background: #fff;
}
.h-btn-ghost:hover { color: var(--brand); border-color: var(--brand); }

/* 汉堡按钮 */
.h-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
  border-radius: 8px;
}
.h-burger span { display: block; height: 2.5px; width: 100%; border-radius: 3px; background: var(--ink); transition: all .3s ease; }
.h-burger.h-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.h-burger.h-open span:nth-child(2) { opacity: 0; }
.h-burger.h-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* 兼容旧样式引用（部分页面 header 曾用旧类名） */
#fh5co-header .bg-white.fixed { background: transparent; }
.fixed { position: sticky; top: 0; }

/* ---------- 首页 Hero ---------- */
.hero {
  position: relative;
  min-height: 640px;
  background: var(--navy);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg { position: absolute; inset: 0; z-index: 1; }
.hero-bg .flexslider { height: 100%; border: 0; background: transparent; }
.hero-bg .flexslider .slides { height: 100%; }
.hero-bg .flexslider .slides li { height: 100%; }
.hero-bg .flexslider .slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .38;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(720px 420px at 12% 20%, rgba(34, 211, 238, .14), transparent 60%),
    radial-gradient(760px 460px at 88% 78%, rgba(225, 29, 72, .16), transparent 62%),
    linear-gradient(180deg, rgba(11, 18, 32, .86) 0%, rgba(11, 18, 32, .72) 55%, rgba(11, 18, 32, .94) 100%);
}
/* 科技网格背景 */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(148, 163, 184, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, .07) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 78%);
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 78%);
  animation: h-grid-pan 26s linear infinite;
}
@keyframes h-grid-pan {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 0 56px, 56px 0; }
}
.hero-content { position: relative; z-index: 3; width: 100%; padding: 90px 0 120px; }
.hero-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.hero-eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(34, 211, 238, .35);
  background: rgba(34, 211, 238, .08);
  padding: 8px 20px;
  border-radius: 999px;
  margin-bottom: 26px;
  animation: h-rise .8s .05s both;
}
.hero-title {
  font-size: clamp(30px, 4.6vw, 54px);
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  letter-spacing: -.02em;
  margin: 0 0 22px;
  animation: h-rise .8s .15s both;
}
.hero-grad {
  background: linear-gradient(92deg, #FDBA74, #F43F5E 45%, #22D3EE 110%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: #CBD5E1;
  max-width: 640px;
  margin: 0 auto 34px;
  animation: h-rise .8s .25s both;
}
@keyframes h-rise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* 域名查询 */
.hero-search {
  max-width: 720px;
  margin: 0 auto 26px;
  animation: h-rise .8s .35s both;
}
.hs-box {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
}
.hs-box input[type="text"] {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  font-size: 16px;
  color: var(--ink);
  padding: 12px 16px;
  background: transparent;
  border-radius: 10px 0 0 10px;
}
.hs-box select {
  border: 0;
  outline: none;
  background: var(--bg-soft);
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  padding: 0 14px;
  border-left: 1px solid var(--line);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.hs-box button {
  border: 0;
  cursor: pointer;
  color: #fff;
  font-size: 15.5px;
  font-weight: 700;
  background: var(--brand-grad);
  padding: 12px 30px;
  border-radius: 10px;
  transition: all .28s ease;
  white-space: nowrap;
}
.hs-box button:hover { box-shadow: 0 10px 24px rgba(225, 29, 72, .45); transform: translateY(-1px); }

/* 快捷入口 */
.hero-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  animation: h-rise .8s .45s both;
}
.hero-links a {
  color: #E2E8F0;
  font-size: 13.5px;
  border: 1px solid rgba(226, 232, 240, .25);
  background: rgba(255, 255, 255, .06);
  padding: 8px 18px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  transition: all .25s ease;
}
.hero-links a:hover {
  color: #fff;
  border-color: var(--brand);
  background: var(--brand);
  transform: translateY(-2px);
}

/* flexslider 方向箭头（hero） */
.hero .flex-direction-nav a {
  width: 46px;
  height: 46px;
  line-height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .25);
  text-align: center;
  opacity: .9;
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
}
.hero .flex-direction-nav a:hover { background: var(--brand); border-color: var(--brand); }
.hero .flex-control-nav { bottom: 26px; }
.hero .flex-control-nav li a { background: rgba(255, 255, 255, .35); box-shadow: none; }
.hero .flex-control-nav li a.flex-active { background: var(--brand); width: 22px; border-radius: 999px; }

/* 兼容旧首页的域名查询与快捷入口（city_index 等页面） */
.indexxm { padding: 8px 0 4px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.indexxm a {
  padding: 8px 20px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 999px;
  display: inline-block;
  margin: 0;
  font-size: 13.5px;
  font-weight: 500;
  transition: all .25s ease;
}
.indexxm a:hover { background: var(--brand-grad); color: #fff; border-color: transparent; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(225, 29, 72, .3); }

/* ---------- 通用按钮 ---------- */
.more {
  display: inline-block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--brand);
  border: 1.5px solid var(--brand);
  padding: 11px 36px;
  border-radius: 999px;
  transition: all .28s ease;
  background: transparent;
}
.more:hover {
  color: #fff;
  background: var(--brand-grad);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(225, 29, 72, .32);
}
.border-main { border-color: var(--brand) !important; }
.bnt-case {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 50%;
  background: var(--brand-grad);
  color: #fff !important;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(225, 29, 72, .4);
  transition: all .28s ease;
}
.bnt-case:hover { transform: scale(1.1) rotate(90deg); color: #fff !important; }
.button { border-radius: 999px; }

/* ---------- 服务卡片（首页四宫格） ---------- */
#fh5co-about-us { padding: 72px 0 20px; background: var(--bg); }
#fh5co-about-us .border-radius {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius) !important;
  padding: 40px 26px 34px;
  margin: 8px;
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}
#fh5co-about-us .border-radius::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--brand-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
#fh5co-about-us .border-radius:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(225, 29, 72, .25);
}
#fh5co-about-us .border-radius:hover::before { transform: scaleX(1); }
#fh5co-about-us .media-img img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(225, 29, 72, .18));
}
#fh5co-about-us h2 { font-size: 20px; font-weight: 700; color: var(--ink); margin: 22px 0 10px; }
#fh5co-about-us p { font-size: 14px; color: var(--text); padding-top: 0 !important; }
#fh5co-about-us .jiage {
  display: inline-block;
  margin-top: 14px;
  font-size: 15px;
  font-weight: 800;
  color: var(--brand);
  background: rgba(225, 29, 72, .08);
  padding: 6px 18px;
  border-radius: 999px;
}

/* ---------- 案例 / 模板展示 ---------- */
#fh5co-content_show { padding: 72px 0 30px; }
#fh5co-content_show .container { max-width: 1200px; }
/* 首页案例区：show_list 不做卡片包裹，避免双层 container + line-middle 负边距把第三列挤出 */
#fh5co-content_show .show_list { background: none; border: none; padding: 0; margin: 0; }
#fh5co-content_show .tab-panel { background: none; }
#fh5co-content_show .line-middle { overflow: hidden; }
#fh5co-content_show .gallery-item { min-height: 0; }
#fh5co-content_show .nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 34px;
}
#fh5co-content_show .nav li { list-style: none; }
#fh5co-content_show .nav a {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 8px 22px;
  border-radius: 999px;
  transition: all .25s ease;
}
#fh5co-content_show .nav a:hover,
#fh5co-content_show .nav li.active a {
  color: #fff;
  background: var(--brand-grad);
  border-color: transparent;
  box-shadow: 0 8px 18px rgba(225, 29, 72, .28);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: all .35s ease;
  height: 260px;
}
.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(225, 29, 72, .2);
}
#fh5co-content_show .gallery-item img {
  width: 100% !important;
  height: 260px !important;
  max-height: 260px !important;
  min-height: 260px !important;
  object-fit: cover !important;
  object-position: top center !important;
  display: block !important;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
/* 案例 overlay：默认隐藏，悬停才显示（用高权重压过旧样式） */
#fh5co-content_show .gallery-item .overlay {
  position: absolute;
  inset: 0;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(11, 18, 32, .78), rgba(11, 18, 32, .92));
  visibility: hidden !important;
  opacity: 0 !important;
  transition: opacity .35s ease, visibility .35s ease;
  text-align: center;
  pointer-events: none;
}
#fh5co-content_show .gallery-item:hover .overlay { pointer-events: auto; }
#fh5co-content_show .gallery-item:hover .overlay { visibility: visible !important; opacity: 1 !important; }
#fh5co-content_show .gallery-item .overlay h3 { color: #fff; font-size: 17px; margin: 0; font-weight: 700; }
#fh5co-content_show .gallery-item .overlay p { color: #CBD5E1; font-size: 13px; margin: 0 0 8px; }

/* 圆形播放键：直接用 .bnt-case 链接本身，在 flex 流中不挡文字 */
#fh5co-content_show .gallery-item .overlay > .bnt-case {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 64px !important;
  height: 64px !important;
  min-width: 64px !important;
  max-width: 64px !important;
  min-height: 64px !important;
  max-height: 64px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,.16) !important;
  border: 2px solid rgba(255,255,255,.65) !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  margin: 10px auto 0 !important;
  position: relative;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 0 0 rgba(255,255,255,.4);
  animation: bnt-pulse 2.2s ease-out infinite;
  transition: all .3s ease;
  pointer-events: auto;
  z-index: 5;
}
#fh5co-content_show .gallery-item .overlay > .bnt-case::before {
  content: "";
  display: block;
  width: 0; height: 0;
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}
#fh5co-content_show .gallery-item .overlay > .bnt-case::after { content: none !important; }
@keyframes bnt-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,.4); }
  70%  { box-shadow: 0 0 0 18px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
#fh5co-content_show .gallery-item .overlay > .bnt-case:hover {
  background: #fff !important;
  border-color: #fff !important;
  transform: scale(1.12);
  animation-play-state: paused;
  box-shadow: 0 10px 30px rgba(225,29,72,.4);
}
#fh5co-content_show .gallery-item .overlay > .bnt-case:hover::before {
  border-color: transparent transparent transparent var(--brand);
}
/* overlay 伪元素不挡点击 */
#fh5co-content_show .gallery-item .overlay::before,
#fh5co-content_show .gallery-item .overlay::after { pointer-events: none; }
.vcfengge { display: flex; justify-content: center; gap: 10px; margin-top: 6px; }
.vcfengge a {
  font-size: 13px !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, .5);
  padding: 6px 18px !important;
  border-radius: 999px;
  margin: 0 !important;
  transition: all .25s ease;
}
.vcfengge a:hover { background: var(--brand); border-color: var(--brand); }

/* ---------- 为什么选择我们 ---------- */
#fh5co-why-us { background: var(--bg-soft); padding: 72px 0 40px; }
#fh5co-why-us .item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 26px; height: 100%; box-shadow: var(--shadow-sm); transition: all .35s ease; }
#fh5co-why-us .item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
#fh5co-why-us .item-text table { width: 100%; }
#fh5co-why-us .item-text img { width: 54px; height: 54px; object-fit: cover; border-radius: 12px; }
#fh5co-why-us .tdpad { padding: 10px 0 10px 14px; font-size: 14px; color: var(--text); font-weight: 500; }
#fh5co-why-us .item2 { display: flex; align-items: center; justify-content: center; background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%); border: 0; overflow: hidden; position: relative; }
#fh5co-why-us .item2::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 211, 238, .22), transparent 65%);
  bottom: -90px;
  right: -70px;
}
#fh5co-why-us .banner-img img { max-width: 240px; width: 100%; filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .4)); position: relative; z-index: 1; }

/* ---------- 客户反馈 ---------- */
#fh5co-comment-list { padding: 0; }
#fh5co-comment-list .bg-comment {
  background:
    radial-gradient(600px 320px at 85% 10%, rgba(225, 29, 72, .22), transparent 60%),
    radial-gradient(600px 320px at 10% 90%, rgba(34, 211, 238, .12), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, #0E1626 100%);
  padding: 76px 0 84px;
}
#fh5co-comment-list .full-screen-en-title { color: #fff; }
#fh5co-comment-list .text-big { color: #94A3B8; }
#fh5co-comment-list .owl-item .item {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 34px 24px 30px;
  margin: 6px;
  backdrop-filter: blur(6px);
  transition: all .3s ease;
}
#fh5co-comment-list .owl-item .item:hover { background: rgba(255, 255, 255, .09); transform: translateY(-6px); }
#fh5co-comment-list .owl-item .media-img img { width: 62px; height: 62px; border-radius: 50%; object-fit: cover; border: 3px solid var(--brand); margin-bottom: 14px; }
#fh5co-comment-list .intro p { color: #E2E8F0; font-size: 14px; min-height: 64px; }
#fh5co-comment-list .signature a { color: var(--cyan); font-weight: 700; font-size: 15px; }
#fh5co-comment-list .quote-txt { color: rgba(255, 255, 255, .25); font-size: 22px; }
#fh5co-comment-list .owl-theme .owl-controls .owl-page span { background: rgba(255, 255, 255, .3); }
#fh5co-comment-list .owl-theme .owl-controls .owl-page.active span { background: var(--brand); }

/* ---------- 观点资讯 ---------- */
#fh5co-news-list { padding: 72px 0 34px; background: var(--bg); }
#fh5co-news-list .media {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  height: 100%;
  transition: all .3s ease;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}
#fh5co-news-list .media:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(225,29,72,.15); }
#fh5co-news-list .media-left {
  flex-shrink: 0;
  width: 70px;
  text-align: center;
  background: #fff5f6;
  border: 1px solid #fce7ea;
  border-radius: var(--radius-sm) !important;
  padding: 10px 0;
  position: relative;
  overflow: hidden;
}
#fh5co-news-list .media-left::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: var(--brand-grad);
}
#fh5co-news-list .line-big { display: flex; flex-wrap: wrap; gap: 24px; margin: 0; }
#fh5co-news-list .line-big > .xl12 { flex: 0 0 calc(33.333% - 16px); margin: 0 !important; }
#fh5co-news-list .line-big > .line { flex: 0 0 100%; margin: 0 !important; }
#fh5co-news-list .media .media-left .f-day { font-size: 26px; font-weight: 800; color: var(--brand) !important; line-height: 1.1; padding-top: 4px !important; }
#fh5co-news-list .media .media-left .f-year { font-size: 12px; color: var(--muted) !important; }
@media (max-width: 1000px) {
  #fh5co-news-list .line-big > .xl12 { flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 640px) {
  #fh5co-news-list .line-big > .xl12 { flex: 0 0 100%; }
}
#fh5co-news-list .media-body h3 { margin: 0 0 8px; }
#fh5co-news-list .media-body a { font-size: 15.5px !important; font-weight: 700; color: var(--ink); line-height: 1.5; }
#fh5co-news-list .media-body a:hover { color: var(--brand); }
#fh5co-news-list .media-body p { font-size: 13px; color: var(--muted); margin: 0; }

/* ---------- 服务支持（页底区块） ---------- */
#fh5co-bottom-info { background: var(--bg-soft); padding: 60px 0 30px; }
#fh5co-bottom-info .show-list .item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 20px 30px;
  margin: 8px;
  transition: all .3s ease;
  height: 100%;
}
#fh5co-bottom-info .show-list .item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
#fh5co-bottom-info .show-list .media-img img { width: 64px; height: 64px; object-fit: contain; margin-bottom: 12px; }
#fh5co-bottom-info .show-list h3 { font-size: 18px; margin: 0; }
#fh5co-bottom-info .show-list h3 a { color: var(--ink); }
#fh5co-bottom-info .show-list h3 a:hover { color: var(--brand); }

/* ---------- 页脚 ---------- */
footer { background: var(--navy); color: #94A3B8; }
footer .footlink { background: var(--navy); }
footer .about-box h3,
footer .service-box h3,
footer .contact-box h3 { color: #fff; font-size: 18px; font-weight: 700; margin: 0 0 20px; position: relative; padding-bottom: 14px; }
footer .about-box h3::after,
footer .service-box h3::after,
footer .contact-box h3::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 38px; height: 3px;
  border-radius: 3px;
  background: var(--brand-grad);
}
footer .about-box .media-img img { max-height: 48px; margin-bottom: 14px; }
footer .about-box p { font-size: 14px; color: #94A3B8; line-height: 1.9; }
footer .service-box p { font-size: 14px !important; color: #94A3B8; padding-top: 0 !important; }
footer .service-box a { color: var(--cyan); }
footer .contact-box li { list-style: none; font-size: 14px; color: #94A3B8; padding: 7px 0; border-bottom: 1px dashed rgba(148, 163, 184, .18); }
footer .contact-box li:last-child { border-bottom: 0; }
footer .brode-box .media-img { display: flex; justify-content: center; }
footer .brode-box img { border-radius: 12px; border: 1px solid rgba(255, 255, 255, .15); }
footer .copyright {
  background: #080E1A;
  border-top: 1px solid rgba(148, 163, 184, .12);
  color: #64748B;
  font-size: 13px;
  padding: 22px 0;
}
footer .copyright .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
footer .copyright a { color: #94A3B8; }
footer .copyright a:hover { color: var(--cyan); }
footer .navbar-left { float: none; line-height: 1.9; margin: 0; }
footer .navbar-right { float: none; display: flex; align-items: center; margin: 0; }
footer .navbar-right li { list-style: none; float: left; margin-left: 18px; }
footer .navbar-right li a { color: #94A3B8; }
footer .navbar-right li a span { margin-left: 14px; color: #334155; }
footer .friend_link { position: relative; }
footer .friend_link ul {
  position: absolute;
  bottom: 100%;
  right: 0;
  display: none;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  width: 320px;
  z-index: 50;
}
footer .friend_link ul a {
  display: inline-block;
  font-size: 12.5px;
  color: var(--text);
  padding: 4px 8px;
  border-radius: 6px;
  margin: 2px;
}
footer .friend_link ul a:hover { color: var(--brand); background: var(--bg-soft); }

/* 底部信息条的分隔线 */
footer .bottom-border { border-color: rgba(148, 163, 184, .15) !important; }

/* ---------- 右侧悬浮联系 ---------- */
.side { position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 900; }
.side ul { margin: 0; padding: 0; list-style: none; }
.side li { list-style: none; margin: 8px 0; }
.side .sidebox {
  width: 56px;
  height: 56px;
  border-radius: 14px 0 0 14px;
  background: var(--brand-grad) !important;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 15px 0 0;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(225, 29, 72, .38);
  transition: width .35s cubic-bezier(.4,0,.2,1), background .3s ease, box-shadow .3s ease;
  opacity: 1 !important;
  white-space: nowrap;
}
.side .sidebox img { width: 40px; height: 40px; object-fit: contain; flex-shrink: 0; margin-left: 11px; filter: brightness(0) invert(1); }
.side li a { color: #fff; }
.side li:hover .sidebox { width: 190px !important; background: var(--navy) !important; box-shadow: 0 12px 30px rgba(11,18,32,.4); }
.side li:hover .sidebox img { filter: none; }
.side .sidetop { width: 56px; height: 56px; border-radius: 14px 0 0 14px; background: var(--navy) !important; display: flex !important; align-items: center !important; justify-content: center !important; box-shadow: 0 8px 22px rgba(11,18,32,.35); transition: all .3s ease; text-align: center; }
.side .sidetop:hover { background: var(--brand) !important; box-shadow: 0 10px 26px rgba(225,29,72,.4); }
.side .sidetop img { width: 38px; height: 38px; filter: brightness(0) invert(1); margin: 0 auto; display: block; }

/* ---------- 内页 Banner ---------- */
.banner {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}
.banner .item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}
.banner .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .32;
}
.banner .item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(620px 320px at 20% 20%, rgba(34, 211, 238, .10), transparent 60%),
    linear-gradient(180deg, rgba(11, 18, 32, .55), rgba(11, 18, 32, .88));
}
.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, .06) 1px, transparent 1px);
  background-size: 52px 52px;
  z-index: 1;
}

/* 内页搜索栏（列表页 banner 内） */
.sok_search_list { padding: 0; position: relative; z-index: 2; width: 100%; display: flex; justify-content: center; }
.sok_search_list form { display: flex; gap: 0; background: #fff; border-radius: 999px; padding: 6px; box-shadow: 0 20px 50px rgba(0, 0, 0, .35); width: min(520px, 92%); }
.sok_search_list input[type="text"] {
  flex: 1;
  border: 0;
  outline: none;
  font-size: 15px;
  padding: 10px 20px;
  background: transparent;
  color: var(--ink);
  border-radius: 999px 0 0 999px;
}
.sok_search_list input[type="submit"] {
  border: 0;
  cursor: pointer;
  background: var(--brand-grad);
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 999px;
  transition: all .25s ease;
}
.sok_search_list input[type="submit"]:hover { box-shadow: 0 8px 20px rgba(225, 29, 72, .4); }

/* 侧栏搜索 */
.sok_search_show { margin-bottom: 26px; }
.sok_search_show form { display: flex; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 999px; padding: 5px; }
.sok_search_show input[type="text"] { flex: 1; border: 0; outline: none; background: transparent; font-size: 14px; padding: 8px 16px; color: var(--ink); }
.sok_search_show input[type="submit"] { border: 0; cursor: pointer; background: var(--brand-grad); color: #fff; font-size: 13.5px; font-weight: 700; padding: 8px 18px; border-radius: 999px; }

/* ---------- 面包屑 ---------- */
.bread {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--muted);
  padding: 12px 18px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin: 0;
}
.bread a { color: var(--text); }
.bread a:hover { color: var(--brand); }

/* ---------- 分页 ---------- */
.pagess { text-align: center; padding: 30px 0 10px; }
.pagess .pagination, .pagess ul { display: inline-flex; gap: 8px; margin: 0; padding: 0; }
.pagess a, .pagess span, .pagess li a, .pagess li span {
  display: inline-block;
  min-width: 40px;
  height: 40px;
  line-height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font-size: 14px;
  transition: all .25s ease;
}
.pagess a:hover { color: #fff; background: var(--brand-grad); border-color: transparent; }
.pagess .current, .pagess li.active a, .pagess li.active span { color: #fff; background: var(--brand-grad); border-color: transparent; font-weight: 700; }

/* ---------- 瀑布流列表 ---------- */
.list-content { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.waterfull .masonry { display: flex; flex-wrap: wrap; gap: 22px; margin: 0; padding: 0; }
.waterfull .masonry-brick {
  width: calc((100% - 44px) / 3);
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .32s ease;
}
.waterfull .masonry-brick:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.waterfull .imgholder { overflow: hidden; }
.waterfull .imgholder img { width: 100%; height: 200px; object-fit: cover; transition: transform .6s ease; }
.waterfull .masonry-brick:hover .imgholder img { transform: scale(1.06); }
.waterfull .bitem { padding: 18px 20px 20px; }
.waterfull .bitem .title a { font-size: 16px; font-weight: 700; color: var(--ink); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.waterfull .bitem .title a:hover { color: var(--brand); }
.waterfull .bitem .meta { font-size: 12.5px; color: var(--muted); margin: 8px 0; }
.waterfull .bitem .info { font-size: 13.5px; color: var(--text); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ---------- 内容详情页 ---------- */
.show_content { padding: 30px 0 20px; }
.show_body.detail { font-size: 15.5px; line-height: 2; color: var(--text); }
.show_body.detail img { max-width: 100%; height: auto; border-radius: var(--radius-sm); }
.show_body.detail h2, .show_body.detail h3 { margin: 26px 0 12px; }
.show_body.detail a { color: var(--brand); }
.show_body.detail table { border-collapse: collapse; width: 100%; }
.show_body.detail td, .show_body.detail th { border: 1px solid var(--line); padding: 8px 12px; }
.detail h1 { font-size: clamp(22px, 2.6vw, 30px); }
.detail hr { border: 0; height: 1px; background: var(--line); margin: 20px 0; }

/* 上一篇 / 下一篇 */
.prenext {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-top: 30px;
}
.prenext a { color: var(--text); }
.prenext a:hover { color: var(--brand); }
.prenext a.list {
  color: #fff;
  background: var(--brand-grad);
  padding: 6px 20px;
  border-radius: 999px;
  font-weight: 600;
  margin: 0 10px;
}

/* 侧栏列表 */
.show_list {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 26px;
}
.show_list .n-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  position: relative;
  padding-left: 16px;
  margin: 0 0 18px;
}
.show_list .n-title::before {
  content: "";
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 4px;
  border-radius: 4px;
  background: var(--brand-grad);
}
.show_list .list-media li { list-style: none; margin-bottom: 16px; }
.show_list .list-media .media_img img { width: 72px; height: 56px; object-fit: cover; border-radius: 8px; }
.show_list .list-media h3 { font-size: 14.5px; margin: 0; }
.show_list .list-media h3 a { color: var(--ink); line-height: 1.5; }
.show_list .list-media h3 a:hover { color: var(--brand); }
.show_list .list-link { padding: 0; margin: 0; }
.show_list .list-link a {
  display: block;
  font-size: 13.5px;
  color: var(--text);
  padding: 8px 4px;
  border-bottom: 1px dashed var(--line);
  transition: all .25s ease;
}
.show_list .list-link a:hover { color: var(--brand); padding-left: 12px; }

/* 文章元信息 */
.text-gray { color: var(--muted); }
.vcyss { margin-left: 10px; border: 1px solid var(--line); padding: 2px 14px; border-radius: 999px; background: var(--bg-soft); font-size: 12.5px; color: var(--text); }
.vcyss:hover { color: var(--brand); border-color: var(--brand); }

/* ---------- 报价页 ---------- */
.baojia_xiaolei { margin: 40px 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.baojia_xiaolei a {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  padding: 10px 28px;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: 999px;
  display: inline-block;
  margin: 0;
  transition: all .25s ease;
}
.baojia_xiaolei a:hover { border-color: transparent; background: var(--brand-grad); color: #fff; box-shadow: 0 8px 20px rgba(225, 29, 72, .28); }

/* 报价页 —— 用 #fh5co-content-show 前缀覆盖旧浮动栅格与边框 */
#fh5co-content-show .price-list-box { padding: 24px 0 50px; background: var(--bg); }
#fh5co-content-show .price-list,
#fh5co-content-show .feature-list {
  display: flex; flex-wrap: wrap; gap: 20px;
  border: none !important; width: auto !important;
}
#fh5co-content-show .price-list .item-block,
#fh5co-content-show .feature-list .item-block {
  float: none !important;
  width: auto !important;
  flex: 1 1 0; min-width: 0; margin: 0 !important;
}
#fh5co-content-show .price-list .item {
  background: #fff;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius);
  padding: 32px 20px 26px;
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
  border-left: 1px solid var(--line) !important;
  height: auto;
}
#fh5co-content-show .price-list .item::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 4px;
  background: var(--brand-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
#fh5co-content-show .price-list .item:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(225, 29, 72, .22) !important; }
#fh5co-content-show .price-list .item:hover::before { transform: scaleX(1); }
#fh5co-content-show .price-list .item h2 { font-size: 21px; font-weight: 800; color: var(--ink); margin: 0 0 6px; }
#fh5co-content-show .price-list .item h3 { font-size: 13px; color: var(--muted); font-weight: 500; margin: 0 0 18px; }
#fh5co-content-show .price-list .pricing-card-price {
  font-size: 30px;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 18px;
  height: auto;
  padding: 0;
}
#fh5co-content-show .price-list .per-month { font-size: 13px; font-weight: 500; color: var(--muted); }
#fh5co-content-show .price-list .choose a {
  display: inline-block;
  width: auto !important;
  color: #fff;
  background: var(--brand-grad);
  padding: 9px 30px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
  transition: all .25s ease;
}
#fh5co-content-show .price-list .choose a:hover { box-shadow: 0 10px 24px rgba(225, 29, 72, .4); transform: translateY(-2px); }
#fh5co-content-show .price-list .price-txt { border-top: 1px dashed var(--line); padding-top: 14px; margin: 0; }
#fh5co-content-show .price-list .price-txt p { font-size: 13.5px; color: var(--text); margin: 6px 0; display: flex; justify-content: space-between; }
#fh5co-content-show .price-list .price-txt .description { color: var(--muted); }
#fh5co-content-show .price-list .price-txt .value { font-weight: 600; color: var(--ink); }

#fh5co-content-show .price-title { margin: 46px 0 24px; border: none !important; }
#fh5co-content-show .price-title h3 {
  display: inline-block;
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  position: relative;
  padding-bottom: 10px;
}
#fh5co-content-show .price-title h3::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 40px;
  height: 3px;
  border-radius: 3px;
  background: var(--brand-grad);
}
#fh5co-content-show .feature-list .item {
  background: var(--bg-soft);
  border: 1px solid var(--line) !important;
  border-radius: var(--radius);
  padding: 24px 18px;
  transition: all .3s ease;
  height: auto;
}
#fh5co-content-show .feature-list .item:hover { background: #fff; box-shadow: var(--shadow-md); transform: translateY(-4px); }
#fh5co-content-show .feature-list .item h2 { font-size: 16px; font-weight: 700; color: var(--ink); margin: 0 0 14px; padding-bottom: 10px; border-bottom: 2px solid var(--brand); display: inline-block; }
#fh5co-content-show .feature-list .item p { font-size: 13px; color: var(--text); margin: 7px 0; }
@media (max-width: 1200px) {
  #fh5co-content-show .price-list .item-block,
  #fh5co-content-show .feature-list .item-block { flex: 0 0 calc(33.333% - 14px); }
}
@media (max-width: 768px) {
  #fh5co-content-show .price-list .item-block,
  #fh5co-content-show .feature-list .item-block { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 480px) {
  #fh5co-content-show .price-list .item-block,
  #fh5co-content-show .feature-list .item-block { flex: 0 0 100%; }
}
.text-dot { color: var(--brand); }

/* ---------- 服务页 ---------- */
.service-boxs .contents-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  height: 100%;
  transition: all .32s ease;
}
.service-boxs .contents-box:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(225, 29, 72, .2); }
.service-boxs .contents-box h3 { font-size: 18px; font-weight: 700; color: var(--ink); margin: 0 0 16px; }
.service-boxs .contents-box .imgs img { width: 100%; height: 150px; object-fit: cover; border-radius: var(--radius-sm); }
#fh5co-content_show .service-boxs p.btn.vc_anniu,
.service-boxs p.btn.vc_anniu {
  width: auto !important;
  height: auto !important;
  border: none !important;
  padding: 0 !important;
  margin: 16px auto 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  line-height: 1.5 !important;
}
.service-boxs .vc_anniu a {
  display: inline-block;
  color: var(--brand);
  border: 1.5px solid var(--brand);
  padding: 8px 24px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 400;
  transition: all .25s ease;
}
.service-boxs .vc_anniu a:hover { background: var(--brand-grad) !important; color: #fff !important; border-color: transparent !important; }

/* 流程 */
.process-box { margin-top: 10px; }
.process-box .media-img img { width: 84px; height: 84px; object-fit: contain; transition: transform .3s ease; }
.process-box .media-img:hover img { transform: translateY(-6px) scale(1.06); }
.process-box p { font-size: 14.5px; font-weight: 600; color: var(--ink); margin-top: 10px; }
.process-box-1 .contents-box { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; height: 100%; transition: all .3s ease; }
.process-box-1 .contents-box:hover { background: #fff; box-shadow: var(--shadow-md); }
.process-box-1 h2 { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.process-box-1 h2::before { content: "◆ "; color: var(--brand); font-size: 12px; }
.process-box-1 p { font-size: 13.5px; color: var(--text); margin: 0; }

/* 外地客户 */
.wdkh_boxs .out-text { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.wdkh_boxs .out-text h3 { font-size: 17px; color: var(--brand); margin-bottom: 8px; }
.wdkh_boxs .out-text p { font-size: 14px; color: var(--text); }
.wdkh_boxs .media-img img { width: 100%; height: 320px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); }

/* ---------- 关于页 ---------- */
.about-top h1 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; color: var(--ink); margin: 8px 0; }
.about-top h1:last-child { font-size: 13px; font-weight: 600; letter-spacing: .2em; color: var(--muted); text-transform: uppercase; }
.about_boxs .imgs img { width: 100%; height: 380px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.about-content { padding: 10px 0 0 10px; font-size: 15px; line-height: 2.1; color: var(--text); }
.hr-content { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; height: 100%; transition: all .3s ease; }
.hr-content:hover { background: #fff; box-shadow: var(--shadow-md); }
.hr-content h2 { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 12px; position: relative; padding-left: 16px; }
.hr-content h2::before { content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 4px; border-radius: 4px; background: var(--brand-grad); }
.hr-content .content { font-size: 14px; color: var(--text); line-height: 2; }
.team_boxs .about_img { border-radius: var(--radius); overflow: hidden; }
.team_boxs .about_img img { height: 240px; }

/* ---------- 联系页 ---------- */
.contact-title { line-height: 1.5 !important; }
.contact-imgs img { max-width: 560px; width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.contact_content .media { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; display: flex; align-items: center; gap: 18px; }
.contact_content .media-img img { border-radius: 12px; }
.contact_content .media-body p { font-size: 14.5px; color: var(--text); margin: 4px 0; }
.contact-boxs { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; }
.contact-boxs h3 { font-size: 22px; font-weight: 800; color: var(--ink); margin-bottom: 20px; position: relative; padding-bottom: 14px; }
.contact-boxs h3::after { content: ""; position: absolute; left: 0; bottom: 0; width: 42px; height: 3px; border-radius: 3px; background: var(--brand-grad); }
.contact-boxs p { font-size: 15px; color: var(--text); margin: 10px 0; }
.contact-boxs a { color: var(--brand); font-weight: 600; }

/* ---------- 报价分类标签 ---------- */
.pricing-signup { color: var(--brand); font-weight: 600; }

/* ---------- 分站设置 ---------- */
.city_index { background: var(--navy); border-top: 1px solid rgba(148, 163, 184, .12); }
.city_index center { max-width: 1200px; margin: 0 auto; padding: 22px 24px; }
.city_index a { color: #94A3B8; font-size: 13px; margin: 0 10px; display: inline-block; padding: 4px 0; transition: color .25s ease; }
.city_index a:hover { color: var(--cyan); }

/* ---------- 响应式 ---------- */
@media (max-width: 1024px) {
  .h-nav { display: none; }
  .h-burger { display: flex; }
  #h-header .h-container { padding: 0 16px; }
  .h-topbar .h-topbar-hide-sm { display: none; }
  .hero { min-height: 560px; }
  .waterfull .masonry-brick { width: calc((100% - 22px) / 2); }
}

@media (max-width: 768px) {
  body { font-size: 14px; }
  .hero { min-height: 520px; }
  .hero-content { padding: 70px 0 100px; }
  .hero .flex-direction-nav { display: none; }
  .hs-box { flex-wrap: wrap; }
  .hs-box input[type="text"] { flex: 1 1 100%; border-radius: 10px; }
  .hs-box select { flex: 1; border-left: 0; border-top: 1px solid var(--line); padding: 10px 14px; }
  .hs-box button { flex: 1; }
  .waterfull .masonry-brick { width: 100%; }
  .sec-head { margin-bottom: 34px; }
  .list-content { padding: 0 16px; }
  .about_boxs .imgs img { height: 240px; }
  footer .navbar-left { float: none; text-align: center; }
  footer .navbar-right { display: none; }
  #fh5co-news-list .media { flex-direction: column; }
  #fh5co-news-list .media-left { width: 100%; display: flex; align-items: center; justify-content: center; gap: 12px; }
  .banner { min-height: 220px; }
  .h-header-inner { height: 64px; }
}

/* 移动端抽屉菜单 */
@media (max-width: 1024px) {
  .h-nav.h-open {
    display: block;
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 84vw);
    background: #fff;
    z-index: 1200;
    padding: 24px;
    box-shadow: -20px 0 60px rgba(15, 23, 42, .18);
    overflow-y: auto;
    animation: h-drawer-in .3s ease;
  }
  @keyframes h-drawer-in {
    from { transform: translateX(40px); opacity: 0; }
    to   { transform: translateX(0); opacity: 1; }
  }
  .h-nav.h-open .h-nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
  .h-nav.h-open .h-nav-item > a { padding: 14px 12px; border-bottom: 1px solid var(--line); }
  .h-nav.h-open .h-nav-item > a::after { display: none; }
  .h-nav.h-open .h-drop {
    display: none;
    position: static;
    transform: none;
    box-shadow: none;
    border: 0;
    padding-left: 16px;
    animation: none;
  }
  .h-nav.h-open .h-nav-item.h-open-drop .h-drop { display: block; }
  .h-drawer-mask {
    position: fixed;
    inset: 0;
    background: rgba(11, 18, 32, .55);
    z-index: 1199;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
  }
}

/* 小屏头部收紧（真实手机 320-430px 视口） */
@media (max-width: 560px) {
  .h-topbar .h-container { padding: 6px 12px; }
  .h-topbar-item { margin-right: 0; font-size: 12px; }
  .h-topbar-item .h-ico { display: none; }
  .h-topbar-link.h-topbar-cta { margin-left: 10px; padding: 4px 12px; font-size: 12px; }
  #h-header .h-container { padding: 0 12px; }
  .h-header-inner { gap: 8px; }
  .h-logo img { height: 36px; }
  .h-btn-primary { padding: 9px 18px; font-size: 13.5px; }
  .h-header-right { gap: 8px; }
}

/* 动画增强：进入视口 */
html.h-js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
html.h-js .reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html.h-js .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---------- 移动来袭 why-us ---------- */
#fh5co-why-us .show-content { margin-top: 10px; }
.mu-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 18px 26px;
  height: 100%;
}
.mu-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
}
.mu-item + .mu-item { border-top: 1px dashed var(--line); }
.mu-ico {
  flex: 0 0 46px;
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(225,29,72,.10), rgba(34,211,238,.10));
  color: var(--brand);
}
.mu-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  padding-top: 11px;
}
.mu-phone {
  border-radius: var(--radius);
  overflow: hidden;
  background: #0B1220;
  height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.mu-phone .banner-img img { max-width: 100%; height: auto; display: block; }

/* ---------- 分页美化 ---------- */
.pagess { clear: both; margin: 50px 0 10px !important; overflow: hidden; text-align: center; font-size: 14px; }
.pagess ul { display: inline-flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px; margin: 0; padding: 0; list-style: none; }
.pagess ul li {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; height: 42px; padding: 0 14px !important;
  border: 1px solid var(--line) !important;
  background: #fff !important; color: var(--muted);
  border-radius: 999px !important;
  margin: 0 !important; line-height: 1; float: none !important;
  transition: all .25s ease;
}
.pagess ul li a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
  color: var(--text); padding: 0 !important;
  font-size: 14px; font-weight: 500;
  border: none !important; background: transparent !important;
}
.pagess ul li:hover { border-color: var(--brand) !important; background: #fff !important; box-shadow: 0 6px 16px rgba(225, 29, 72, .12); }
.pagess ul li:hover a { color: var(--brand) !important; background: transparent !important; }
.pagess ul li.active, .pagess ul li.active a,
.pagess ul li.thisclass, .pagess ul li.thisclass a {
  background: var(--brand-grad) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 8px 20px rgba(225, 29, 72, .32);
  font-weight: 700;
}
.pagess ul li.active:hover, .pagess ul li.thisclass:hover { background: var(--brand-grad) !important; }
/* ---------- 消除 footer 与分站链接条之间的白条 ---------- */
footer + br { display: none; }
.city_index { margin: 0 !important; background: #0B1220 !important; }
.city_index center { padding: 12px 0 !important; }
.city_index a { color: #94A3B8 !important; }
.city_index a:hover { color: var(--cyan) !important; }
/* ---------- 列表页标题区与面包屑间距 ---------- */
#fh5co-content_show .line.margin-big-top { margin-bottom: 30px !important; }
#fh5co-content_show .full-screen-en-title { margin-top: 30px !important; }
/* 盖掉旧 overlay:before 的红色纹理背景 */
#fh5co-content_show .gallery-item .overlay::before { background: none !important; }

/* 列表页 .vcfengge 内的 .bnt-case：文字胶囊按钮（不是播放键） */
#fh5co-content_show .gallery-item .overlay .vcfengge .bnt-case {
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 0 !important;
  max-height: none !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.12) !important;
  border: 1px solid rgba(255,255,255,.45) !important;
  color: #fff !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
  padding: 6px 18px !important;
  margin: 0 6px !important;
  display: inline-block !important;
  animation: none !important;
  box-shadow: none !important;
  backdrop-filter: none;
}
#fh5co-content_show .gallery-item .overlay .vcfengge .bnt-case::before { content: none !important; }
#fh5co-content_show .gallery-item .overlay .vcfengge .bnt-case:hover {
  background: #fff !important;
  color: var(--brand) !important;
  transform: none !important;
}
/* ===== 案例详情页 上一篇/下一篇 ===== */
#fh5co-content_show .prenext {
  font-size: 14px !important;
  width: 100% !important;
  max-width: 900px;
  height: auto !important;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 40px auto !important;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  line-height: 1.6;
}
#fh5co-content_show .prenext .pn-prev,
#fh5co-content_show .prenext .pn-next {
  flex: 1;
  min-width: 0;
  color: var(--ink-soft);
}
#fh5co-content_show .prenext .pn-next { text-align: right; }
#fh5co-content_show .prenext a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 400;
}
#fh5co-content_show .prenext a.list {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: auto !important;
  height: auto !important;
  float: none !important;
  text-indent: 0 !important;
  background: var(--brand-grad) !important;
  color: #fff !important;
  border: none;
  border-radius: 999px;
  padding: 10px 28px !important;
  font-size: 14px;
  font-weight: 500;
  transition: all .3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
#fh5co-content_show .prenext a.list:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
/* ===== Footer 关于我们 布局修复 ===== */
footer .about-box .media {
  display: block !important;
}
footer .about-box .media-img {
  float: none !important;
  margin-bottom: 12px;
}
footer .about-box .media-img img {
  max-width: 160px;
  height: auto;
}
footer .about-box .media-body {
  margin-left: 0 !important;
  margin-top: 0 !important;
}
footer .about-box {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
footer .about-box .media-body p {
  color: rgba(255,255,255,.7);
  line-height: 1.8;
  font-size: 13px;
}