/* ==========================================
   Header 模块样式
   ========================================== */

.gh-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: transparent;
    box-shadow: none;
    --gh-header-text: #ffffff;
    --gh-header-text-muted: rgba(255, 255, 255, 0.86);
    --gh-header-icon-filter: brightness(0) invert(1);
    --gh-header-link-active: #ffffff;
}

.gh-header.is-scrolled {
    position: fixed;
    background: var(--gh-header-bg-strong);
    box-shadow: var(--gh-header-shadow);
}

.gh-header.is-solid,
.gh-header.is-hovered {
    background: var(--gh-header-bg-strong);
    box-shadow: var(--gh-header-shadow);
}

/* Override legacy global spacing from common.css when new gh-header is used. */
body:has(#ghHeader),
body.gh-header-enabled {
    margin-top: 0 !important;
}

.gh-header + .gh-header-spacer {
    height: 0;
}

.gh-header-not-home .gh-header + .gh-header-spacer {
    height: 76px;
}

.gh-header.is-scrolled + .gh-header-spacer {
    height: 76px;
}

.gh-header__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 24px;
    max-width: 1920px;
    min-height: 76px;
    margin: 0 auto;
    padding: 14px 32px 18px;
}

.gh-header__brand {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    width: auto;
    min-width: 0;
    flex-shrink: 0;
    position: relative;
}

.gh-header__brand-image {
    width: 158px;
    height: 44px;
    object-fit: contain;
    transition: opacity 0.2s ease;
}

.gh-header__brand-image--inverse {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    pointer-events: none;
}

/* 下滑 / 内页固定顶栏 / 悬停：切换为白色 Logo */
.gh-header.is-scrolled .gh-header__brand-image--default,
.gh-header.is-solid .gh-header__brand-image--default,
.gh-header.is-hovered .gh-header__brand-image--default {
    opacity: 0;
}

.gh-header.is-scrolled .gh-header__brand-image--inverse,
.gh-header.is-solid .gh-header__brand-image--inverse,
.gh-header.is-hovered .gh-header__brand-image--inverse {
    opacity: 1;
}

.gh-header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    gap: 4px;
    min-width: 0;
    align-self: stretch;
    grid-column: 2;
}

.gh-header__nav-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.gh-header__nav-item--product::after {
    content: none;
}

.product-dropdown {
    position: fixed;
    left: 0;
    right: 0;
    top: 76px;
    padding: 22px 0 26px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 24px 64px rgba(16, 24, 40, 0.14);
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity var(--gh-header-transition), transform var(--gh-header-transition), visibility var(--gh-header-transition);
    z-index: 1095;
}

.product-dropdown::before {
    content: "";
    position: absolute;
    top: -24px;
    left: 0;
    right: 0;
    height: 24px;
}

.product-dropdown-shell {
    display: grid;
    width: min(1280px, calc(100% - 64px));
    margin: 0 auto;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.product-dropdown-menu {
    display: grid;
    gap: 8px;
    border-radius: 0;
    background: rgba(16, 24, 40, 0.03);
    align-content: start;
    max-height: calc(100vh - 190px);
    overflow-y: auto;
}

.product-dropdown-category {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    width: 100%;
    height: 70px;
    min-height: 70px;
    padding: 0 14px 0 18px;
    border-radius: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    color: #101828;
    transition: background-color var(--gh-header-transition), color var(--gh-header-transition);
}



.product-dropdown-category.is-active {
    background: rgba(0, 146, 216, 0.08);
    color: var(--theme-default-font-color, #006a9d);
}



.product-dropdown-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.product-dropdown-category.is-active .product-dropdown-icon {
    filter: brightness(0) saturate(100%) invert(29%) sepia(84%) saturate(1695%) hue-rotate(171deg) brightness(97%) contrast(92%);
}

.product-dropdown-category-text {
    display: grid;
    gap: 14px;
    min-width: 0;
}

.product-dropdown-category-text strong {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.1;
}

.product-dropdown-category-text em {
    font-size: 12px;
    font-style: normal;
    color: rgba(16, 24, 40, 0.6);
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-dropdown-chevron {
    margin-left: auto;
    width: 16px;
    height: 16px;
    opacity: 0;
    pointer-events: none;
}

.product-dropdown-category.is-active .product-dropdown-chevron {
    opacity: 0.6;
}

.product-dropdown-content {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 12px;
    min-width: 0;
    max-height: calc(100vh - 190px);
    overflow-y: auto;
    padding-right: 6px;
    min-height: 400px;
}

.product-dropdown-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 40px;
    position: sticky;
    top: 0;
    z-index: 1;
    background: #fff;
    padding: 4px 0;
}

.product-dropdown-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #101828;
}

.product-dropdown-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-content: start;
}

.product-dropdown-card {
    display: block;
    overflow: hidden;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(16, 24, 40, 0.06);
    transition: transform var(--gh-header-transition), box-shadow var(--gh-header-transition), border-color var(--gh-header-transition);
}

.product-dropdown-card:hover {
    transform: translateY(-4px);
    border-color: var(--theme-default-font-color, #006a9d);
}

.product-dropdown-card-media {
    position: relative;
    aspect-ratio: 423 / 264;
    overflow: hidden;
    background: #eef3f9;
}

.product-dropdown-card-media::after {
    content: none;
}

.product-dropdown-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-dropdown-card-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.product-dropdown-card-model {
    margin: 0;
    font-size: 12px;
    color: var(--theme-default-font-color, #006a9d);
    line-height: 18px;
    letter-spacing: 0.18em;
}

.product-dropdown-card-title {
    margin: 6px 0 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #101828;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-dropdown-card-subtitle {
    margin: 0;
    font-size: 13px;
    color: rgba(16, 24, 40, 0.62);
    line-height: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-dropdown-empty {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    border: 1px dashed rgba(0, 61, 149, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    color: #6a7282;
    font-size: 15px;
    line-height: 24px;
    text-align: center;
}

.product-dropdown-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 0;
    background: transparent;
    color: rgba(16, 24, 40, 0.62);
    font-size: 13px;
    font-weight: 500;
    transition: color var(--gh-header-transition);
}

.product-dropdown-all img {
    width: 12px;
    height: 12px;
    opacity: 0.75;
}

.product-dropdown-all:hover {
    color: var(--theme-default-font-color, #006a9d);
}

@media (min-width: 968px) {
    .gh-header__nav-item--product.is-open .product-dropdown {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

}

.gh-header__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 36px;
    padding: 8px 16px;
    border-radius: 10px;
    color: var(--gh-header-text-muted);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0;
    white-space: nowrap;
    opacity: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    transition: none;
}

.gh-header__link > span {
    display: inline;
    font-weight: inherit;
    line-height: inherit;
}

.gh-header__link img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform var(--gh-header-transition);
    filter: var(--gh-header-icon-filter, none);
}

.gh-header__nav-item--product:focus-within .gh-header__link--featured img,
.gh-header__nav-item--product.is-open .gh-header__link--featured img {
    transform: rotate(180deg);
}

.gh-header:not(.is-solid) .gh-header__link {
    color: #fff;
}

.gh-header:not(.is-solid) .gh-header__link:hover,
.gh-header:not(.is-solid) .gh-header__link:focus-visible,
.gh-header:not(.is-solid) .gh-header__link.is-active {
    color: #fff;
}

.gh-header.is-solid .gh-header__link {
    color:#fff;
}

.gh-header.is-solid .gh-header__link:hover,
.gh-header.is-solid .gh-header__link:focus-visible {
    color: var(--gh-header-link-active);
}

.gh-header.is-solid .gh-header__link.is-active:not(:hover):not(:focus-visible) {
    color: #fff;
}
.gh-header .gh-header__nav-item a.is-active span{
    font-size: 16px;
}
.gh-header.is-solid .gh-header__link.is-active:hover,
.gh-header.is-solid .gh-header__link.is-active:focus-visible {
    color: var(--gh-header-link-active);
}

.gh-header__link:focus-visible,
.gh-header__action:focus-visible,
.gh-header__lang-trigger:focus-visible,
.gh-header__toggle:focus-visible,
.gh-header__search-submit:focus-visible,
.gh-header__quick-link:focus-visible,
.gh-header__lang-option:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.72);
    outline-offset: 2px;
}

.gh-header__link.is-active::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 5px;
    height: 2px;
    border-radius: 1px;
    background: currentColor;
    pointer-events: none;
}

.gh-header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    justify-self: end;
    gap: 12px;
    min-width: 0;
    flex-shrink: 0;
    grid-column: 3;
}

.gh-header__action,
.gh-header__lang-trigger,
.gh-header__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--gh-header-text);
    cursor: pointer;
    transition: background-color var(--gh-header-transition), transform var(--gh-header-transition), opacity var(--gh-header-transition);
}

.gh-header__action {
    width: 36px;
    height: 36px;
}

.gh-header__action img {
    width: 18px;
    height: 18px;
    filter: var(--gh-header-icon-filter, none);
}

.gh-header__action:hover,
.gh-header__lang-trigger:hover,
.gh-header__toggle:hover,
.gh-header__action.is-open,
.gh-header__lang-trigger.is-open,
.gh-header__toggle.is-open {
    background: transparent;
    opacity: 0.86;
}

.gh-header__lang {
    position: relative;
}

.gh-header__lang-trigger {
    gap: 6px;
    min-width: auto;
    min-height: auto;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.gh-header__lang-trigger img {
    width: 16px;
    height: 16px;
    filter: var(--gh-header-icon-filter, none);
}

.gh-header__toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    cursor: pointer;
}

.gh-header__toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 3px auto;
    border-radius: 999px;
    background: #fff;
    transition: transform var(--gh-header-transition), opacity var(--gh-header-transition);
}

.gh-header__toggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.gh-header__toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.gh-header__toggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.gh-header__search-panel,
.gh-header__lang-panel {
    position: absolute;
    background: var(--gh-header-panel-bg);
    border: 1px solid var(--gh-header-panel-border);
    box-shadow: var(--gh-header-panel-shadow);
}

.gh-header__search-panel {
    position: fixed;
    inset: 0;
    z-index: 1300;
    border: 0;
    border-radius: 0;
    background: rgba(9, 23, 40, 0.68);
    box-shadow: none;
    backdrop-filter: blur(2px);
    overflow: auto;
}

.gh-header__search-shell {
    position: relative;
    width: min(980px, calc(100% - 64px));
    margin: clamp(84px, 12vh, 140px) auto 36px;
    padding: 28px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(0, 82, 130, 0.1);
    box-shadow: 0 22px 64px rgba(2, 27, 48, 0.28);
}

.gh-header__search-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(15, 77, 115, 0.08);
    color: #0f4d73;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.gh-header__search-close:hover {
    background: rgba(15, 77, 115, 0.16);
}

.gh-header__search-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gh-header__search-title {
    color: var(--gh-header-panel-text);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}

.gh-header__search-field {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 12px 0 14px;
    border: 1px solid rgba(0, 77, 122, 0.12);
    border-radius: 16px;
    background: #f7fbfe;
}

.gh-header__search-field img {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.gh-header__search-input {
    flex: 1;
    min-width: 0;
    border: 0;
    background: transparent;
    -webkit-appearance: none;
    appearance: none;
    color: var(--gh-header-panel-text);
    font-size: 14px;
    line-height: 20px;
}

.gh-header__search-input:focus,
.gh-header__search-input:focus-visible {
    outline: none;
    box-shadow: none;
}

.gh-header__search-input::placeholder {
    color: #8091a4;
}

.gh-header__search-submit {
    min-width: 72px;
    height: 38px;
    border-radius: 12px;
    background: var(--theme-default-color, var(--gh-header-bg));
    color: #ffffff;
    cursor: pointer;
    transition: opacity var(--gh-header-transition), transform var(--gh-header-transition);
}

.gh-header__search-submit:hover {
    opacity: 0.92;
}

.gh-header__search-status {
    color: var(--gh-header-panel-muted);
    font-size: 12px;
    line-height: 18px;
}

.gh-search-results {
    margin-top: 12px;
    border: 1px solid rgba(0, 82, 130, 0.08);
    border-radius: 14px;
    background: #ffffff;
    max-height: min(60vh, 560px);
    overflow: auto;
}

.gh-search-results__list {
    display: flex;
    flex-direction: column;
}

.gh-search-results__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 14px;
    color: #1e3551;
    border-bottom: 1px solid rgba(0, 82, 130, 0.08);
    transition: background-color var(--gh-header-transition);
}

.gh-search-results__item:last-child {
    border-bottom: 0;
}

.gh-search-results__item:hover {
    background: #f4f9fe;
}

.gh-search-results__title {
    font-size: 14px;
    line-height: 20px;
    color: #1e3551;
}

.gh-search-results__type {
    flex-shrink: 0;
    font-size: 12px;
    line-height: 16px;
    color: #0a648e;
}

.gh-header__quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.gh-header__quick-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 14px;
    border-radius: 999px;
    background: #eef7fd;
    color: #0f5780;
    font-size: 12px;
    line-height: 16px;
    transition: background-color var(--gh-header-transition), color var(--gh-header-transition);
}

.gh-header__quick-link:hover {
    background: #dff0fb;
}

body.gh-header-search-open {
    overflow: hidden;
}

.gh-header__lang-panel {
    top: calc(100% + 12px);
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 110px;
    padding: 8px;
    border-radius: 16px;
}

.gh-header__lang-option {
    min-height: 38px;
    padding: 0 12px;
    border-radius: 10px;
    color: var(--gh-header-panel-text);
    text-align: left;
    cursor: pointer;
    transition: background-color var(--gh-header-transition), color var(--gh-header-transition);
}

.gh-header__lang-option:hover,
.gh-header__lang-option.is-active {
    background: #eef7fd;
    color: #0a648e;
}

/*新增开始*/
button {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
.gh-header__lang-trigger img{
    filter: brightness(0) invert(1);
}
   .gh-header__lang-trigger span{
    color:#fff;
   }
  .site-footer__contact img{
    margin: 2px 0 0 0 !important; 
  }
  .product-dropdown-menu .is-active {
    border-left: 4px solid var(--theme-default-color, var(--home-color-primary)) !important;
  }
  .product-dropdown-category{
    border-left: 4px solid #fff !important;
  }
  .product-dropdown-menu{
    max-height: 420px !important;
    background: #fff;
  }
  .section-heading p{
    color: #4A5565 !important;
  }
  .product-dropdown-title{
    font-weight: 400 !important;
  }
  .product-dropdown-card-subtitle{
    letter-spacing: 0.19px !important;
    color:#9AAABF
  }
  .product-dropdown-card-title{
    letter-spacing: 0.23px;
    font-weight: 400;
    color:var(--support-primary-dark)
  }
  .product-dropdown-content{
    border-left: 1px solid #ebebeb;
      padding-left: 20px;
  }
  .product-dropdown-shell{
    gap: 0;
  }
  .product-dropdown-category-text strong{
    font-weight: 400;
    letter-spacing: 0.92px;
  }
  .product-dropdown-menu .is-active strong{
    font-weight: 600;
  }
  .product-dropdown-category-text em{
    letter-spacing: 0.92px;
    font-weight: 300;
    color:#B0BDCC
  }
  .product-dropdown-menu::-webkit-scrollbar {
    width: 0; /* 滚动条宽度 */
    height: 0; /* 滚动条高度 */
  }
  
  /* 滚动条轨道 */
  .product-dropdown-menu::-webkit-scrollbar-track {
    background: #f5f5f5; /* 轨道背景色 */
    border-radius: 6px; /* 轨道圆角 */
  }
  
  /* 滚动条滑块 */
  .product-dropdown-menu::-webkit-scrollbar-thumb {
    background: #333; /* 滑块颜色 */
    border-radius: 6px; /* 滑块圆角 */
  }
  
  /* 滑块悬停状态 */
  .product-dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #1890ff; /* 悬停时滑块颜色 */
  }
  .product-dropdown-card-model{
    display: none;
  }
@media (max-width: 1200px) {
    .gh-header__inner {
        gap: 16px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .gh-header__actions {
        min-width: auto;
    }

    .gh-header__nav {
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .gh-header__nav::-webkit-scrollbar {
        display: none;
    }

    .product-dropdown-shell {
        width: min(1920px, calc(100% - 48px));
    }
}

@media (max-width: 968px) {
    .gh-header-not-home .gh-header + .gh-header-spacer,
    .gh-header.is-scrolled + .gh-header-spacer {
        height: 72px;
    }

    .gh-header__inner {
        display: flex;
        justify-content: space-between;
        min-height: 72px;
        padding: 12px 24px;
        gap: 12px;
    }

    .gh-header__brand,
    .gh-header__brand-image {
        width: auto;
        min-width: 0;
    }

    .gh-header__brand-image {
        height: 40px;
    }

    .gh-header__actions {
        gap: 8px;
        margin-left: auto;
    }

    .gh-header__toggle {
        display: inline-flex;
        flex-direction: column;
    }

    .gh-header__nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 24px;
        right: 24px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        justify-self: auto;
        grid-column: auto;
        gap: 2px;
        padding: 14px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 1);
        border: 1px solid rgba(0, 82, 130, 0.08);
        box-shadow: 0 18px 42px rgba(0, 73, 117, 0.14);
        overflow: visible;
    }

    .gh-header__nav.is-open {
        display: flex;
    }

    .gh-header__nav-item {
        width: 100%;
        justify-content: space-between;
    }

    .gh-header__nav-item--product::after,
    .product-dropdown {
        display: none !important;
    }

    .gh-header__link--featured img {
        display: none;
    }

    .gh-header__link,
    .gh-header__link.is-active {
        justify-content: space-between;
        min-height: 44px;
        padding: 10px 0;
        border-radius: 0;
        color: #23405d;
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        letter-spacing: 0;
    }

    .gh-header__link.is-active::after {
        display: none;
    }

    .gh-header__link:hover,
    .gh-header__link:focus-visible,
    .gh-header__link.is-active {
        color: var(--theme-default-font-color, #0a648e);
    }

    .gh-header__link img {
        filter: brightness(0) saturate(100%) invert(29%) sepia(84%) saturate(1695%) hue-rotate(171deg) brightness(97%) contrast(92%);
    }

    .gh-header__lang-trigger span {
        display: none;
    }

    .gh-header__lang-trigger {
        min-width: 36px;
        padding: 8px;
    }

    .gh-header__search-panel {
        inset: 0;
    }
}

@media (max-width: 750px) {
    .gh-header-not-home .gh-header + .gh-header-spacer,
    .gh-header.is-scrolled + .gh-header-spacer {
        height: 68px;
    }

    .gh-header__inner {
        min-height: 68px;
        padding: 12px 16px;
    }

    .gh-header__brand-image {
        height: 36px;
    }

    .gh-header__nav {
        left: 16px;
        right: 16px;
    }

    .gh-header__search-shell {
        width: calc(100% - 32px);
        margin-top: 76px;
        padding: 18px;
    }

    .gh-header__search-close {
        top: 8px;
        right: 8px;
    }

    .gh-header__search-field {
        flex-wrap: wrap;
        padding: 12px;
    }

    .gh-header__search-submit {
        width: 100%;
    }
    .new_xz .news_zz h3{
        width: 100%;
        display: block;
        margin-bottom: 10px;
      }
      .new_xz .news_zz a{
        width: 48%;
        float: left;
        background-color: #043175;
        color:#fff;
        padding: 5px 0;
        text-align: center;
        border-radius: 6px;
        
      }
    .new_xz .news_zz a:nth-child(2), .new_xz .news_zz a:nth-child(4){
        margin-right:4%;
      }
      .new_xz .news_zz a:nth-child(2),.new_xz .news_zz a:nth-child(3)
      {
        margin-bottom: 10px;
      }
      .gh-header.is-solid .gh-header__link.is-active:not(:hover):not(:focus-visible) {
        color: #333;
    }
    .gh-header.is-solid .gh-header__link{
        color: #333;
    }
    .gh-header__nav-item a.is-active span{
        color:var(--theme-default-font-color)
    }
}
