.navigation-wraper {
  width: 100%;
  height: 85px;
  background-color: #fff;
}
.navigation-wraper.fixed {
  position: fixed;
  top: 0;
  z-index: 99;
  background-color: rgba(255, 255, 255, 0.9);
  -moz-box-shadow: 0 0px 5px #000;
  -webkit-box-shadow: 0 0px 5px #000;
  box-shadow: 0 0px 5px #000;
}
.navigation-wraper.absolute {
  position: absolute;
  top: 0;
  z-index: 99;
  background-color: rgba(255, 255, 255, 0.9);
}
.navigation-wraper .navigation {
  margin: auto;
  width: 1024px;
  height: 100%;
}
.navigation-wraper .logo {
  float: left;
  display: block;
  width: 276px;
  height: 44px;
  border-width: 20px 0;
  border-color: transparent;
  border-style: solid;
  background-image: url("../../images/common/logo.png");
  background-position: center;
  background-repeat: no-repeat;
}
.navigation-wraper .menus-list {
  float: right;
  height: 100%;
}
.navigation-wraper .menus-list .menu-li {
  display: block;
  position: relative;
  float: left;
  padding: 30px 24px;
  font-size: 14px;
  line-height: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  text-align: left;
}
.navigation-wraper .menus-list .menu-li .sub-menus {
  position: absolute;
  top: 85px;
  left: 0;
  min-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  z-index: 10;
}
.navigation-wraper .menus-list .menu-li .sub-menus .sub-menu {
  display: block;
  padding: 0 24px;
  font-size: 0px;
  height: 0px;
  line-height: 0px;
  text-align: left;
  color: #fff;
  background-color: #0071ce;
  -moz-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
.navigation-wraper .menus-list .menu-li .sub-menus .sub-menu span {
  display: inline-block;
  font-size: inherit;
  line-height: 20px;
  color: inherit;
  vertical-align: middle;
}
.navigation-wraper .menus-list .menu-li .sub-menus .sub-menu:hover {
  color: #333;
  background-color: #e6f1fa;
}
.navigation-wraper .menus-list .menu-li .sub-menus .sub-menu.active {
  color: #333;
  background-color: #e6f1fa;
}
.navigation-wraper .menus-list .menu-li.active {
  color: #0071ce;
}
.navigation-wraper .menus-list .menu-li:hover {
  color: #0071ce;
}
.navigation-wraper .menus-list .menu-li:hover .sub-menus .sub-menu {
  font-size: 12px;
  height: 45px;
  line-height: 45px;
}

.navigation-height {
  display: none;
  height: 85px;
}
