@charset "utf-8";
/*  */
.nav_container{  /* 导航外层 */
  width: 100%;
  height: 76px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999999;
  background: #fff;
}


a.nav_logo_link{   /* logo 链接 */
  display: inline-block;
  width: 242px;
  height: 42px;
  margin-top: 17px;
}

a.nav_logo_link img{   
  width: 100%;
}

/* 一级导航 样式 */
.mainNav {
  position: relative;
  display: inline-block;
  float: right;
}

a.mainNav_link {
  color: #333;
  line-height: 76px;
  text-align: center;
  font-size: 18px;
}

.on a.mainNav_link p{
  color: #fff;
  background: #ff4444;
}


.mainNav_list {
  float: left;
  position: relative;
  margin: 0 0;
}

.mainNav_title {
  width: 135px;
}

.mainNav_text {
  letter-spacing: 2px;
}

.on .mainNav_text {
  height: 76px;
  line-height: 76px;
}



/* 二级导航 样式 */
.subNav {
  display: none;
  width: 135px;
  left: 0;
  top: 76px;
  position: absolute;
  background: #fcd5b5;
  padding: 10px 0;
  text-align: center;
}

.subNav_list {
  margin: 10px 0;
}

a.subNav_link {
  display: block;
  height: 35px;
  line-height: 35px;
  font-size: 18px;
  font-weight: 100;
  color: #000;
  letter-spacing: 1px;
}

a.subNav_link:hover,
a.hover
{
  color: #ff4444;
  /*text-decoration: underline;*/
}






