/* 公共头部*/
.header {
  width: 100%;
  /*height: 270px;*/
}
/* 欢迎词 */
.header .welcome {
  height: 30px;
  line-height: 30px;
  background: #dddddd;
  font-size: 12px;
  color: #666666;
}
.header .welcome .wrapper {
  display: flex;
  justify-content: space-between;
}
.header .welcome .wrapper .right span:hover {
  color: blue;
}
/*log+info*/
.header .message {
  height: 150px;
  background: #ffffff;
}
.header .message .wrapper {
  height: 150px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* left */
.header .message .wrapper .left_message {
  display: flex;
}

.header .message .wrapper .left_message .log_img img {
  width: 250px;
  height: 80px;
  object-fit: cover;
}
.header .message .wrapper .left_message .disc {
  height: 60px;
  border-left: 1px solid #c4c4c4;
  padding-left: 20px;
}
.header .message .wrapper .left_message .disc .info {
  font-size: 18px;
  margin-bottom: 10px;
}
.header .message .wrapper .left_message .disc .info .red_font {
  font-size: 24px;
  color: #d00e19;
}
/* right */
.header .message .wrapper .right_message {
  display: flex;
  align-items: center;
}
.header .message .wrapper .right_message .phone_img img {
  width: 56px;
  height: 50px;
  object-fit: cover;
}
.header .message .wrapper .right_message .tel_box {
  font-size: 32px;
  font-family: Times New Roman;
  font-weight: bold;
  color: #d00e19;
  margin-left: 10px;
}

/* 公共的导航*/
.header .navBox {
  width: 100%;
  height: 60px;
  margin: 0 auto;
  background: #94877f;
}
/* 导航切换 */
.nav {
  height: 60px;
  line-height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav > li {
  position: relative;
  float: left;
  width: 120px;
  height: 60px;
  line-height: 60px;
  text-align: center;
}

.nav > li > a {
  font-size: 14px;
  color: #ffffff;
}
.nav > li:hover {
  background: #b0a197;
}
.nav > li:hover a {
  font-size: 16px;
}
  /*.nav > li:hover a {*/
/*  color: #b39281;*/
/*}*/

.nav > li:hover ul {
  display: block;
}

.nav > li:hover ul a {
  color: #fff;
}

/* 二级标题样式 */
.nav > li .li-down {
  width: 100%;
  position: absolute;
  text-align: center;
  padding: 0;
  background: rgba(148, 135, 127, 0.4);
  z-index: 999;
  display: none;
}

.nav > li .li-down li {
  height: 38px;
  line-height: 38px;
}

.nav > li ul li a {
  font-size: 14px;
  color: #fff;
}

.nav > li ul li:hover {
  background: rgba(148, 135, 127, 0.8);
}

.nav > li ul li:hover a {
  color: #fff;
}
/* js切换 */
.active_nav {
  background: #b0a197;
}
.active_nav > li ul li a {
  color: #fff;
}
.nav > li.active_nav a {
  color: #44372f;
}
/*.active_nav:hover a {*/
/*  color: #fff;*/
/*}*/
