/* 导航栏 - start */
body,html {
  position: relative;
}
.nav {
  height: 62px;
  width: 100%;
  background: #ffffff;
  box-shadow: 0px 1px 0px 0px #e6e6e6;
  position: fixed;
  left:0;
  top:0;
  z-index:9999;
}
.nav .logo {
  width: 203px;
  height: 38px;
}
.nav .logo img {
  display: block;
}
.nav main {
  height: 62px;
}
.nav_list {
  height: 62px;
  margin-right: 112px;
}

.nav_list > li {
  height: 62px;
  position: relative;
  line-height: 62px;
  cursor: pointer;
  font-family: Source Han Sans CN VF;
  font-weight: 400;
}
.nav_list > li > a {
  padding: 0 20px;
  box-sizing: border-box;
  width:100%;
  display: block;
  height:62px;
}
.nav_list > li.active > a,
.nav_list > li:hover > a {
  color: var(--themeColor);
}

.nav_list > li.active::after,
.nav_list > li:hover::after {
  content: "";
  position: absolute;
  background-color: var(--themeColor);
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
}
.nav_right {
  height: 62px;
}
.nav_right li:first-child {
  margin-right:27px;
}
.nav_right li:first-child span:first-child {
  font-family: Alimama ShuHeiTi;
  font-weight: bold;
  font-size: 23px;
  color: #212121;
}
.nav_right li {
  height: 62px;
}
.nav_right li img {
  margin-right: 4px;
}
.nav_right li a {
  padding: 0 20px;
  width: 100%;
  height: 100%;
}
/* 导航栏 - end */

/* 针对IE11的CSS Hack */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .nav_list > li.active::after,
  .nav_list > li:hover::after {
    background-color: #ff5000;
  }

  .nav_list > li.active > a,
  .nav_list > li:hover > a {
    color: #ff5000;
  }
}
