@charset "UTF-8";
/* 弹性盒子 */
/* 设置背景图片 */
/* 元素定位 */
header {
  width: 100%;
  min-height: var(--header-height);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  position: fixed;
  background: transparent;
  flex-direction: column;
  top: 0;
  left: 0;
  z-index: 1000;
}
header .header-container {
  width: 1200px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
header .header-container .logo {
  width: 176px;
  height: 40px;
}
header .header-container .menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0 85px;
}
header .header-container .menu .navs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0 46px;
}
header .header-container .menu .navs .nav {
  display: flex;
  font-size: 14px;
  font-family: Source Han Sans CN-Medium, Source Han Sans CN;
  font-weight: 500;
  color: #333333;
  position: relative;
}
header .header-container .menu .navs .nav:last-child {
  min-width: 192px;
}
header .header-container .menu .navs .nav a {
  position: relative;
  color: #333333;
}
header .header-container .menu .navs .nav a.active::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background: #4faa74;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
}
header .header-container .menu .navs .nav .homeheadRegister {
  margin-left: 16px;
  width: 88px;
  height: 36px;
  background: #FFFFFF;
  box-shadow: 0px 0px 20px 0px rgba(132, 137, 135, 0.3);
  border-radius: 20px 20px 20px 20px;
  font-family: Source Han Sans, Source Han Sans;
  font-weight: 500;
  font-size: 14px;
  color: #4FAA74;
  text-align: center;
  line-height: 36px;
  cursor: pointer;
}
header .header-container .menu .navs .nav .goLogin {
  width: 88px;
  height: 36px;
  background: linear-gradient(270deg, #4085DA 0%, #33C488 100%);
  box-shadow: 0px 0px 20px 0px rgba(51, 193, 139, 0.3);
  border-radius: 20px 20px 20px 20px;
  font-family: Source Han Sans, Source Han Sans;
  font-weight: 500;
  font-size: 14px;
  color: #FFFFFF;
  text-align: center;
  line-height: 36px;
  cursor: pointer;
}
header .header-container .menu .navs .nav .login-user {
  display: none;
}
header .header-container .menu .navs .nav .login-info {
  cursor: pointer;
  display: flex;
  align-items: center;
}
header .header-container .menu .navs .nav .login-info .info-logo {
  width: 36px;
  height: 36px;
  margin-right: 10px;
}
header .header-container .menu .navs .nav .login-info p {
  font-family: Source Han Sans, Source Han Sans;
  font-weight: 500;
  font-size: 14px;
  color: #333333;
  margin-right: 5px;
}
header .header-container .menu .navs .nav .login-info .change-info {
  width: 10px;
  height: 10px;
}
header .header-container .menu .navs .nav .info-box {
  position: absolute;
  top: 30px;
  right: 0;
  width: 110px;
  height: 86px;
  background: #FFFFFF;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px 10px 10px 10px;
  box-sizing: border-box;
  padding: 10px 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
}
header .header-container .menu .navs .nav .info-box .item {
  width: 100%;
  height: 32px;
  border-radius: 8px 8px 8px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 0 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
header .header-container .menu .navs .nav .info-box .item:hover {
  background: rgba(79, 170, 116, 0.1);
}
header .header-container .menu .navs .nav .info-box .item img {
  width: 14px;
  height: 14px;
}
header .top-ad-small {
  position: relative;
  width: 100%;
  height: 60px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #FFF4EC 0%, #FFD3B5 100%);
  animation: opacity 2s;
  cursor: pointer;
}
header .top-ad-small .img {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1920px;
  height: 60px;
  transform: translateX(-50%);
}

.img_normal {
  animation-name: rotate_n; /* 动画名称 */
  animation-duration: 0.3s; /* 动画时间 */
  animation-timing-function: ease-in-out; /* 动画缓动 */
  transform: rotate(0deg);
}

@keyframes rotate_n {
  from {
    transform: rotate(-180deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.img_zhuan {
  animation-name: rotate; /* 动画名称 */
  animation-duration: 0.3s; /* 动画时间 */
  animation-timing-function: ease-in-out; /* 动画缓动 */
  transform: rotate(-180deg);
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-180deg);
  }
}
@keyframes opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}/*# sourceMappingURL=header_v8.css.map */