.header {
  position: relative;
  height: 70px;
  background: #fff;
  width: 100%;
}
.header .logo {
  height: 36px;
  margin-top: 12px;
  margin-left: 2%;
}
.header .header-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  width: 35%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 2%;
}
.header .header-list .header-li {
  position: relative;
  min-width: 65px;
  height: 100%;
}
.header .header-list .header-li p {
  font-size: 14px;
  font-weight: 500;
  color: #707070;
  text-align: center;
  line-height: 70px;
}
.header .header-list .header-li .down-list {
  display: none;
  position: absolute;
  top: 70px;
  left: -25%;
  width: 150%;
  padding-top: 16px;
  padding-bottom: 20px;
  box-shadow: 0px 1px 0px 1px rgba(0, 0, 0, 0.16);
  border-radius: 0px 0px 7px 7px;
  z-index: 2;
  background: url(../img/img-icon-mark-2.png) no-repeat #ffffff;
  background-size: 22px 12px;
  background-position: center top;
}
.header .header-list .header-li .down-list .down-li {
  margin-top: 20px;
}
.header .header-list .header-li .down-list .down-li h1 {
  font-size: 14px;
  font-weight: 500;
  color: #707070;
  text-align: center;
}
.header .header-list .header-li .down-list .down-li:hover h1 {
  color: #000000;
}
.header .header-list .header-li .down-list:hover .down-list {
  display: block;
}
.header .header-list .header-li:hover .down-list {
  display: block;
}
.header .header-list .selected p::after {
  content: '';
  display: block;
  margin: 0 auto;
  margin-top: -20px;
  width: 65px;
  border-bottom: 3px solid #2468f2;
}
