@charset "UTF-8";
/* ========== 全局重置与基础样式 ========== */

/* 页面主体：隐藏水平滚动条，垂直滚动条自动出现 */
body {
  overflow-y: auto;
}

/* 常用块级元素外边距归零，避免布局异常 */
body,
p,
form,
textarea,
h1,
h2,
h3,
h4,
h5,
dl,
dd {
  margin: 0px;
}

/* 表单元素与列表的内外边距归零，保证统一性 */
input,
button,
ul,
ol {
  margin: 0px;
  padding: 0px;
}

/* 全局字体与颜色设置：14px/28px行高，优先微软雅黑，灰色主文字 */
body,
input,
button,
form {
  font-size: 14px;
  line-height: 28px;
  font-family: "microsoft yahei", "宋体", "Arial";
  color: #333;
}

/* 标题字号统一重置为14px，去掉默认加粗，便于自定义 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  font-weight: normal;
}

/* 列表样式去除默认圆点或编号 */
ul,
ol,
li {
  list-style: none;
}

/* 输入框背景透明，无边框（后续可单独定义） */
input {
  background: none;
  border: 0 none;
}

/* 图片与内嵌框架边框归零，避免显示边框线 */
img,
iframe {
  border: 0px;
}

/* 倾斜标签恢复常规样式，不用斜体 */
em,
i {
  font-style: normal;
}

/* 按钮、输入框等字体大小继承父级百分比，便于缩放 */
button,
input,
select,
textarea {
  font-size: 100%;
}

/* 表格边框合并，间距归零，保证表格干净 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ========== 通用工具类（颜色、浮动、定位、清除等） ========== */

/* 红色字体，用于提示或强调 */
.red {
  color: #ba292e;
}

/* 左浮动 */
.fl {
  float: left;
}

/* 右浮动 */
.fr {
  float: right;
}

/* 文本水平居中 */
.tac {
  text-align: center;
}

/* 文本右对齐 */
.tar {
  text-align: right;
}

/* 绝对定位快捷类 */
.poa {
  position: absolute;
}

/* 相对定位快捷类 */
.por {
  position: relative;
}

/* 隐藏元素（不可见且不占位） */
.hidden {
  display: none;
}

/* 固定宽度容器，居中显示，常用于版心 */
.w1200 {
  width: 1200px;
  margin: 0 auto;
}

/* 全局链接样式：深灰色，无下划线 */
a {
  color: #434343;
  text-decoration: none;
}

/* 链接悬浮色：品牌蓝 */
a:hover {
  color: #1048a0;
  text-decoration: none;
}

/* 访问过的链接同样无下划线（保持一致性） */
a:visited {
  text-decoration: none;
}

/* 过渡动画类：给自身及所有后代添加 300ms 缓动过渡效果 */
.ease,
.ease * {
  -webkit-transition: all ease 300ms;
  -moz-transition: all ease 300ms;
  -ms-transition: all ease 300ms;
  -o-transition: all ease 300ms;
  transition: all ease 300ms;
}

/* 无过渡类：所有变化瞬间生效，常用于禁用动画场景 */
.noease,
.noease * {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}

/* 占位符颜色统一定义，适配不同浏览器前缀 */
:-moz-placeholder {
  color: #aaa;
}
::-moz-placeholder {
  color: #aaa;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #aaa;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #aaa;
}

/* 清除浮动（旧式） */
.clear {
  clear: both;
}

/* 清除浮动（现代微清除法），兼容 IE7 及现代浏览器 */
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

/* ========== 网站头部（整合固定/隐藏/透明背景） ========== */
/* 主导航栏容器：固定定位，默认隐藏在上方，滚动时通过 .show 类显示 */
.header_main {
  position: fixed;
  top: -105px;
  left: 0;
  width: 100%;
  height: 105px;
  background: #fff;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  border-bottom: 3px solid #1048a0;
  transition: top 0.3s ease;
}

/* 导航栏显示状态 */
.header_main.show {
  top: 0;
}

/* 滚动时半透明效果 */
.header_main.bg {
  background: rgba(255, 255, 255, 0.9);
}

/* 版心容器 - 使用flex实现两端对齐，增加左右内边距 */
.header_main .w1200 {
  position: relative;
  display: flex;
  justify-content: space-between; /* Logo和菜单两端对齐 */
  align-items: center;            /* 垂直居中 */
  width: 100%;
  max-width: 1400px;              /* 增加最大宽度 */
  padding: 0 40px;                /* 左右内边距，让内容不贴边 */
  margin: 0 auto;
  box-sizing: border-box;
  height: 100%;                   /* 占满父容器高度 */
}

/* Logo样式优化 */
.header_main .logo {
  display: block;
  flex-shrink: 0;                 /* 防止被压缩 */
  line-height: 0;                 /* 消除行高影响 */
}

.header_main .logo img {
  max-height: 80px;               /* 限制Logo最大高度 */
  width: auto;
  display: block;
}

/* ========== 网站主导航栏样式 ========== */
/* 导航最外层容器 */
#nav {
  position: relative;
  display: block;
  flex-shrink: 0;                 /* 防止菜单被压缩 */
}

/* 导航列表容器 - 使用flex布局 */
#nav .navlist {
  display: flex;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* 导航每一项（一级菜单） */
#nav li {
  float: none;                    /* 移除浮动 */
  width: auto;                    /* 自适应宽度 */
  min-width: 100px;               /* 最小宽度 */
  position: relative;
  border-left: 1px solid #ccc;
}
/* 一级菜单文字链接 */
#nav li a {
  height: 105px;
  display: block;
  text-align: center;
  position: relative;
  color: #808080;
  font-size: 20px;

  line-height: 20px;
  padding: 0 25px;                /* 左右内边距，让菜单更舒展 */
  padding-top: 33px;
  padding-bottom: 24px;
  box-sizing: border-box;
  white-space: nowrap;            /* 文字不换行 */
}

/* 一级菜单下方的英文小字 */
#nav li a span {
  display: block;
  font-size: 12px;
}

/* 鼠标悬浮或当前高亮的一级菜单样式 */
#nav li.hover a,
#nav li:hover a {
  background: #f0f0f0;
}

/* ========== 二级下拉菜单样式保持不变 ========== */
/* 二级菜单容器 */
#nav ul .subnav {
  position: absolute;
  filter: progid:DXImageTransform.Microsoft.Shadow(color=#4c91c0,direction=120,strength=5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease 0s;
  transform: translate3d(0, 10px, 0);
  -moz-transform: translate3d(0, 10px, 0);
  -webkit-transform: translate3d(0, 10px, 0);
  box-shadow: 0 13px 42px 11px rgba(0, 0, 0, 0.05);
  height: auto;
  overflow: hidden;
  top: 100%;
  left: 50%;
  margin-left: -75px;
  width: 150px;
  z-index: 199;
  padding-top: 8px;
}

#nav ul li:hover .subnav {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}

/* 二级菜单顶部小三角 */
#nav ul .subnav:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #1048a0;
}

/* 二级菜单里的每一项链接 */
#nav ul .subnav a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 550;
  height: 50px;
  line-height: 1;
  padding: 0;
  max-width: 100%;
  border: 0;
  background: #1048a0;
  text-align: center;
}

#nav ul .subnav a:hover {
  color: #1048a0;
  background: #fff;
}

/* ========== 轮播图响应式全屏样式调整 ========== */
/* 主要修改：将固定高度改为视口高度，图片宽度改为100%自适应，移除固定宽度的居中偏移 */

/* 轮播图整体容器 - 使用视口高度，确保全屏 */
#banner_main {
  overflow: hidden;
  position: relative;
  z-index: 2;
  width: 100%;           /* 宽度100%撑满 */
  max-width: none;       /* 移除最大宽度限制 */
  margin: 0 auto;
}

/* 轮播图主体 - 高度使用视口单位，实现全屏效果 */
#banner_main .banner {
  height: 100vh;         /* 使用视口高度，自动适配不同屏幕 */
  min-height: 500px;     /* 设置最小高度，防止过小 */
  max-height: 900px;     /* 可选：限制最大高度，避免过高 */
}

/* 轮播区域主容器 - 全宽全高 */
#banner {
  width: 100%;
  min-width: auto;       /* 移除最小宽度限制，实现响应式 */
  position: relative;
  overflow: hidden;
  z-index: 0;
  height: 100%;          /* 继承父级高度 */
}

/* 限制图片容器高度自适应 */
#banner,
.banner ul {
  max-height: none;      /* 移除最大高度限制 */
  overflow: hidden;
  height: 100%;
}

/* 每张轮播图 - 全屏覆盖 */
.banner li {
  width: 100%;
  height: 100%;          /* 高度100%填充 */
  position: absolute;
  z-index: 1;
  overflow: hidden;
  display: none;
}

.banner li:first-child {
  display: block;
}

/* 轮播图片样式 - 响应式全屏，使用 object-fit 保持比例 */
.banner li img {
  width: 100%;           /* 宽度100%撑满容器 */
  height: 100%;          /* 高度100%填充 */
  display: block;
  position: relative;
  left: 0;               /* 移除居中定位 */
  margin-left: 0;        /* 移除负边距 */
  top: 0;
  object-fit: cover;     /* 图片覆盖容器，保持比例裁剪，无留白 */
  object-position: center center; /* 图片居中显示 */
}

/* 轮播指示器（圆点）- 响应式居中 */
#banner .tip {
  width: 100%;           /* 宽度100% */
  max-width: 1000px;     /* 最大宽度限制 */
  height: 10px;
  line-height: 0;
  font-size: 0;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%); /* 使用 transform 实现完美居中，替代 margin-left */
  bottom: 20px;
  z-index: 3;
  padding: 0 15px;       /* 两侧留白，避免贴边 */
  box-sizing: border-box;
}

/* 左右切换按钮 - 响应式位置调整 */
#banner #btn_prev,
#banner #btn_next {
  width: 50px;
  height: 70px;
  position: absolute;
  top: 50%;
  margin-top: -35px;
  background: url("../images/btn-banner.png") no-repeat;
  background-size: 100px 70px; /* 背景图片自适应按钮尺寸 */
  z-index: 5;
  opacity: 0.8;
  cursor: pointer;
}

#banner #btn_prev {
  left: 2%;              /* 使用百分比，更灵活 */
}

#banner #btn_next {
  right: 2%;
  background-position: right;
}

/* ========== 搜索栏 ========== */
.search_main {
  height: 60px;
  width: 100%;
  overflow: hidden;
  background: #f0f0f0;
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
}
/* 左侧热门关键词区域 */
.search_main .skey {
  float: left;
  line-height: 60px;
}
.search_main .skey p {
  font-size: 14px;
  font-weight: bold;
  color: #666;
  line-height: 60px;
}
/* 关键词链接样式 */
.search_main .skey p a {
  display: inline-block;
  font-weight: normal;
  color: #666;
  border-right: 1px solid #e8e8e8;
  line-height: 15px;
  padding: 0 12px;
}
/* 最后一个关键词去掉右边框 */
.search_main .skey p a:last-of-type {
  border-right: none;
}
.search_main .skey p a:hover {
  color: #1048a0;
}
/* 搜索表单容器，右浮动 */
.search_main .search_form {
  float: right;
  width: 285px;
  height: 30px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  background-color: #fff;
  position: relative;
  margin-top: 14px;
  border-radius: 3px;
}
/* 清除输入框默认边框和轮廓 */
.search_main .search_form input {
  background-color: none;
  border: none;
  outline: none;
}
/* 文本输入框 */
.search_main .search_form .stxt {
  width: 245px;
  height: 30px;
  line-height: 28px;
  display: block;
  text-indent: 10px;
  color: #999;
}
/* 搜索按钮，绝对定位在右侧 */
.search_main .search_form .sbtn {
  width: 40px;
  height: 30px;
  display: block;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0;
  background: #1048a0 url("../images/search.png") center no-repeat;
  border-radius: 3px;
}

/* ========== 友情链接区域 ========== */
.link {
  padding: 20px 0;
  background: #f7f7f7;
}
/* 链接区域标题样式 */
.linklogo {
  width: 165px;
  height: 26px;
  position: relative;
  z-index: 10;
  margin-left: 10px;
  color: #666;
  font-size: 16px;
  line-height: 26px;
  background: #f7f7f7;
}
.linklogo b {
  display: inline-block;
  float: left;
  color: #1048a0;
  font-size: 24px;
  font-weight: bold;
  margin: 0 10px;
}
/* 链接列表容器，带边框，与标题重叠产生凹陷效果 */
.linkcon {
  width: 1198px;
  line-height: 53px;
  border: #cccccc solid 1px;
  position: relative;
  top: -11px;
}
.linkcon a {
  padding-left: 20px;
  color: #666;
}

/* ========== 网站底部 ========== */
.footer_main {
  width: 100%;
  background-color: #191919;
  color: #fff;
}
.footer_main .footer {
  padding-bottom: 40px;
}
/* 底部友情链接区域 */
.footer_main .footer .links {
  padding: 20px 0;
  margin-bottom: 40px;
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer_main .footer .links span {
  color: #fff;
  display: inline-block;
}
.footer_main .footer .links a {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  padding-right: 10px;
  opacity: 0.7;
}
/* 二维码区域 */
.footer_main .qcode {
  width: 540px;
}
.footer_main .qcode .ewm {
  width: 130px;
  display: block;
  text-align: center;
}
.footer_main .qcode .ewm img {
  width: 100%;
  display: block;
}
.footer_main .qcode .ewm h3 {
  width: 100%;
  display: block;
  opacity: 0.7;
}
/* 联系电话区域 */
.footer_main .btel {
  width: 300px;
  line-height: 28px;
}
.footer_main .btel img {
  display: block;
  margin: 0 auto 8px;
  max-width: 100%;
  max-height: 60%;
}
.footer_main .btel .p1 {
  color: #fff;
}
.footer_main .btel .p2 {
  font-family: "GrayDesign Regular", "arial, helvetica, sans-serif";
  font-size: 34px;
  color: #fff;
  line-height: 34px;
  padding-bottom: 5px;
}
.footer_main .btel .p3 {
  color: #fff;
  line-height: 22px;
  opacity: 0.7;
}
/* 底部导航列表（各栏目） */
.footer_main .botnavlist li {
  float: left;
  width: 150px;
  display: block;
  list-style: none;
  font-size: 16px;
  line-height: 32px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}
.footer_main .botnavlist li:first-child {
  padding-left: 0px;
}
.footer_main .botnavlist li a {
  color: #fff;
  display: block;
  line-height: 32px;
  font-size: 14px;
}
/* 二级菜单（如果有）的容器 */
.footer_main .botnavlist li .drop {
  padding-top: 10px;
}
.footer_main .botnavlist li .drop a {
  display: block;
  line-height: 26px;
  color: #fff;
  width: 100%;
  font-size: 12px;
  opacity: 0.7;
}
/* 版权信息区域 */
.copymain {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  line-height: 60px;
  color: #fff;
  font-size: 12px;
  background: #101010;
}
.copymain p a {
  color: #fff;
}

/* ========== 首页专用样式 ========== */
/* 首页通用标题样式（带装饰线） */
.index .in_title {
  text-align: center;
  padding-bottom: 20px;
}
.index .in_title h3 {
  color: #333;
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
  position: relative;
  height: 50px;
}
/* 标题下方长装饰线（灰色） */
.index .in_title h3:before {
  display: inline-block;
  content: "";
  width: 500px;
  height: 1px;
  position: absolute;
  background-color: #ccc;
  left: 50%;
  margin-left: -250px;
  bottom: 0;
  z-index: 1;
}
/* 标题下方短装饰线（蓝色）覆盖部分 */
.index .in_title h3:after {
  display: inline-block;
  content: "";
  width: 150px;
  height: 2px;
  background-color: #1048a0;
  position: absolute;
  z-index: 2;
  left: 50%;
  margin-left: -75px;
  bottom: 0;
}
.index .in_title p {
  color: #999;
  font-size: 14px;
  line-height: 18px;
  margin-top: 15px;
}
/* ========== 首页产品中心模块 ========== */
.index .pro_box {
  padding-top: 45px;
  padding-bottom: 25px;
}
/* 左侧产品分类区域 */
.index .pro_box .pro_l {
  width: 260px;
  float: left;
}
.index .pro_box .pro_l .pro_l_left {
  border: 1px solid #1048a0;
  background: #fff;
  border-top: 0px;
  overflow: hidden;
}
/* 分类标题区域（蓝色背景） */
.index .pro_box .pro_l .pro_tit {
  height: 120px;
  box-sizing: border-box;
  text-align: center;
  background: #1048a0;
  padding: 24px 0;
  color: #fff;
  line-height: 36px;
}
.index .pro_box .pro_l .pro_tit h3 {
  font-size: 20px;
  color: #fff;
  font-weight: bold;
}
.index .pro_box .pro_l .pro_tit span {
  font-size: 18px;
  display: block;
  text-align: center;
}
/* 产品分类列表 */
.index .pro_box .pro_l ul {
  padding: 6px 6px;
  overflow: hidden;
}
.index .pro_box .pro_l ul li {
  color: #333;
  font-size: 18px;
  line-height: 72px;
  border-bottom: 1px dashed #ccc;
}
.index .pro_box .pro_l ul li a {
  position: relative;
  display: block;
  color: #333;
  padding-left: 50px;
}
.index .pro_box .pro_l ul li:last-child {
  border: 0;
}
/* 分类链接右侧箭头图标 */
.index .pro_box .pro_l ul li a:after {
  content: ">";
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -10px;
  width: 20px;
  height: 20px;
  font-family: 宋体;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  background: #a4a4a4;
  border-radius: 50%;
  transition: all 0.5s;
}
.index .pro_box .pro_l ul li:hover a {
  color: #1048a0;
}
.index .pro_box .pro_l ul li a:hover:after {
  background: #1048a0;
}
/* 左侧联系我们卡片 */
.index .pro_box .pro_l .pro_lxwm {
  height: 75px;
  padding-top: 45px;
  padding-left: 20px;
  color: #fff;
  font-size: 14px;
  background: #1048a0 no-repeat 20px 15px;
}
.index .pro_box .pro_l .pro_lxwm b {
  font-size: 20px;
}
/* 右侧产品列表（网格布局） */
.index .pro_box .pro_list {
  float: right;
  width: 920px;
}
.index .pro_box .pro_list li {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
  padding: 4px;
  background: #fff;
  border: 1px solid #e5e5e5;
  transition: 0.5s;
}
/* 每行第三个产品去掉右边距 */
.index .pro_box .pro_list li:nth-child(3n) {
  margin-right: 0;
}
/* 产品图片容器，固定宽高，溢出隐藏 */
.index .pro_box .pro_list li .img {
  width: 283px;
  height: 212px;
  overflow: hidden;
}
.index .pro_box .pro_list li .img img {
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}
/* 产品标题 */
.index .pro_box .pro_list li h3 {
  font-size: 19px;
  line-height: 40px;
  color: #1048a0;
  text-align: center;
}
/* 悬浮时整体背景变蓝，图片放大，标题变白 */
.index .pro_box .pro_list li:hover {
  background: #1048a0;
  border-color: #1048a0;
}
.index .pro_box .pro_list li:hover .img img {
  transform: scale(1.2);
}
.index .pro_box .pro_list li:hover h3 {
  color: #fff;
}
/* ========== 关于我们模块（视差背景） ========== */
.index .about {
  background: url("../images/index/about_bg.png") no-repeat center center;
  background-attachment: fixed;   /* 视差滚动效果 */
  padding: 45px 0;
}
/* 半透明遮罩层，突出文字 */
.index .about .box {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px;
  height: 530px;
}
.index .about .box .title {
  text-align: center;
  padding-bottom: 60px;
}
.index .about .box .title h3 {
  color: #fff;
  font-size: 24px;
  line-height: 30px;
  font-weight: bold;
}
.index .about .box .title p {
  color: #fff;
  font-size: 14px;
  line-height: 18px;
  margin-top: 15px;
}
/* 内容区域，左侧留白给图片 */
.index .about .box .txt {
  position: relative;
  width: 700px;
  height: 400px;
  padding-left: 500px;
}
/* 背景装饰框 */
.index .about .box .txt .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 443px;
  height: 394px;
  background: url("../images/bg.png") no-repeat left top;
}
/* 实际展示的图片 */
.index .about .box .txt .img img {
  position: absolute;
  top: 55px;
  left: 70px;
  width: 300px;
  height: 340px;
  display: block;
}
/* 介绍文字 */
.index .about .box .txt p {
  color: #fff;
  font-size: 14px;
  line-height: 30px;
  text-align: justify;
}
/* ========== 品牌优势模块 ========== */
.index .youshi {
  margin: 35px auto 15px auto;
}
/* 优势区域标题（带背景图） */
.index .youshi .tit {
  color: #fff;
  font-size: 24px;
  line-height: 34px;
  font-weight: bold;
  font-style: italic;
  padding: 9px 0;
  text-align: center;
  background: url("../images/bg_9.gif") no-repeat center;
}
/* 优势组第一组，左对齐，右侧预留图片位置 */
.index .youshi .youshi_1 {
  position: relative;
  height: 360px;
  padding-top: 40px;
}
.index .youshi .youshi_1 dl {
  float: left;
  width: 580px;
  height: auto;
  margin-bottom: 60px;
  margin-right: 50%;
}
/* 优势组第二组，右对齐，左侧预留图片位置 */
.index .youshi .youshi_2 {
  position: relative;
  height: 380px;
}
.index .youshi .youshi_2 dl {
  float: right;
  width: 580px;
  height: auto;
  margin-bottom: 60px;
  margin-left: 50%;
  text-align: left;
}
/* 优势图标（圆形数字标记） */
.index .youshi dl dt i {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 46px;
  height: 46px;
  color: #fff;
  font-size: 40px;
  line-height: 46px;
  font-weight: bold;
  text-align: center;
  background: #1048a0;
  border-radius: 50%;
}
/* 优势标题 */
.index .youshi dl dt span {
  display: block;
  height: 55px;
  color: #1048a0;
  font-weight: bold;
  font-size: 26px;
  line-height: 43px;
  margin-left: 60px;
  border-bottom: 1px dashed #ddd;
}
.index .youshi dl dt {
  position: relative;
  height: 55px;
}
/* 优势描述文字 */
.index .youshi dl dd {
  width: 526px;
  height: auto;
  color: #666;
  font-size: 14px;
  line-height: 26px;
  text-align: justify;
  padding: 10px 0 0 57px;
}
/* 优势配图 */
.index .youshi .img {
  position: absolute;
  right: 0;
}
.index .youshi .youshi_2 .img {
  left: 0;
  right: auto;
}
/* ========== 快速了解模块（横向滚动 + 完整显示 + 不竖排） ========== */
.index .case {
  background-color: #f6f6f6;
  padding: 45px 0 25px;
  height: auto;
  min-height: auto;
  overflow: hidden; /* 关键：横向滚动用 hidden */
}

.index .case .w1200 {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.index .case .bd {
  padding-top: 30px;
  width: 100%;
  overflow: hidden;
}

/* 横向滚动容器：不换行，一行排开 */
.index .case .pro_list {
  display: flex;
  flex-wrap: nowrap !important; /* 不换行，横向滚动 */
  justify-content: flex-start;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  box-sizing: border-box;
  height: auto;
}

/* 卡片：固定宽度，4个并排，高度自适应 */
.index .case .pro_list li {
  width: 270px !important; /* 固定宽度，4个刚好一行 */
  margin: 0 10px 20px 10px;
  flex-shrink: 0; /* 不压缩 */
  box-sizing: border-box;
  background: #fff;
  padding: px;
  transition: all 0.5s;
  overflow: visible;
  height: auto;
  float: none;
  border: none;
}

.index .case .pro_list li a {
  display: block;
  text-decoration: none;
  width: 100%;
  height: 100%;
}

/* 图片：固定高度 */
.index .case .pro_list li a .img {
  width: 100%;
  height: 200px;
  border: 1px solid #f0f0f0;
  overflow: hidden;
  background-color: #f9f9f9;
}

.index .case .pro_list li a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.5s;
}

/* 标题：修复换行 + 完整显示 */
.index .case .pro_list li a h3 {
  color: #666;
  font-size: 18px;
  text-align: center;
  margin: 0;
  padding: 12px 8px;
  line-height: 1.4;
  min-height: 44px; /* 保证标题区域高度一致 */
  
  /* 关键修复：允许换行、不截断、不隐藏 */
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  height: auto;
  word-break: break-word;
}

/* 悬浮效果 */
.index .case .pro_list li:hover {
  background: #1048a0;
}
.index .case .pro_list li:hover .img img {
  transform: scale(1.2);
}
.index .case .pro_list li:hover h3 {
  color: #fff;
}

/* 左右箭头 */
.index .case .hd {
  position: absolute;
  width: 100%;
  top: 40%;
  left: 0;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}
.index .case .hd span {
  width: 20px;
  height: 145px;
  cursor: pointer;
  position: absolute;
  top: 0;
  background: url("../images/btn-scroll.png") no-repeat;
  pointer-events: auto;
}
.index .case .hd .prev {
  background-position: left center;
  left: -35px;
}
.index .case .hd .next {
  background-position: right center;
  right: -35px;
}

/* ========== 新闻中心模块 ========== */
.index .inews {
  position: relative;
  margin-top: 40px;
  margin-bottom: 30px;
}
/* 中间分隔线（左右两栏分界） */
.index .inews:before {
  position: absolute;
  top: 0;
  left: 50%;
  content: " ";
  width: 1px;
  height: 100%;
  background: #e7e7e7;
}
.index .inews .title {
  position: relative;
  width: 100%;
  height: 30px;
  line-height: 30px;
  margin-bottom: 28px;
}
/* 标题底部横线 */
.index .inews .title:before {
  position: absolute;
  top: 50%;
  left: 0;
  content: " ";
  width: 100%;
  height: 1px;
  background: #e7e7e7;
}
.index .inews .title h3 {
  position: relative;
  display: inline-block;
  color: #333;
  font-size: 22px;
  padding-right: 20px;
  background: #fff;
}
.index .inews .title h3 span {
  display: inline-block;
  margin-left: 10px;
  color: #1048a0;
}
.index .inews .title a {
  position: relative;
  color: #999;
  font-size: 16px;
  padding: 0 10px;
  margin-right: 20px;
  background: #fff;
}
.index .inews .title a:hover {
  color: #1048a0;
}
/* 新闻列表样式 */
.index .inews .newslist {
  line-height: 55px;
}
.index .inews .newslist li {
  height: 55px;
  line-height: 55px;
  overflow: hidden;
  border-bottom: 1px dashed #bebcbd;
}
.index .inews .newslist li a {
  display: block;
  color: #333;
  padding-left: 20px;
  background: url("../images/news.png") no-repeat left center;
}
.index .inews .newslist li .time {
  color: #999;
  float: right;
  font-weight: normal;
}
/* 左侧新闻区（带图片推荐） */
.index .inews1 {
  width: 540px;
  float: left;
}
.index .inews .item {
  width: 100%;
  height: 110px;
  display: block;
  padding-bottom: 15px;
  border-bottom: 1px dashed #bebcbd;
}
.index .inews .item img {
  width: 147px;
  height: 110px;
  float: left;
  display: block;
  margin-right: 20px;
}
.index .inews .item h3 {
  color: #333;
  font-size: 16px;
  line-height: 25px;
  font-weight: bold;
  line-height: 24px;
  overflow: hidden;
  margin-bottom: 10px;
  transition: all 0.5s;
}
.index .inews .item .txt {
  color: #999;
  font-size: 14px;
  line-height: 24px;
  text-align: justify;
  overflow: hidden;
}
.index .inews .item:hover h3,
.index .inews .newslist li a:hover {
  color: #1048a0;
}
/* 右侧新闻区（纯列表） */
.inews2 {
  width: 540px;
  float: right;
}

/* ========== 内页公用样式 ========== */
/* 内页banner，固定背景图 */
.nybanner {
  width: 100%;
  position: relative;
  height: 300px;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;              /* 关键：覆盖整个区域，不留白边 */
  background-image: url("../images/nybanner.jpg");
}

/* 内页主体内容区域 - 优化间距 */
.submian {
  padding: 20px 0;
}

/* 版心容器 - 使用flex布局实现左右分布 */
.submian .w1200 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;               /* 左右两侧间距30px */
}

/* 内页左侧栏 - 向左移动，更贴近边缘 */
.submian .subleft {
  width: 260px;
  flex-shrink: 0;          /* 防止被压缩 */
  margin-left: -20px;      /* 向左移动20px，更贴近边缘 */
}

/* 内页右侧内容区 - 自适应宽度 */
.submian .subright {
  flex: 1;                 /* 占据剩余空间 */
  min-width: 0;            /* 防止溢出 */
  padding-left: 20px;      /* 增加左侧内边距，让内容更舒适 */
  box-sizing: border-box;
}

/* 面包屑导航 - 优化内边距 */
.submian .sobtitle {
  height: 35px;
  line-height: 35px;
  padding: 5px 0;
  font-size: 14px;
  color: #666;
  border-bottom: 1px solid #f1f1f1;
  margin-bottom: 25px;     /* 增加底部间距 */
  padding-left: 10px;      /* 增加左侧内边距 */
}

.submian .sobtitle s {
  display: inline-block;
  width: 18px;
  height: 22px;
  margin-right: 10px;
  background: url("../images/locationIco.png") no-repeat;
  vertical-align: middle;
}

.submian .sobtitle a {
  font-size: 14px;
  color: #666;
}

.submian .sobtitle a:hover {
  color: #1048a0;
}

/* ========== 内页左侧栏核心样式（与首页产品分类列表完全一致） ========== */

/* 内页左侧栏 - 标题样式（与首页 .pro_tit 保持一致） */
.submian .subleft .title {
  height: 120px;
  box-sizing: border-box;
  text-align: center;
  background: #1048a0;
  padding: 24px 0;
  color: #fff;
  line-height: 36px;
  border-radius: 0;                /* 移除圆角，与首页一致（首页无圆角） */
}

/* 新增：标题内 h2/p/span 的字体大小定义 */
.submian .subleft .title h2,
.submian .subleft .title p {
  margin: 0;
  padding: 0;
}

.submian .subleft .title h2 p {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}

.submian .subleft .title span {
  font-size: 18px;
  display: block;
  opacity: 0.9;
}

/* 栏目列表容器 - 保持与首页产品分类相同的边框结构 */
.submian .subleft .lefta {
  margin-bottom: 20px;
}

.submian .subleft .lefta .comt {
  border: 1px solid #1048a0;      /* 蓝色边框，与首页一致 */
  background: #fff;
  border-top: 0px;                /* 顶部无边框，与首页一致 */
  overflow: hidden;
}

.submian .subleft .lefta .comt ul {
  padding: 6px 6px;               /* 内边距与首页完全一致 */
  overflow: hidden;
}

/* 左侧列表项核心样式：字体18px，行高72px，左内边距50px，底部虚线边框 —— 与首页产品分类列表完全一致 */
.submian .subleft .lefta .comt ul li a {
  position: relative;
  display: block;
  color: #333;
  font-size: 18px;                /* 与首页一致 */
  line-height: 72px;              /* 与首页一致 */
  border-bottom: 1px dashed #ccc; /* 与首页一致 */
  padding-left: 50px;             /* 与首页一致 */
  transition: all 0.3s ease;      /* 平滑过渡 */
}

/* 最后一个列表项移除底部边框（与首页一致） */
.submian .subleft .lefta .comt ul li:last-child a {
  border-bottom: 0;
}

/* 右侧箭头图标（与首页完全一致） */
.submian .subleft .lefta .comt ul li a:after {
  content: ">";
  position: absolute;
  right: 0;                       /* 与首页完全对齐（首页也是 right:0） */
  top: 50%;
  margin-top: -10px;
  width: 20px;
  height: 20px;
  font-family: 宋体;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  background: #a4a4a4;
  border-radius: 50%;
  transition: all 0.5s;
}

/* 悬浮效果：文字变蓝，箭头背景变蓝（与首页一致） */
.submian .subleft .lefta .comt ul li:hover a,
.submian .subleft .lefta .comt ul li.hover a {
  color: #1048a0;
  /* 首页没有 padding-left 变化，为了保持一致，注释掉原来的 padding-left:55px */
  /* padding-left: 55px;  */   
}

.submian .subleft .lefta .comt ul li:hover a:after,
.submian .subleft .lefta .comt ul li.hover a:after {
  background: #1048a0;            /* 箭头背景变蓝，与首页一致 */
}

/* 二级栏目（子菜单）样式 - 保持原有结构和视觉效果 */
.submian .subleft .lefta .comt ul li .boxlist {
  display: none;
  padding: 0;
  border-bottom: 1px dashed #ccc;
  background: #f9f9f9;
}

.submian .subleft .lefta .comt ul li .boxlist li a {
  color: #838383;
  font-size: 12px;
  line-height: 35px;
  border-bottom: 0;
  padding-left: 35px;
}

.submian .subleft .lefta .comt ul li .boxlist li a:after {
  content: " ";
  left: 15px;
  margin-top: -2px;
  width: 4px;
  height: 4px;
  background: #1048a0;
  border-radius: 0;               /* 子菜单箭头为小圆点，无边框圆角 */
}

.submian .subleft .lefta .comt ul li .boxlist li a:hover,
.submian .subleft .lefta .comt ul li .boxlist li a.hover {
  color: #1048a0;
  padding-left: 40px;             /* 悬浮时轻微右移，增强交互 */
}

.submian .subleft .lefta .comt ul li.hover .boxlist {
  display: block;
}

/* 左侧推荐产品 - 保持原有样式 */
.submian .leftnews {
  margin-bottom: 20px;
}

.submian .leftnews ul {
  padding-top: 10px;
  border: 1px solid #1048a0;
  border-top: 0;
  background: #fff;
}

.submian .leftnews ul li {
  float: left;
  text-align: center;
  width: 110px;
  margin-left: 9px;
  margin-bottom: 15px;
}

.submian .leftnews ul li img {
  width: 90px;                     /* 固定宽度，适合左侧栏尺寸 */
  aspect-ratio: 5 / 7;             /* 一寸照比例 */
  object-fit: cover;               /* 图片填充不变形 */
  border: 1px solid #ddd;
  transition: all 0.3s ease;
  display: block;
  margin: 0 auto;                  /* 水平居中 */
}

.submian .leftnews ul li:hover img {
  border-color: #1048a0;
  transform: scale(1.02);
}

.submian .leftnews ul li p {
  color: #666;
  font-size: 14px;
  line-height: 30px;
  transition: all 0.5s;
}

.submian .leftnews ul li:hover p {
  color: #1048a0;
}

/* 左侧联系我们卡片 - 保持原有样式 */
.submian .subleft .leftcont {
  height: 120px;
  font-size: 20px;
  box-sizing: border-box;
  text-align: center;
  background: #1048a0;
  padding: 24px 0;
  color: #fff;
  line-height: 36px;
  border-radius: 0;               /* 与首页保持一致，无圆角 */
  font-size: 18px;  /* 添加此行，与首页一致 */
}

.submian .subleft .leftcont b {
  font-size: 20px;  /* 调整加粗文字大小 */
  display: block;
  margin-top: 5px;
}

/* ========== 留言表单样式 ========== */
.formData {
  padding-bottom: 20px;
}
.formData .item {
  float: left;
  color: #999;
  font-weight: normal;
  width: 420px;
  height: 56px;
  line-height: 56px;
  border: 1px solid #e4e4e4;
  margin-right: 76px;
  margin-bottom: 45px;
  position: relative;
}
.formData .item label {
  padding-left: 15px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 11;
  text-align: center;
  display: block;
  margin: 0;
  height: 56px;
  line-height: 56px;
  font-size: 18px;
  color: #666;
}
.formData .item input {
  outline: none;
  line-height: 38px;
  height: 38px;
  font-size: 18px;
}
.formData .item .txt {
  width: 350px;
  height: 56px;
  line-height: 56px;
  display: block;
  background: none;
  padding-left: 70px;
  border: 0 none;
  color: #666;
}
.formData .item .red {
  position: absolute;
  right: 15px;
  top: 0;
  color: #ff0000;
  z-index: 11;
}
.formData .item.mr0 {
  margin-right: 0;
}
.formData .msg-box {
  position: absolute;
  left: 0;
  top: 0px;
}
/* 留言文本域区域 */
.formData .liuyan {
  width: 918px;
  height: 260px;
  border: 1px solid #e4e4e4;
  float: left;
}
.formData .liuyan label {
  text-align: right;
  display: block;
}
.formData .liuyan textarea {
  width: 908px;
  height: 234px;
  line-height: 35px;
  padding: 12px 10px;
  text-indent: 100px;
  font-size: 18px;
  font-family: "microsoft yahei";
  color: #333;
  border: 0 none;
  overflow: hidden;
  background: none;
  resize: none;
  display: block;
  outline: none;
}
.formData .bot {
  width: 100%;
}
/* 提交按钮 */
.formData .sub {
  width: 232px;
  line-height: 52px;
  border: 2px solid #1048a0;
  margin-right: 2px;
  text-align: center;
  background: #1048a0;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  display: block;
  -webkit-transition: all ease 300ms;
  -moz-transition: all ease 300ms;
  -ms-transition: all ease 300ms;
  -o-transition: all ease 300ms;
  transition: all ease 300ms;
}
.formData .sub:hover {
  background: none;
  color: #1048a0;
}
/* 验证码行特殊处理 */
.formData .yzm .txt {
  padding-left: 80px;
}
.formData .yzm img {
  position: absolute;
  right: 0;
  top: 0;
  height: 56px;
  border: 0px;
  display: block;
}
/* ========== 内容详情页样式 ========== */
.submian .subright .conBox .ArticleTitle h1 {
  font-size: 24px;
  text-align: center;
  padding: 20px 0px;
  font-weight: bold;
}
.submian .subright .conBox .ArticleMessage {
  line-height: 30px;
  height: 30px;
  margin-bottom: 10px;
  text-align: center;
  border-bottom: 1px dashed #ccc;
}
.submian .subright .conBox .ArticleMessage span:first-child {
  margin-left: 0;
}
.submian .subright .conBox .ArticleMessage span {
  color: #999;
  margin-left: 14px;
  font-size: 12px;
}
.submian .subright .conBox .ArticleMessage .jiathis_style {
  float: left;
  margin-top: 5px;
}
.submian .subright .conBox .ArticleTencont {
  padding: 5px 0px 20px 0px;
  color: #666;
  font-size: 14px;
  line-height: 28px;
  text-align: justify;
  overflow: hidden;
}
.submian .subright .conBox .ArticleTencont img {
  max-width: 100%;
}
.submian .subright .conBox #pic {
  text-align: center;
}
.submian .subright .conBox #pic img {
  display: inline-block;
  max-width: 800px;
  padding: 1px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
}
/* 内容上下页导航 */
.reLink {
  height: 38px;
  border: 1px solid #ddd;
  margin: 10px auto 10px;
  padding: 0px 10px;
}
.reLink .prevLink,
.reLink .nextLink {
  height: 38px;
  line-height: 38px;
  color: #666;
}
.reLink .prevLink a,
.reLink .nextLink a {
  height: 38px;
  line-height: 38px;
  color: #666;
}
.reLink .prevLink a:hover,
.reLink .nextLink a:hover {
  color: #1048a0;
}
.reLink .prevLink {
  float: left;
}
.reLink .nextLink {
  float: right;
}

/* ========== 右侧浮动客服（在线咨询等） ========== */
.toolbar {
  position: fixed;
  top: 50%;
  right: 1%;
  margin-top: -163px;
  z-index: 100;
  width: 80px;
}
.toolbar dd {
  position: relative;
  float: left;
  width: 80px;
  height: 80px;
  background: #1048a0;
  margin-top: 2px;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s;
}
.toolbar dd:first-child {
  margin-top: 0;
}
.toolbar dd i {
  width: 100%;
  height: 30px;
  display: block;
  margin-top: 13px;
  background: url("../images/toolbar.png") no-repeat center 0;
}
.toolbar dd.qq i {
  background-position-y: 0;
}
.toolbar dd.tel i {
  background-position-y: -30px;
}
.toolbar dd.code i {
  background-position-y: -60px;
}
.toolbar dd.top i {
  background-position-y: -90px;
}
.toolbar dd span {
  display: block;
  color: #fff;
}
/* 电话悬浮展开内容 */
.toolbar dd.tel .box {
  position: absolute;
  top: 0;
  width: 190px;
  right: -200px;
  height: 100%;
  margin-right: 10px;
  border-radius: 5px;
  background: #1048a0;
  opacity: 0;
  transition: all 0.5s;
}
.toolbar dd.tel .box p {
  font-size: 14px;
  margin: 15px auto 7px;
}
.toolbar dd.tel .box h3 {
  font-size: 18px;
  font-weight: bold;
}
/* 小三角指向 */
.toolbar dd.tel .box:after {
  display: block;
  content: " ";
  border-style: solid dashed dashed dashed;
  border-color: transparent transparent transparent #1048a0;
  border-width: 9px;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  margin-top: -9px;
  right: -18px;
  margin-left: -12px;
}
/* 二维码悬浮展开内容 */
.toolbar dd.code .box {
  position: absolute;
  top: 0;
  width: 162px;
  right: -172px;
  height: 162px;
  margin-right: 10px;
  border-radius: 5px;
  background: #1048a0;
  opacity: 0;
  transition: all 0.5s;
}
.toolbar dd.code .box img {
  width: 140px;
  height: 140px;
  padding: 11px;
}
.toolbar dd.code .box:after {
  display: block;
  content: " ";
  border-style: solid dashed dashed dashed;
  border-color: transparent transparent transparent #1048a0;
  border-width: 9px;
  width: 0;
  height: 0;
  position: absolute;
  top: 30px;
  right: -18px;
  margin-left: -12px;
}
.toolbar dd:hover {
  background: #333;
}
.toolbar dd.tel:hover .box {
  opacity: 1;
  right: 80px;
}
.toolbar dd.code:hover .box {
  opacity: 1;
  right: 80px;
}

/* ========== 组图展示（相册/产品大图）样式 ========== */
.HS10,
.HS15 {
  overflow: hidden;
  clear: both;
}
.HS10 {
  height: 10px;
}
.HS15 {
  height: 15px;
}
.Hidden {
  display: none;
}
.Clearer {
  display: block;
  clear: both;
  font-size: 1px;
  line-height: 1px;
  margin: 0;
  padding: 0;
}
.FlLeft {
  float: left;
}
.FlRight {
  float: right;
}
/* 幻灯片区域背景 */
.MainBg {
  width: 920px;
  margin: 0 auto;
}
/* 大图展示区域 */
.OriginalPicBorder {
  padding: 0;
}
#OriginalPic {
  width: 920px;
  overflow: hidden;
  position: relative;
  font-size: 12px;
}
#OriginalPic img {
  display: block;
  min-width: 100px;
  margin: 0 auto;
}
/* 鼠标手势区域（左右切换感应区） */
.CursorL {
  position: absolute;
  z-index: 999;
  width: 50%;
  height: 100%;
  color: #fff;
  left: 0;
  cursor: url("../images/CurL.cur"), auto;
}
.CursorR {
  position: absolute;
  z-index: 999;
  width: 50%;
  height: 100%;
  color: #fff;
  right: 0;
  cursor: url("../images/CurR.cur"), auto;
}
/* 缩略图滑动区域 */
.SliderPicBorder {
  width: 100%;
  overflow: hidden;
}
.ThumbPicBorder {
  width: 920px;
  margin: 0 auto;
  background: #eeeeee;
  overflow: hidden;
  position: relative;
}
.ThumbPicBorder #btnPrev {
  width: 45px;
  height: 113px;
  cursor: pointer;
  position: absolute;
  left: 20px;
  top: 20px;
}
.ThumbPicBorder #btnNext {
  width: 45px;
  height: 113px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
}
.ThumbPicBorder .pic {
  width: 755px;
  overflow: hidden;
  position: relative;
  margin: 20px auto;
}
#ThumbPic img {
  border: 3px solid #ddd;
  cursor: pointer;
  background-color: #ddd;
  margin: 0 5px;
  width: 135px;
  height: 108px;
  display: block;
  transition: all 0.5s;
}
#ThumbPic img.active {
  border: 3px solid #1048a0;
}

/* ========== 团队成员区块新增样式（不破坏原有结构） ========== */
/* 团队成员整体容器 */
.team-sections {
  width: 100%;
}
/* 每个分类（如：管理层、技术部等） */
.team-category {
  margin-bottom: 50px;
  clear: both;
}
.team-category:last-child {
  margin-bottom: 0;
}
/* 分类标题样式，与首页标题风格统一 */
.category-title {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
}
.category-title h3 {
  font-size: 26px;
  font-weight: bold;
  color: #1048a0;
  display: inline-block;
  background: #fff;
  padding: 0 25px;
  position: relative;
  z-index: 2;
  margin: 0;
  line-height: 1.2;
}
/* 英文副标题（可选） */
.category-title .en-sub {
  font-size: 14px;
  color: #999;
  margin-left: 12px;
  font-weight: normal;
  letter-spacing: 1px;
}
/* 标题下方蓝色装饰线 */
.category-title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: #1048a0;
  border-radius: 2px;
  z-index: 1;
}
/* 成员网格布局：使用flex，子项水平居中，间距均匀 */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;   /* 主轴居中，整体内容居中 */
  gap: 30px 20px;            /* 行间距30px，列间距20px */
  margin-top: 15px;
}
/* 单个成员卡片，与产品列表卡片风格一致，便于复用 */
.team-card {
  width: 160px;              /* 与产品列表宽度一致 */
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 4px;
  transition: all 0.5s;
  text-align: center;
  cursor: pointer;
}
.team-card:hover {
  background: #1048a0;
  border-color: #1048a0;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
/* 成员照片区域 */
.team-card .img {
  width: 100%;
  aspect-ratio: 5 / 7; 
  overflow: hidden;
  background-color: #f5f5f5;
}
.team-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* 保证图片比例不变且填满容器 */
  transition: all 0.5s;
  display: block;
}
.team-card:hover .img img {
  transform: scale(1.08);
}
/* 成员姓名/职位 */
.team-card h3 {
  font-size: 18px;
  font-weight: 550;
  line-height: 44px;
  color: #1048a0;
  margin: 0;
  transition: all 0.3s;
  text-align: center;
}
.team-card:hover h3 {
  color: #fff;
}
/* 卡片内链接保持颜色继承 */
.team-card a {
  text-decoration: none;
  display: block;
  color: inherit;
}
/* 若网格内无意中使用浮动清除类，在此禁止其影响flex布局（无浮动则无影响） */
.team-sections .clearfix:after {
  display: none;
}

/* ========== 全局滚动与锚点优化 ========== */
/* 平滑滚动效果（仅现代浏览器） */
html {
  scroll-behavior: smooth;
}
/* 为锚点元素增加滚动偏移补偿，防止被固定导航栏遮挡（固定导航栏高度105px，留余量130px） */
.team-category {
  scroll-margin-top: 130px;
}

/* ========== 导航栏占位与触发区域（配合JS实现唤出） ========== */
/* 占位元素，高度与导航栏一致，避免内容跳动（需在页面中通过JS动态生成或直接写HTML） */
.header_placeholder {
  height: 105px;
  width: 100%;
}
/* 顶部触发区域，鼠标移入此区域可唤出导航栏（透明不可见，用于交互） */
.nav_trigger_area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 99;        /* 层级略高于导航栏，确保能捕获鼠标事件 */
  background: transparent;
}