@charset "UTF-8";

.clear::after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
#headerBox{ 
  position: fixed;
  z-index: 100;
  background-color: white;
}

.nav_list a.active p {
  color: #ffffff;
}

.nav_list a.active {
  background-color: #D6353E;
}

.nav_list a:hover p {
  color: #ffffff;
}

.nav_list a:hover {
  background-color: #D6353E;
}

/*上方导航样式*/
#nav {
  /* height: 154px; */
  width: 1200px;
  background-color: white;
  margin: 0 auto;
}

/*导航中公司图片*/
img.logo {
  width: 175px;
  height: 42px;
  vertical-align: middle;
  margin-top: 14px;
  margin-bottom: 14px;
}

.nav_list {
  list-style: none;
  float: right;
}

.navLi>a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none
}

.navLi {
  white-space: nowrap;
  position: relative;
  float: left;
  width: 100px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  color: #212121;
}
.nav_list .china {
  font-size: 16px;
}
/* .nav_list li:not(:last-child){
  margin-right: 73px;
} */

/* 下拉菜单 */
.menuBox{
  position: absolute;
  background-color: #FBFBFB;
  opacity: 0.9;
  z-index: 10;
  width: 150px;
  margin-top: 14px;
}
.menu{
  float: left;
  position: relative;
  list-style: none;
  width: 100%;
  overflow: hidden;
  height: 0;
  -webkit-transition: height 200ms ease-in;
  -moz-transition: height 200ms ease-in;
  -o-transition: height 200ms ease-in;
  transition: height 200ms ease-in;
}
.nav_list li:hover li{
  height:30px;
}
.menu a{
  letter-spacing: 1px;
  text-decoration: none;
  font-size: 12px; 
}
.menu:hover{
  background-color:#DDDDDD;
}