#home-bg {
  background: url(../image/home-bg01.jpg) no-repeat;
  width: 100%;
  background-size: cover;
  top: 0px;
  z-index: 1;
  text-align: center;
}
#home-bg > img {
  margin-top: 100px;
}
#navigation {
  text-align: center;
  height: 170px;
  position: fixed;
  z-index: 2;
}
.navbar {
  text-align: center;
  background: #6f6f6e; /* 一些不支持背景渐变的浏览器 */
  background: -moz-linear-gradient(
    top,
    rgba(111, 111, 110, 0.5),
    rgba(111, 111, 110, 0)
  );
  background: -webkit-gradient(
    linear,
    0 0,
    0 bottom,
    from(#6f6f6e),
    to(rgba(111, 111, 110, 0))
  );
  background: -o-linear-gradient(
    top,
    rgba(111, 111, 110, 0.5),
    rgba(111, 111, 110, 0)
  );
}
.navbar > ul {
  display: inline-block;
  height: 90px;
  line-height: 90px;
  width: 1200px;
}
.navbar li {
  float: left;
  list-style: none;
  text-align: center;
}
.navbar li + li {
  /*margin-left:20px;*/
}
#nav-list img {
  padding-top: 17px;
}
#nav-list a {
  float: left;
  height: 83px;
  padding: 0 10px;
  line-height: 83px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  text-align: center;
  -webkit-transition: font-weight 0.3s;
  transition: font-weight 0.3s;
}
#nav-list i.active,
#nav-list a:hover > i {
  display: inline-block;
}
#nav-list i {
  display: none;
  height: 4px;
  width: 103px;
  background: #fff;
  overflow: hidden;
  position: absolute;
  top: 0;
  -webkit-transition: top 0.2s;
  transition: top 0.2s;
  margin-left: -40px;
  left: 40%;
}
#nav-list i.s-line {
  display: block;
  height: 13px;
  width: 2px;
  background: #fff;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -6.5px;
  opacity: 0.3;
  filter: alpha(opacity=30);
}
/*二级导航*/
.nav-children {
  width: 100%;
}
.nav-children > .children {
  position: relative;
  top: -60px;
  padding-top: 20px;
  text-align: left;
  width: 1000px;
  margin: 0 auto;
}
.children a {
  display: inline-block;
  padding: 0 0 20px 15px;
  color: #ffffff;
}
.children a > i {
  position: relative;
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #f0efdc;
  top: -3px;
  margin-right: 15px;
}
.children-bg {
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: #ffffff;
  opacity: 0.3;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
}
.children > .current-nav {
  font-size: 16px;
}
/*中英文切换*/
#language a {
  padding: 0px 7px;
}
#language a.EN {
  color: rgba(255, 255, 255, 0.5);
}
/* 非home外的导航样式 */
.navbar-black {
  background-color: #383a3f;
}
.navbar-black > .nav-children {
  background-color: #ffffff;
}
.navbar-black .children > a {
  color: #383a3f;
}
.navbar-black .nav-children > .children {
  top: 0;
  width: 1060px;
  text-align: center;
}
.navbar-black .children > .current-nav {
  color: #489fcc;
}
/*导航三角*/
.triangle {
  position: absolute;
  top: 84px;
  left: 415px;
  width: 0;
  height: 0;
  border-right: 15px solid transparent; /*100px为右线与左顶点距离*/
  border-left: 15px solid transparent; /*300px为下顶点到左顶点的竖直距离*/
  border-bottom: 10px solid rgba(255, 255, 255, 0.3); /*200px为上顶点到左顶点的竖直距离*/
}

.slogan {
  background: url("../image/slogan_2022.png") no-repeat center top;
  background-size: contain;
  color: #ffffff;
  height: 100px;
  margin-top: 140px;
}
