@charset "UTF-8";
/*头部样式*/
.header {
  position: relative;
  background-color: #fff;
  color: #000;
}

.header:after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  display: block;
  z-index: 1;
  width: 100%;
  height: 0;
  transition: all .4s;
  pointer-events: none;
}

.header a {
  color: #000;
}

.header .header-wrap {
  display: flex;
  justify-content: space-between;
  padding: 32px 0 28px;
}

.header .logo {
  max-width: 303px;
}

.header .tell-wrap {
  display: flex;
  justify-content: right;
  align-items: center;
  color: #24589c;
  font-size: 18px;
}

.header .tell-wrap img {
  height: 44px;
  margin-right: 10px;
}

.header .tell-wrap p {
  color: #353535;
}

.header .tell-wrap .tell {
  color: #22589d;
}

.header .header-nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
  padding-top: 60px;
  letter-spacing: 1px;
}

.header .header-nav ul {
  display: flex;
  font-size: 24px;
  margin-right: 0;
}

.header .header-nav ul li {
  min-height: 68px;
  padding: 25px 5px 0;
  word-break: break-word;
}

.header .header-nav ul li a {
  position: relative;
  display: block;
  font-weight: 700;
  padding: 0 7px;
  transition: all .3s;
}

.header .header-nav ul li.active a, .header .header-nav ul li:hover a {
  color: #22589d;
}

@media screen and (max-width: 1290px) {
  .header .header-nav ul {
    font-size: 21px;
  }
}
