* {
  margin: 0;
  padding: 0;
}
.head {
  z-index: 9999;
  width: 100%;
  max-width: 1920px;
  min-width: 1200px;
  height: 150px;
  background: #1463a5;
  border-bottom: 50px solid #f3f3f3;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.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: 132px;
  height: 56px;
}
.header-left i {
  margin: 0 17px;
  width: 1px;
  height: 48px;
  background-color: #5b92c0;
}
.header-left div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header-left div h4 {
  font-size: 24px;
  color: #fff;
  line-height: 1;
}
.header-left div p {
  margin: 4px 0;
  display: flex;
  align-items: center;
}
.header-left div p b {
  width: 70px;
  height: 1px;
  background-color: #5b92c0;
}
.header-left div p i {
  margin: 0;
  width: 41px;
  height: 3px;
  background-color: #fff;
}
.header-left div span {
  font-size: 14px;
  color: #fff;
  line-height: 1;
}
.header-right {
  display: flex;
  align-items: center;
}
.header-right p {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header-right p img {
  width: 18px;
  height: 18px;
}
.header-right p span {
  margin-top: 10px;
  font-size: 18px;
  color: #fff;
  line-height: 1;
}
.header-right div {
  margin-left: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header-right div span {
  font-size: 22px;
  color: #fff;
}
.navlist {
  position: absolute;
  bottom: -50px;
  width: 1200px;
  height: 50px;
  display: flex;
  justify-content: space-between;
}
.navlist a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
}
.navlist a p {
  font-size: 18px;
  line-height: 1;
}
.navlist a span {
  position: absolute;
  bottom: 0;
  width: 45px;
  height: 2px;
  background-color: #cb1025;
  opacity: 0;
}
.navlist a:last-child {
  margin-right: 0;
}
.navlist .navActive p,
.navlist a:hover p {
  color: #cb1025;
}
.navlist .navActive span,
.navlist a:hover span {
  opacity: 1;
}
