.header-wrap {
  height: 1.54rem;
  background-image: linear-gradient(270deg, #862782 6%, #CE1F3E 52%, #DF7433 100%);
  position: fixed;
  top: 0;
  z-index: 12;
  width: 100%;
}
.header-wrap .page-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.header-wrap .page-content .site-logo {
  width: 4rem;
  height: 1.1rem;
  overflow: hidden;
  flex: none;
}
.header-wrap .page-content .site-logo img {
  transition: transform 0.3s ease-in-out;
  -webkit-transition: transform 0.3s ease-in-out;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.header-wrap .page-content .header-right {
  padding-top: 0.2rem;
  flex: auto;
  height: 100%;
}
.header-wrap .page-content .header-right .operation-box {
  text-align: right;
}
.header-wrap .page-content .header-right .operation-box .item {
  margin: 0 0.2rem;
  display: inline-block;
}
.header-wrap .page-content .header-right .operation-box .item a .icon {
  width: 0.32rem;
  height: 0.32rem;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #862782;
  border-radius: 50%;
}
.header-wrap .page-content .header-right .operation-box .item a .icon:hover {
  filter: saturate(1.5);
}
.header-wrap .page-content .header-right .operation-box .item a .icon.icon-sis {
  background-image: url("../images/common/icon_sis.png");
}
.header-wrap .page-content .header-right .operation-box .item a .icon.icon-search {
  background-image: url("../images/common/icon_search.png");
}
.header-wrap .page-content .header-right .operation-box .item a .backdrop {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  display: none;
  background: rgba(0, 0, 0, 0.2);
  z-index: 12;
}
.header-wrap .page-content .header-right .operation-box .item.lang {
  position: relative;
}
.header-wrap .page-content .header-right .operation-box .item.lang .menu-dropdown {
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: 2;
  background: #fff;
  width: 0.9rem;
  left: calc(50% - 0.45rem);
  top: 100%;
  box-shadow: 0 0.2rem 0.2rem 0 rgba(0, 0, 0, 0.3294117647);
  border-radius: 8px;
  padding: 0.06rem 0;
}
.header-wrap .page-content .header-right .operation-box .item.lang .menu-dropdown ul li:not(:first-child) {
  border-top: 1px dotted rgba(151, 151, 151, 0.2980392157);
}
.header-wrap .page-content .header-right .operation-box .item.lang .menu-dropdown ul li a {
  display: block;
  text-align: center;
  line-height: 0.4rem;
  font-weight: 400;
  font-size: max(12px, 0.14rem);
  color: #313131;
}
.header-wrap .page-content .header-right .operation-box .item.lang .menu-dropdown ul li a:hover {
  color: #862782;
}
.header-wrap .page-content .header-right .operation-box .item.lang:hover .menu-dropdown {
  opacity: 1;
  visibility: visible;
}
.header-wrap .page-content .header-right .operation-box .item.search .search-popup {
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  z-index: 15;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.header-wrap .page-content .header-right .operation-box .item.search .search-popup.active {
  opacity: 1;
  visibility: visible;
}
.header-wrap .page-content .header-right .operation-box .item.search .search-popup .backdrop {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.header-wrap .page-content .header-right .operation-box .item.search .search-popup .input-group {
  position: relative;
  width: 9rem;
  height: 0.6rem;
  display: flex;
  gap: 0.08rem;
}
.header-wrap .page-content .header-right .operation-box .item.search .search-popup .input-group input {
  flex: auto;
  padding: 0.18rem;
  height: 0.6rem;
  width: 100%;
  background: #FFFFFF;
  border-radius: 4px;
  font-weight: 400;
  font-size: 0.18rem;
  color: #313131;
  line-height: 0.24rem;
}
.header-wrap .page-content .header-right .operation-box .item.search .search-popup .input-group .icon-search {
  border: none;
  border-radius: 4px;
  flex: none;
  background: #CE1F3E url("../images/common/icon_search2.png") no-repeat center/auto 0.28rem;
  width: 0.68rem;
  height: 0.6rem;
  cursor: pointer;
}
.header-wrap .page-content .header-right .menu-wrapper {
  margin-top: 0.17rem;
  display: flex;
  align-items: center;
  justify-content: end;
  position: relative;
  height: 0.8rem;
}
.header-wrap .page-content .header-right .menu-wrapper > ul {
  display: flex;
  align-items: center;
}
.header-wrap .page-content .header-right .menu-wrapper > ul > li {
  max-width: 1.8rem;
  position: relative;
}
.header-wrap .page-content .header-right .menu-wrapper > ul > li > a {
  padding: 0 0.24rem;
  font-weight: 900;
  font-size: 0.18rem;
  color: #FFFFFF;
  text-align: center;
  justify-content: center;
  line-height: 1.4;
  height: 0.8rem;
  display: flex;
  align-items: center;
  border-radius: 4px 4px 0 0;
}
.header-wrap .page-content .header-right .menu-wrapper > ul > li:hover > a {
  background: #981B49;
}
.header-wrap .page-content .header-right .menu-wrapper > ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
}
.header-wrap .page-content .header-right .menu-wrapper > ul > li > ul {
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  background: #BF165E;
  left: 0rem;
  top: 100%;
  padding: 0.06rem 0;
  box-shadow: 0 0.05rem 0.15rem #940845;
  border-radius: 0 0 4px 4px;
}
.header-wrap .page-content .header-right .menu-wrapper > ul > li > ul > li {
  position: relative;
}
.header-wrap .page-content .header-right .menu-wrapper > ul > li > ul > li:not(:last-child) {
  margin-bottom: 0.06rem;
}
.header-wrap .page-content .header-right .menu-wrapper > ul > li > ul > li > a {
  padding: 0 0.32rem 0 0.16rem;
  display: block;
  font-weight: 600;
  font-size: 0.18rem;
  color: #fff;
  line-height: 0.56rem;
  white-space: nowrap;
}
.header-wrap .page-content .header-right .menu-wrapper > ul > li > ul > li:hover > a {
  background: #981B49;
}
.header-wrap .page-content .header-right .menu-wrapper > ul > li > ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
}
.header-wrap .page-content .header-right .menu-wrapper > ul > li > ul > li.menu-item-has-children > a {
  position: relative;
}
.header-wrap .page-content .header-right .menu-wrapper > ul > li > ul > li.menu-item-has-children > a:after {
  content: " ";
  position: absolute;
  top: 0.2rem;
  right: 0.12rem;
  width: 0.1rem;
  height: 0.1rem;
  border-width: 1px;
  border-color: #fff #fff transparent transparent;
  border-style: solid;
  transform: rotate(45deg);
}
.header-wrap .page-content .header-right .menu-wrapper > ul > li > ul > li > ul {
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 100%;
  top: -0.06rem;
  padding: 0.06rem 0;
  background: #BF165E;
  box-shadow: 0 0.05rem 0.15rem #940845;
  border-radius: 0 0 4px 4px;
}
.header-wrap .page-content .header-right .menu-wrapper > ul > li > ul > li > ul > li {
  position: relative;
}
.header-wrap .page-content .header-right .menu-wrapper > ul > li > ul > li > ul > li:not(:last-child) {
  margin-bottom: 0.06rem;
}
.header-wrap .page-content .header-right .menu-wrapper > ul > li > ul > li > ul > li > a {
  padding: 0 0.32rem 0 0.16rem;
  display: block;
  font-weight: 600;
  font-size: 0.18rem;
  color: #fff;
  line-height: 0.56rem;
  white-space: nowrap;
}
.header-wrap .page-content .header-right .menu-wrapper > ul > li > ul > li > ul > li:hover > a {
  background: #981B49;
}
.header-wrap .page-content .header-right .menu-wrapper > ul > li:nth-child(n+5) > ul {
  left: auto;
  right: 0;
}
.header-wrap .page-content .header-right .menu-wrapper > ul > li:nth-child(n+5) > ul > li > ul {
  left: auto;
  right: 100%;
}
.header-wrap .page-content .menu-button .menu-button-wrap {
  width: 0.34rem;
  height: 0.34rem;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.header-wrap .page-content .menu-button .menu-button-wrap span {
  position: relative;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
.header-wrap .page-content .menu-button .menu-button-wrap span:last-child {
  margin-bottom: 0;
}
.header-wrap .page-content .popup_mobile {
  display: none;
  position: fixed;
}
@media screen and (max-width: 840px) {
  .header-wrap .page-content .popup_mobile {
    display: block;
  }
}
.header-wrap .page-content .popup_mobile .backdrop {
  display: none;
  position: fixed;
  z-index: 15;
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.header-wrap .page-content .popup_mobile .popup-menu {
  transition: all 0.5s;
  position: fixed;
  z-index: 15;
  top: 0;
  height: 100%;
  width: 90%;
  max-width: 350px;
  overflow: auto;
  background: linear-gradient(-90deg, #862782 0%, #CE1F3E 44%, #DF7433 100%);
  right: 0%;
  transform: translateX(100%);
  padding: 0.4rem;
}
.header-wrap .page-content .popup_mobile .popup-menu::-webkit-scrollbar {
  width: 0 !important;
}
.header-wrap .page-content .popup_mobile .popup-menu .top-close {
  display: flex;
  justify-content: flex-end;
}
.header-wrap .page-content .popup_mobile .popup-menu .top-close .close_btn {
  cursor: pointer;
  width: 0.24rem;
  height: 0.24rem;
  background: url("../images/common/close_btn.png") no-repeat center/contain;
  filter: brightness(5);
}
.header-wrap .page-content .popup_mobile .popup-menu .menu-wrapper {
  margin-top: 0.4rem;
}
.header-wrap .page-content .popup_mobile .popup-menu .menu-wrapper > ul > li {
  padding: 12px 0;
  position: relative;
  opacity: 0;
  transform: translateX(40px);
  transition: 0.3s;
  transition-delay: 0.5s;
}
.header-wrap .page-content .popup_mobile .popup-menu .menu-wrapper > ul > li > a {
  font-weight: 900;
  font-size: 19px;
  color: #FFFFFF;
  line-height: 24px;
}
.header-wrap .page-content .popup_mobile .popup-menu .menu-wrapper > ul > li > a br {
  display: none;
}
.header-wrap .page-content .popup_mobile .popup-menu .menu-wrapper > ul > li > ul {
  padding-left: 10px;
  padding-top: 8px;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.3s;
}
.header-wrap .page-content .popup_mobile .popup-menu .menu-wrapper > ul > li > ul > li {
  padding: 8px 0;
}
.header-wrap .page-content .popup_mobile .popup-menu .menu-wrapper > ul > li > ul > li a {
  display: block;
  font-weight: 700;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 24px;
}
.header-wrap .page-content .popup_mobile .popup-menu .menu-wrapper > ul > li > ul > li > ul {
  padding-left: 20px;
  margin-top: 6px;
}
.header-wrap .page-content .popup_mobile .popup-menu .menu-wrapper > ul > li > ul > li > ul > li {
  display: block;
  padding: 6px 0;
}
.header-wrap .page-content .popup_mobile .popup-menu .menu-wrapper > ul > li > ul > li > ul > li a {
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 24px;
  display: flex;
  gap: 4px;
}
.header-wrap .page-content .popup_mobile .popup-menu .menu-wrapper > ul > li > ul > li > ul > li a:before {
  content: "-";
}
.header-wrap .page-content .popup_mobile .popup-menu .menu-wrapper > ul > li .opener {
  width: 24px;
  height: 24px;
  top: 12px;
  right: 0;
  position: absolute;
  transition: transform 0.3s ease-out;
}
.header-wrap .page-content .popup_mobile .popup-menu .menu-wrapper > ul > li .opener:after {
  content: " ";
  position: absolute;
  top: 9px;
  left: 6px;
  width: 8px;
  height: 8px;
  border-width: 2px;
  border-style: solid;
  border-color: #fff #fff transparent transparent;
  transform: rotate(-45deg);
}
.header-wrap .page-content .popup_mobile .popup-menu .menu-wrapper > ul > li.active ul {
  opacity: 1;
  height: auto;
}
.header-wrap .page-content .popup_mobile .popup-menu .menu-wrapper > ul > li.active .opener {
  transform: rotate(180deg);
}
.header-wrap .page-content .popup_mobile.show .backdrop {
  display: block;
}
.header-wrap .page-content .popup_mobile.show .popup-menu {
  transform: translateX(0%);
}
.header-wrap .page-content .popup_mobile.show .popup-menu .menu-wrapper > ul > li {
  opacity: 1;
  transform: translateX(0px);
}

@media screen and (max-width: 840px) {
  .header-wrap {
    height: 1.32rem;
  }
  .header-wrap .page-content .site-logo {
    width: 3.6rem;
    height: 0.9rem;
  }
}
