* {
  margin: 0;
  padding: 0;
}
.head {
  z-index: 9999;
  width: 100%;
  max-width: 1920px;
  min-width: 1200px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.head-top {
  width: 100%;
  height: 71px;
  background-color: #fff;
  border-top: 2px solid #53a21e;
  display: flex;
  justify-content: center;
}
.head-bottom {
  width: 100%;
  height: 53px;
  background-color: #2a4cbe;
  display: flex;
  justify-content: center;
}
.header {
  width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-left a {
  width: 297px;
  height: 34px;
}
.header-right a {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.header-right a span {
  font-size: 14px;
  color: #333;
  line-height: 1;
}
.header-right a div {
  display: flex;
  align-items: center;
}
.header-right a div img {
  width: 20px;
  height: 20px;
}
.header-right a div p {
  margin-left: 6px;
  font-size: 20px;
  font-weight: 700;
  color: #53a21e;
}
.navlist {
  width: 1200px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navlist a {
  width: 102px;
  height: 100%;
  text-decoration: none;
  font-size: 14px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.navlist a i {
  display: none;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}
.navlist p {
  width: 1px;
  height: 16px;
  background-color: #fff;
}
.navlist a:hover {
  color: #fff;
}
.navlist a:hover i {
  display: block;
}
