* {
  margin: 0;
  padding: 0;
}
.head {
  z-index: 9999;
  width: 100%;
  max-width: 1920px;
  min-width: 1200px;
  height: 110px;
  background-color: #fff;
  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;
}
.header-left {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.header-left img {
  width: 68px;
  height: 50px;
}
.header-left div {
  margin-left: 10px;
  display: flex;
  flex-direction: column;
}
.header-left div p {
  font-size: 28px;
  color: #13356C;
  font-weight: 700;
  letter-spacing: 7px;
}
.header-left div span {
  font-size: 16px;
  color: #4A4A4A;
}
.header-right {
  margin-left: 108px;
  width: 1100px;
  height: 90px;
  background-color: #13356C;
  border-bottom-left-radius: 45px;
  display: flex;
  align-items: center;
  padding-left: 86px;
  box-sizing: border-box;
  flex-shrink: 0;
}
.header-right .head_phone {
  width: 233px;
  height: 34px;
  border: 1px solid #6083BC;
  border-radius: 34px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}
.header-right .head_phone img {
  width: 24px;
  height: 24px;
}
.header-right .head_phone p {
  margin: 0 5px;
  color: #6083BC;
}
.header-right .head_phone span {
  margin-top: 4px;
  color: #fff;
  line-height: 1;
}
.navlist {
  height: 100%;
  display: flex;
  align-items: center;
}
.navlist a {
  margin-right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.navlist a p {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
}
.navlist a span {
  margin-top: 5px;
  opacity: 0;
  width: 28px;
  height: 2px;
  background-color: #fff;
}
.navlist .navActive span,
.navlist a:hover span {
  opacity: 1;
}
