/* ============================================================
   {eyou:global name='web_name' /}官网静态版 · 公共样式(PC + 移动端响应式)
   ============================================================
   品牌色: #007aff / #0088ff / #0c8dff
   内容宽: 1300px(PC) / 100%(移动端)
   断点:   768px(手机) / 1024px(平板)
   ------------------------------------------------------------
   说明: 移动端采用"品牌蓝 + 卡片式"设计,内容与 PC 完全一致,
   仅调整排版与视觉呈现。织梦后期可整体替换此文件。
   ============================================================ */

/* ---------- Reset ---------- */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
  color: #262626;
}
*, *:before, *:after { box-sizing: inherit; }
ul, h1, h2, h3, h4, h5, h6, li, p, div { margin: 0; padding: 0; }
li { list-style-type: none; }
a, a:focus, a:hover { cursor: pointer; color: inherit; text-decoration: none; }
a:focus, a:active { outline: none; }
input, textarea { outline: none; border: none; }
img { border: 0; vertical-align: top; }
body { background: #fff; }

::-webkit-scrollbar-track { background: #fff; }
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-thumb { cursor: pointer; border-radius: 5px; background: rgba(0, 0, 0, 0.25); }

/* ---------- 滚动入场动画(替代原 v-animate-onscroll) ---------- */
.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translate3d(0, 100%, 0); }
  to   { opacity: 1; transform: none; }
}
.animate__fadeInUp { -webkit-animation-name: fadeInUp; animation-name: fadeInUp; }
@keyframes fadeInLeft {
  from { opacity: 0; transform: translate3d(-100%, 0, 0); }
  to   { opacity: 1; transform: none; }
}
.animate__fadeInLeft { -webkit-animation-name: fadeInLeft; animation-name: fadeInLeft; }
@keyframes fadeInRight {
  from { opacity: 0; transform: translate3d(100%, 0, 0); }
  to   { opacity: 1; transform: none; }
}
.animate__fadeInRight { -webkit-animation-name: fadeInRight; animation-name: fadeInRight; }
.animate-hidden { opacity: 0; }

/* ---------- 顶部导航 header ---------- */
.header {
  height: 62px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0);
  transition: background 0.3s ease;
}
.header:hover, .header.header-bg { background: #fff; }
.header.header-bg .nav > li > a, .header.header-bg .hotline-label { color: #333; }
.header.header-bg .logo-text { color: #1f2329; }
.header .wrap {
  width: 100%;
  padding: 0 70px;
  display: flex;
  height: 62px;
  align-items: center;
  flex-wrap: nowrap;
}
.logo {
  width: 175px;
  height: 48px;
  flex-shrink: 0;
}
.logo a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../assets/header/logo_black.png) no-repeat center/contain;
  text-indent: -9999px;
  overflow: hidden;
}
.header.header-bg .logo a { background-image: url(../assets/header/logo_black.png); }
/* 首页透明态: 白字导航 + 白 logo(对齐 AppHeader 的 .b-w / .logo-b) */
.header .nav.b-w > li > a { color: #fff; }
.logo a.logo-b { background-image: url(../assets/header/logo-white.png); }
/* 首页滚动后: 半透明黑毛玻璃(对齐 AppHeader 的 .black-header) */
.header.black-header { background: rgba(0, 0, 0, 0.4); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.header.black-header .nav.b-w > li > a,
.header.black-header .hotline-label { color: #fff; }
.header.black-header .logo a { background-image: url(../assets/header/logo-white.png); }
.header.black-header:hover { background: #fff; }
.header.black-header:hover .nav > li > a,
.header.black-header:hover .hotline-label { color: #333; }
.header.black-header:hover .logo a { background-image: url(../assets/header/logo_black.png); }
/* 首页透明态 hover: 白底 + 黑字 + 黑 logo */
.header:hover .nav.b-w > li > a { color: #333; }
.header:hover .hotline-label { color: #333; }
.header:hover .logo a.logo-b { background-image: url(../assets/header/logo_black.png); }
.nav { display: flex; margin-left: 24px; height: 100%; }
.nav > li { position: relative; height: 100%; display: flex; align-items: center; }
.nav > li > a {
  display: flex;
  align-items: center;
  padding: 0 16px;
  height: 100%;
  font-size: 14px;
  color: #333;
  position: relative;
}
.nav > li.cur > a { font-weight: bold; }
.nav > li.cur > a::after {
  content: "";
  width: 20px;
  height: 3px;
  background: #007aff;
  position: absolute;
  top: 46px;
  left: 50%;
  transform: translateX(-50%);
}
/* PC 悬停显示下拉 */
.nav > li:hover .nav-submenu { display: flex; }
.nav > li:hover .full-sub-nav { display: block; }
/* 产品与服务下拉 */
.nav-submenu {
  position: absolute;
  top: 74px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  padding: 14px 8px;
  z-index: 999;
}
.nav-submenu::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  border: 10px solid transparent;
  border-bottom-color: #fff;
}
.nav-submenu a {
  display: flex;
  justify-content: center;
  min-width: 90px;
  padding: 8px 16px;
  font-size: 14px;
  color: #595959;
  border-radius: 2px;
}
.nav-submenu a:hover, .nav-submenu a.cur-nav-a { color: #007aff; background: rgba(0, 122, 255, 0.08); }
/* 行业应用全宽下拉 */
.full-sub-nav {
  position: fixed;
  top: 62px; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
  display: none;
  z-index: 998;
}
.full-sub-nav-pannel { width: 1300px; margin: 0 auto; display: flex; }
.full-sub-nav-pannel-left-nav { width: 209px; flex-shrink: 0; padding: 20px 8px 12px; box-sizing: border-box; }
.full-sub-nav-pannel-left-nav-item {
  width: 193px;
  height: 57px;
  border-radius: 4px;
  margin-bottom: 12px;
  cursor: pointer;
  padding: 8px 9px 8px 52px;
  background-repeat: no-repeat;
  background-position: 8px center;
  background-size: 36px;
}
.full-sub-nav-pannel-left-nav-item.jf-fmom { background-image: url(../assets/header/nav-icon-1.png); }
.full-sub-nav-pannel-left-nav-item.jf-robot { background-image: url(../assets/header/nav-icon-2.png); }
.full-sub-nav-pannel-left-nav-item:hover, .full-sub-nav-pannel-left-nav-item-cur { background-color: rgba(12, 141, 255, 0.04); }
.left-nav-item-title { font-size: 16px; line-height: 22px; color: #262626; }
.full-sub-nav-pannel-left-nav-item-cur .left-nav-item-title,
.full-sub-nav-pannel-left-nav-item:hover .left-nav-item-title { color: #0c8dff; }
.left-nav-item-text { font-size: 12px; line-height: 17px; color: #595959; }
.full-sub-nav-pannel-boxs { flex-grow: 1; display: flex; padding: 8px 0; }
.full-sub-nav-pannel-box { display: none; width: 100%; padding: 8px 0; }
.full-sub-nav-pannel-box-cur { display: flex; }
.navs-list { display: flex; flex-grow: 1; padding-top: 12px; }
.full-sub-nav-pannel-a {
  display: flex;
  flex-direction: column;
  height: 57px;
  margin-left: 24px;
  padding: 7px 12px;
  box-sizing: border-box;
}
.full-sub-nav-pannel-a-title { height: 24px; line-height: 24px; font-size: 16px; color: #262626; padding-left: 28px; background-repeat: no-repeat; background-position: left center; background-size: 24px; margin-bottom: 2px; }
.full-sub-nav-pannel-a-title.yanhua { background-image: url(../assets/header/icon-yanhua.png); }
.full-sub-nav-pannel-a-title.pidaiji { background-image: url(../assets/header/icon-pidaiji.png); }
.full-sub-nav-pannel-a-title.gangjiegou { background-image: url(../assets/header/icon-gangjiegou.png); }
.full-sub-nav-pannel-a-text { font-size: 12px; line-height: 17px; color: #595959; }
.full-sub-nav-pannel-ad { width: 240px; height: 154px; margin-left: auto; flex-shrink: 0; }
.full-sub-nav-pannel-ad-1 { background: url(../assets/header/full-ad-1.png) no-repeat center/cover; }
.full-sub-nav-pannel-ad-2 { background: url(../assets/header/full-ad-2.png) no-repeat center/cover; }
.full-sub-nav-pannel-ad h3 { font-size: 20px; font-weight: bold; text-align: center; margin-top: 12px; background: linear-gradient(96deg, #0c8dff 5%, #0088ff 99%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.hotline-box { display: flex; align-items: center; margin-left: auto; }
.hotline-label { font-size: 14px; color: #333; }
.hotline-tel {
  font-size: 16px;
  font-weight: bold;
  color: #007aff;
  padding-left: 23.5px;
  margin: 0 0 0 8px;
  background: url(../assets/header/icon-tel.png) no-repeat left center/16px;
}

/* 移动端汉堡按钮 */
.nav-toggle { display: none; }

/* ---------- 咨询热线条(ConsultationBand) ---------- */
.part-8 {
  width: 100%;
  height: 228px;
  box-sizing: border-box;
  padding-top: 42px;
  position: relative;
  z-index: 2;
  background: url(../assets/images/fmom/part-8-bg.png) no-repeat center/cover;
}
.part-8-title { font-size: 32px; font-weight: bold; line-height: 44px; color: #262626; text-align: center; margin-bottom: 40px; }
.tel-box {
  width: 476px;
  height: 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #007aff;
  padding: 0 8px 0 16px;
  overflow: hidden;
}
.tel-label { font-size: 20px; color: #595959; }
.tel-box-btn {
  background: #007aff;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding: 0 24px;
  border-radius: 8px;
  height: 44px;
  line-height: 44px;
  margin-left: auto;
  text-align: center;
}

/* ---------- 页脚 footer ---------- */
.footer { background: #1f2329; font-size: 14px; color: #fff; position: relative; z-index: 7; padding-bottom: 57px; }
.footer-wrap { display: flex; margin: 0 auto; width: 1300px; padding-top: 40px; }
.footer-info { box-sizing: border-box; padding: 0 94px 0 14px; }
.footer-logo {
  width: 175px; height: 48px;
  display: flex;
  background: url(../assets/images/footer/logo-white.png) no-repeat center/cover;
  margin-bottom: 11px;
}
.foot-tel { font-size: 14px; margin-bottom: 16px; }
.foot-tel b { font-size: 16px; }
.foot-address-title { font-size: 14px; height: 20px; line-height: 20px; margin-bottom: 6px; }
.foot-address-text { font-size: 18px; line-height: 25px; }
.footer-nav { display: flex; }
.footer-nav-list { margin-right: 64px; }
.footer-nav-list:last-child { margin-right: 0; }
.footer-nav-list a { color: #bfbfbf; transition: color 0.3s ease; }
.footer-nav-list a:hover { color: #fff; }
.footer-nav-title { font-size: 18px; font-weight: bold; line-height: 25px; color: #fff; margin-bottom: 24px; }
.footer-nav-list li { line-height: 20px; margin-bottom: 12px; font-size: 14px; }
.foot-wxqr { display: flex; margin-left: auto; }
.qr-code { text-align: center; }
.qr-code img { width: 100px; height: 100px; display: flex; border-radius: 8px; margin-bottom: 8px; }
.qr-code.m-l-22 { margin-left: 22px; }
.foot-wxqr p { height: 20px; line-height: 20px; font-size: 14px; }
.copyright { background: #1f2329; font-size: 14px; color: #fff; position: relative; z-index: 2; display: flex; height: 52px; }
.copy-wrap { margin: 0 auto; width: 1300px; display: flex; align-items: center; font-size: 14px; }
.beian-pic { width: 28px; height: 28px; margin: 0 13px 0 14px; }
.copy-text { margin-left: auto; }

/* ---------- 页面通用 ---------- */
.page-wrap { padding-top: 62px; }
/* 织梦后期提示: 页面结构中的 section 均可直接替换为 {dede:arclist} 等标签 */

/* ============================================================
   移动端响应式(手机 <768px)
   设计: 品牌蓝 + 卡片式布局,内容与 PC 一致
   ============================================================ */
@media screen and (max-width: 767px) {
  /* 顶部导航: 汉堡菜单 */
  .header .wrap { padding: 0 16px; }
  .logo { width: 130px; height: 40px; }
  .nav-toggle {
    display: flex;
    width: 40px; height: 40px;
    margin-left: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1001;
  }
  .nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .hotline-box { display: none; }

  .nav {
    position: fixed;
    top: 62px; left: 0; right: 0;
    bottom: 0;
    flex-direction: column;
    background: #fff;
    height: auto;
    margin: 0;
    padding: 10px 0 40px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
  }
  .nav.open { display: flex; }
  .nav > li { height: auto; flex-direction: column; align-items: stretch; border-bottom: 1px solid #f0f0f0; }
  .nav > li > a { height: 48px; font-size: 16px; justify-content: space-between; }
  .nav > li.cur > a { color: #007aff; }
  .nav > li.cur > a::after { display: none; }
  /* 移动端子菜单直接展开 */
  .nav-submenu, .full-sub-nav {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    transform: none;
    width: 100%;
  }
  .nav-submenu::before { display: none; }
  .nav-submenu { flex-direction: column; padding: 0 16px 10px; }
  .nav-submenu a { justify-content: flex-start; min-width: 0; }
  .full-sub-nav { background: #f7f9fc; }
  .full-sub-nav-pannel { width: 100%; flex-direction: column; padding: 0 16px; }
  .full-sub-nav-pannel-left-nav { width: 100%; padding: 8px 0; display: flex; }
  .full-sub-nav-pannel-left-nav-item { width: 50%; margin: 0; padding-left: 44px; }
  .full-sub-nav-pannel-box { display: flex; flex-direction: column; }
  .navs-list { flex-direction: column; }
  .full-sub-nav-pannel-a { margin-left: 0; height: auto; padding: 8px 0; }
  .full-sub-nav-pannel-ad { display: none; }
  .nav-parent-toggle { display: flex; }

  /* 咨询热线条 */
  .part-8 { height: auto; padding: 36px 16px; }
  .part-8-title { font-size: 22px; line-height: 32px; margin-bottom: 24px; }
  .tel-box { width: 100%; height: 54px; }
  .tel-label { font-size: 16px; }
  .tel-box-btn { font-size: 16px; padding: 0 18px; height: 40px; line-height: 40px; }

  /* 页脚 */
  .footer { padding-bottom: 24px; }
  .footer-wrap { width: 100%; flex-direction: column; padding: 32px 16px 0; }
  .footer-info { padding: 0; margin-bottom: 24px; }
  .footer-logo { width: 140px; height: 40px; }
  .footer-nav { flex-wrap: wrap; }
  .footer-nav-list { width: 50%; margin: 0 0 20px; }
  .foot-wxqr { margin: 0; justify-content: flex-start; }
  .qr-code { margin-right: 22px; }
  .copyright { height: auto; padding: 12px 0; }
  .copy-wrap { width: 100%; flex-direction: column; text-align: center; padding: 0 16px; }
  .beian-pic { margin: 0 auto 6px; }
  .copy-text { margin: 6px auto 0; }
}
