header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0% 6% 0 6%;
  background: rgba(0, 0, 0, 0.65);
  box-sizing: border-box;
  height: 100px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
}
header .logo {
  width: 15%;
  height: 100%;
  padding-right: 2%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
header .logo img {
  max-width: 100%;
  vertical-align: text-bottom;
}
header .nav {
  width: 50%;
  height: 100%;
  display: flex;
}
header .nav > li {
  flex: 1;
  height: 100px;
  line-height: 100px;
  text-align: center;
  position: relative;
}
header .nav > li > a {
  color: #FFFFFF;
  display: block;
  font-size: 16px;
  font-weight: bold;
}
header .nav > li .son {
  width: 120%;
  background: #FFFFFF;
  position: absolute;
  left: 0;
  top: 100px;
  display: none;
}
header .nav > li .son a {
  display: block;
  color: #333333;
  height: 60px;
  line-height: 60px;
}
header .nav > li .son a:hover {
  color: #790516;
}
header .right {
  display: flex;
  height: 100%;
  align-items: center;
}
header .right .phone {
  padding: 0 35px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
header .right .phone img {
  width: 24px;
  margin-right: 8px;
}
header .right .phone span {
  color: #AA152B;
  font-size: 18px;
  font-weight: bold;
}
header .right .img {
  padding: 0 25px 0 25px;
  display: flex;
  align-items: center;
  cursor: pointer;
  border-left: #AA152B 1px solid;
  height: 16px;
}
header .right .img img {
  width: 24px;
}
header .right .img:nth-child(1) {
  padding-right: 0;
}
.menu_big {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.75);
  padding: 50px;
  box-sizing: border-box;
  clear: both;
  transition: all 0.5s;
}
.menu_big .close {
  text-align: center;
  font-size: 12px;
  color: #FFFFFF;
  width: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  float: right;
  clear: both;
  cursor: pointer;
}
.menu_big .menu_logo {
  display: block;
  margin: 150px auto 100px;
  vertical-align: text-bottom;
}
.menu_big ul {
  display: flex;
  justify-content: center;
}
.menu_big ul li {
  width: 12%;
  padding-left: 15px;
  border-left: 1px solid #FFFFFF;
  box-sizing: border-box;
}
.menu_big ul li a {
  display: block;
  color: #FFFFFF;
  font-size: 14px;
  line-height: 30px;
}
.menu_big ul li a.top {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: bold;
}
.menu_big .search {
  display: flex;
  justify-content: center;
  margin-top: 100px;
}
.menu_big .search input {
  height: 40px;
  border: none;
  outline: none;
  background: #FFFFFF;
  width: 300px;
  padding: 0 10px;
  box-sizing: border-box;
}
.menu_big .search .btn {
  width: 80px;
  border-left: 1px solid #ddd;
  color: #fff;
  cursor: pointer;
  background-color: #790516;
}
@media screen and (max-width: 1600px) {
  header {
    padding: 0% 4% 0% 4%;
  }
}
@media screen and (max-width: 1100px) {
  header {
    height: 60px;
    background-color: #fff;
  }
  header .logo {
    width: 30%;
    border-right: none;
  }
  header .logo img {
    max-height: 90%;
  }
  header .nav {
    display: none;
  }
  header .right .img {
    padding: 0 10px;
  }
  header .right .phone {
    display: none;
  }
  .menu_big {
    padding: 10px;
    background: rgba(0, 0, 0, 0.85);
  }
  .menu_big .menu_logo {
    width: 35%;
    margin: 70px auto 15px;
  }
  .menu_big ul {
    flex-direction: column;
    padding: 0 5%;
    box-sizing: border-box;
  }
  .menu_big ul li {
    border-left: none;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px dashed #999;
    padding: 10px 0;
    box-sizing: border-box;
  }
  .menu_big ul li a {
    display: inline-block;
    margin-right: 20px;
  }
  .menu_big ul li a.top {
    display: block;
    width: 100%;
    margin-bottom: 0;
  }
  .menu_big ul li div a {
    color: #999;
  }
  .menu_big .search {
    margin-top: 20px;
  }
}
