@charset "UTF-8";
/* 
	导航栏控制区域
*/
/* 
若导航栏a标签有其他特殊属性（如margin，border之类的），可直接在其中添加即可
*/
/* 
@navbar_a_height(); 控制导航栏a标签高度，
 # 默认值为60px。参数为高度数值。
@navbar_a_style(); 控制导航栏a标签字体颜色，背景，hover效果。三个参数分别为：
	# 字体颜色，背景（可为路径或者颜色），导航栏hover后背景效果（可为路径或颜色）
	# 其中导航栏1，2的参数默认值为上面的$navbar_font_color , $navbar_bg , $navbar_hover三个属性。也可自行修改。
*/
/* 
	导航栏控制区域结束
*/
/* 
	页面主体控制区域
*/
/* 
	页面主体控制区域end
*/
.inner {
  width: 1200px;
  margin: 0 auto;
}

.title {
  text-align: center;
}
.title h1 {
  height: 36px;
  line-height: 36px;
  font-size: 18px;
}

/* ---------------------- */
#wrap {
  width: 100%;
  min-width: 1200px;
  margin: 0 auto;
}
#wrap .header {
  position: relative;
}
#wrap .header .banner img {
  width: 100%;
  vertical-align: bottom;
}
#wrap .header .top {
  position: absolute;
  z-index: 9;
  top: 0;
  width: 100%;
  display: none;
}
#wrap .header .top .logo {
  float: left;
  margin-top: 20px;
  cursor: pointer;
}
#wrap .header .top .nav1 {
  margin-top: 0;
  float: right;
}
#wrap .header .top .nav1 li {
  float: left;
}
#wrap .header .top .nav1 li a {
  display: block;
  text-align: center;
  transition: all 0.3s;
  padding: 0 16px;
  font-size: 18px;
  height: 60px;
  line-height: 60px;
  color: #fff;
  background: none;
}
#wrap .header .top .nav1 li a.on, #wrap .header .top .nav1 li a:hover {
  background: none;
}
#wrap .header .top .nav1 li a:hover, #wrap .header .top .nav1 li a.on {
  border-bottom: 3px solid #fff;
  background: none;
}
#wrap .nav2 {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  background: url(../images/topbg.png) no-repeat center;
  background-size: 100% 100%;
}
#wrap .nav2 ul {
  display: flex;
  justify-content: space-between;
}
#wrap .nav2 ul li {
  width: 100%;
}
#wrap .nav2 ul li a {
  display: block;
  text-align: center;
  font-size: 22px;
  height:72px;
  line-height: 72px;
  color: #ffffff;
  background: transparent;
}
#wrap .nav2 ul li a.on, #wrap .nav2 ul li a:hover {
  background: url(../images/dhbg.png) no-repeat center;
  background-size: 100% 100%;
  color: #071c80;
  font-weight: bold;
}

.main {
  margin-top: 0;
  width: 100%;
  background: url("../images/bg.png") no-repeat center bottom;
  background-size: 100% auto;
}
.main .aside {
  display: none;
}
.main .content {
  width: 100%;
}
.main .content {
  min-height: 500px;
  /* overflow: hidden; */
  float: left;
  font-size: 16px;
  /* background: #abcdef; */
}

/*回到顶部按钮控制*/
#goToTop {
  position: fixed;
  right: 20px;
  z-index: 9000;
  bottom: 30px;
}
#goToTop a {
  background: none repeat scroll 0 0 #ddd;
  border: 1px solid #cccccc;
  border-radius: 3px;
  -webkit-border-radius: 50px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  text-shadow: 0 1px 0 #999;
  padding: 10px 9px;
  display: inline-block;
  letter-spacing: 0px;
  text-align: center;
}
#goToTop a:hover {
  background: none repeat scroll 0 0 #ba8d10;
}

.copyright {
  margin: 0px auto 0;
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 12px;
  color: #ffffff;
  background: #4772fe;
  /* 示例：
  color:#333;
  background:#fff;
  margin-top: 10px; 
  */
}
.copyright img {
  vertical-align: text-bottom;
}/*# sourceMappingURL=index.css.map */