.header {
  position: relative;
  top: 0;
  z-index: 12;
  width: 100%;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
}
.header img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.header-data-top {
  height: var(--datatopHeight);
  background: #FFFFFF;
}
.header-data-top .page-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  height: 100%;
}
.header-data-top .site-logo {
  width: 2.5rem;
}
.header-data-top .site-logo img {
  width: 100%;
  object-fit: contain;
}
.header-data-top .header-box {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-data-top .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 18px;
  border-radius: 50%;
  background-color: rgba(22, 126, 217, 0.1);
  cursor: pointer;
}
.header-data-top .follow-us {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #167ED9;
  font-size: 14px;
}
.header-data-top .follow-us .wx-wrap {
  position: relative;
  z-index: 10;
}
.header-data-top .follow-us .wx-wrap:hover .qr-wrap {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 15px);
}
.header-data-top .follow-us .wx-wrap:hover .wx-btn {
  color: #fff;
  background-color: #06D569;
}
.header-data-top .follow-us .btn {
  color: #06D569;
}
.header-data-top .follow-us .qr-wrap {
  position: absolute;
  top: 90%;
  left: calc(50% - 50px);
  width: 96px;
  height: 102px;
  background-color: #fff;
  border: 2px solid rgba(22, 126, 217, 0.1019607843);
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.header-data-top .follow-us .qr-wrap img {
  border-radius: 6px;
}
.header-data-top .follow-us .qr-wrap::after {
  content: "";
  position: absolute;
  top: -8px;
  right: calc(50% - 6px);
  width: 12px;
  height: 12px;
  border: 2px solid rgba(22, 126, 217, 0.1019607843);
  border-bottom: none;
  border-right: none;
  transform: rotate(45deg);
  background-color: #fff;
}
.header-data-top .search-bar-container .search-bar {
  position: relative;
  cursor: pointer;
}
.header-data-top .search-bar-container .search-bar .btn {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  color: #167ED9;
  font-size: 16px;
  background-color: transparent;
}
.header-data-top .search-bar-container .search-bar .btn::before {
  transition: transform 0.3s ease-in-out;
}
.header-data-top .search-bar-container .search-bar input {
  position: relative;
  z-index: 0;
  width: 28px;
  height: 28px;
  padding-left: 28px;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #525252;
  background-color: rgba(22, 126, 217, 0.1);
  border-radius: 40px;
  transition: width 0.3s ease;
}
.header-data-top .search-bar-container .search-bar input::placeholder {
  color: #C0C6CC;
}
.header-data-top .search-bar-container .search-bar.active input {
  width: 160px;
  padding-right: 2px;
}
.header-data-top .search-bar-container .search-bar.active .btn {
  font-size: 12px;
}
.header-data-top .search-bar-container .search-bar.active .btn::before {
  content: "\e628";
  transform: rotate(90deg);
}
.header-data-top .search-bar-container .search-bar:hover .btn {
  transform: scale(1.1);
}
.header-data-top .mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  background: var(--stylingColor) url("../images/bars.svg") no-repeat center/auto 50%;
  cursor: pointer;
}

.header-data {
  background-color: var(--stylingColor);
  white-space: nowrap;
  z-index: 11;
}

.menu {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--headdataHeight);
  color: #ffffff;
  font-size: 16px;
  line-height: 1.375;
}
.menu > li {
  position: relative;
}
.menu > li.active {
  border-bottom: 3px solid #0e80da;
}
.menu > li:hover {
  position: relative;
}
.menu > li:hover::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  bottom: 0;
}
.menu > li > a {
  position: relative;
  z-index: 1;
  display: block;
  height: 100%;
  box-sizing: border-box;
  white-space: nowrap;
  line-height: var(--headdataHeight);
}
.menu > li > ul {
  position: absolute;
  top: 96%;
  left: 50%;
  transform: translateX(-50%);
}
.menu > li:hover > a::after {
  width: 100%;
}
.menu > li:hover > ul {
  opacity: 1;
  visibility: visible;
}
.menu > li ul {
  z-index: 5;
  padding: 0;
  box-sizing: border-box;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.menu > li ul li {
  padding: 10px;
  white-space: nowrap;
  position: relative;
  font-size: 14px;
  line-height: 1.7;
  border-bottom: 1px solid rgba(55, 55, 55, 0.2);
  color: rgba(55, 55, 55, 0.7);
  text-shadow: none;
}
.menu > li ul li a {
  display: block;
  padding: 6px 10px;
  transition: background-color 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s ease-in-out;
  text-align: center;
}
.menu > li ul li a:hover {
  color: #0b7ed9;
}
.menu > li ul li:last-child {
  border: none;
}

.search {
  width: 20px;
  height: 20px;
}

.p_menu {
  width: 250px;
  float: right;
  position: fixed;
  height: 100%;
  right: -250px;
  top: 70px;
  text-align: center;
  z-index: 11;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-transition: right 500ms;
  background: #ffffff;
}
.p_menu.in {
  right: 0;
}

.center_area {
  padding: 0 16px;
}
.center_area > li {
  position: relative;
  cursor: pointer;
  border-bottom: 1px solid rgba(216, 216, 216, 0.3);
}
.center_area > li > a {
  display: block;
  padding: 20px 0;
  font-size: 16px;
  color: #303133;
}
.center_area > li > i {
  position: absolute;
  display: block !important;
  top: 31px;
  right: 26px;
  transform: translateY(-50%);
  width: 9px;
  height: 20px;
  background: url(/_upload/tpl/0f/99/3993/template3993/images/more.png) no-repeat center/contain;
}
.center_area > li > i.in {
  background-image: url(/_upload/tpl/0f/99/3993/template3993/images/more-in.png);
}
.center_area > li > ul {
  display: none;
  padding: 0 14px;
}
.center_area > li > ul > li {
  padding: 12px 0;
  border-top: 1px solid rgba(216, 216, 216, 0.3);
  font-weight: 400;
  font-size: 14px;
  color: rgba(48, 49, 51, 0.7);
  text-align: center;
}

@media screen and (max-width: 1600px) {
  .menu > li:first-child > ul {
    left: -10px;
    transform: unset;
  }
}
@media screen and (max-width: 1280px) {
  .header-data-top .page-content-1680 {
    width: 98%;
  }
}
@media screen and (max-width: 910px) {
  .header .header-data-top .header-box .follow-us .title {
    display: none;
  }
  .header .header-data-top .header-box .mobile-menu-btn {
    display: block;
  }
  .header .header-data .menu-wrapper {
    position: fixed;
    z-index: 99;
    right: 0;
    top: 0;
    width: 100%;
    height: 0;
  }
  .header .header-data .menu-wrapper .mobile-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    display: none;
  }
  .header .header-data .menu-wrapper .nav_wrap {
    transition: 0.3s;
    position: fixed;
    width: 3rem;
    right: -3rem;
    top: 0;
    height: 100%;
    background: var(--stylingColor);
    padding: 0.4rem;
    overflow: auto;
    box-sizing: border-box;
  }
  .header .header-data .menu-wrapper .nav_wrap::-webkit-scrollbar {
    width: 0 !important;
  }
  .header .header-data .menu-wrapper .nav_wrap > ul {
    display: block;
    height: auto;
  }
  .header .header-data .menu-wrapper .nav_wrap > ul > li {
    position: relative;
    padding: 4px 20px 4px;
    line-height: 1.6;
    font-weight: normal;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    text-align: center;
  }
  .header .header-data .menu-wrapper .nav_wrap > ul > li > a {
    line-height: unset;
    margin: 8px 0;
    position: static;
    display: inline-block;
  }
  .header .header-data .menu-wrapper .nav_wrap > ul > li > a::after {
    content: unset;
  }
  .header .header-data .menu-wrapper .nav_wrap > ul > li > a .icon-right:before {
    color: #fff;
  }
  .header .header-data .menu-wrapper .nav_wrap > ul > li .opener {
    display: none;
    position: absolute;
    top: 12px;
    right: 0;
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-weight: 500;
    font-size: 20px;
    color: #fff;
    text-align: center;
    cursor: pointer;
  }
  .header .header-data .menu-wrapper .nav_wrap > ul > li .opener:before {
    content: "+";
  }
  .header .header-data .menu-wrapper .nav_wrap > ul > li:has(ul) .opener {
    display: block;
  }
  .header .header-data .menu-wrapper .nav_wrap > ul > li > ul {
    transform: none;
    position: static;
    background-color: transparent;
    box-shadow: unset;
    opacity: 1;
    visibility: unset;
    transition: all 0.3s;
    max-height: 0px;
    padding: 0 0;
    overflow: hidden;
  }
  .header .header-data .menu-wrapper .nav_wrap > ul > li > ul > li {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: none;
    margin: 0;
    padding: 8px 0;
    opacity: 0.8;
    line-height: 24px;
    color: rgb(255, 255, 255);
  }
  .header .header-data .menu-wrapper .nav_wrap > ul > li > ul > li a:hover {
    color: inherit;
  }
  .header .header-data .menu-wrapper .nav_wrap > ul > li:hover:before {
    content: unset;
  }
  .header .header-data .menu-wrapper .nav_wrap > ul > li:hover > ul {
    max-height: 0;
    opacity: 1;
  }
  .header .header-data .menu-wrapper .nav_wrap > ul > li.active .opener:before, .header .header-data .menu-wrapper .nav_wrap > ul > li.active:hover .opener:before {
    content: "-";
  }
  .header .header-data .menu-wrapper .nav_wrap > ul > li.active > ul, .header .header-data .menu-wrapper .nav_wrap > ul > li.active:hover > ul {
    max-height: 400px;
  }
  .header .header-data .menu-wrapper.active .mobile-backdrop {
    display: block;
  }
  .header .header-data .menu-wrapper.active .nav_wrap {
    right: 0rem;
  }
}
