.header {
  width: 100%;
  z-index: 991;
  position: fixed;
  top: 0;
  left: 0;
  transition: 0.25s ease-in-out;
}

.header .inner .flex {
  align-items: center;
  transition: .25s ease-in-out;
}

.header .logo {
  font-size: 0;
  position: relative;
}

.header .logo img {
  width: 100%;
  min-width: 45px;
  transition: .25s ease-in-out;
}

.header nav {
  height: 100%;
  margin: 0 auto;
}

.header nav ul {
  font-size: 0;
  line-height: 1;
  display: flex;
  height: 100%;
  align-items: center;
}

.header nav ul li {
  display: flex;
  align-items: center;
  margin-right: 4.58vw;
  position: relative;
  height: 100%;
}

.header nav ul li:last-child {
  margin-right: 0;
}

.header nav ul li > a {
  transition: 0.25s;
  font-weight: 500;
  color: #123747;
}

.header .inner nav ul li .child {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 10px);
  min-width: 260px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  padding-top: 16px;
  z-index: 20;
}

.header .inner nav ul li .child .child-panel {
  background: #fff;
  min-width: 260px;
  border: 1px solid rgba(31, 96, 161, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(94, 146, 225, 0.12);
  padding: 12px;
}

.header .inner nav ul li .child p {
  margin: 0;
}

.header .inner nav ul li .child a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: #444;
  border-radius: 12px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.header .inner nav ul li .child a:hover {
  background: rgba(94, 146, 225, 0.12);
  color: var(--gm-theme);
  transform: translateX(4px);
}

.header .inner nav ul li:hover .child {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.header .index-search {
  margin-right: 14px;
  position: relative;
  z-index: 10;
}

.header .index-search > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: .25s;
  color: #123747;
}

.header .inner .index-search .content {
  position: fixed;
  inset: 0;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 24px;
  background: rgba(7, 16, 24, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  overflow: auto;
}

.header .inner .index-search .content .container {
  position: relative;
  width: 100%;
  max-width: 980px;
  height: auto;
  min-height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .inner .index-search .content .s-content {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
  text-align: center;
  padding: 56px 44px;
  width: min(100%, 760px);
  border-radius: 36px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.24);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1), opacity 0.4s ease;
  transform: translateY(24px) scale(0.98);
  opacity: 0;
}

.header .inner .index-search .content.active .s-content {
  transform: translateY(0) scale(1);
  opacity: 1;
  transition-delay: 0.1s;
}

.header .inner .index-search .content a.close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 28px;
  color: #888;
  transition: all 0.2s;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(18, 55, 71, 0.06);
}

.header .inner .index-search .content a.close:hover {
  background: #f0f0f0;
  color: #333;
  transform: rotate(90deg);
}

.header .inner .index-search .content .title {
  color: #1e2a3e;
  margin-bottom: 32px;
  line-height: 1.3;
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.3px;
  background: linear-gradient(135deg, #1e2a3e, #2c3e50);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  display: inline-block;
}

.header .inner .index-search .content .input {
  font-size: 0;
  line-height: 1;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.header .inner .index-search .content input {
  height: 56px;
  outline: none;
  box-sizing: border-box;
  transition: all 0.2s;
}

.header .inner .index-search .content .searchValue {
  padding: 0 24px;
  border: 1.5px solid #e2e8f0;
  font-size: 18px;
  width: calc(100% - 68px);
  min-width: 0;
  color: #1e293b;
  background: #fff;
  border-radius: 48px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.header .inner .index-search .content .searchValue:focus {
  border-color: #123747;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.header .inner .index-search .content .searchValue::-webkit-input-placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.header .inner .index-search .content .searchValue:-moz-placeholder {
  color: #94a3b8;
}

.header .inner .index-search .content .searchValue::-moz-placeholder {
  color: #94a3b8;
}

.header .inner .index-search .content .searchValue:-ms-input-placeholder {
  color: #94a3b8;
}

.header .inner .index-search .content button {
  width: 56px;
  min-width: 56px;
  background: #1e293b;
  border: none;
  color: #fff;
  font-family: 'iconfont';
  font-size: 24px;
  border-radius: 48px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header .inner .index-search .content button:hover {
  background: #123747;
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.header .inner .index-search .content button:active {
  transform: scale(0.98);
}

@media (max-width: 768px) {
  .header .inner .index-search .content {
    padding: 16px;
  }

  .header .inner .index-search .content .s-content {
    padding: 48px 20px 28px;
    border-radius: 24px;
  }

  .header .inner .index-search .content .title {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .header .inner .index-search .content .input {
    gap: 10px;
  }

  .header .inner .index-search .content .searchValue {
    font-size: 16px;
  }
}

.header .inner .share {
  display: flex;
  align-items: center;
}

.header .inner .share a {
  margin-right: 15px;
  position: relative;
  color: #123747;
}

.header .inner .share a.wechat .code {
  position: absolute;
  top: 100%;
  margin-top: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  padding: 5px;
  background: #fff;
  z-index: 90;
}

.header .inner .share a.wechat .code::after {
  content: '';
  border-bottom: 8px solid #fff;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.header .inner .share a.wechat .code img {
  max-width: 120px;
}

.header {
  position: absolute;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  top: 0;
  left: 0;
  padding: 10px 0;
  height: 90px;
  box-sizing: border-box;
}

.header.header-top .logo img {
  max-width: 80px;
}

.header.header-solid {
  position: fixed;
  background: #fff;
  box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-100%);
}

.header.header-solid .logo img {
  width: 4.2vw;
}

.header.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);

}

.header.header-top.on,
.header.header-solid.on {
  box-shadow: none;
}

.header.header-top .inner {
  background: transparent;
}


.header.header-top nav ul li > a,
.header.header-top .index-search > a,
.header.header-top .change-language .change-language-title > .language-flag > a,
.header.header-top .flex .nav-btn {
  color: #fff;
}

.header.header-top .flex .nav-btn .nav-btn-icon {
  color: #fff;
}

.header.header-top .change-language .change-language-title > .language-flag > a {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.header.header-solid .logo img {
  filter: none;
}

.header.header-solid nav ul li > a,
.header.header-solid .index-search > a,
.header.header-solid .flex .nav-btn {
  color: #123747;
}

.header.header-solid .flex .nav-btn .nav-btn-icon {
  color: #123747;
}

.header.header-solid .change-language .change-language-title > .language-flag > a {
  color: #123747;
  border-color: rgba(18, 55, 71, 0.28);
}

.change-language {
  display: inline-flex;
  align-items: center;
  position: relative;
  text-align: left;
  vertical-align: middle;
  line-height: 1;
  padding: 0;
}



.change-language .change-language-title > .language-flag > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 47px;
  padding: 0  2vw;
  border-radius: 0px 15px 0px 15px;
  background: transparent;
  border: 1px solid transparent;
  color: inherit;
  font-size: 15px;
  gap: 15px;
}



.change-language .change-language-title > .language-flag > a span {
  padding: 0;
  white-space: nowrap;
  color: inherit;
  line-height: 1;
}

.change-language .change-language-title > .language-flag > a i {
  display: flex;
  line-height: 1;
  color: inherit;
align-items: center;
}

.change-language .change-language-cont {
  position: absolute;
  top: 100%;
  right: 0;
  width: 360px;
  background: #FFF;
  padding: 20px 10px 20px 20px;
  transform: scale3d(0.9, 0.9, 1);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transition: all 0.3s ease-in-out;
  border: 1px solid #eee;
  border-radius: 5px;
  overflow-y: auto;
  max-height: 80vh;
  line-height: normal;
}

.change-language:hover .change-language-cont {
  transform: scale3d(1, 1, 1);
  opacity: 1;
  visibility: visible;
}

.goomay-translate-seo {
  display: none;
}

.mobile-head-language .goomay-translate-seo,
.change-language .goomay-translate-seo {
  display: block;
}

.change-language .change-language-cont li {
  display: inline-block;
  vertical-align: top;
  width: 30%;
  margin: 0 0 10px;
  font-size: 10pt;
  overflow: hidden;
  padding: 0 10px 0 0;
}

li.language-flag a {
  position: relative;
}

.language-flag span {
  position: relative;
  white-space: nowrap;
  padding: 0 0 0 33px;
}

.language-flag img {
  position: absolute;
  left: 0;
  top: 50%;
  display: inline-block;
  vertical-align: top;
  background-repeat: no-repeat;
  width: 22px;
  height: 16px;
  margin: -8px 5px 0;
  border: 1px solid #eee;
}

.change-language ::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, .3);
  border-radius: 20px;
}

.change-language ::-webkit-scrollbar {
  width: 5px;
}

.header {
  top: 0;
}

.header .logo {
  margin-right: auto;
}

.header .flex .nav-btn {
  display: block !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  margin-right: 16px;
  order: 1;
  color: inherit;
}
.header .inner nav, .change-language::before {
    display: none;
}
.header .flex .nav-btn .nav-btn-icon {
  display: block;
  line-height: 1;
  color: inherit;
  font-weight: 600;
}

.header .index-search {
  margin-right: 16px;
  order: 2;
}

.change-language {
  order: 3;
}





@media (min-width: 993px) {

  .header .flex {
    justify-content: flex-start;
  }

  .header .index-search {
    margin-right:45px;
  }

  .header .flex .nav-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-right: 45px;
  }
    .header .inner nav {
        display: block !important;
    }

}
