.welcome {
  background-color:#272727; /* 深灰色背景，与页面其他区域形成视觉区分，突出顶部区域 */
}
.welcome .inner {
  width:1200px; /* 固定宽度，与页面主体（如导航栏、内容区）宽度一致，保持视觉统一 */
  height:42px; /* 固定高度，控制欢迎栏整体纵向占用空间 */
  line-height:42px; /* 行高与高度一致，实现文字垂直居中 */
  margin:0 auto; /* 水平居中，使欢迎栏在不同屏幕宽度下保持居中显示 */
  color:#BABABA; /* 浅灰色文字，与深灰色背景形成柔和对比，避免视觉刺眼 */
}

.topOuter {
  position:absolute; /* 绝对定位，通常用于页面顶部悬浮 */
  z-index:2; /* 层级高于普通内容，确保不被遮挡 */
  top:42px; /* 距离页面顶部42px（与上方欢迎栏高度匹配） */
  left:0;
  right:0;
  border-bottom:1px solid #DFDFDF; /* 底部灰色边框，分隔导航与内容区 */
  -webkit-transition:background .3s; /* 背景色过渡动画（兼容webkit内核浏览器） */
  -moz-transition:background .3s; /* 兼容火狐浏览器 */
  transition:background .3s; /* 标准过渡动画，实现导航栏背景切换的平滑效果 */
}
.topInner {
  width:1200px; /* 固定宽度，与页面主体宽度一致 */
  margin:0 auto; /* 水平居中 */
  font-size:14px; /* 导航栏默认字体大小 */
  position:relative; /* 相对定位，用于子元素（如子菜单）的绝对定位参考 */
}
.topInner .list {
  float:left; /* 水平浮动，使导航项横向排列 */
}
/* 一级导航链接基础样式 */
.topInner .list > a {
  position:relative; /* 相对定位，用于伪元素（下划线）定位 */
  display:block; /* 块级元素，支持宽高设置 */
  height:72px; /* 导航项高度，控制点击区域和垂直居中 */
  line-height:72px; /* 行高与高度一致，实现文字垂直居中 */
  padding:0 25px; /* 左右内边距，控制导航项间距 */
  text-decoration:none; /* 去除默认下划线 */
}

/* 导航项选中状态（.on 类）- 文字颜色 */
.topInner .list.on > a {
  color:#006AFF; /* 选中时文字变为蓝色 */
}

/* 导航项选中状态 - 底部下划线 */
.topInner .list > a:after {
  content:'';
  position:absolute;
  left:50%;
  margin-left:-32px; /* 下划线居中（宽度64px，向左偏移32px） */
  bottom:0; /* 下划线位于导航项底部 */
  width:64px;
  height:2px;
  border-radius:1px; /* 下划线圆角，优化视觉效果 */
  font-size:0;
  line-height:0;
  background-color:transparent; /* 默认透明，未选中时不可见 */
}
.topInner .list.on > a:after {
  background-color:#006AFF; /* 选中时下划线变为蓝色 */
}
/* 第一个导航项（通常是“首页”）去除下划线 */
.topInner .list:first-child > a:after {
  display:none;
}
.topInner .logo {
  width:126px;
  height:40px;
  padding:16px 0; /* 上下内边距，控制Logo垂直位置 */
  margin-right:79px; /* 与右侧导航项的间距 */
}
.topInner .logo a {
  display:block;
  width:126px;
  height:40px;
  text-indent:-9999em; /* 隐藏文字，仅显示背景图 */
  background-size:126px 40px; /* Logo背景图尺寸适配 */
  background-repeat:no-repeat;
}

/* 不同导航栏风格的Logo背景图切换 */
.onestyle .topInner .logo a {background-image:url(https://www.gdyunjie.com/index/images/logowhite.png);} /* 风格1：白色Logo */
.twostyle .topInner .logo a {background-image:url(https://www.gdyunjie.com/index/images/logocolor.png);} /* 风格2：彩色Logo */
.threestyle .topInner .logo a {background-image:url(https://www.gdyunjie.com/index/images/logocolor.png);} /* 风格3：彩色Logo */
.fourstyle .topInner .logo a {background-image:url(https://www.gdyunjie.com/index/images/logocolor.png);} /* 风格4：彩色Logo */
.topInner .hotline {
  width:170px;
  height:59px;
  padding:13px 0 0 18px;
  position:relative;
  top:1px;
  background:#006AFF; /* 蓝色背景，突出显示 */
}
.topInner .hotline span {
  display:block;
  margin-bottom:2px;
  padding-left:16px;
  font-size:12px;
  line-height:17px;
  color:#C4D5FF; /* 浅蓝文字，与蓝色背景对比 */
  background:url(https:www.gdyunjie.com/index//images/hotline.png) no-repeat left center; /* 电话图标背景 */
  background-size:12px 12px;
}
.topInner .hotline b {
  font-family:'DIN'; /* 特殊字体，增强数字视觉效果 */
  font-style:normal;
  font-weight:700;
  font-size:22px;
  line-height:27px;
  color:#FFF; /* 白色数字，突出电话号 */
}

/* 不同导航栏风格的热线电话文字颜色调整 */
.twostyle .nav-right .hotline b {color: #373737 !important;}
.threestyle .nav-right .hotline b {color: #373737 !important;}
.fourstyle .nav-right .hotline b {color: #373737 !important;}
.topInner .sub {
  display:none; /* 默认隐藏，通过JS或hover触发显示 */
  position:absolute;
  z-index:3; /* 层级高于导航栏（z-index:2），确保不被遮挡 */
  top:72px; /* 子菜单顶部与导航栏底部对齐（导航栏高度72px） */
  border-radius:0 0 4px 4px; /* 仅底部圆角，优化视觉 */
  background-color:#FFF; /* 白色背景，与页面主体区分 */
  border-top:1px solid #DFDFDF; /* 顶部灰色边框，分隔子菜单与导航栏 */
  box-shadow:0px 2px 6px #A0B6D5; /* 阴影效果，增强层次感 */
  overflow:hidden;
}
.topInner .cpfw {
  right:auto;
  width:auto;
  left:1;
  display:flex; /* Flex布局，实现子菜单横向排列 */
  flex-direction:row;
  min-width:1220px; /* 最小宽度，确保内容不挤压 */
}
.topInner .cpfw dl {
  float:left;
  width:254px;
  height:380px;
  padding:25px 25px 0;
  background-color:#F5F7FA; /* 浅灰背景，区分不同产品列 */
}
.topInner .cpfw dt {
  margin:0 0 26px;
  padding:0 0 8px;
  font-size:14px;
  line-height:20px;
  color:#006AFF; /* 蓝色标题，突出分类名称 */
  border-bottom:1px solid #DBDBDB; /* 底部边框，分隔标题与内容 */
}
.topInner .cpfw li {
  margin:0 0 30px;
}
.topInner .cpfw li:last-child {
  margin:0;
}
.topInner .cpfw li a {
  display:block;
  width:218px;
  padding:13px 16px;
  border:2px solid #F5F7FA; /* 边框颜色与背景一致，默认不可见 */
  border-radius:2px;
  background:#FFF; /* 白色背景，突出选项 */
}
.topInner .cpfw li b {
  display:inline-block;
  margin-right:6px;
  font-weight:700;
  font-size:14px;
  line-height:20px;
  color:#373737;
}
.topInner .cpfw li i {
  display:inline-block;
  padding-left:4px;
  width:44px;
  height:20px;
  line-height:20px;
  text-align:center;
  font-style:normal;
  font-size:12px;
  background:url(https://www.gdyunjie.com/index/images/hot.png) no-repeat; /* “热门”标签背景 */
  position:relative;
  top:-4px;
  color:#FFF;
}
.topInner .cpfw li p {
  margin-top:4px;
  font-size:12px;
  line-height:17px;
  color:#929292; /* 浅灰描述文字，辅助说明 */
}

/* 子菜单选项hover状态 */
.topInner .cpfw li a:hover {
  border-color:#FFF;
  box-shadow:0px 6px 12px 2px #E4EAF3; /* hover时添加阴影，增强交互感 */
  background:linear-gradient(130.74deg, #EDF2F7 9.97%, #FEFEFE 81.07%); /* 渐变背景，优化视觉 */
}
.topInner .cpfw li a:hover b {
  color:#006AFF; /* hover时文字变蓝 */
}

/* 子菜单选项选中状态（.current 类） */
.topInner .cpfw li.current a {
  border-color:#FFF;
  box-shadow:0px 6px 12px 2px #E4EAF3;
  background:linear-gradient(130.74deg, #EDF2F7 9.97%, #FEFEFE 81.07%);
}
.topInner .cpfw li.current a b {
  color:#006AFF;
}
.topInner .cpfw li.current a b:after {
  content:'\f031'; /* 引用fontello图标库的“定位”图标 */
  font-family:'fontello';
  font-style:normal;
  font-weight:normal;
  speak:none;
  display:inline-block;
  text-decoration:inherit;
  width:1em;
  margin-left:.2em;
  text-align:center;
  font-variant:normal;
  text-transform:none;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  color:#006AFF;
}
.topInner .jjfa {
  right:0; /* 子菜单右对齐 */
  width:1154px;
}
.topInner .jjfa dl {
  float:left;
  width:854px;
  height:363px;
  padding:27px 30px 0;
  background-color:#F5F7FA;
}
.topInner .jjfa dt {
  margin:0 0 14px;
  padding:0 0 8px;
  font-size:14px;
  line-height:20px;
  color:#006AFF;
  border-bottom:1px solid #DBDBDB;
}
.topInner .jjfa li {
  float:left;
  width:254px;
  height:82px;
  margin:0 28px 22px 0;
}
.topInner .jjfa li a {
  float:left;
  display:block;
  width:254px;
  height:72px;
  padding-top:10px;
  position:relative;
}
.topInner .jjfa li i {
  font-style:normal;
  width:42px;
  height:42px;
  position:absolute;
  top:-2px;
  right:16px;
  display:flex;
  flex-direction:row;
  flex-wrap:nowrap;
  justify-content:center;
  align-items:center;
}
.topInner .jjfa li img {
  max-width:42px;
  max-height:42px;
}
.topInner .jjfa li span {
  display:block;
  width:176px;
  height:68px;
  padding:0 58px 0 16px;
  border-radius:2px;
  border:2px solid #F5F7FA;
  background:#FFF;
  display:flex;
  flex-direction:row;
  flex-wrap:nowrap;
  justify-content:flex-start;
  align-items:center;
}
.topInner .jjfa li b {
  max-height:40px;
  overflow:hidden;
  font-weight:400;
  font-size:14px;
  line-height:20px;
  color:#373737;
  padding-right:22px;
  background:url(https://www.gdyunjie.com/index/images/grayarrow.svg) no-repeat right center; /* 灰色箭头背景 */
}

/* 子菜单选项hover状态 */
.topInner .jjfa li a:hover span {
  border-color:#FFF;
  box-shadow:0px 6px 12px 2px #E4EAF3;
  background:linear-gradient(130.74deg, #EDF2F7 9.97%, #FEFEFE 81.07%);
}
.topInner .jjfa li a:hover b {
  font-weight:700;
  color:#006AFF;
  background-image:url(https://www.gdyunjie.com/index/images/bluearrow.svg); /* hover时箭头变蓝 */
}

/* 子菜单选项选中状态（.current 类） */
.topInner .jjfa li.current span {
  border-color:#FFF;
  box-shadow:0px 6px 12px 2px #E4EAF3;
  background:linear-gradient(130.74deg, #EDF2F7 9.97%, #FEFEFE 81.07%);
}
.topInner .jjfa li.current b {
  color:#006AFF;
  padding-right:0;
  background:none;
  font-weight:700;
}
.topInner .jjfa li.current a:hover b {
  background:none;
}
.topInner .jjfa li.current b:after {
  content:'\f031'; /* 选中时添加fontello图标 */
  font-family:'fontello';
  font-style:normal;
  font-weight:normal;
  speak:none;
  display:inline-block;
  text-decoration:inherit;
  width:1em;
  margin-left:.2em;
  text-align:center;
  font-variant:normal;
  text-transform:none;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  color:#006AFF;
}
.gywm {
  right:285px; /* 子菜单右偏移，与其他子菜单区分位置 */
  width:554px;
}
.gywm dl {
  float:left;
  width:254px;
  height:363px;
  padding:27px 30px 0;
  background-color:#F5F7FA;
}
.gywm dt {
  margin:0 0 24px;
  padding:0 0 8px;
  font-size:14px;
  line-height:20px;
  color:#006AFF;
  border-bottom:1px solid #DBDBDB;
}
.gywm li {
  display:block;
  width:254px;
  height:52px;
  margin:0 0 22px 0;
}
.gywm li a {
  display:block;
  width:250px;
  height:48px;
  font-size:14px;
  line-height:20px;
  color:#373737;
  border-radius:2px;
  border:2px solid #F5F7FA;
  background:#FFF;
  display:flex;
  flex-direction:row;
  flex-wrap:nowrap;
  justify-content:center;
  align-items:center;
}

/* 子菜单选项hover状态 */
.gywm li a:hover {
  font-weight:700;
  color:#006AFF;
  border-color:#FFF;
  box-shadow:0px 6px 12px 2px #E4EAF3;
  background:linear-gradient(130.74deg, #EDF2F7 9.97%, #FEFEFE 81.07%);
}

/* 子菜单选项选中状态（.current 类） */
.gywm li.current a {
  font-weight:700;
  color:#006AFF;
  border-color:#FFF;
  box-shadow:0px 6px 12px 2px #E4EAF3;
  background:linear-gradient(130.74deg, #EDF2F7 9.97%, #FEFEFE 81.07%);
}
.gywm li.current span:after {
  content:'\f031'; /* 选中时添加fontello图标 */
  font-family:'fontello';
  font-style:normal;
  font-weight:normal;
  speak:none;
  display:inline-block;
  text-decoration:inherit;
  width:1em;
  margin-left:.2em;
  text-align:center;
  font-variant:normal;
  text-transform:none;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  color:#006AFF;
}
/* 风格1：半透明白色背景 */
.onestyle {
  background-color:rgba(255,255,255,0.18);
}
.onestyle .list > a {
  color:#FFF; /* 文字白色，适配半透明背景 */
}

/* 风格2：纯白背景 */
.twostyle {
  background-color:rgba(255,255,255,1);
}
.twostyle .list > a {
  color:#373737; /* 文字深灰，适配白色背景 */
}

/* 风格3：半透明白色背景（与风格1类似，文字颜色不同） */
.threestyle {
  background-color:rgba(255,255,255,0.18);
}
.threestyle .list > a {
  color:#373737; /* 文字深灰 */
}

/* 风格4：半透明白色背景（与风格3一致） */
.fourstyle {
  background-color:rgba(255,255,255,0.18);
}
.fourstyle .list > a {
  color:#373737; /* 文字深灰 */
}

.dz {position:absolute;bottom:0;right:0;right:0;width:224px;height:66px;padding:16px 0 0 16px;background:url(https://www.gdyunjie.com/index/images/dzbg.png) no-repeat;border-radius:0 0 4px 0;}
.dz p {margin-bottom:6px;font-size:12px;line-height:17px;color:#006AFF;}
.dz a {display:block;width:106px;height:26px;line-height:26px;text-align:center;font-size:14px;border-radius:24px;color:#FFF;background:#006AFF;transition:all .3s;}
.dz span {padding-right:18px;background:url(https://www.gdyunjie.com/index/images/whitearrow.svg) no-repeat right center;}
.dz a:hover {margin-left:5px;}

.contact {float:right;width:240px;height:308px;display:flex;flex-direction:column;flex-wrap:nowrap;justify-content:center;align-items:center;}
.contact .ewm {margin-bottom:8px;}
.contact p {font-size:12px;line-height:17px;color:#616161;}