* {
  margin: 0;
  padding: 0;
}
.head {
  z-index: 9999;
  width: 100%;
  max-width: 1920px;
  min-width: 1200px;
  height: 100px;
  background: #1463a5;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.header {
  width: 1200px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-left {
  display: flex;
  align-items: center;
}
.header-left a img {
  width: 128px;
  height: 59px;
}
.header-right {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: #fff;
}
.header-right img {
  margin-right: 5px;
  width: 29px;
  height: 29px;
}
.navlist {
  height: 100%;
  display: flex;
}
.navlist a {
  margin-right: 10px;
  width: 75px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.navlist a p {
  font-size: 16px;
  line-height: 1;
}
.navlist a span {
  margin-top: 7px;
  width: 35px;
  height: 2px;
  background-color: #fff;
  display: none;
}
.navlist a:last-child {
  margin-right: 0;
}
.navlist .navActive,
.navlist a:hover {
  background-color: #cb1025;
}
.navlist .navActive p,
.navlist a:hover p {
  color: #fff;
}
.navlist .navActive span,
.navlist a:hover span {
  display: block;
}
