.top {
  background: url('../imgs/header-bg.png') no-repeat;
  background-size: cover;
}
header .header-tips {
  height: 40px;
  background: #81247e;
}
header .header-tips .tips-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  font-family: PingFangSC-Semibold, PingFang SC;
  font-weight: 600;
  color: #ffffff;
}
header nav {
  height: 120px;
}
header nav .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header nav .nav-container .logo {
  width: 28.5%;
  margin-top: 8px;
  /* margin-right: 14.8%; */
}
header nav .nav-container .logo img {
  width: 100%;
  height: 100%;
}
header nav .nav-container .nav-container-right {
  width: 56.7%;
}
header nav .nav-container .nav-container-right .search-form {
  margin-left: auto;
  width: 35%;
  height: 43px;
  line-height: 43px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header nav .nav-container .nav-container-right .search-form .search-ipt {
  /* width: 64.2%; */
  width: 73%;
  margin-left: 24px;
  /* margin-right: 34px; */
  height: 20px;
  font-family: PingFangSC-Regular, PingFang SC;
}
header nav .nav-container .nav-container-right .search-form .submit-ipt {
  width: 18%;
  height: 100%;
  border-radius: 0px 22px 22px 0px;
  background: url('../imgs/search-icon.png') no-repeat center;
  background-color: #63065f;
  cursor: pointer;
}
header nav .nav-container .nav-container-right .nav-ul {
  margin-top: 11px;
  display: flex;
  justify-content: space-between;
  position: relative;
}
header nav .nav-container .nav-container-right .nav-ul li {
  text-align: center;
  position: relative;
}
header nav .nav-container .nav-container-right .nav-ul a {
  cursor: pointer;
  height: 28px;
  font-size: 20px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #ffffff;
  line-height: 28px;
}
header nav .nav-container .nav-container-right .nav-ul a:hover {
  color: #63065f;
  font-weight: 700;
}
header nav .nav-container .nav-container-right .nav-ul .nav-second-ul {
  position: absolute;
  left: 0;
  top: 35px;
  width: auto;
  z-index: 9999;
  background: #fff;
  border-top: 2px solid #63065f;
  display: none;
}
header nav .nav-container .nav-container-right .nav-ul .nav-second-ul li {
  padding: 15px;
  text-align: left;
}
header nav .nav-container .nav-container-right .nav-ul .nav-second-ul li:hover {
  background: #63065f;
}
header nav .nav-container .nav-container-right .nav-ul .nav-second-ul li:hover a {
  color: #fff;
}
header nav .nav-container .nav-container-right .nav-ul .nav-second-ul a {
  color: #333;
  font-size: 14px;
  white-space: nowrap;
}
header .mobile-nav {
  position: relative;
}
header .mobile-nav .mobile-nav-top {
  height: 70px;
  line-height: 70px;
  display: flex;
  align-items: center;
  background-color: #63065f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  position: relative;
}
header .mobile-nav .mobile-nav-top .menu-box {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
header .mobile-nav .mobile-nav-top .menu-box .menu {
  display: block;
  background-color: #fff;
  width: 30px;
  height: 2px;
  position: relative;
  transition: all 0.5s;
}
header .mobile-nav .mobile-nav-top .menu-box .menu::before {
  display: block;
  content: '';
  position: absolute;
  left: 0;
  top: -8px;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.5s;
}
header .mobile-nav .mobile-nav-top .menu-box .menu::after {
  display: block;
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.5s;
}
header .mobile-nav .mobile-nav-top .mobile-logo {
  height: 65px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
header .mobile-nav .mobile-nav-top .mobile-logo img {
  height: 100%;
}
header .mobile-nav .mobile-nav-top .lanuage {
  color: #fff;
  font-size: 12px;
  padding-right: 15px;
}
header .mobile-nav .mobile-nav-top .menu-box-active .menu {
  background-color: transparent;
}
header .mobile-nav .mobile-nav-top .menu-box-active .menu::before {
  top: 0;
  transform: rotate(45deg);
}
header .mobile-nav .mobile-nav-top .menu-box-active .menu::after {
  bottom: 0;
  transform: rotate(-45deg);
}
header .mobile-nav .phone {
  overflow-y: scroll;
  transition: all 0.7s;
  width: 100%;
  background-color: rgba(99, 6, 95, 0.9);
  position: absolute;
  top: 70px;
  left: -100%;
  z-index: 9999;
  height: 100%;
  min-height: calc(100vh - 70px);
}
header .mobile-nav .phone a {
  display: block;
  color: #fff;
  font-size: 18px;
}
header .mobile-nav .phone .phone-ul {
  height: auto;
}
header .mobile-nav .phone .phone-ul .phone-menu-more {
  width: 30px;
  height: 60px;
  position: relative;
}
header .mobile-nav .phone .phone-ul .phone-menu-more::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}
header .mobile-nav .phone .phone-ul .phone-menu-more::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(90deg);
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}
header .mobile-nav .phone .phone-ul .more-active::before {
  transform: translateY(-50%) rotate(45deg);
}
header .mobile-nav .phone .phone-ul .more-active::after {
  transform: translateY(-50%) rotate(135deg);
}
header .mobile-nav .phone .phone-ul .li-box {
  padding: 0 15px;
  min-height: 60px;
  height: auto;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .mobile-nav .phone .phone-ul .li-box .lanuage {
  color: #fff;
  display: flex;
}
.lanuage>span {
  margin: 0 10px;
}

header .mobile-nav .phone .phone-ul .li-box i {
  display: inline-block;
  width: 30px;
  height: 60px;
  background: url('../imgs/search-icon.png') no-repeat center center;
}
header .mobile-nav .phone .phone-ul .phone-second-ul {
  display: none;
  background-color: rgba(99, 6, 95, 0.85);
}
header .mobile-nav .phone .phone-ul .phone-second-ul .second-li-box {
  height: 60px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .mobile-nav .phone .phone-ul .phone-three-ul {
  display: none;
  background-color: rgba(99, 6, 95, 0.8);
}
header .mobile-nav .phone .phone-ul .phone-three-ul .three-li-box {
  height: 60px;
  padding: 0 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .active-nav a {
  color: #63065f !important;
  font-weight: 700 !important;
}
@media screen and (max-width: 1536px) {
  header nav .logo {
    margin-right: 10% !important;
  }
  header nav .search-form {
    width: 50% !important;
  }
  header nav .search-form .search-ipt {
    margin-right: 24px !important;
  }
}
@media screen and (max-width: 1180px) {
  .header-tips,
  nav {
    display: none !important;
  }
  .mobile-nav {
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .mobile-nav .mobile-logo {
    width: 60% !important;
  }
}
