.header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 102px;
  transition: transform 0.3s ease-out, background-color 0.3s;
}
header.hover {
  background-color: #fff;
  box-shadow: 0 0 0.1rem rgb(0 0 0 / 10%);
}
.head {
  display: flex;
  justify-content: space-between;
}
.logo-img {
  width: 298px;
  height: 57px;
  margin-top: 32px;
}
.header-wrap:hover .logo-img {
  display: none;
}
.header-wrap:hover .logo-red-img {
  display: block;
}
.header-wrap.hover .logo-img {
  display: none;
}
.header-wrap.hover .logo-red-img {
  display: block;
}
.logo-red-img {
  width: 298px;
  height: 57px;
  margin-top: 32px;
  display: none;
}
.header-actions {
  font-size: 0;
}
.down {
  transform: translateY(-102px);
}
.action-item {
  padding: 50px 18px 0 18px;
  height: 102px;
  opacity: 0.9;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
}
.action-second-wrap {
  position: absolute;
  top: 102px;
  left: 0;
  width: 100%;
  background: #bd0a1a;
  color: #fff;
  display: none;
}
.action-item:hover .action-second-wrap {
  display: block;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  animation-duration: 0.7s;
}

.action-second-item {
  height: 40px;
  color: #fff;
  display: block;
  line-height: 40px;
  transition: color 0.5s ease-out, background 0.5s;
}
.action-second-item:hover {
  color: #bd0a1a;
  background: #fff;
}
.action-second-item:hover {
  color: #bd0a1a;
  background: #fff;
}



header.hover .action-item {
  color: #333;
}
.header-wrap:hover {
  background: #fff;
  box-shadow: 0 0 0.1rem rgb(0 0 0 / 10%);
}
.header-wrap:hover .action-item {
  color: #333;
}
.header-wrap.hover .action-active-item {
  color: #ffffff;
}

.header-wrap:hover .action-active-item {
  color: #ffffff;
}

.action-item:hover {
  background: #bd0a1a;
  color: #fff !important;
}

.action-active-item {
  background: #bd0a1a;
}
