/* style002 - 纳米软件 Namisoft 风格（布局比例对齐参考站 base.css） */
:root {
    --ns-primary: #036eb8;
    --ns-primary-dark: #565bb8;
    --ns-accent: #00a39b;
    --ns-title: #222252;
    --ns-subtitle: #586984;
    --ns-text: #4c4c4e;
    --ns-text-soft: #62628b;
    --ns-banner-tag: #036eb8;
    --ns-banner-title: #38386e;
    --ns-banner-desc: #667380;
    --ns-bg: #f5f8fc;
    --ns-white: #fff;
    --ns-border: #e8eef5;
    --ns-shadow: 0 8px 30px rgba(111, 117, 214, .15);
    --ns-radius: 10px;
    --ns-header-h: 6.875rem;
    --ns-hero-h: 100vh;
    --ns-hero-h: 100svh;
    --ns-hero-h: 100dvh;
    --ns-layout-max: 1760px;
    --ns-content-max: var(--ns-layout-max);
    --ns-header-max: var(--ns-layout-max);
    --ns-gutter: 5rem;
    --ns-pad-y: 4rem;
    --ns-pad-y-sm: 3.75rem;
    --ns-pad-y-md: 4.5rem;
}

*, *::before, *::after { box-sizing: border-box; }
html {
    font-size: 16px;
    min-height: 100%;
}
body.ns-theme {
    font-family: "PingFang SC", "Microsoft YaHei", "苹方", "微软雅黑", -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--ns-text);
    line-height: 1.6;
    margin: 0;
    padding-top: var(--ns-header-h);
    overflow-x: hidden;
    min-height: 100%;
    background: transparent;
}
body.ns-theme.ns-home,
body.ns-theme.ns-banner-page { padding-top: 0; }

/* 栏目页 / 详情页：背景挂在 html 最底层（fixed 伪元素，全视口铺满） */
html.ns-page-bg {
    background-color: var(--ns-bg);
}
html.ns-page-bg::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -9999;
    pointer-events: none;
    background-color: var(--ns-bg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}
html.ns-page-bg:not(.ns-style001):not(.ns-style003):not(.ns-style004)::before {
    background-image: url(../img/style002/n_bg1.jpg);
    background-size: cover;
}
body.ns-theme.ns-banner-page,
body.ns-theme.ns-channel-header,
body.ns-theme.ns-inner {
    background: transparent;
}
#main-content {
    background: transparent;
}
.ns-theme a { color: inherit; text-decoration: none; transition: color .25s, opacity .25s, transform .25s; -webkit-tap-highlight-color: transparent; }
.ns-theme a:focus,
.ns-theme a:active,
.ns-theme a:focus-visible {
    outline: none;
}
.ns-theme img { max-width: 100%; height: auto; display: block; }
.ns-container {
    width: 100%;
    max-width: var(--ns-layout-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--ns-gutter);
    padding-right: var(--ns-gutter);
    position: relative;
}

/* Header — unified on all style002 pages (same as homepage) */
.ns-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: transparent; border-bottom: none;
    transition: background .5s, box-shadow .5s, height .5s;
    height: var(--ns-header-h);
}
body.ns-theme .ns-header { background: transparent; box-shadow: none; }
body.ns-theme .ns-header:not(.is-scrolled):not(.is-hovered) {
    background: linear-gradient(180deg, rgba(20, 26, 42, 0.78) 0%, rgba(20, 26, 42, 0.42) 55%, rgba(20, 26, 42, 0) 100%);
}
body.ns-theme .ns-header:not(.is-scrolled):not(.is-hovered) .ns-nav > li > a {
    color: rgba(255, 255, 255, 0.92);
}
body.ns-theme .ns-header:not(.is-scrolled):not(.is-hovered) .ns-nav > li.active > a,
body.ns-theme .ns-header:not(.is-scrolled):not(.is-hovered) .ns-nav > li > a:hover {
    color: #fff;
}
body.ns-theme .ns-header:not(.is-scrolled):not(.is-hovered) .ns-search-form input {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}
body.ns-theme .ns-header:not(.is-scrolled):not(.is-hovered) .ns-search-form input::placeholder {
    color: rgba(255, 255, 255, 0.65);
}
body.ns-theme .ns-header:not(.is-scrolled):not(.is-hovered) .ns-search-form__btn {
    color: rgba(255, 255, 255, 0.75);
}
body.ns-theme .ns-header:not(.is-scrolled):not(.is-hovered) .ns-menu-toggle {
    color: #fff;
}
body.ns-theme .ns-header.is-scrolled,
body.ns-theme .ns-header.is-hovered {
    background: rgba(20, 26, 42, 0.82);
    box-shadow: 0 1px 8px rgba(0, 0, 0, .18);
    height: 6.5rem;
}
body.ns-theme .ns-header.is-scrolled .ns-nav > li > a,
body.ns-theme .ns-header.is-hovered .ns-nav > li > a {
    line-height: 6.5rem;
    color: rgba(255, 255, 255, 0.92);
}
body.ns-theme .ns-header.is-scrolled .ns-nav > li.active > a,
body.ns-theme .ns-header.is-hovered .ns-nav > li.active > a,
body.ns-theme .ns-header.is-scrolled .ns-nav > li > a:hover,
body.ns-theme .ns-header.is-hovered .ns-nav > li > a:hover {
    color: #fff;
}
body.ns-theme .ns-header.is-scrolled .ns-nav > li > a::before,
body.ns-theme .ns-header.is-hovered .ns-nav > li > a::before { bottom: .125rem; }
body.ns-theme .ns-header.is-scrolled .ns-search-form input,
body.ns-theme .ns-header.is-hovered .ns-search-form input {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}
body.ns-theme .ns-header.is-scrolled .ns-search-form input::placeholder,
body.ns-theme .ns-header.is-hovered .ns-search-form input::placeholder {
    color: rgba(255, 255, 255, 0.65);
}
body.ns-theme .ns-header.is-scrolled .ns-search-form__btn,
body.ns-theme .ns-header.is-hovered .ns-search-form__btn {
    color: rgba(255, 255, 255, 0.75);
}
body.ns-theme .ns-header.is-scrolled .ns-menu-toggle,
body.ns-theme .ns-header.is-hovered .ns-menu-toggle {
    color: #fff;
}
.ns-header.is-scrolled {
    background: rgba(20, 26, 42, 0.82);
    box-shadow: 0 1px 8px rgba(0, 0, 0, .18);
    height: 6.5rem;
}
.ns-header.is-scrolled .ns-nav > li > a {
    line-height: 6.5rem;
    color: rgba(255, 255, 255, 0.92);
}
.ns-header.is-scrolled .ns-nav > li.active > a,
.ns-header.is-scrolled .ns-nav > li > a:hover {
    color: #fff;
}
.ns-header.is-scrolled .ns-nav > li > a::before { bottom: .125rem; }
.ns-header.is-scrolled .ns-search-form input {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}
.ns-header.is-scrolled .ns-search-form input::placeholder {
    color: rgba(255, 255, 255, 0.65);
}
.ns-header.is-scrolled .ns-search-form__btn {
    color: rgba(255, 255, 255, 0.75);
}
.ns-header.is-scrolled .ns-menu-toggle {
    color: #fff;
}

.ns-header__inner {
    display: flex; align-items: center; justify-content: flex-start;
    height: 100%; gap: 2rem;
}
.ns-logo { flex-shrink: 0; }
.ns-logo__img { width: 10.75rem; height: auto; transition: .5s; display: block; }
.ns-nav-wrap {
    flex: 1; max-width: none; display: flex; justify-content: flex-end; align-items: center;
    margin-right: 1.5rem;
}
.ns-nav {
    display: flex; align-items: center; justify-content: flex-end;
    list-style: none; margin: 0; padding: 0; width: auto; gap: 4em;
}
.ns-nav > li { position: relative; text-align: center; flex-shrink: 0; }
.ns-nav > li > a {
    display: inline-block; padding: 0; font-size: 1.125rem; color: #373a48;
    line-height: var(--ns-header-h); position: relative; transition: color .5s;
    white-space: nowrap;
}
.ns-nav > li > a::before {
    content: ""; position: absolute; left: 0; right: 0; bottom: 1.5rem; height: 3px;
    background: var(--ns-primary); transform: scaleX(0); transform-origin: center; transition: transform .5s;
}
.ns-nav > li.active > a, .ns-nav > li > a:hover { color: var(--ns-primary); }
.ns-nav > li.active > a::before, .ns-nav > li:hover > a::before { transform: scaleX(1); }
.ns-nav > li.has-sub > a::after {
    content: "";
    display: inline-block;
    width: .4375rem;
    height: .4375rem;
    margin-left: .45em;
    margin-bottom: .15em;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    opacity: .45;
    vertical-align: middle;
    transition: transform .25s ease, opacity .25s ease;
}
.ns-nav > li.has-sub:hover > a::after {
    transform: rotate(225deg);
    opacity: .85;
}
.ns-nav > li.has-sub::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: .75rem;
}
.ns-nav .ns-sub {
    position: absolute;
    top: calc(100% + .375rem);
    left: 50%;
    min-width: 13.75rem;
    padding: .5rem 0;
    margin: 0;
    list-style: none;
    background: rgba(255, 255, 255, .98);
    border: 1px solid rgba(232, 238, 245, .95);
    border-radius: .625rem;
    box-shadow: 0 .75rem 2.25rem rgba(15, 23, 42, .12), 0 .25rem .75rem rgba(3, 110, 184, .06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(.625rem);
    transition: opacity .28s ease, visibility .28s ease, transform .28s ease;
    z-index: 1001;
    overflow: hidden;
}
.ns-nav .ns-sub::before {
    content: "";
    position: absolute;
    top: 0;
    left: 1.25rem;
    right: 1.25rem;
    height: 2px;
    border-radius: 0 0 2px 2px;
    background: linear-gradient(90deg, var(--ns-primary), rgba(3, 110, 184, .35));
    opacity: .85;
}
.ns-nav li:hover > .ns-sub {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.ns-sub li { margin: 0; }
.ns-sub a {
    display: flex;
    align-items: center;
    gap: .625rem;
    padding: .6875rem 1.375rem;
    font-size: .9375rem;
    line-height: 1.45;
    color: #475569;
    white-space: nowrap;
    background: transparent;
    transition: color .22s ease, background .22s ease, padding-left .22s ease;
}
.ns-sub a::before {
    content: "";
    flex-shrink: 0;
    width: .375rem;
    height: .375rem;
    border-radius: 50%;
    background: #cbd5e1;
    transition: background .22s ease, transform .22s ease;
}
.ns-sub a:hover,
.ns-sub li.active > a {
    color: var(--ns-primary);
    background: linear-gradient(90deg, rgba(237, 246, 255, .95) 0%, rgba(237, 246, 255, 0) 100%);
    padding-left: 1.625rem;
}
.ns-sub a:hover::before,
.ns-sub li.active > a::before {
    background: var(--ns-primary);
    transform: scale(1.15);
}
.ns-header__actions { display: flex; align-items: center; gap: 14px; }
.ns-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 22px; border-radius: 6px; font-size: 16px; font-weight: 500;
    border: none; cursor: pointer; transition: all .25s;
}
.ns-btn--primary { background: var(--ns-primary); color: #fff; }
.ns-btn--primary:hover { background: var(--ns-primary-dark); color: #fff; }
.ns-search-form { position: relative; }
.ns-search-form input {
    width: 168px; padding: 8px 34px 8px 14px; border: 1px solid var(--ns-border);
    border-radius: 20px; font-size: 13px; outline: none;
}
.ns-search-form input:focus { border-color: var(--ns-primary); }
.ns-search-form__btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    padding: 0;
    border: none;
    background: transparent;
    color: #999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: color .2s ease, background .2s ease;
}
.ns-search-form__btn:hover,
.ns-search-form__btn:focus {
    color: var(--ns-primary);
    background: rgba(3, 110, 184, .08);
    outline: none;
}
.ns-menu-toggle { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--ns-title); }
.ns-nav-wrap { display: block; }

/* 通用标题 s_tit / sltit */
.ns-s-tit { text-align: center; margin-bottom: 3.125rem; }
.ns-s-tit--left { text-align: left; margin-bottom: 0; }
.ns-s-tit h4 {
    color: var(--ns-title); font-size: 2.5rem; line-height: 1.5; font-weight: 700; margin: 0;
}
.ns-s-tit h6 {
    color: var(--ns-subtitle); font-size: 1.125rem; line-height: 1.6875rem; margin: .5rem 0 0; font-weight: normal;
}
.ns-sltit {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 3.125rem; gap: 20px;
}
.ns-sltit__more {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--ns-title); font-size: .875rem; margin-bottom: 1rem; white-space: nowrap;
}
.ns-sltit__more span { text-decoration: underline; }
.ns-sltit__more:hover, .ns-sltit__more:hover i { color: var(--ns-primary); }
.ns-sltit__more i { color: var(--ns-banner-title); font-size: 1rem; }

.ns-section { position: relative; }
.ns-reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.ns-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Banner — 全屏媒体 + 文字叠层（参考 sinomenon.com） */
/* 首页焦点图 — 得意黑 Smiley Sans */
@font-face {
    font-family: 'Smiley Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../font/SmileySans-Oblique.woff2') format('woff2');
}

.ns-banner { position: relative; overflow: hidden; background: #fff; z-index: 0; min-height: var(--ns-hero-h); }
.ns-banner .swiper-container {
    width: 100%;
    height: var(--ns-hero-h);
    min-height: var(--ns-hero-h);
}
.ns-banner .swiper-slide {
    overflow: hidden;
    position: relative;
    height: 100%;
}
.ns-banner__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.ns-banner__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.02);
    transition: transform 8s ease;
}
.swiper-slide-active .ns-banner__bg { transform: scale(1.08); }
.ns-banner__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.ns-banner__shade {
    display: none;
}
.ns-banner__shade--center {
    display: none;
}
.ns-banner__shade--right {
    display: none;
}
.ns-banner__body {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    pointer-events: none;
}
.ns-banner__body--center { justify-content: center; }
.ns-banner__body--right { justify-content: flex-end; }
.ns-banner__copy {
    width: 100%;
    max-width: 100%;
    padding: clamp(1rem, 3vw, 2rem) 0;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    font-family: 'Smiley Sans', '得意黑', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}
.ns-banner__copy--left {
    align-items: flex-start;
    text-align: left;
}
.ns-banner__copy--center {
    align-items: center;
    text-align: center;
}
.ns-banner__copy--right {
    align-items: flex-end;
    text-align: right;
}
.ns-banner__headline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem 0;
    margin: 0 0 1rem;
    max-width: 100%;
    opacity: 0;
    transform: translateY(1.5rem);
    transition: opacity .75s ease .15s, transform .75s ease .15s;
}
.ns-banner__copy--center .ns-banner__headline { align-items: center; }
.ns-banner__copy--right .ns-banner__headline { align-items: flex-end; }
.ns-banner__sub {
    margin: 0;
    color: rgba(255, 255, 255, .88);
    font-size: clamp(1.25rem, 2vw, 1.875rem);
    line-height: 1.35;
    letter-spacing: .04em;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}
.ns-banner__title {
    margin: 0;
    color: #fff;
    font-size: clamp(3.5rem, 3.2vw, 2.75rem);
    line-height: 1.2;
    text-shadow: 0 2px 24px rgba(0, 0, 0, .25);
    white-space: nowrap;
    flex-shrink: 0;
}
.ns-banner__desc {
    margin: 0 0 1.75rem;
    max-width: 42rem;
    width: 100%;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(.875rem, 1.2vw, 1.0625rem);
    line-height: 1.75;
    font-weight: 400;
    opacity: 0;
    transform: translateY(1.25rem);
    transition: opacity .7s ease .28s, transform .7s ease .28s;
}
.ns-banner__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .875rem;
    opacity: 0;
    transform: translateY(1.5rem);
    transition: opacity .75s ease .35s, transform .75s ease .35s;
}
.ns-banner__anim.is-in {
    opacity: 1;
    transform: translateY(0);
}
.ns-banner__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-width: 8.75rem;
    height: 2.875rem;
    padding: 0 1.75rem;
    border-radius: 999px;
    font-size: .9375rem;
    text-decoration: none !important;
    transition: background .3s, border-color .3s, color .3s, transform .2s;
}
.ns-banner__btn .fa {
    font-size: 1rem;
    line-height: 1;
}
.ns-banner__btn--outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .88);
    color: #fff !important;
}
.ns-banner__btn--outline:hover,
.ns-banner__btn--outline:focus {
    background: rgba(255, 255, 255, .12);
    border-color: #fff;
    color: #fff !important;
    transform: translateY(-1px);
}
.ns-theme a.ns-banner__btn--outline,
.ns-theme a.ns-banner__btn--outline:hover,
.ns-theme a.ns-banner__btn--outline:focus {
    color: #fff !important;
}
.ns-banner__actions--themed .ns-banner__btn--outline,
.ns-theme .ns-banner__actions--themed a.ns-banner__btn--outline {
    color: var(--ns-banner-btn-color) !important;
    border-color: var(--ns-banner-btn-color);
}
.ns-banner__actions--themed .ns-banner__btn--outline:hover,
.ns-banner__actions--themed .ns-banner__btn--outline:focus,
.ns-theme .ns-banner__actions--themed a.ns-banner__btn--outline:hover,
.ns-theme .ns-banner__actions--themed a.ns-banner__btn--outline:focus {
    color: var(--ns-banner-btn-color) !important;
    border-color: var(--ns-banner-btn-color);
    background: color-mix(in srgb, var(--ns-banner-btn-color) 14%, transparent);
}
.ns-banner .swiper-pagination {
    bottom: clamp(0.75rem, 1.5625vw, 2rem);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}
.ns-banner .swiper-pagination-bullet {
    width: clamp(1.5rem, 2.34375vw, 2.8125rem);
    height: 4px;
    border-radius: 0 !important;
    background: rgba(255, 255, 255, .45);
    opacity: 1;
    margin: 0 4px !important;
    transition: background .3s, transform .3s;
}
.ns-banner .swiper-pagination-bullet-active {
    background: #fff;
    transform: scaleY(1.35);
}

/* 焦点图风格：默认（圆角分页 + 悬停左右切换） */
.ns-banner--default .swiper-pagination {
    left: 50%;
    right: auto;
    width: auto;
    transform: translateX(-50%);
    padding: .5rem .875rem;
    border-radius: 999px;
    background: rgba(8, 18, 38, .32);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .12);
}
.ns-banner--default .swiper-pagination-bullet {
    width: .5rem;
    height: .5rem;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, .45);
    margin: 0 .3125rem !important;
    opacity: 1;
    transition: width .35s ease, background .35s ease, transform .35s ease;
}
.ns-banner--default .swiper-pagination-bullet-active {
    width: clamp(1.5rem, 2.2vw, 2rem);
    height: .5rem;
    border-radius: 999px !important;
    background: #fff;
    transform: none;
}
.ns-banner__nav--default {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(.92);
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease, background .25s ease, border-color .25s ease;
}
.ns-banner__nav--prev.ns-banner__nav--default { left: clamp(.75rem, 2.5vw, 2.5rem); }
.ns-banner__nav--next.ns-banner__nav--default { right: clamp(.75rem, 2.5vw, 2.5rem); }
.ns-banner--default:hover .ns-banner__nav--default,
.ns-banner--default:focus-within .ns-banner__nav--default {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(-50%) scale(1);
}
.ns-banner--default .ns-banner__nav--default:hover,
.ns-banner--default .ns-banner__nav--default:focus {
    transform: translateY(-50%) scale(1.06);
}

/* 焦点图风格：缩略图导航 */
.ns-banner--thumb .swiper-container {
    height: calc(var(--ns-hero-h) - 7.5rem);
    min-height: calc(var(--ns-hero-h) - 7.5rem);
}
.ns-banner__thumbbar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    padding: 0 0 clamp(1.25rem, 2.5vw, 2.5rem);
    background: linear-gradient(180deg, rgba(8, 18, 38, 0) 0%, rgba(8, 18, 38, .78) 100%);
    pointer-events: none;
}
.ns-banner__thumbbar-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    pointer-events: auto;
}
.ns-banner__thumbs {
    flex: 1;
    min-width: 0;
    display: flex;
    gap: .75rem;
    overflow-x: auto;
    padding: .25rem 0;
    scrollbar-width: thin;
}
.ns-banner__thumb {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: .625rem;
    padding: .375rem .875rem .375rem .375rem;
    border: 2px solid rgba(255, 255, 255, .35);
    border-radius: .5rem;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .88);
    cursor: pointer;
    transition: border-color .25s ease, background .25s ease, transform .2s ease;
}
.ns-banner__thumb.is-active {
    border-color: #fff;
    background: rgba(255, 255, 255, .18);
    transform: translateY(-2px);
}
.ns-banner__thumb-img {
    width: 4rem;
    height: 2.5rem;
    border-radius: .25rem;
    background: rgba(255, 255, 255, .12) center/cover no-repeat;
    flex-shrink: 0;
}
.ns-banner__thumb-title {
    font-size: .8125rem;
    white-space: nowrap;
    max-width: 9rem;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ns-banner__nav {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .55);
    background: rgba(255, 255, 255, .1);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .25s ease, border-color .25s ease;
}
.ns-banner__nav:hover,
.ns-banner__nav:focus {
    background: rgba(255, 255, 255, .22);
    border-color: #fff;
    outline: none;
}
.ns-banner__nav .fa { font-size: 1.25rem; line-height: 1; }

/* 焦点图风格：叠层轮播 */
.ns-banner--coverflow {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #0a1220;
}
.ns-banner__coverflow-stage {
    position: relative;
    width: 100%;
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
}
.ns-banner--coverflow .swiper-container {
    width: 100%;
    height: clamp(26rem, 72vh, 40rem);
    min-height: clamp(26rem, 72vh, 40rem);
    padding: 2rem 0;
}
.ns-banner--coverflow .swiper-slide {
    width: min(74vw, 58rem);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .42);
    transition: opacity .35s ease;
}
.ns-banner--coverflow .swiper-slide:not(.swiper-slide-active) {
    opacity: .55;
}
.ns-banner--coverflow .swiper-slide-active {
    opacity: 1;
}
.ns-banner--coverflow .ns-banner__body {
    align-items: flex-end;
    padding-bottom: 2rem;
}
.ns-banner--coverflow .ns-banner__copy {
    padding-bottom: 0;
}
.ns-banner--coverflow .swiper-slide:not(.swiper-slide-active) .ns-banner__copy {
    pointer-events: none;
}
.ns-banner__nav--stage {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}
.ns-banner__nav--prev.ns-banner__nav--stage { left: clamp(.75rem, 2.5vw, 2.5rem); }
.ns-banner__nav--next.ns-banner__nav--stage { right: clamp(.75rem, 2.5vw, 2.5rem); }
.ns-banner__coverflow-pagination.swiper-pagination {
    position: relative;
    bottom: auto;
    margin-top: .5rem;
    padding-bottom: clamp(1rem, 2vw, 2rem);
}

/* 焦点图风格：垂直滑动 */
.ns-banner--vertical .swiper-container { height: var(--ns-hero-h); min-height: var(--ns-hero-h); }
.ns-banner__vertical-pagination.swiper-pagination {
    right: clamp(1rem, 2.5vw, 2.5rem);
    left: auto;
    width: auto;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.ns-banner__vertical-pagination .swiper-pagination-bullet {
    width: 4px;
    height: clamp(1.25rem, 2vw, 2rem);
    margin: 0 !important;
}
.ns-banner__scroll-hint {
    position: absolute;
    left: 50%;
    bottom: clamp(1rem, 2vw, 2rem);
    transform: translateX(-50%);
    z-index: 4;
    color: rgba(255, 255, 255, .75);
    font-size: 1.5rem;
    animation: nsBannerScrollHint 1.8s ease-in-out infinite;
    pointer-events: none;
}
@keyframes nsBannerScrollHint {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: .55; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* 焦点图风格：分屏图文 */
.ns-banner--split .swiper-slide {
    display: flex;
    flex-direction: row;
    height: 100%;
}
.ns-banner--split .ns-banner__body {
    position: relative;
    flex: 0 0 42%;
    order: 1;
    height: 100%;
    max-width: none;
    background: rgba(8, 18, 38, .94);
    z-index: 2;
}
.ns-banner--split .ns-banner__media {
    position: relative;
    flex: 1;
    order: 2;
    height: 100%;
}
.ns-banner--split .ns-banner__shade { display: none; }
.ns-banner__nav--split {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}
.ns-banner__nav--prev.ns-banner__nav--split { left: clamp(.5rem, 2vw, 1.5rem); }
.ns-banner__nav--next.ns-banner__nav--split { right: clamp(.5rem, 2vw, 1.5rem); }
.ns-banner__split-pagination.swiper-pagination {
    bottom: clamp(1rem, 2vw, 2rem);
    text-align: left;
    padding-left: var(--ns-gutter);
    width: 42%;
}

/* 焦点图风格：底部进度条 */
.ns-banner--progress { position: relative; }
.ns-banner__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 6;
    background: rgba(255, 255, 255, .15);
}
.ns-banner--progress .swiper-pagination {
    bottom: clamp(1.25rem, 2.5vw, 2.5rem);
}
.ns-banner__progress-bar {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--ns-primary), #67e8f9);
}

/* 焦点图风格：立方体 / 翻页 */
.ns-banner--cube,
.ns-banner--flip {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #060d18;
}
.ns-banner__cube-stage,
.ns-banner__flip-stage {
    position: relative;
    width: 100%;
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ns-banner--cube .swiper-container,
.ns-banner--flip .swiper-container {
    width: min(88vw, 72rem);
    height: clamp(22rem, 62vh, 36rem);
    min-height: clamp(22rem, 62vh, 36rem);
}
.ns-banner__cube-pagination.swiper-pagination {
    position: relative;
    bottom: auto;
    padding: 1rem 0 clamp(1.25rem, 2vw, 2rem);
}

/* 焦点图风格：淡入淡出 + 数字 */
.ns-banner--fade .swiper-container { height: var(--ns-hero-h); min-height: var(--ns-hero-h); }
.ns-banner__fraction {
    position: absolute;
    right: var(--ns-gutter);
    bottom: clamp(1.25rem, 2.5vw, 2.5rem);
    z-index: 5;
    display: flex;
    align-items: baseline;
    gap: .35rem;
    color: #fff;
    font-family: 'Barlow-bold', 'Smiley Sans', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    line-height: 1;
    pointer-events: none;
}
.ns-banner__fraction-sep { opacity: .45; font-size: .85em; }
.ns-banner__fraction-total { opacity: .55; font-size: .75em; }
.ns-banner__nav--fade {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}
.ns-banner__nav--prev.ns-banner__nav--fade { left: clamp(.75rem, 2vw, 2rem); }
.ns-banner__nav--next.ns-banner__nav--fade { right: clamp(.75rem, 2vw, 2rem); }

/* 焦点图风格：肯 Burns */
.ns-banner--kenburns .swiper-container { height: var(--ns-hero-h); min-height: var(--ns-hero-h); }
.ns-banner--kenburns .swiper-slide-active .ns-banner__bg {
    animation: nsBannerKenBurns 7s ease-out forwards;
}
@keyframes nsBannerKenBurns {
    from { transform: scale(1.02); }
    to { transform: scale(1.14); }
}
.ns-banner__kenburns-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: clamp(1.25rem, 2.5vw, 2.5rem);
    pointer-events: none;
}
.ns-banner__nums {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    pointer-events: auto;
}
.ns-banner__num {
    min-width: 2.75rem;
    height: 2.75rem;
    padding: 0 .75rem;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: .375rem;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .85);
    font-size: .875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s ease;
}
.ns-banner__num.is-active,
.ns-banner__num:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .2);
    color: #fff;
}
.ns-banner__kenburns-nav {
    display: flex;
    gap: .625rem;
    pointer-events: auto;
}

/* 平台介绍 s_ceshi */
.ns-section--ceshi {
    padding-top: var(--ns-pad-y);
    background-size: cover; z-index: 9;
}
html:not(.ns-style001):not(.ns-style003):not(.ns-style004) .ns-section--ceshi {
    background: url(../img/style002/s_ceshibg.jpg) center top no-repeat;
}
.ns-platform__intro {
    text-align: center; color: var(--ns-text); font-size: 1rem; line-height: 1.875rem;
    margin: 3.125rem 0;
}
.ns-platform__more {
    display: flex; margin: 0 auto 4.375rem; min-width: 9.75rem; height: 3.5rem;
    padding: 0 2rem;
    align-items: center; justify-content: center;
    background: var(--ns-primary); border-radius: 999px; color: #fff; font-size: 1.125rem;
    box-sizing: border-box;
}
.ns-platform__more:hover { background: var(--ns-primary-dark); color: #fff; }
.ns-theme a.ns-platform__more,
.ns-theme a.ns-platform__more:hover {
    color: #fff;
}

/* certify 3D 轮播 */
.ns-certify {
    position: relative; width: 100%; max-width: 100%; margin: 0 auto; padding: 0;
}
.ns-certify .swiper-slide {
    width: 38.75rem; transform-origin: bottom center;
    border-radius: 1.5rem 1.5rem 0 0; overflow: hidden;
    padding: .625rem .625rem 0; background: #000;
}
.ns-certify__img img { width: 100%; border-radius: 1rem 1rem 0 0; }
.ns-certify__arr {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 20;
    margin-top: 3.5rem; background: none; border: none; cursor: pointer; padding: 0;
}
.ns-certify__arr i { color: #4d4d79; font-size: 3.5rem; transition: color .3s; }
.ns-certify__arr:hover i { color: var(--ns-primary); }
.ns-certify__arr--prev { left: -3rem; }
.ns-certify__arr--next { right: -3rem; }
.ns-certify__deco { position: absolute; z-index: 10; pointer-events: none; }
.ns-certify__deco--1 { left: -1.875rem; bottom: -2.875rem; width: auto; }
.ns-certify__deco--2 { right: 8%; bottom: -4.875rem; width: auto; }

/* 解决方案 s_baiye */
.ns-section--baiye {
    padding-top: 5rem;
    padding-bottom: var(--ns-pad-y);
    background-size: cover; overflow: hidden; z-index: 1;
}
html:not(.ns-style001):not(.ns-style003):not(.ns-style004) .ns-section--baiye {
    background: url(../img/style002/baiyebg.jpg) no-repeat center;
    background-size: cover;
}
.ns-byc {
    display: flex; justify-content: space-between;
    height: 34.6875rem; overflow: hidden;
}
.ns-bycs {
    overflow: hidden; flex-grow: 1; position: relative; border-radius: 10px;
    width: 13.375rem; height: 100%; transition: width .7s, flex-shrink .7s;
    display: block;
}
.ns-bycs + .ns-bycs { margin-left: 17px; }
.ns-bycs__bg {
    height: 30rem; background-position: center !important; background-size: cover !important;
    position: relative; transition: height .5s;
}
.ns-bycs__bg > img {
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    max-height: 90%; width: auto; transition: opacity .5s;
}
.ns-bycs__tit {
    position: absolute; inset: 0; width: 100%; height: 100%;
    padding: 3.125rem 1.625rem; color: #fff;
    display: flex; flex-direction: column; justify-content: flex-start;
}
.ns-bycs__tit::before {
    content: ''; position: absolute; inset: 0;
    opacity: 0; transition: opacity .5s;
}
html:not(.ns-style001):not(.ns-style003):not(.ns-style004) .ns-bycs__tit::before {
    background: url(../img/style002/bychover.jpg) center/cover no-repeat;
}
.ns-bycs__tit > * { position: relative; z-index: 1; }
.ns-bycs__tit h4 {
    color: #fff; font-size: 1.5rem; line-height: 2.25rem; font-weight: 700;
    margin: 0 0 .5rem; padding-right: 28px; position: relative;
}
.ns-bycs__tit h4 i {
    position: absolute; right: 0; bottom: 0; font-size: 1.25rem; color: #fff;
    transition: opacity .5s;
}
.ns-bycs__tit > p { font-size: .875rem; line-height: 1.5rem; margin: 0; opacity: 0; transition: opacity .5s; color: #fff; position: relative; }
.ns-bycs__hide {
    display: flex; flex-wrap: wrap; align-items: flex-start; gap: 1.25rem 2.75rem;
    margin-top: 3.125rem; opacity: 0; transition: opacity .5s; position: relative;
}
.ns-bycs__hide > img,
.ns-bycs__detail-img { flex-shrink: 0; max-width: 10rem; width: auto; height: auto; max-height: 12.5rem; object-fit: contain; }
.ns-bycs__ycy { display: grid; gap: 1.5625rem; flex: 1; min-width: 0; }
.ns-bycs__field { display: flex; align-items: flex-start; gap: 2.5rem; min-height: 2rem; }
.ns-bycs__ycy > div { display: flex; align-items: flex-start; gap: 2.5rem; }
.ns-bycs__ycy h6 {
    color: #38386e; font-size: 1.0625rem; line-height: 2.25rem; font-weight: 700;
    flex-shrink: 0; margin: 0;
}
.ns-bycs__ycy p {
    color: #62628b; font-size: 1rem; line-height: 1.5rem; margin: .375rem 0 0;
    flex: 1; min-width: 0;
}
.ns-bycs__scope,
.ns-bycs__effect { margin: .375rem 0 0; display: block; }
.ns-bycs__stats {
    list-style: none; margin: 0; padding: 0;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.125rem; flex: 1;
}
.ns-bycs__stats li {
    display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start;
    color: #62628b; font-size: .875rem; line-height: 1.25; gap: .5rem; margin-top: 8px;
}
.ns-bycs__stats li div {
    display: flex; align-items: flex-start; gap: 4px; font-weight: 700;
}
.ns-bycs__stats li div span { color: #62628b; font-size: .875rem; font-weight: 700; }
.ns-bycs__stats li div em { color: #62628b; font-size: .875rem; font-style: normal; }
.ns-bycs__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.125rem;
    flex: 0 0 100%;
    width: 100%;
    flex-wrap: nowrap;
    min-width: 0;
    margin-top: 2.25rem;
}
.ns-bycs__go {
    background: var(--ns-primary); border-radius: .3125rem;
    display: inline-flex; align-items: center; justify-content: center;
    gap: .375rem;
    height: 2.5rem; padding: 0 1rem;
    color: #fff; font-size: .9375rem; font-style: normal;
    width: fit-content; max-width: none;
    white-space: nowrap; cursor: pointer;
    flex-shrink: 0;
}
.ns-bycs__go--consult {
    background: var(--ns-primary-dark);
}
.ns-bycs__go--consult:hover {
    background: var(--ns-primary);
}
.ns-bycs__go-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    stroke: currentColor;
}
.ns-bycs__go > span {
    line-height: 1;
}
.ns-bycs__go i { color: #fff; font-size: .875rem; flex-shrink: 0; }
.ns-bycs__go em { color: #fff; font-size: .9375rem; font-style: normal; }
.ns-bycs.on { width: calc(100% - 694px); flex-shrink: 0; }
.ns-bycs.on .ns-bycs__bg { height: calc(30rem + 75px); }
.ns-bycs.on .ns-bycs__bg > img { opacity: 0; }
.ns-bycs.on .ns-bycs__tit { padding: 3.125rem 3rem; }
.ns-bycs.on .ns-bycs__tit::before { opacity: 1; }
.ns-bycs.on .ns-bycs__tit h4 { color: var(--ns-title); font-size: 1.875rem; }
.ns-bycs.on .ns-bycs__tit h4 i { opacity: 0; }
.ns-bycs.on .ns-bycs__tit > p { opacity: 1; color: var(--ns-text-soft); }
.ns-bycs.on .ns-bycs__hide { opacity: 1; visibility: visible; }

/* 案例 s_shij — 对齐参考站 #shijian */
.ns-section--shij {
    padding-top: var(--ns-pad-y);
    padding-bottom: var(--ns-pad-y);
    background-size: cover;
    overflow: visible;
}
html:not(.ns-style001):not(.ns-style003):not(.ns-style004) .ns-section--shij {
    background: url(../img/style002/s_shijbg.jpg) center no-repeat;
    background-size: cover;
}
.sj-box {
    position: relative;
    overflow: visible;
    margin: 0;
}
.sj-box .swiper-container {
    overflow: hidden;
    width: 100%;
}
.sj-box .swiper-slide {
    border-radius: .9375rem;
    overflow: hidden;
    height: auto;
    box-sizing: border-box;
}
.ns-section--shij .ns-case-card,
.ns-section--shij .ns-case-card__link {
    height: 100%;
}
.sj-box__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 3rem;
    height: 3rem;
    border: none;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: box-shadow .3s;
}
.sj-box__nav:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
}
.sj-box__nav i { font-size: 2rem; color: #000; line-height: 1; }
.sj-box__prev { left: -5%; right: auto; }
.sj-box__next { right: -5%; left: auto; }
.ns-case-ljweb { margin-top: 2rem; }

/* 合作伙伴 s_hb */
.ns-section--partner {
    padding-top: var(--ns-pad-y-sm);
    padding-bottom: var(--ns-pad-y);
    background-size: cover; overflow: hidden; height: 54.3125rem;
}
html:not(.ns-style001):not(.ns-style003):not(.ns-style004) .ns-section--partner {
    background: url(../img/style002/s_hbbg.jpg) center no-repeat;
    background-size: cover;
}
.ns-section--partner .ns-container {
    height: 100%;
}
.ns-partner-wrap {
    position: relative; height: 100%; display: flex; align-items: flex-end;
    justify-content: center; padding-bottom: 2rem;
}
.ns-partner-orbit {
    position: absolute; inset: 0; list-style: none; margin: 0; padding: 0; z-index: 3;
}
.ns-partner-orbit__item {
    position: absolute; display: flex; flex-direction: column; align-items: center;
    color: var(--ns-subtitle); font-size: 15px; text-align: center;
    animation: nsStar 14s infinite;
}
.ns-partner-orbit__item div {
    border-radius: 50%; background: #fff; width: 7.8125rem; height: 7.8125rem; padding: 2rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 10px 10px rgba(0, 92, 161, .06);
}
.ns-partner-orbit__item div img { max-width: 100%; max-height: 100%; object-fit: contain; }
.ns-partner-orbit__item--1 { top: 10%; left: 20%; animation-delay: 2s; }
.ns-partner-orbit__item--2 { top: -3%; left: 45%; animation-delay: 8s; }
.ns-partner-orbit__item--3 { top: 10%; left: 71%; animation-delay: 0s; }
.ns-partner-orbit__item--4 { top: 40%; left: 9%; animation-delay: 12s; }
.ns-partner-orbit__item--5 { top: 40%; left: 28%; animation-delay: 7s; }
.ns-partner-orbit__item--6 { top: 40%; left: 65%; animation-delay: 4s; }
.ns-partner-orbit__item--7 { top: 40%; left: 83%; animation-delay: 10s; }
.ns-partner-orbit__item--8 { top: 77%; left: 23%; animation-delay: 6s; }
.ns-partner-orbit__item--9 { top: 77%; left: 70%; animation-delay: 10s; }
.ns-partner-orbit__item--10 { top: 97%; left: 46%; animation-delay: 11s; }
@keyframes nsStar {
    0%, 40%, 100% { opacity: 1; transform: scale(1); }
    20% { opacity: 0; transform: scale(1); }
}
.ns-partner-center {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    z-index: 11; display: flex; align-items: center; justify-content: center;
}
.ns-partner-center img { max-width: 160px; }
.ns-partner-center i {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    color: #fff; font-size: 4rem;
}
.ns-partner-rings {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    z-index: 1; pointer-events: none;
}
.ns-partner-ring {
    border-radius: 50%; position: absolute; top: 50%; left: 50%;
    border: 2px solid #a0c1f2; transform: translate(-50%, -50%);
}
.ns-partner-ring--1 { width: 337px; height: 337px; opacity: .6; }
.ns-partner-ring--2 { width: 610px; height: 610px; opacity: .4; }
.ns-partner-ring--3 { width: 919px; height: 919px; opacity: .3; }
.ns-partner-ring--4 { width: 1202px; height: 1202px; opacity: .2; }
.ns-partner-title {
    position: relative; z-index: 12; margin-bottom: 0; text-align: center;
}
.ns-partner-title h4 { color: var(--ns-title); }
.ns-partner-title h6 { color: var(--ns-subtitle); }

.ns-ljweb {
    display: none;
    margin: 2rem auto 0;
    min-width: 9.75rem;
    height: 3.5rem;
    padding: 0 2rem;
    align-items: center;
    justify-content: center;
    background: var(--ns-primary);
    border-radius: 999px;
    color: #fff;
    font-size: 1.125rem;
    box-sizing: border-box;
}
.ns-ljweb:hover { background: var(--ns-primary-dark); color: #fff; }
.ns-theme a.ns-ljweb,
.ns-theme a.ns-ljweb:hover {
    color: #fff;
}

/* Namisoft 天宇微纳 s_about */
.s_about {
    width: 100%;
    padding-top: var(--ns-pad-y);
    padding-bottom: var(--ns-pad-y);
    background-size: cover;
    overflow: hidden;
}
html:not(.ns-style001):not(.ns-style003):not(.ns-style004) .s_about {
    /* background: url(../img/style002/s_aboutbg.jpg) center no-repeat; */
}
.s_about__grid {
    display: grid;
    grid-template-columns: 1fr 24.1875rem;
    gap: 5.625rem;
    align-items: start;
}
.s_about__sltit {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3.125rem;
}
.s_about__more-link {
    color: var(--ns-title);
    font-size: .875rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    transition: color .5s;
}
.s_about__more-link span { text-decoration: underline; }
.s_about__more-link i { color: var(--ns-banner-title); font-size: 1rem; }
.s_about__more-link:hover, .s_about__more-link:hover i { color: var(--ns-primary); }
.s_ableft__article {
    color: var(--ns-subtitle);
    font-size: 1rem;
    line-height: 2.25rem;
}
.s_ableft__article p {
    color: var(--ns-subtitle);
    font-size: 1rem;
    line-height: 2.25rem;
    margin: 0 0 1rem;
}
.s_ableft__article img { max-width: 100%; height: auto; }
.s_ableft__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 4rem;
    align-items: center;
    justify-content: flex-start;
    margin: 3rem 0 0;
    padding: 0;
    list-style: none;
}
.s_ableft__stats li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #68768e;
    font-size: .875rem;
    width: auto;
    flex: 0 0 auto;
    white-space: nowrap;
}
.s_ableft__stats li div {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}
.s_ableft__stats li em {
    color: #68768e;
    font-size: .875rem;
    line-height: 3.125rem;
    flex-shrink: 0;
    font-style: normal;
}
.s_ableft__stats .counter {
    color: var(--ns-primary);
    font-size: 4rem;
    line-height: 1.25;
    font-weight: 700;
    font-family: 'Barlow-bold', "Arial Narrow", "Helvetica Neue", sans-serif;
    letter-spacing: .5px;
    font-variant-numeric: tabular-nums;
}
.s_about__ljweb {
    display: none;
    margin: 2rem auto 0;
    min-width: 9.75rem;
    height: 3.5rem;
    padding: 0 2rem;
    align-items: center;
    justify-content: center;
    background: var(--ns-primary);
    border-radius: 999px;
    color: #fff;
    font-size: 1.125rem;
    box-sizing: border-box;
}
.s_about__ljweb:hover { background: var(--ns-primary-dark); color: #fff; }
.ns-theme a.s_about__ljweb,
.ns-theme a.s_about__ljweb:hover {
    color: #fff;
}
.s_abtable {
    position: relative;
    width: 100%;
    padding: 2.25rem 1.8125rem;
    border-radius: 1rem;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(236, 254, 255, .82) 0%, rgba(239, 246, 255, .88) 48%, rgba(224, 242, 254, .84) 100%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .72);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, .95) inset,
        0 1rem 2.5rem rgba(3, 110, 184, .1);
}
.s_abtable::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 8% 12%, rgba(103, 232, 249, .28) 0%, transparent 42%),
        radial-gradient(circle at 92% 88%, rgba(3, 110, 184, .14) 0%, transparent 40%),
        linear-gradient(rgba(3, 110, 184, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(3, 110, 184, .04) 1px, transparent 1px);
    background-size: auto, auto, 1.75rem 1.75rem, 1.75rem 1.75rem;
    pointer-events: none;
}
.s_abtable h5,
.s_abtable > p,
.s_abtable__form {
    position: relative;
    z-index: 1;
}
.s_abtable h5 {
    color: var(--ns-title);
    font-size: 1.5rem;
    line-height: 1.6875rem;
    font-weight: 700;
    margin: 0 0 1rem;
}
.s_abtable > p {
    color: var(--ns-subtitle);
    font-size: 1rem;
    line-height: 1.6875rem;
    margin: 0;
}
.s_abtable__form {
    display: grid;
    gap: 1rem;
    margin-top: 1.75rem;
}
.s_abtable__form input,
.s_abtable__form textarea {
    width: 100%;
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0 1.25rem;
    border: 1px solid rgba(3, 110, 184, .14);
    border-radius: .625rem;
    color: var(--ns-title);
    font-size: .9375rem;
    outline: none;
    font-family: inherit;
    transition: border-color .25s, background .25s, box-shadow .25s;
}
.s_abtable__form input:focus,
.s_abtable__form textarea:focus {
    border-color: rgba(3, 110, 184, .35);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 0 0 3px rgba(3, 110, 184, .08);
}
.s_abtable__form input { line-height: 2.875rem; height: 2.875rem; }
.s_abtable__form textarea {
    min-height: 12.1875rem;
    padding-top: .75rem;
    line-height: 1.6;
    resize: vertical;
}
.s_abtable__form input::placeholder,
.s_abtable__form textarea::placeholder { color: rgba(100, 116, 139, .72); }
.s_abtable__captcha {
    display: flex;
    gap: 10px;
    align-items: center;
}
.s_abtable__captcha input { flex: 1; }
.s_abtable__captcha img { flex-shrink: 0; border-radius: .25rem; cursor: pointer; }
.s_abtable__form button {
    width: 100%;
    line-height: 3.375rem;
    height: 3.375rem;
    border: 1px solid rgba(255, 255, 255, .45);
    font-size: 1.0625rem;
    color: #fff;
    background: linear-gradient(135deg, rgba(103, 232, 249, .95) 0%, var(--ns-primary) 100%);
    border-radius: .625rem;
    cursor: pointer;
    transition: transform .25s, box-shadow .25s, filter .25s;
    box-shadow: 0 .625rem 1.5rem rgba(3, 110, 184, .28);
}
.s_abtable__form button:hover {
    transform: translateY(-1px);
    filter: brightness(1.04);
    box-shadow: 0 .75rem 1.75rem rgba(3, 110, 184, .34);
}
.s_abtable__form button:disabled { opacity: .65; cursor: not-allowed; }

/* 资讯 s_new */
.ns-section--new {
    padding-top: var(--ns-pad-y);
    padding-bottom: 85px;
    background-size: cover;
}
html:not(.ns-style001):not(.ns-style003):not(.ns-style004) .ns-section--new {
    background: url(../img/style002/s_newbg.jpg) no-repeat center;
    background-size: cover;
}
.ns-newbox {
    display: grid; gap: 2.125rem; grid-template-columns: .505fr .495fr;
}
.ns-newhot {
    list-style: none; margin: 0; padding: 0;
    display: grid; gap: 1.5rem; grid-template-columns: 1fr 1fr;
}
.ns-newhot a {
    display: block; border-radius: .625rem; overflow: hidden; height: 100%; background: #fff;
    box-shadow: 0 4px 16px rgba(34,34,82,.05);
}
.ns-newhot__img { position: relative; overflow: hidden; }
.ns-newhot__img::after { content: ''; display: block; padding-top: 68.81%; }
.ns-newhot__img img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.ns-newhot__con {
    background: #fff; padding: 2rem 2rem 2.25rem; position: relative;
}
.ns-newhot__con h5 {
    color: var(--ns-title); font-size: 1.2rem; line-height: 2.0625rem; font-weight: 700;
    margin: 0 0 1rem; transition: color .5s;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ns-newhot__con p {
    color: var(--ns-text-soft); font-size: 1rem; line-height: 1.5rem; margin: 0;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.ns-newhot__con time {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 7.625rem; height: 1.75rem; padding: 0 .75rem;
    color: #fff; background: #696998; font-weight: 700; font-size: .875rem;
    border-radius: 0 .375rem 0 0; position: absolute; left: 0; top: -1.75rem;
}
.ns-newhot__con > i { display: none; }
.ns-newhot a:hover h5 { color: var(--ns-primary); }

.ns-newcool {
    list-style: none; margin: 0; padding: 0; display: grid; gap: 1.875rem;
}
.ns-newcool a {
    display: flex; gap: 1.875rem; align-items: stretch;
}
.ns-newcool__img {
    flex: 0 0 11.1875rem; max-width: 11.1875rem; border-radius: .375rem; overflow: hidden;
    position: relative;
}
.ns-newcool__img::after { content: ''; display: block; padding-top: 69.28%; }
.ns-newcool__img img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.ns-newcool__con {
    flex: 1; display: flex; flex-direction: column; justify-content: space-between;
    padding: 0;
}
.ns-newcool__con time {
    color: #434381; font-weight: 700; font-size: .875rem; line-height: 1.375rem;
}
.ns-newcool__con h5 {
    color: var(--ns-title); font-size: 1.125rem; line-height: 2.0625rem; font-weight: 700;
    margin: 8px 0; transition: color .5s;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ns-newcool__con p {
    color: var(--ns-text-soft); font-size: 1rem; line-height: 1.5rem; margin: 0;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ns-newcool a:hover h5 { color: var(--ns-primary); }

/* Footer #foot */
#foot {
    background: #e5eaf1;
    padding-bottom: 3rem;
}
.foot__box1 {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    padding: var(--ns-pad-y-md) 0;
}
.foot_brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 9.375rem;
    gap: 1.25rem;
}
.foot_logo {
    display: block;
    width: 100%;
    flex-shrink: 0;
}
.foot_logo img { width: 100%; height: auto; }
.foot_nav {
    display: flex;
    justify-content: space-between;
    flex: 1;
    min-width: 0;
    gap: 1.5rem 2rem;
    flex-wrap: wrap;
}
.foot_nav dl, .foot_lx dl {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    margin: 0;
    min-width: 0;
}
.foot_nav dt, .foot_lx dt { margin-bottom: 8px; }
.foot_nav dt a, .foot_lx dt {
    color: #000;
    font-size: 1rem;
    line-height: 2.8125rem;
    font-weight: 700;
}
.foot_nav dd { margin: 0; }
.foot_nav dd a, .foot_lx dd a, .foot_lx dd span {
    display: block;
    transition: color .3s;
    font-size: 1rem;
    line-height: 1.75rem;
    color: #454563;
    white-space: normal;
    word-break: break-word;
}
.foot_lx__addr {
    max-width: 16rem;
    line-height: 1.65 !important;
    margin-top: .25rem;
}
.foot_nav dd a:hover { color: var(--ns-primary); }
.foot_lx {
    flex-shrink: 0;
    min-width: 0;
    max-width: 18rem;
}
.foot_ewm {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    width: 100%;
}
.foot_ewm img {
    width: 6.5rem;
    height: 6.5rem;
    object-fit: cover;
}
.foot_ewm__placeholder {
    width: 6.5rem;
    height: 6.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #e8eef5;
    color: #656262;
    font-size: 14px;
    line-height: 1.4;
    border-radius: 4px;
}
.foot_ewm p {
    color: #656262;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    margin: 0;
}
.foot__box2 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 16px;
}
.foot__lianjie, .foot__lj {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    color: #454563;
    font-size: 1.125rem;
    line-height: 2.5rem;
    flex-wrap: wrap;
}
.foot__lj { font-size: .9375rem; }
.foot__lj a { transition: color .5s; color: #454563; }
.foot__lj a:hover { color: var(--ns-primary); }
.copyright {
    font-size: .875rem;
    color: rgba(146, 146, 152, 0.65);
    line-height: 1.875rem;
    text-align: center;
}
.copyright p { margin: 0; }
.copyright a { transition: color .3s; color: inherit; }
.copyright a:hover { color: var(--ns-primary); }

/* Mobile / tablet fixed footer bar */
:root {
    --ns-mobile-footbar-h: 72px;
}
.ns-mobile-footbar,
.mobile-fixed-nav {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    box-sizing: border-box;
    min-height: var(--ns-mobile-footbar-h);
    padding: 8px 16px calc(8px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, .08);
    align-items: center;
    justify-content: space-around;
    gap: 12px;
}
.ns-mobile-footbar__btn,
.mobile-fixed-nav .mobile-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 12px 0;
    border: none;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s, opacity .2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.ns-mobile-footbar__btn:active,
.mobile-fixed-nav .mobile-btn:active {
    transform: scale(.96);
}
.ns-mobile-footbar__btn:hover,
.ns-mobile-footbar__btn:focus,
.mobile-fixed-nav .mobile-btn:hover,
.mobile-fixed-nav .mobile-btn:focus {
    text-decoration: none;
    opacity: .96;
}
.ns-mobile-footbar__btn i,
.mobile-fixed-nav .mobile-btn i {
    font-size: 22px;
}
.ns-mobile-footbar__btn--tel,
.mobile-btn-phone {
    background: linear-gradient(135deg, #2196F3, #1565C0);
    color: #fff;
}
.ns-mobile-footbar__btn--tel span,
.mobile-btn-phone span,
.ns-mobile-footbar__btn--tel i,
.mobile-btn-phone i {
    color: #fff;
}
.ns-mobile-footbar__btn--tel:hover,
.ns-mobile-footbar__btn--tel:focus,
.mobile-btn-phone:hover,
.mobile-btn-phone:focus {
    color: #fff;
}
.ns-mobile-footbar__btn--wechat,
.mobile-btn-wechat {
    background: linear-gradient(135deg, #07C160, #06AD56);
    color: #fff;
}
.ns-mobile-footbar__btn--wechat span,
.mobile-btn-wechat span,
.ns-mobile-footbar__btn--wechat i,
.mobile-btn-wechat i {
    color: #fff;
}
.ns-mobile-footbar__btn--wechat:hover,
.ns-mobile-footbar__btn--wechat:focus,
.mobile-btn-wechat:hover,
.mobile-btn-wechat:focus {
    color: #fff;
}

/* WeChat copy success modal */
.custom-wechat-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, .5);
    visibility: hidden;
    opacity: 0;
    transition: visibility .2s, opacity .2s;
}
.custom-wechat-modal.show {
    visibility: visible;
    opacity: 1;
}
body.ns-wechat-modal-open {
    overflow: hidden;
}
.modal-white-card {
    width: 280px;
    max-width: calc(100vw - 40px);
    padding: 24px 20px;
    border-radius: 24px;
    background: #fff;
    text-align: center;
    box-shadow: 0 20px 35px rgba(0, 0, 0, .2);
    transform: translateY(12px) scale(.96);
    transition: transform .2s;
}
.custom-wechat-modal.show .modal-white-card {
    transform: translateY(0) scale(1);
}
.modal-white-card .icon {
    margin-bottom: 16px;
    font-size: 48px;
    line-height: 1;
    color: #2dc200;
}
.modal-white-card h4 {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 600;
    color: #1d2129;
}
.modal-white-card p {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}
.modal-white-card p strong {
    color: #1677ff;
    font-weight: 600;
}
.modal-white-card__hint {
    margin-bottom: 20px !important;
    color: #86909c !important;
}
.modal-white-card .btn-wechat-go {
    width: 80%;
    margin: 0 auto;
    padding: 10px 20px;
    border: none;
    border-radius: 40px;
    background: linear-gradient(135deg, #07C160, #06AD56);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(7, 193, 96, .35);
    transition: opacity .2s, transform .2s;
}
.modal-white-card .btn-wechat-go:hover,
.modal-white-card .btn-wechat-go:focus {
    color: #fff;
    opacity: .92;
}
.modal-white-card .btn-close {
    display: block;
    width: 100%;
    margin-top: 12px;
    padding: 0;
    border: none;
    background: none;
    color: #999;
    font-size: 12px;
    cursor: pointer;
}

/* Float dock + fgkj-style consult modal */
@font-face {
    font-family: 'Barlow-bold';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../font/BarlowCondensed-Bold.ttf') format('truetype');
}
.ns-floatdock {
    position: fixed;
    right: 30px;
    bottom: 10%;
    z-index: 999;
}
.ns-floatdock__group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 46px;
}
.ns-floatdock__kefu {
    position: relative;
}
.ns-floatdock__btn2 {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    cursor: pointer;
}
.ns-floatdock__btn2::before,
.ns-floatdock__btn2::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    border-radius: 50%;
    background-color: var(--ns-primary);
    transform: translate(-50%, -50%);
}
.ns-floatdock__btn2::before {
    width: 80%;
    height: 80%;
    animation: ns-floatdock-breathe1 3.5s infinite ease-in-out;
}
.ns-floatdock__btn2::after {
    width: 60%;
    height: 60%;
    animation: ns-floatdock-breathe2 3.5s infinite ease-in-out;
    animation-delay: .25s;
}
@keyframes ns-floatdock-breathe1 {
    0% { width: 80%; height: 80%; opacity: 1; }
    50% { width: 180%; height: 180%; opacity: .5; }
    100% { width: 80%; height: 80%; opacity: 1; }
}
@keyframes ns-floatdock-breathe2 {
    0% { width: 60%; height: 60%; opacity: 1; }
    50% { width: 150%; height: 150%; opacity: .5; }
    100% { width: 60%; height: 60%; opacity: 1; }
}
.ns-floatdock__circles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.ns-floatdock__circles .circle {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(111, 117, 214, .45);
    animation: ns-floatdock-circle 3s ease-out infinite;
}
.ns-floatdock__circles .c-2 { animation-delay: 1s; }
.ns-floatdock__circles .c-3 { animation-delay: 2s; }
@keyframes ns-floatdock-circle {
    0% { transform: scale(1); opacity: .75; }
    100% { transform: scale(2.1); opacity: 0; }
}
.ns-floatdock__trigger {
    position: relative;
    z-index: 3;
    display: block;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    overflow: hidden;
    text-decoration: none;
}
.ns-floatdock__trigger-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: var(--ns-primary);
    color: #fff;
    border-radius: 50%;
    overflow: hidden;
}
.ns-floatdock__trigger-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ns-floatdock__trigger-inner i {
    font-size: 26px;
}
.ns-floatdock__hover-tip {
    position: absolute;
    right: calc(100% + 14px);
    top: 55%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid #e1e6f0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .1);
    padding: 12px 16px;
    min-height: 50px;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s, visibility .5s;
    pointer-events: none;
    white-space: nowrap;
}
.ns-floatdock__hover-tip::before {
    content: "";
    position: absolute;
    right: -4px;
    top: 50%;
    width: 6px;
    height: 6px;
    background: #fff;
    border-color: #e1e6f0 transparent transparent #e1e6f0;
    border-style: solid;
    border-width: 1px;
    transform: translateY(-50%) rotate(135deg);
}
.ns-floatdock__hover-tip p {
    margin: 0;
    color: #333;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
}
.ns-floatdock__btn2:hover .ns-floatdock__hover-tip {
    opacity: 1;
    visibility: visible;
}
.ns-floatdock__gotop {
    width: 62px;
    height: 0;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 50%;
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--ns-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(15, 23, 42, .12);
    transition: transform .25s, background .25s, border-color .25s, box-shadow .25s, opacity .25s, visibility .25s, height .25s;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    flex-shrink: 0;
}
.ns-floatdock__gotop.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.ns-floatdock__gotop:hover {
    transform: scale(1.06);
    background: rgba(255, 255, 255, .92);
    border-color: rgba(255, 255, 255, .85);
    box-shadow: 0 6px 18px rgba(15, 23, 42, .16);
    color: var(--ns-primary-dark);
}
.ns-floatdock__gotop i {
    font-size: 24px;
    line-height: 1;
}

.ns-kefu-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .6s ease, visibility .6s ease;
}
.ns-kefu-modal.is-open {
    opacity: 1;
    visibility: visible;
}
.ns-kefu-modal__bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6);
}
.ns-kefu-modal__box {
    position: relative;
    width: min(1100px, 70vw);
    max-height: min(580px, 88vh);
    border-radius: 20px;
    overflow: hidden;
    transform: translateY(-150%);
    transition: transform .5s ease;
}
.ns-kefu-modal.is-open .ns-kefu-modal__box {
    transform: translateY(0);
}
.ns-kefu-modal__flex {
    display: flex;
    align-items: stretch;
    min-height: 420px;
    max-height: min(580px, 88vh);
    position: relative;
}
.ns-kefu-modal__left {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    padding: 38px 80px 38px 38px;
    color: #414141;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transform: translateX(60%);
}
.ns-kefu-modal__left::before {
    content: "";
    position: absolute;
    inset: -8%;
    z-index: 0;
    border-radius: inherit;
    background-image:
        linear-gradient(135deg, rgba(3, 110, 184, .6) 0%, rgba(245, 248, 252, .88) 48%, rgba(224, 236, 248, .45) 100%),
        url('../img/ns-kefu-modal-bg.jpg');
    background-position: left center, left center;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, cover;
    transform: scale(1.06);
}
.ns-kefu-modal__left::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(3, 110, 184, .12) 0%, rgba(3, 110, 184, 0) 42%, rgba(3, 110, 184, .1) 100%);
    opacity: 0;
}
.ns-kefu-modal.is-open .ns-kefu-modal__left {
    animation: ns-kefu-slide-in .5s linear .5s forwards;
}
.ns-kefu-modal.is-open .ns-kefu-modal__left::before {
    animation: ns-kefu-left-bg-in .8s ease .5s forwards, ns-kefu-left-bg-drift 12s ease-in-out 1.3s infinite alternate;
}
.ns-kefu-modal.is-open .ns-kefu-modal__left::after {
    animation: ns-kefu-left-bg-glow 4s ease-in-out 1.2s infinite alternate;
}
@keyframes ns-kefu-left-bg-in {
    0% { transform: scale(1.12) translateX(6%); opacity: .55; }
    100% { transform: scale(1) translateX(0); opacity: 1; }
}
@keyframes ns-kefu-left-bg-drift {
    0% { transform: scale(1) translateX(0); }
    100% { transform: scale(1.04) translateX(3%); }
}
@keyframes ns-kefu-left-bg-glow {
    0% { opacity: .15; }
    100% { opacity: .45; }
}
.ns-kefu-modal__left-inner {
    position: relative;
    z-index: 1;
}
.ns-kefu-modal__block {
    position: relative;
    padding-left: 0;
    margin-bottom: 50px;
}
.ns-kefu-modal__block:last-child {
    margin-bottom: 0;
}
.ns-kefu-modal__block > span {
    display: block;
    margin-bottom: 24px;
    font-size: 16px;
    font-weight: 300;
    color: #414141;
    line-height: 1.5;
}
.ns-kefu-modal__block h2 {
    margin: 0;
    font-size: clamp(28px, 2.4vw, 34px);
    line-height: 1.35;
    font-weight: 700;
    font-family: 'Barlow-bold', "Arial Narrow", "Helvetica Neue", sans-serif;
    color: var(--ns-primary);
    letter-spacing: .5px;
}
.ns-kefu-modal__tel-line {
    display: block;
    margin: 0 0 10px;
}
.ns-kefu-modal__tel-line:last-child {
    margin-bottom: 0;
}
.ns-kefu-modal__tel-line:empty {
    display: none;
}
.ns-kefu-modal__block h2 a {
    font-family: inherit;
    color: var(--ns-primary);
    text-decoration: none;
}
.ns-kefu-modal__block h2 a:hover {
    opacity: .85;
}
.ns-kefu-modal__ewm-box {
    display: inline-block;
}
.ns-kefu-modal__ewm {
    position: relative;
    overflow: hidden;
    display: inline-block;
}
.ns-kefu-modal__ewm svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}
.ns-kefu-modal__ewm svg path {
    stroke: #212121;
    fill: none;
}
.ns-kefu-modal__ewm img {
    position: relative;
    z-index: 1;
    display: block;
    width: 130px;
    height: 130px;
    object-fit: cover;
    mix-blend-mode: multiply;
    margin: 10px;
}
.ns-kefu-modal__ewm::before,
.ns-kefu-modal__ewm::after {
    content: "";
    display: block;
    position: absolute;
    left: 1px;
    right: 1px;
    height: 62%;
    z-index: 3;
    pointer-events: none;
}
.ns-kefu-modal__ewm::before {
    bottom: 100%;
    background: linear-gradient(to bottom, rgba(3, 110, 184, 0), var(--ns-primary));
}
.ns-kefu-modal__ewm::after {
    top: 100%;
    background: linear-gradient(to top, rgba(3, 110, 184, 0), var(--ns-primary));
}
.ns-kefu-modal__ewm.is-actived::before {
    transform: translateY(270%);
    transition: transform 1.5s;
}
.ns-kefu-modal__ewm.is-actived::after {
    transition: transform 1.5s 1.5s;
    transform: translateY(-270%);
}
.ns-kefu-modal__right {
    flex: 0 0 min(640px, 62%);
    max-width: none;
    margin-left: -96px;
    margin-right: 0;
    flex-shrink: 0;
    background: #fff;
    padding: 52px 42px 42px;
    position: relative;
    z-index: 2;
    overflow-y: auto;
    border-radius: 20px;
    transform: translateX(-30%);
    box-shadow: -8px 0 32px rgba(0, 0, 0, .08);
}
.ns-kefu-modal.is-open .ns-kefu-modal__right {
    animation: ns-kefu-slide-out .5s linear .5s forwards;
}
@keyframes ns-kefu-slide-in {
    0% { transform: translateX(60%); }
    100% { transform: translateX(0); }
}
@keyframes ns-kefu-slide-out {
    0% { transform: translateX(-30%); }
    100% { transform: translateX(0); }
}
.ns-kefu-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .25s, transform .6s;
    z-index: 2;
}
.ns-kefu-modal__close:hover {
    color: #666;
    transform: rotate(180deg);
}
.ns-kefu-modal__close i {
    font-size: 20px;
}
.ns-kefu-modal__right h1 {
    margin: 0 0 14px;
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 300;
    color: #212121;
    line-height: 1.25;
}
.ns-kefu-modal__right h1 span {
    color: var(--ns-primary);
    font-weight: 500;
}
.ns-kefu-modal__lead {
    margin: 0 0 28px;
    font-size: 15px;
    line-height: 1.7;
    color: #757575;
}
.ns-float-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 14px;
}
.ns-float-form__inp input {
    width: 100%;
    padding: 18px 22px;
    border-radius: 999px;
    border: 1px solid #d1d1d1;
    font-size: 15px;
    font-weight: 300;
    color: #757575;
    background: #fff;
    outline: none;
    transition: border-color .25s;
}
.ns-float-form__inp input:focus {
    border-color: var(--ns-primary);
}
.ns-float-form__inp--full {
    grid-column: span 2;
}
.ns-float-form__service h2 {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 400;
    color: #212121;
}
.ns-float-form__service-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.ns-float-form__service-btn {
    position: relative;
    font-size: 14px;
    border-radius: 999px;
    color: #b1b1b1;
    border: 1px solid #d1d1d1;
    padding: 10px 16px;
    transition: all .35s ease;
    cursor: pointer;
    margin: 0;
}
.ns-float-form__service-btn input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}
.ns-float-form__service-btn:hover,
.ns-float-form__service-btn.is-on {
    color: #fff;
    background: var(--ns-primary);
    border-color: var(--ns-primary);
}
.ns-float-form__code {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: nowrap;
}
.ns-float-form__captcha {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}
.ns-float-form__captcha input {
    width: 100%;
    max-width: 160px;
    padding: 18px 22px;
    border-radius: 999px;
    border: 1px solid #d1d1d1;
    font-size: 15px;
    font-weight: 300;
    color: #757575;
    outline: none;
}
.ns-float-form__captcha img {
    flex-shrink: 0;
    cursor: pointer;
    border-radius: 6px;
}
.ns-float-form__code button {
    width: 100%;
    max-width: 180px;
    flex-shrink: 0;
    padding: 18px 28px;
    border: none;
    border-radius: 999px;
    background: var(--ns-primary);
    font-size: 17px;
    font-weight: 300;
    color: #fff;
    cursor: pointer;
    transition: transform .35s, background .25s;
}
.ns-float-form__code button:hover {
    background: var(--ns-primary-dark);
    transform: translateX(-12px);
}
.ns-float-form__code button:disabled {
    opacity: .65;
    cursor: not-allowed;
    transform: none;
}
body.ns-kefu-modal-open {
    overflow: hidden;
}
@media (max-width: 991px) {
    .ns-kefu-modal__box {
        width: min(920px, 92vw);
    }
    .ns-kefu-modal__right {
        flex: 0 0 min(540px, 62%);
        margin-left: -72px;
    }
}
.ns-kefu-modal__flex--form-only .ns-kefu-modal__right {
    flex: 1;
    max-width: none;
    margin-left: 0;
    border-radius: 20px;
    transform: none;
    box-shadow: none;
}
.ns-kefu-modal.is-open .ns-kefu-modal__flex--form-only .ns-kefu-modal__right {
    animation: none;
}
@media (max-width: 767px) {
    .ns-floatdock {
        right: 12px;
    }
    .ns-floatdock__hover-tip {
        display: none;
    }
    .ns-kefu-modal__box {
        width: calc(100vw - 24px);
        max-height: calc(100vh - 24px);
        overflow: hidden;
    }
    .ns-kefu-modal__flex {
        flex-direction: column;
        min-height: 0;
    }
    .ns-kefu-modal__left {
        padding: 28px 24px;
        border-radius: 20px 20px 0 0;
        transform: none;
        animation: none !important;
    }
    .ns-kefu-modal.is-open .ns-kefu-modal__left::before,
    .ns-kefu-modal.is-open .ns-kefu-modal__left::after {
        animation: none;
        opacity: 1;
        transform: none;
    }
    .ns-kefu-modal__block {
        margin-bottom: 28px;
        padding-left: 0;
    }
    .ns-kefu-modal__block h2 {
        font-size: 22px;
    }
    .ns-kefu-modal__right {
        flex: 1;
        max-width: none;
        margin-left: 0;
        padding: 32px 24px 28px;
        transform: none;
        animation: none !important;
        border-radius: 0 0 20px 20px;
        box-shadow: none;
    }
    .ns-float-form {
        grid-template-columns: 1fr;
    }
    .ns-float-form__inp--full {
        grid-column: span 1;
    }
}

/* Legacy floatbar (deprecated) */
.ns-floatbar {
    position: fixed; right: 16px; bottom: 80px; z-index: 999;
    display: flex; flex-direction: column; gap: 8px;
}
.ns-floatbar__item {
    width: 48px; height: 48px; border-radius: 50%; background: var(--ns-primary); color: #fff;
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    box-shadow: 0 4px 16px rgba(111,117,214,.4); transition: transform .2s, background .2s;
    position: relative; border: none;
}
.ns-floatbar__item:hover { transform: scale(1.08); background: var(--ns-primary-dark); }
.ns-floatbar__tip {
    position: absolute; right: 56px; white-space: nowrap; background: #333; color: #fff;
    padding: 6px 12px; border-radius: 4px; font-size: 12px; opacity: 0; pointer-events: none;
    transition: opacity .2s;
}
.ns-floatbar__tip img { display: block; }
.ns-floatbar__item:hover .ns-floatbar__tip { opacity: 1; }

/* 在线客服链接按钮 */
.ns-kefu-link { color: inherit; text-decoration: none; transition: color .2s; }
.ns-kefu-link:hover { color: var(--ns-primary); text-decoration: underline; }
.foot_lx .ns-kefu-link { display: inline; }
.ns-contact-info__value.ns-kefu-link--tel,
.ns-contact-info__value.ns-kefu-link--mail,
.ns-contact-cell__link.ns-kefu-link--tel,
.ns-contact-cell__link.ns-kefu-link--mail,
.ns-contact01-item__link.ns-kefu-link--tel,
.ns-contact01-item__link.ns-kefu-link--mail {
    color: var(--ns-title);
}

/* Inner pages */
.ns-page-header { background: linear-gradient(135deg, #222252, #38386e); color: #fff; padding: 48px 0; }
body.ns-theme.ns-inner .ns-page-header {
    margin-top: calc(-1 * var(--ns-header-h));
    padding-top: calc(48px + var(--ns-header-h));
}
.ns-page-header h1 { margin: 0; font-size: 28px; }
.ns-breadcrumb { list-style: none; margin: 12px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; font-size: 13px; opacity: .8; }
.ns-breadcrumb li::after { content: '/'; margin-left: 8px; opacity: .5; }
.ns-breadcrumb li:last-child::after { display: none; }
.ns-breadcrumb a:hover { color: var(--ns-accent); }
.ns-content-wrap { padding: 48px 0 80px; }
.ns-content-wrap .ns-layout { display: grid; grid-template-columns: 1fr 320px; gap: 32px; }
.ns-article { background: var(--ns-white); border-radius: var(--ns-radius); padding: 36px; box-shadow: 0 2px 12px rgba(0,0,0,.04); }
.ns-article__title { font-size: 28px; margin: 0 0 16px; line-height: 1.35; color: var(--ns-title); }
.ns-article__meta { font-size: 13px; color: var(--ns-subtitle); margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--ns-border); }
.ns-article__body { font-size: 16px; line-height: 1.85; color: #333; }
.ns-sidebar-box { background: var(--ns-white); border-radius: var(--ns-radius); padding: 20px; margin-bottom: 20px; border: 1px solid var(--ns-border); }
.ns-sidebar-box h3 { font-size: 16px; margin: 0 0 14px; padding-bottom: 10px; border-bottom: 2px solid var(--ns-primary); }
.ns-list-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--ns-border); }
.ns-list-item__thumb { flex: 0 0 160px; height: 100px; border-radius: var(--ns-radius); overflow: hidden; }
.ns-list-item__thumb img { width: 100%; height: 100%; object-fit: cover; }
.ns-list-item__title { font-size: 17px; margin: 0 0 8px; }
.ns-list-item__title a:hover { color: var(--ns-primary); }
.ns-list-item__desc { font-size: 13px; color: var(--ns-subtitle); margin: 0; }
.ns-list-item__meta { font-size: 12px; color: #999; margin-top: 10px; display: flex; flex-wrap: wrap; gap: 12px; }

/* Search results page */
.ns-search-page {
    position: relative;
    padding: var(--ns-pad-y-md) 0 var(--ns-pad-y);
}
.ns-search-page__hero {
    margin-bottom: 2rem;
    padding: 2rem 2.25rem;
    border-radius: .875rem;
    background: linear-gradient(135deg, rgba(3, 110, 184, .08) 0%, rgba(56, 56, 110, .04) 100%);
    border: 1px solid rgba(3, 110, 184, .12);
}
.ns-search-page__title {
    margin: 0 0 1.25rem;
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 700;
    color: var(--ns-title);
}
.ns-search-page__form { max-width: 42rem; }
.ns-search-page__field {
    display: flex;
    align-items: stretch;
    gap: .75rem;
}
.ns-search-page__input {
    flex: 1;
    min-width: 0;
    height: 3rem;
    padding: 0 1.125rem;
    border: 1px solid #dce0e8;
    border-radius: .5rem;
    font-size: .9375rem;
    color: var(--ns-title);
    background: #fff;
    outline: none;
    transition: border-color .25s ease, box-shadow .25s ease;
}
.ns-search-page__input:focus {
    border-color: var(--ns-primary);
    box-shadow: 0 0 0 3px rgba(3, 110, 184, .12);
}
.ns-search-page__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-width: 7.5rem;
    height: 3rem;
    padding: 0 1.5rem;
    border: none;
    border-radius: .5rem;
    background: var(--ns-primary);
    color: #fff;
    font-size: .9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .25s ease, transform .2s ease;
}
.ns-search-page__submit:hover,
.ns-search-page__submit:focus {
    background: var(--ns-primary-dark);
    outline: none;
}
.ns-search-page__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eaedf0;
}
.ns-search-page__count {
    margin: 0;
    font-size: .9375rem;
    line-height: 1.6;
    color: #616161;
}
.ns-search-page__count strong {
    color: var(--ns-primary);
    font-weight: 700;
}
.ns-search-page__keyword {
    color: #727272;
}
.ns-search-page__order {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: .5rem;
}
.ns-search-page__order-link {
    display: inline-block;
    padding: .375rem .875rem;
    border-radius: 999px;
    border: 1px solid #dce0e8;
    font-size: .8125rem;
    color: #616161;
    background: #fff;
    text-decoration: none;
    transition: all .25s ease;
}
.ns-search-page__order-link:hover,
.ns-search-page__order-link.is-active {
    border-color: var(--ns-primary);
    background: var(--ns-primary);
    color: #fff;
}
.ns-search-page__list .ns-list-item:first-child {
    padding-top: 0;
}
.ns-search-page__list .ns-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ns-sidebar .panel-default { background: var(--ns-white); border: 1px solid var(--ns-border); border-radius: var(--ns-radius); margin-bottom: 20px; }
.ns-sidebar .panel-heading { background: transparent; border-bottom: 2px solid var(--ns-primary); padding: 12px 16px; }
.ns-sidebar .panel-title { font-size: 16px; font-weight: 600; color: var(--ns-title); }

/* Inner page utilities */
.img_db { position: relative; overflow: hidden; display: block; width: 100%; }
.img_db::after { content: ''; display: block; }
.img_db img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}

/* Inner banner n_banner */
.ns-n-banner {
    height: 31.25rem; width: 100%; overflow: hidden; position: relative; z-index: 0;
}
.ns-n-banner::before {
    display: none;
}
body.ns-banner-page .ns-n-banner {
    margin-top: 0;
}
.ns-n-banner__inner {
    position: relative;
    z-index: 1;
    display: flex; align-items: center; height: 100%;
}
.ns-n-banner__txt { max-width: 50rem; text-align: left; }
.ns-n-banner__txt h4,
.ns-n-banner__txt p,
.ns-n-banner__txt .ns-special-label {
    opacity: 0;
    transform: translateY(2.25rem);
    transition: opacity 1.05s cubic-bezier(.22, 1, .36, 1), transform 1.05s cubic-bezier(.22, 1, .36, 1);
    will-change: opacity, transform;
}
.ns-n-banner.is-ready .ns-n-banner__txt .ns-special-label {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .08s;
}
.ns-n-banner.is-ready .ns-n-banner__txt h4 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .18s;
}
.ns-n-banner.is-ready .ns-n-banner__txt p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .38s;
}
@media (prefers-reduced-motion: reduce) {
    .ns-n-banner__txt h4,
    .ns-n-banner__txt p,
    .ns-n-banner__txt .ns-special-label {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
.ns-n-banner__txt h4 {
    color: var(--ns-banner-title-color, #fff);
    font-size: 2.875rem; font-weight: 700; line-height: 1.5;
    margin: 0 0 .75rem;
    text-shadow: 0 2px 16px rgba(0, 0, 0, .35);
}
.ns-n-banner__txt p {
    color: var(--ns-banner-desc-color, rgba(255, 255, 255, .92));
    font-size: 1.125rem; line-height: 1.875rem; margin: 0;
    text-shadow: 0 1px 10px rgba(0, 0, 0, .3);
}
.ns-n-banner--custom-title .ns-n-banner__txt h4 {
    text-shadow: none;
}
.ns-n-banner--custom-desc .ns-n-banner__txt p {
    text-shadow: none;
}
.ns-n-banner__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
}
.ns-n-banner--video::before { display: none; }
.ns-n-banner--video .ns-n-banner__inner { z-index: 2; }
.ns-special-label {
    display: inline-block;
    margin: 0 0 .75rem;
    padding: .3125rem .875rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .45);
    background: rgba(255, 255, 255, .14);
    color: #fff;
    font-size: .8125rem;
    line-height: 1.4;
    letter-spacing: .04em;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* Sub nav zidh */
.ns-zidh {
    width: 100%; height: 5.4375rem;  position: relative; z-index: 10;
}
.ns-zidh__inner {
    display: flex; align-items: center; justify-content: space-between; height: 100%;
}
.ns-zidh__tabs {
    list-style: none; margin: 0; padding: 0;
    display: flex; align-items: center; gap: 3.125rem; position: relative;
}
.ns-zidh__tabs::before {
    content: ''; position: absolute; width: 100vw; left: 50%; transform: translateX(-50%);
    height: 1px; background: #dce0e8; bottom: 0;
}
.ns-zidh__tabs li a {
    position: relative; display: block; line-height: 5.4375rem;
    color: #313131; font-size: 1.0625rem; text-decoration: none;
}
.ns-zidh__tabs li a p { margin: 0; }
.ns-zidh__tabs li a::before {
    content: ''; display: block; width: 100%; height: 4px; position: absolute;
    bottom: 0; left: 0; background: var(--ns-primary); transition: transform .5s;
    transform: scaleX(0); transform-origin: center;
}
.ns-zidh__tabs li.on a::before,
.ns-zidh__tabs li:hover a::before { transform: scaleX(1); }

.ns-zidh__tabs-wrap {
    position: relative;
    min-width: 0;
    flex: 1 1 auto;
}
.ns-zidh__tabs-hint {
    display: none;
}

.ns-zidh--crumb-only { height: auto; min-height: 3.75rem; }
.ns-zidh--crumb-only .ns-zidh__inner {
    justify-content: flex-end;
    height: auto;
    min-height: 3.75rem;
    width: 100%;
    box-sizing: border-box;
}

.ns-position {
    display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap;
    font-size: .875rem; color: #929292; flex-shrink: 0;
    margin-left: auto; max-width: 100%; text-align: right;
}
.ns-zidh__inner > .ns-position { margin-left: auto; }
.ns-position__home { color: rgba(0,0,0,.6); font-size: 1rem; }
.ns-position__home:hover { color: var(--ns-primary); }
.ns-position__sep {
    font-style: normal; margin: 0 .5rem; color: rgba(0,0,0,.35); font-size: .75rem;
}
.ns-position a {
    color: rgba(0,0,0,.6); font-size: .875rem; line-height: 1.875rem; transition: color .3s;
}
.ns-position a:hover { color: var(--ns-primary); }
.ns-position a:last-child { color: var(--ns-primary); }

/* News list n_new */
.ns-inner-news {
    position: relative;
    padding: var(--ns-pad-y-md) 0 var(--ns-pad-y);
}
.ns-inner-news__grid {
    display: grid; grid-template-columns: 1fr 19.5625rem; gap: 1.875rem; align-items: flex-start;
}
.ns-inner-news__grid--solo {
    grid-template-columns: 1fr;
}
.ns-inner-news .ns-sidebar-col {
    min-width: 0;
}

.ns-inner-special.ns-inner-news--nopicard {
    padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(3rem, 5vw, 4.5rem);
}
.ns-news-list {
    list-style: none; margin: 0; padding: 0; display: grid; gap: 1.875rem;
}
.ns-news-item { padding-bottom: 1.875rem; border-bottom: 1px solid #eaedf0; }
.ns-news-item:last-child { border-bottom: none; padding-bottom: 0; }
.ns-news-item a {
    display: flex; align-items: center; gap: 1.625rem; color: inherit; text-decoration: none;
}
.ns-news-item .img { max-width: 15.9375rem; width: 100%; border-radius: .625rem; flex-shrink: 0; }
.ns-news-item .img_db::after { padding-top: 66.67%; }
.ns-news-item__con { flex: 1; min-width: 0; }
.ns-news-item__con h5 {
    color: #060606; font-size: 1.25rem; line-height: 1.6875rem; font-weight: 700;
    margin: 0; transition: color .5s;
    display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
.ns-news-item__con p {
    color: #616161; font-size: .9375rem; line-height: 1.625rem; margin: 1rem 0 .5rem;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ns-news-item__date {
    display: flex; align-items: center; gap: 5px; color: #727272;
    font-size: .875rem; line-height: 1.625rem;
}
.ns-news-item__date i { color: #7f7f7f; font-size: 1rem; }
.ns-news-item:hover h5 { color: var(--ns-primary); }

.ns-news-filter { margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid #eaedf0; }
.ns-news-filter__group { margin-bottom: .75rem; font-size: .875rem; }
.ns-news-filter__group ul {
    list-style: none; margin: .5rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px;
}
.ns-news-filter__group li a {
    display: inline-block; padding: 4px 12px; border-radius: 4px; border: 1px solid #dce0e8;
    font-size: .8125rem; color: #616161;
}
.ns-news-filter__group li.active a,
.ns-news-filter__group li a:hover {
    border-color: var(--ns-primary); color: var(--ns-primary);
}

/* Pagination */
.ns-news-pager { margin-top: 3rem; }
.ns-news-pager .pager { margin: 0; text-align: left; }
.ns-news-pager .pagination {
    display: flex; flex-wrap: wrap; gap: .625rem; margin: 0; padding: 0; list-style: none;
}
.ns-news-pager .pagination > li { display: block; }
.ns-news-pager .pagination > li > a,
.ns-news-pager .pagination > li > span {
    display: flex; align-items: center; justify-content: center;
    min-width: 2.8125rem; height: 2.8125rem; padding: 0 1rem;
    font-size: .875rem; color: #3a3a3a; border-radius: .375rem;
    border: 1px solid #c6cfda; background: #fff; transition: all .5s;
}
.ns-news-pager .pagination > .active > a,
.ns-news-pager .pagination > .active > span {
    border-color: var(--ns-primary); background: var(--ns-primary); color: #fff;
}
.ns-news-pager .pagination > li > a:hover { border-color: var(--ns-primary); color: var(--ns-primary); }
.ns-news-pager .loadmore-tips { color: #727272; font-size: .875rem; }

/* list_news01 — aligned with szchemistry.com/xydt (n_news01 + n_news02) */

.ns-inner-news--news01 .ns-news01-bd {
    width: 100%;
}
.ns-inner-news--news01 .ns-news01-head {
    text-align: center;
    margin-bottom: 3rem;
}
.ns-inner-news--news01 .ns-news01-head h2 {
    margin: 0;
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: #313131;
}
.ns-inner-news--news01 .ns-news-filter {
    margin-bottom: 2rem;
}

/* Top cards — n_news01 */
.ns-inner-news--news01 .ns-news01-cards {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}
.ns-inner-news--news01 .ns-news01-card__box {
    display: block;
    border-radius: .9375rem;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
}
.ns-inner-news--news01 .ns-news01-card__img {
    width: 100%;
}
.ns-inner-news--news01 .ns-news01-card__img::after {
    padding-top: 67.3%;
}
.ns-inner-news--news01 .ns-news01-card__img img {
    transition: transform .5s ease;
}
.ns-inner-news--news01 .ns-news01-card__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f4ff 0%, #f0f4f8 100%);
    color: #2196F3;
    font-size: 2rem;
    opacity: .75;
}
.ns-inner-news--news01 .ns-news01-card__txt {
    padding: 2rem 2.25rem;
    background: #ffffff;
}
.ns-inner-news--news01 .ns-news01-card__time {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .875rem;
    color: #5b6165;
}
.ns-inner-news--news01 .ns-news01-card__time .fa {
    font-size: 1rem;
    color: #5b6165;
}
.ns-inner-news--news01 .ns-news01-card__title {
    margin: .625rem 0 0;
    font-size: 1.375rem;
    line-height: 1.875rem;
    height: 3.75rem;
    font-weight: 600;
    color: #212121;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.ns-inner-news--news01 .ns-news01-card__arrow {
    display: inline-block;
    margin-top: .75rem;
    font-size: 1rem;
    color: #333;
    transition: color .5s ease, transform .3s ease;
}
.ns-inner-news--news01 .ns-news01-card__box:hover .ns-news01-card__img img {
    transform: scale(1.05);
}
.ns-inner-news--news01 .ns-news01-card__box:hover .ns-news01-card__arrow {
    color: #2196F3;
    transform: translateX(4px);
}

/* Media list — n_news02 */
.ns-inner-news--news01 .ns-news01-list {
    list-style: none;
    margin: 3.25rem 0 0;
    padding: 0;
}
.ns-inner-news--news01 .ns-news01-list > li {
    padding: 1.875rem 0;
    border-bottom: 1px solid #e4e5ea;
}
.ns-inner-news--news01 .ns-news01-list > li:first-child {
    padding-top: 0;
}
.ns-inner-news--news01 .ns-news01-list > li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.ns-inner-news--news01 .ns-news01-media__box {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    color: inherit;
    text-decoration: none;
}
.ns-inner-news--news01 .ns-news01-media__img {
    width: 24.0625rem;
    flex-shrink: 0;
    border-radius: .9375rem;
    overflow: hidden;
}
.ns-inner-news--news01 .ns-news01-media__img::after {
    padding-top: 67.3%;
}
.ns-inner-news--news01 .ns-news01-media__img img {
    transition: transform .5s ease;
}
.ns-inner-news--news01 .ns-news01-media__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f4ff 0%, #f0f4f8 100%);
    color: #2196F3;
    font-size: 2rem;
    opacity: .75;
}
.ns-inner-news--news01 .ns-news01-media__txt {
    flex: 1;
    min-width: 0;
}
.ns-inner-news--news01 .ns-news01-media__time {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .875rem;
    color: #5b6165;
}
.ns-inner-news--news01 .ns-news01-media__time .fa {
    font-size: 1rem;
    color: #5b6165;
}
.ns-inner-news--news01 .ns-news01-media__title {
    margin: 1rem 0 1.125rem;
    font-size: 1.5rem;
    line-height: 1.875rem;
    font-weight: 700;
    color: #212121;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    transition: color .3s ease;
}
.ns-inner-news--news01 .ns-news01-media__desc {
    margin: 0;
    font-size: 1rem;
    line-height: 1.75rem;
    height: 3.5rem;
    color: #616161;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.ns-inner-news--news01 .ns-news01-media__ico {
    width: 3.125rem;
    height: 3.125rem;
    margin-top: 2rem;
    border: 1px solid #e0e0e4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: .875rem;
    transition: border-color .5s ease, background .5s ease, color .5s ease;
}
.ns-inner-news--news01 .ns-news01-media__box:hover .ns-news01-media__img img {
    transform: scale(1.05);
}
.ns-inner-news--news01 .ns-news01-media__box:hover .ns-news01-media__title {
    color: #2196F3;
}
.ns-inner-news--news01 .ns-news01-media__box:hover .ns-news01-media__ico {
    border-color: #2196F3;
    background: #2196F3;
    color: #fff;
}

.ns-inner-news--news01 .ns-news01-pager {
    margin-top: 3rem;
    padding: 0 0 1rem;
    text-align: center;
}
.ns-inner-news--news01 .ns-news01-pager .pager { margin: 0; text-align: center; }
.ns-inner-news--news01 .ns-news01-pager .pagination {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .625rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.ns-inner-news--news01 .ns-news01-pager .pagination > li { display: block; }
.ns-inner-news--news01 .ns-news01-pager .pagination > li > a,
.ns-inner-news--news01 .ns-news01-pager .pagination > li > span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 2.8125rem;
    height: 2.8125rem;
    padding: 0 1rem;
    font-size: .875rem;
    color: #3a3a3a;
    border-radius: 4px;
    border: 1px solid #c6cfda;
    background: #fff;
    transition: all .25s ease;
}
.ns-inner-news--news01 .ns-news01-pager .pagination > .active > a,
.ns-inner-news--news01 .ns-news01-pager .pagination > .active > span {
    border-color: #2196F3;
    background: #2196F3;
    color: #fff;
}
.ns-inner-news--news01 .ns-news01-pager .pagination > li > a:hover {
    border-color: #2196F3;
    color: #2196F3;
}
.ns-inner-news--news01 .ns-news01-pager .loadmore-tips { color: #727272; font-size: .875rem; }

/* list_news_nopic — text list aligned with list_news01 row cards */
.ns-inner-news--nopic .ns-news-nopic-bd {
    width: 100%;
}
.ns-inner-news--nopic .ns-news-filter {
    margin-bottom: 2rem;
}
.ns-news-nopic-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.ns-news-nopic-list > li {
    padding: 1.875rem 0;
    border-bottom: 1px solid #e4e5ea;
}
.ns-news-nopic-list > li:first-child {
    padding-top: 0;
}
.ns-news-nopic-list > li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.ns-news-nopic__box {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: inherit;
    text-decoration: none;
}
.ns-news-nopic__main {
    flex: 1;
    min-width: 0;
}
.ns-news-nopic__time {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .875rem;
    line-height: 1.4;
    color: #5b6165;
}
.ns-news-nopic__time .fa {
    font-size: 1rem;
    color: #5b6165;
}
.ns-news-nopic__title {
    margin: .625rem 0 0;
    font-size: 1.375rem;
    line-height: 1.875rem;
    font-weight: 600;
    color: #212121;
    transition: color .35s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ns-news-nopic__desc {
    margin: .625rem 0 0;
    font-size: .9375rem;
    line-height: 1.625rem;
    color: #616161;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ns-news-nopic__arrow {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #333;
    background: #f4f6f8;
    transition: color .35s ease, background .35s ease, transform .3s ease;
}
.ns-news-nopic__box:hover .ns-news-nopic__title {
    color: var(--ns-primary);
}
.ns-news-nopic__box:hover .ns-news-nopic__arrow {
    color: #fff;
    background: var(--ns-primary);
    transform: translateX(4px);
}
.ns-news-nopic-pager {
    margin-top: 3.25rem;
    padding-top: 2rem;
    border-top: 1px solid #e4e5ea;
}
.ns-news-nopic-pager .pager { margin: 0; text-align: center; }
.ns-news-nopic-pager .pagination {
    display: inline-flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.ns-news-nopic-pager .pagination > li { display: block; }
.ns-news-nopic-pager .pagination > li > a,
.ns-news-nopic-pager .pagination > li > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 .75rem;
    border: 1px solid #dce0e8;
    border-radius: .375rem;
    color: #616161;
    font-size: .875rem;
    background: #fff;
}
.ns-news-nopic-pager .pagination > .active > a,
.ns-news-nopic-pager .pagination > .active > span {
    border-color: var(--ns-primary);
    background: var(--ns-primary);
    color: #fff;
}
.ns-news-nopic-pager .pagination > li > a:hover {
    border-color: var(--ns-primary);
    color: var(--ns-primary);
}
.ns-news-nopic-pager .loadmore-tips { color: #727272; font-size: .875rem; }

/* list_news_nopicard — fgkj-style card grid (no image) */
.ns-inner-news--nopicard .ns-news-nopicard-bd {
    width: 100%;
}
.ns-inner-news--nopicard .ns-news-nopicard-top {
    margin-bottom: 2rem;
}
.ns-inner-news--nopicard .ns-news-nopicard-filter {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.ns-inner-news--nopicard .ns-news-nopicard-filter .ns-news-filter__group ul {
    justify-content: center;
    gap: .625rem;
}
.ns-inner-news--nopicard .ns-news-nopicard-filter .ns-news-filter__group li a {
    padding: .5rem 1.125rem;
    border-radius: 5rem;
    font-size: .875rem;
}
.ns-news-nopicard-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}
.ns-news-nopicard__box {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    background: #fff;
    border-radius: 1.25rem;
    padding: 3.25rem 2.75rem;
    overflow: hidden;
    position: relative;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 .75rem 2.5rem rgba(34, 34, 82, .06);
    transition: box-shadow .5s ease, transform .35s ease;
}
.ns-news-nopicard__box::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    background: linear-gradient(120deg, var(--ns-primary) 0%, var(--ns-primary) 55%, var(--ns-accent) 100%);
    transition: opacity .5s ease, visibility .5s ease;
}
.ns-news-nopicard__time {
    display: block;
    margin-bottom: 1.5rem;
    font-size: .9375rem;
    line-height: 1.4;
    color: #adadad;
    transition: color .5s ease;
    position: relative;
    z-index: 2;
}
.ns-news-nopicard__title {
    margin: 0 0 1.75rem;
    font-size: 1.5rem;
    line-height: 2.125rem;
    min-height: 4.25rem;
    font-weight: 600;
    color: #333;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color .5s ease;
    position: relative;
    z-index: 2;
}
.ns-news-nopicard__desc {
    margin: 0 0 2.5rem;
    font-size: .9375rem;
    line-height: 1.625rem;
    color: #999;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    transition: color .5s ease;
    position: relative;
    z-index: 2;
}
.ns-news-nopicard__more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.375rem;
    height: 2.375rem;
    border: 1px solid #a8a8a8;
    border-radius: 50%;
    color: #a8a8a8;
    font-size: .875rem;
    transition: color .5s ease, border-color .5s ease, transform .3s ease;
    position: relative;
    z-index: 2;
}
.ns-news-nopicard__box:hover {
    box-shadow: 0 1.25rem 3rem rgba(3, 110, 184, .18);
    transform: translateY(-4px);
}
.ns-news-nopicard__box:hover::after {
    opacity: 1;
    visibility: visible;
}
.ns-news-nopicard__box:hover .ns-news-nopicard__time,
.ns-news-nopicard__box:hover .ns-news-nopicard__title,
.ns-news-nopicard__box:hover .ns-news-nopicard__desc,
.ns-news-nopicard__box:hover .ns-news-nopicard__more {
    color: #fff;
    border-color: #fff;
}
.ns-news-nopicard__box:hover .ns-news-nopicard__more {
    transform: translateX(4px);
}
.ns-news-nopicard-pager {
    margin-top: 3.25rem;
    padding-top: 2rem;
    border-top: 1px solid #e4e5ea;
}
.ns-news-nopicard-pager .pager { margin: 0; text-align: center; }
.ns-news-nopicard-pager .pagination {
    display: inline-flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.ns-news-nopicard-pager .pagination > li { display: block; }
.ns-news-nopicard-pager .pagination > li > a,
.ns-news-nopicard-pager .pagination > li > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 .75rem;
    border: 1px solid #dce0e8;
    border-radius: .375rem;
    color: #616161;
    font-size: .875rem;
    background: #fff;
}
.ns-news-nopicard-pager .pagination > .active > a,
.ns-news-nopicard-pager .pagination > .active > span {
    border-color: var(--ns-primary);
    background: var(--ns-primary);
    color: #fff;
}
.ns-news-nopicard-pager .pagination > li > a:hover {
    border-color: var(--ns-primary);
    color: var(--ns-primary);
}
.ns-news-nopicard-pager .loadmore-tips { color: #727272; font-size: .875rem; }

@media (max-width: 1199.98px) {
    .ns-inner-news--news01 .ns-news01-cards { gap: 1.5rem; }
    .ns-news-nopicard-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
    .ns-news-nopicard__box {
        padding: 2.75rem 2.25rem;
    }
    .ns-inner-news--news01 .ns-news01-media__img { width: 17rem; }
    .ns-inner-news--news01 .ns-news01-media__ico { display: none; }
}
@media (max-width: 767.98px) {
    .ns-inner-news--news01 {
        padding: 3.5rem 0;
    }
    .ns-inner-news--news01 .ns-news01-head {
        margin-bottom: 2rem;
    }
    .ns-inner-news--news01 .ns-news01-head h2 {
        font-size: 1.75rem;
    }
    .ns-inner-news--news01 .ns-news01-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .ns-inner-news--news01 .ns-news01-list {
        margin-top: 2.5rem;
    }
    .ns-inner-news--news01 .ns-news01-list > li {
        padding: 1.5rem 0;
    }
    .ns-inner-news--news01 .ns-news01-media__box {
        gap: 1rem;
        align-items: flex-start;
    }
    .ns-inner-news--news01 .ns-news01-media__img {
        width: 10rem;
    }
    .ns-inner-news--news01 .ns-news01-media__title {
        font-size: 1.125rem;
        line-height: 1.5;
        -webkit-line-clamp: 2;
        margin-bottom: .5rem;
    }
    .ns-inner-news--news01 .ns-news01-media__desc {
        height: auto;
    }
    .ns-news-nopic-list > li {
        padding: 1.5rem 0;
    }
    .ns-news-nopic__box {
        align-items: flex-start;
        gap: 1rem;
    }
    .ns-news-nopic__title {
        font-size: 1.125rem;
        line-height: 1.5rem;
    }
    .ns-news-nopic__arrow {
        display: none;
    }
    .ns-news-nopicard-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .ns-news-nopicard__box {
        padding: 2.25rem 1.75rem;
    }
    .ns-news-nopicard__title {
        font-size: 1.25rem;
        line-height: 1.75rem;
        min-height: 0;
        margin-bottom: 1.25rem;
    }
    .ns-news-nopicard__desc {
        margin-bottom: 1.75rem;
        -webkit-line-clamp: 2;
    }
}
@media (max-width: 575.98px) {
    .ns-inner-news--news01 .ns-news01-media__box {
        flex-direction: column;
    }
    .ns-inner-news--news01 .ns-news01-media__img {
        width: 100%;
    }
}

/* News sidebar */
.ns-news-side { display: grid; gap: 1.25rem; }
.ns-news-side__rec { padding: 1.875rem; }
.ns-news-side__case { padding: 1.875rem 1.75rem 1.875rem 1.5625rem; }
.ns-news-side__box h5 {
    color: #060606; font-size: 1.5rem; line-height: 1.875rem; margin: 0 0 1.25rem; font-weight: 700;
}
.ns-news-side__rec ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.ns-news-side__rec li a {
    display: block; color: #666; font-size: .9375rem; line-height: 1.5; text-decoration: none;
}
.ns-news-side__rec li a p {
    margin: 0; padding-left: 1.25rem; position: relative; transition: color .5s;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ns-news-side__rec li a p::before {
    content: ''; position: absolute; width: 5px; height: 5px; background: #d7dae2;
    border-radius: 50%; left: 5px; top: .55em;
}
.ns-news-side__rec li a:hover p { color: var(--ns-primary); }
.ns-news-side__case ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.25rem; }
.ns-news-side__case li a { display: block; border-radius: .625rem; overflow: hidden; color: inherit; }
.ns-news-side__case .img_db::after { padding-top: 65.39%; }
.ns-news-side__case li a p {
    color: #222252; min-height: 3.375rem; margin: 0; padding: .5rem .75rem;
    width: 100%; background: #eaecee; font-size: 1.125rem; line-height: 1.4;
    transition: color .5s; text-align: center;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    align-items: center; justify-content: center;
}
.ns-news-side__case li a:hover p { color: var(--ns-primary); }

/* Cloud CTA */
.ns-cloud {
    position: relative;
    overflow: hidden;
}
.ns-cloud__bg {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: top;
}
.ns-cloud__inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.ns-cloud__txt {
    max-width: 52rem;
}
.ns-cloud__txt h5 {
    font-weight: 700; color: #212121; font-size: 2.25rem; line-height: 3.625rem; margin: 0;
}
.ns-cloud__txt p,
.ns-cloud__desc {
    color: #63646b; font-size: 1rem; line-height: 1.875rem; margin: 0;
}
.ns-cloud__btn {
    width: 11.875rem; height: 3.4375rem; display: inline-flex; align-items: center;
    justify-content: center; background: var(--ns-primary); border-radius: 999px;
    color: #fff; font-size: 1.125rem; margin-top: 2.5rem; transition: background .3s, color .3s;
    border: none; box-sizing: border-box;
}
.ns-cloud__btn:hover { background: var(--ns-primary-dark); color: #fff; }
.ns-theme a.ns-cloud__btn,
.ns-theme a.ns-cloud__btn:hover,
.ns-theme a.ns-cloud__btn:focus,
.ns-theme a.ns-cloud__btn:active {
    color: #fff;
}

/* Pic card list — modern grid (list_pic / list_pic01) */
.ns-inner-pic {
    position: relative;
    padding: var(--ns-pad-y-md) 0 var(--ns-pad-y);
}
.ns-pic-filter {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.ns-pic-filter__group { margin-bottom: .75rem; font-size: .875rem; color: #334155; }
.ns-pic-filter__group:last-child { margin-bottom: 0; }
.ns-pic-filter__group ul {
    list-style: none; margin: .5rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px;
}
.ns-pic-filter__group li a {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid #dce0e8;
    font-size: .8125rem;
    color: #616161;
    transition: all .25s ease;
}
.ns-pic-filter__group li.active a,
.ns-pic-filter__group li a:hover {
    border-color: #2196F3;
    background: #2196F3;
    color: #fff;
}
.ns-pic-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 1.5rem;
    padding: 0;
}
.ns-pic-toolbar:empty {
    display: none;
}
.ns-pic-toolbar__pill {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid #dce0e8;
    font-size: .8125rem;
    color: #616161;
    background: #fff;
    transition: all .25s ease;
}
.ns-pic-toolbar__pill:hover,
.ns-pic-toolbar__pill.is-active {
    border-color: #2196F3;
    background: #2196F3;
    color: #fff;
}
.ns-pic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}
.ns-pic-card {
    margin: 0;
    height: 100%;
}
.ns-pic-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    color: inherit;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform .25s ease, box-shadow .25s ease;
}
.ns-pic-card__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.ns-pic-card__media {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    background: #f0f4f8;
}
.ns-pic-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}
.ns-pic-card__link:hover .ns-pic-card__img {
    transform: scale(1.02);
}
.ns-pic-card__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f4ff 0%, #f0f4f8 100%);
    color: #2196F3;
    font-size: 2rem;
    opacity: .75;
}
.ns-pic-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 16px;
    min-height: 0;
}
.ns-pic-card__title {
    margin: 0 0 8px;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.45;
    color: #1a2c3e;
    transition: color .25s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ns-pic-card__desc {
    margin: 0 0 12px;
    font-size: .875rem;
    line-height: 1.55;
    color: #6c757d;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ns-pic-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #eef2f6;
    font-size: .75rem;
}
.ns-pic-card__date {
    color: #2196F3;
}
.ns-pic-card__more {
    color: #94a3b8;
    white-space: nowrap;
    transition: color .25s ease;
}
.ns-pic-card__more .fa {
    transition: transform .25s ease;
}
.ns-pic-card__link:hover .ns-pic-card__title {
    color: #2196F3;
}
.ns-pic-card__link:hover .ns-pic-card__more {
    color: #2196F3;
}
.ns-pic-card__link:hover .ns-pic-card__more .fa {
    transform: translateX(3px);
}
/* Legacy class aliases (ajax partials) */
.ns-pic-card a:not(.ns-pic-card__link) {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.ns-pic-card .img_db::after { padding-top: 56.25%; }

.ns-pic-pager { margin-top: 3rem; }
.ns-pic-pager .pager { margin: 0; text-align: center; }
.ns-pic-pager .pagination {
    display: flex; flex-wrap: wrap; justify-content: center; gap: .625rem;
    margin: 0; padding: 0; list-style: none;
}
.ns-pic-pager .pagination > li { display: block; }
.ns-pic-pager .pagination > li > a,
.ns-pic-pager .pagination > li > span {
    display: flex; align-items: center; justify-content: center;
    min-width: 2.8125rem; height: 2.8125rem; padding: 0 1rem;
    font-size: .875rem; color: #3a3a3a; border-radius: 8px;
    border: 1px solid #c6cfda; background: #fff; transition: all .25s;
}
.ns-pic-pager .pagination > .active > a,
.ns-pic-pager .pagination > .active > span {
    border-color: #2196F3; background: #2196F3; color: #fff;
}
.ns-pic-pager .pagination > li > a:hover { border-color: #2196F3; color: #2196F3; }
.ns-pic-pager .loadmore-tips { color: #727272; font-size: .875rem; }
@media (min-width: 1400px) {
    .ns-pic-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Pic card list — product style (list_pic02.html, ref: szchemistry cpzx) */
.ns-inner-pic--pic02 {
    position: relative;
    padding: var(--ns-pad-y-md) 0 var(--ns-pad-y);
    background: #f1f3f5;
}
.ns-pic02-filter {
    background: #fff;
    border-radius: .625rem;
    padding: 1.125rem 1.375rem;
    margin-bottom: 1.5rem;
    box-shadow: none;
}
.ns-pic02-filter__group {
    margin-bottom: .625rem;
    font-size: .875rem;
    color: #475569;
}
.ns-pic02-filter__group:last-child { margin-bottom: 0; }
.ns-pic02-filter__group ul {
    list-style: none;
    margin: .5rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}
.ns-pic02-filter__group li a {
    display: inline-block;
    padding: .375rem .875rem;
    border-radius: 999px;
    border: 1px solid #d9e2ec;
    font-size: .8125rem;
    color: #64748b;
    background: #fff;
    transition: all .25s ease;
}
.ns-pic02-filter__group li.active a,
.ns-pic02-filter__group li a:hover {
    border-color: var(--ns-primary);
    background: var(--ns-primary);
    color: #fff;
}
.ns-pic02-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.875rem 2.125rem;
    align-items: stretch;
}
.ns-pic02-card {
    margin: 0;
    height: 100%;
}
.ns-pic02-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2.25rem 2rem;
    background: #fff;
    border: none;
    border-radius: .625rem;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    box-shadow: none;
    transition: box-shadow .3s ease, transform .3s ease;
}
.ns-pic02-card__link:hover {
    box-shadow: 0 .75rem 2rem rgba(15, 23, 42, .08);
    transform: translateY(-2px);
}
.ns-pic02-card__media {
    position: relative;
    width: 100%;
    margin-bottom: 1rem;
}
.ns-pic02-card__media::after {
    content: "";
    display: block;
    width: 100%;
    padding-top: 60.9%;
}
.ns-pic02-card__pic {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ns-pic02-card__img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform .35s ease;
}
.ns-pic02-card__link:hover .ns-pic02-card__img {
    transform: scale(1.03);
}
.ns-pic02-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #cbd5e1;
    font-size: 2.5rem;
}
.ns-pic02-card__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex: 1;
    min-height: 0;
}
.ns-pic02-card__tag {
    display: inline-block;
    padding: .75rem 1rem;
    border-radius: .3125rem;
    background: #edf6ff;
    color: var(--ns-primary);
    font-size: .8125rem;
    line-height: 1.4;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ns-pic02-card__title {
    margin: 1.25rem 0 2.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.45;
    color: #313131;
    transition: color .25s ease;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ns-pic02-card__arr {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 50%;
    border: 1px solid #dfdfe3;
    color: #333;
    transition: border-color .25s ease, background .25s ease, color .25s ease;
}
.ns-pic02-card__arr svg {
    width: .875rem;
    height: auto;
}
.ns-pic02-card__link:hover .ns-pic02-card__title {
    color: var(--ns-primary);
}
.ns-pic02-card__link:hover .ns-pic02-card__arr {
    border-color: var(--ns-primary);
    background: var(--ns-primary);
    color: #fff;
}
.ns-pic02-pager { margin-top: 2.75rem; }
.ns-pic02-pager .pager { margin: 0; text-align: center; }
.ns-pic02-pager .pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .625rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.ns-pic02-pager .pagination > li { display: block; }
.ns-pic02-pager .pagination > li > a,
.ns-pic02-pager .pagination > li > span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 .875rem;
    font-size: .875rem;
    color: #475569;
    border-radius: .25rem;
    border: 1px solid #d9e2ec;
    background: #fff;
    transition: all .25s;
}
.ns-pic02-pager .pagination > .active > a,
.ns-pic02-pager .pagination > .active > span {
    border-color: var(--ns-primary);
    background: var(--ns-primary);
    color: #fff;
}
.ns-pic02-pager .pagination > li > a:hover {
    border-color: var(--ns-primary);
    color: var(--ns-primary);
}
.ns-pic02-pager .loadmore-tips {
    color: #64748b;
    font-size: .875rem;
}
@media (max-width: 991px) {
    .ns-pic02-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.125rem;
    }
}
@media (max-width: 575px) {
    .ns-pic02-grid {
        grid-template-columns: 1fr;
    }
    .ns-pic02-card__link {
        padding: 1.5rem 1.25rem;
    }
    .ns-pic02-card__title {
        font-size: 1.0625rem;
        margin-bottom: 1.75rem;
    }
}

/* Case list — list_case.html */
@font-face {
    font-family: 'Barlow-bold';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../font/BarlowCondensed-Bold.ttf') format('truetype');
}
.ns-inner-pic--case {
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
}
.ns-inner-pic--case .ns-case-top {
    margin-bottom: 3.125rem;
    position: relative;
}
.ns-inner-pic--case .ns-case-top__flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 1;
}
.ns-inner-pic--case .ns-case-title h2 {
    margin: 0 0 1.25rem;
    font-size: 3.75rem;
    line-height: 1.15;
    font-weight: 700;
    color: #212121;
}
.ns-inner-pic--case .ns-case-title h2 span {
    color: #036eb8;
    margin-left: 2rem;
}
.ns-inner-pic--case .ns-case-title p {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 300;
    color: #9a9a9a;
}
.ns-inner-pic--case .ns-case-yw {
    position: relative;
    flex-shrink: 0;
    min-width: 20rem;
    min-height: 12rem;
}
.ns-inner-pic--case .ns-case-yw__yr {
    position: absolute;
    right: 50%;
    top: -35%;
    width: 28rem;
    height: 28rem;
    z-index: 0;
    pointer-events: none;
    overflow: visible;
}
.ns-inner-pic--case .ns-case-yw__bubble {
    display: block;
    position: absolute;
    width: 15rem;
    height: 15rem;
    right: 10%;
    top: 10%;
    animation: ns-case-spin2 8s infinite linear;
    transform-origin: 40% 30%;
}
.ns-inner-pic--case .ns-case-yw__circle {
    display: block;
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(3, 110, 46184, 0.85);
    filter: blur(8rem);
    animation: ns-case-spin-reverse2 8s infinite linear;
    transform: translate3d(0, 0, 0);
}
.ns-inner-pic--case .ns-case-yw__hov-box {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    transition: transform .5s ease;
}
.ns-inner-pic--case .ns-case-yw__hov-box:hover {
    transform: translateY(1rem);
}
.ns-inner-pic--case .ns-case-yw__hov {
    width: 8.625rem;
    height: 8.625rem;
    padding: 1.5rem;
    position: relative;
}
.ns-inner-pic--case .ns-case-yw__hov::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    animation: ns-case-rotate2 12s linear infinite;
}
html:not(.ns-style001):not(.ns-style003):not(.ns-style004) .ns-inner-pic--case .ns-case-yw__hov::before {
    background: url('../img/style002/hov_img.png') center no-repeat;
}
.ns-inner-pic--case .ns-case-yw__hov svg {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: #036eb8;
    padding: 2.1875rem;
    transform: rotate(90deg);
    border-radius: 50%;
    box-sizing: border-box;
}
.ns-inner-pic--case .ns-case-yw__hov svg path {
    fill: #fff;
}
.ns-inner-pic--case .ns-case-yw p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 10rem;
    font-family: 'Barlow-bold', sans-serif;
    letter-spacing: .3125rem;
    color: rgba(111, 117, 214, .1);
    line-height: 1;
    pointer-events: none;
}
@keyframes ns-case-spin2 {
    to { transform: rotate(-1turn); }
}
@keyframes ns-case-spin-reverse2 {
    from { transform: rotate(-1turn) translate3d(0, 0, 0); }
}
@keyframes ns-case-rotate2 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.ns-inner-pic--case .ns-case-cats {
    display: flex;
    flex-wrap: wrap;
    gap: .625rem;
    margin-bottom: 3.125rem;
    width: 100%;
}
.ns-inner-pic--case .ns-case-cats a {
    display: block;
    width: 100%;
    max-width: 8.75rem;
    font-size: 1.125rem;
    color: #666;
    border-radius: 5rem;
    border: 1px solid #ddd;
    text-align: center;
    padding: 1.5rem 0;
    transition: all .5s ease;
    text-decoration: none;
}
.ns-inner-pic--case .ns-case-cats a:hover,
.ns-inner-pic--case .ns-case-cats a.is-active {
    background-color: #036eb8;
    border-color: #036eb8;
    color: #fff;
}
.ns-inner-pic--case .ns-case-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
:is(.ns-inner-pic--case, .ns-section--shij) .ns-case-card {
    margin: 0;
}
:is(.ns-inner-pic--case, .ns-section--shij) .ns-case-card__link {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: .9375rem;
    overflow: hidden;
    position: relative;
    color: inherit;
    text-decoration: none;
}
:is(.ns-inner-pic--case, .ns-section--shij) .ns-case-card__img-box {
    width: 100%;
    padding-top: 23.4375rem;
    display: block;
    position: relative;
    overflow: hidden;
    background: #eef1f6;
}
:is(.ns-inner-pic--case, .ns-section--shij) .ns-case-card__img-box::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, .5) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}
:is(.ns-inner-pic--case, .ns-section--shij) .ns-case-card__img-box img,
:is(.ns-inner-pic--case, .ns-section--shij) .ns-case-card__cover {
    width: 110%;
    height: 110%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all .5s ease;
    max-width: none;
    max-height: none;
}
:is(.ns-inner-pic--case, .ns-section--shij) .ns-case-card:hover .ns-case-card__img-box img,
:is(.ns-inner-pic--case, .ns-section--shij) .ns-case-card:hover .ns-case-card__cover {
    filter: blur(1.25rem);
}
:is(.ns-inner-pic--case, .ns-section--shij) .ns-case-card__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f4ff 0%, #f0f4f8 100%);
    color: var(--ns-primary);
    font-size: 2rem;
    opacity: .75;
}
:is(.ns-inner-pic--case, .ns-section--shij) .ns-case-card__logo {
    position: absolute;
    top: 1.875rem;
    left: 2.5rem;
    z-index: 3;
    line-height: 0;
    pointer-events: none;
}
:is(.ns-inner-pic--case, .ns-section--shij) .ns-case-card__logo img {
    display: block;
    max-width: 100%;
    max-height: 4.375rem;
    width: auto;
    height: auto;
    object-fit: contain;
}
:is(.ns-inner-pic--case, .ns-section--shij) .ns-case-card:hover .ns-case-card__logo,
:is(.ns-inner-pic--case, .ns-section--shij) .ns-case-card:hover .ns-case-card__logo img {
    filter: none;
    opacity: 1;
}
:is(.ns-inner-pic--case, .ns-section--shij) .ns-case-card__txt {
    position: absolute;
    z-index: 2;
    bottom: 3%;
    color: #fff;
    width: 100%;
    height: 10%;
    padding: 0 2.5rem;
    transition: all .5s ease;
    box-sizing: border-box;
}
:is(.ns-inner-pic--case, .ns-section--shij) .ns-case-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
:is(.ns-inner-pic--case, .ns-section--shij) .ns-case-card__txt h2 {
    margin: 0 0 1.25rem;
    font-size: 1.375rem;
    line-height: 1.35;
    font-weight: 600;
    transition: all .5s ease;
}
:is(.ns-inner-pic--case, .ns-section--shij) .ns-case-card__loc {
    display: flex;
    align-items: center;
    gap: .375rem;
    font-size: .875rem;
    white-space: nowrap;
    transition: all .3s ease;
    flex-shrink: 0;
}
:is(.ns-inner-pic--case, .ns-section--shij) .ns-case-card__pin {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
    flex-shrink: 0;
}
:is(.ns-inner-pic--case, .ns-section--shij) .ns-case-card__txt p {
    margin: 0 0 2.5rem;
    font-size: 1.0625rem;
    line-height: 1.5;
    opacity: 0;
    transition: all .5s ease;
}
:is(.ns-inner-pic--case, .ns-section--shij) .ns-case-card__arrow {
    width: 2.375rem;
    height: 2.375rem;
    display: block;
    background: #036eb8;
    padding: .5rem;
    border-radius: 50%;
    opacity: 0;
    transition: all .5s ease;
    box-sizing: border-box;
}
:is(.ns-inner-pic--case, .ns-section--shij) .ns-case-card__arrow path {
    fill: #fff;
}
:is(.ns-inner-pic--case, .ns-section--shij) .ns-case-card__top .ns-case-card__arrow {
    display: none;
}
:is(.ns-inner-pic--case, .ns-section--shij) .ns-case-card:hover .ns-case-card__txt {
    height: 50%;
}
:is(.ns-inner-pic--case, .ns-section--shij) .ns-case-card:hover .ns-case-card__txt h2 {
    font-size: 1.75rem;
}
:is(.ns-inner-pic--case, .ns-section--shij) .ns-case-card:hover .ns-case-card__txt p,
:is(.ns-inner-pic--case, .ns-section--shij) .ns-case-card:hover .ns-case-card__arrow {
    opacity: 1;
}
:is(.ns-inner-pic--case, .ns-section--shij) .ns-case-card:hover .ns-case-card__loc {
    opacity: 0;
}
.ns-inner-pic--case .ns-case-pager {
    margin-top: 5rem;
}
.ns-inner-pic--case .ns-case-pager .pager {
    margin: 0;
    text-align: center;
}
.ns-inner-pic--case .ns-case-pager .pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: .625rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.ns-inner-pic--case .ns-case-pager .pagination > li {
    display: block;
}
.ns-inner-pic--case .ns-case-pager .pagination > li > a,
.ns-inner-pic--case .ns-case-pager .pagination > li > span {
    display: block;
    width: auto;
    min-width: 0;
    height: auto;
    font-size: 1rem;
    font-weight: 300;
    padding: .9375rem 1.5625rem;
    border-radius: 5rem;
    border: 1px solid #dcdcdc;
    background: #fff;
    color: #333;
    transition: all .5s ease;
}
.ns-inner-pic--case .ns-case-pager .pagination > .active > a,
.ns-inner-pic--case .ns-case-pager .pagination > .active > span,
.ns-inner-pic--case .ns-case-pager .pagination > li > a:hover {
    background-color: #036eb8;
    border-color: #036eb8;
    color: #fff;
}
.ns-inner-pic--case .ns-case-pager .loadmore-tips {
    color: #727272;
    font-size: .875rem;
}
@media (max-width: 1199px) {
    .ns-inner-pic--case .ns-case-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    :is(.ns-inner-pic--case, .ns-section--shij) .ns-case-card__img-box {
        padding-top: 11.4375rem;
    }
    :is(.ns-inner-pic--case, .ns-section--shij) .ns-case-card__logo,
    :is(.ns-inner-pic--case, .ns-section--shij) .ns-case-card__txt p {
        display: none;
    }
    :is(.ns-inner-pic--case, .ns-section--shij) .ns-case-card__txt {
        height: 20%;
        padding: 0 1rem;
    }
    :is(.ns-inner-pic--case, .ns-section--shij) .ns-case-card__txt h2,
    :is(.ns-inner-pic--case, .ns-section--shij) .ns-case-card:hover .ns-case-card__txt h2 {
        font-size: 1.25rem;
        margin-bottom: 0;
    }
    :is(.ns-inner-pic--case, .ns-section--shij) .ns-case-card__loc {
        display: none;
    }
    .ns-inner-pic--case .ns-case-title h2 span {
        margin-left: 0;
        display: block;
    }
    .ns-inner-pic--case .ns-case-top__flex {
        flex-wrap: wrap;
    }
    .ns-inner-pic--case .ns-case-title h2 {
        font-size: 2.5rem;
    }
    .ns-inner-pic--case .ns-case-yw {
        margin-top: -6rem;
    }
    .ns-inner-pic--case .ns-case-yw__hov {
        width: 6.5rem;
        height: 6.5rem;
        padding: 1rem;
    }
    .ns-inner-pic--case .ns-case-yw__hov svg {
        padding: 1.5rem;
    }
    .ns-inner-pic--case .ns-case-yw p {
        font-size: 6rem;
    }
    .ns-inner-pic--case .ns-case-cats {
        display: block;
        white-space: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 2rem;
        flex-wrap: nowrap;
    }
    .ns-inner-pic--case .ns-case-cats a {
        display: inline-block;
        width: auto;
        max-width: none;
        margin-right: .5rem;
        padding: 1.5rem;
    }
}
@media (max-width: 767px) {
    .ns-inner-pic--case {
        padding: 4rem 0;
    }
    .ns-inner-pic--case .ns-case-yw {
        display: none;
    }
    .ns-inner-pic--case .ns-case-grid {
        grid-template-columns: 1fr;
    }
}

/* Single page n_dan */
.ns-inner-page__body {
    font-size: 1rem;
    line-height: 1.85;
    color: #333;
    word-break: break-word;
}
.ns-inner-page__body img { max-width: 100%; height: auto; }
.ns-inner-page__body video,
.ns-inner-page__body iframe { max-width: 100%; }
.ns-inner-page__body table { width: 100%; max-width: 100%; border-collapse: collapse; }
.ns-inner-page__body p { margin: 0 0 1em; }
.ns-inner-page__body p:last-child { margin-bottom: 0; }
.ns-inner-page__body h1,
.ns-inner-page__body h2,
.ns-inner-page__body h3,
.ns-inner-page__body h4,
.ns-inner-page__body h5,
.ns-inner-page__body h6 {
    color: var(--ns-title);
    line-height: 1.4;
    margin: 1.5em 0 .75em;
}
.ns-inner-page__body h1:first-child,
.ns-inner-page__body h2:first-child,
.ns-inner-page__body h3:first-child,
.ns-inner-page__body h4:first-child,
.ns-inner-page__body h5:first-child,
.ns-inner-page__body h6:first-child { margin-top: 0; }
.ns-inner-page__body ul,
.ns-inner-page__body ol { padding-left: 1.5em; margin: 0 0 1em; }
.ns-inner-page__body blockquote {
    margin: 1em 0;
    padding: .75rem 1.25rem;
    border-left: 4px solid var(--ns-primary);
    background: rgba(111, 117, 214, .06);
    color: #555;
}

/* About page — fgkj.cc layout: article left, line-grid stats right */
.ns-about-page {
    padding: var(--ns-pad-y-md) 0 var(--ns-pad-y);
}
.ns-about-page__layout {
    display: flex;
    align-items: flex-start;
    gap: 5rem;
}
.ns-about-page__main {
    flex: 1 1 auto;
    min-width: 0;
}
.ns-about-page__body {
    color: #333;
    font-size: 1.125rem;
    line-height: 2.125rem;
}
.ns-about-page__body p {
    margin: 0 0 1.25em;
    text-indent: 2em;
    color: #333;
}
.ns-about-page__body p:last-child {
    margin-bottom: 0;
}
.ns-about-page__body h1,
.ns-about-page__body h2,
.ns-about-page__body h3,
.ns-about-page__body h4 {
    color: var(--ns-title);
    font-weight: 700;
    line-height: 1.45;
    margin: 1.75em 0 .875em;
    text-indent: 0;
}
.ns-about-page__body h1:first-child,
.ns-about-page__body h2:first-child,
.ns-about-page__body h3:first-child,
.ns-about-page__body h4:first-child {
    margin-top: 0;
}
.ns-about-page__body ul,
.ns-about-page__body ol {
    margin: 0 0 1.25em;
    padding-left: 1.5em;
}
.ns-about-page__body blockquote {
    margin: 1.25em 0;
    padding: 0 0 0 1rem;
    border: none;
    border-left: 2px solid var(--ns-primary);
    background: transparent;
    color: var(--ns-text-soft);
    text-indent: 0;
}
.ns-about-page__body table {
    width: 100%;
    border: none;
    margin: 1.25em 0;
}
.ns-about-page__body table th,
.ns-about-page__body table td {
    border: none;
    border-bottom: 1px solid #e7e7e7;
    padding: .75rem 0;
    text-align: left;
    background: transparent;
}
.ns-about-page__body img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 1.25em auto;
}
.ns-about-page__body div,
.ns-about-page__body section {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
}
.ns-about-page__aside {
    flex: 0 0 35.3125rem;
    max-width: 35.3125rem;
    width: 100%;
}
.ns-about-page__sz {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.ns-about-page__sz li {
    border-top: 1px solid #e7e7e7;
    border-right: 1px solid #e7e7e7;
    padding: 3.375rem 3.5rem;
}
.ns-about-page__sz li:nth-child(1),
.ns-about-page__sz li:nth-child(2) {
    border-top: 0;
    padding-top: 0;
}
.ns-about-page__sz li:nth-child(3),
.ns-about-page__sz li:nth-child(4) {
    padding-bottom: 0;
}
.ns-about-page__sz li:nth-child(even) {
    border-right: 0;
}
.ns-about-page__sz-num {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    margin-bottom: 1.375rem;
}
.ns-about-page__sz-num .counter {
    color: var(--ns-primary);
    font-size: 3.125rem;
    line-height: 1;
    font-weight: 700;
    font-family: 'Barlow-bold', "Arial Narrow", "Helvetica Neue", sans-serif;
    letter-spacing: .5px;
    font-variant-numeric: tabular-nums;
}
.ns-about-page__sz-num em {
    color: var(--ns-primary);
    font-size: 1.375rem;
    line-height: 1;
    font-weight: 700;
    font-style: normal;
    font-family: 'Barlow-bold', "Arial Narrow", "Helvetica Neue", sans-serif;
    margin-top: .5rem;
}
.ns-about-page__sz li:first-child .ns-about-page__sz-num {
    align-items: flex-end;
}
.ns-about-page__sz li:first-child .ns-about-page__sz-num em {
    font-size: 1.25rem;
    font-weight: 400;
    color: #212121;
    margin-top: 0;
    margin-bottom: .5rem;
    font-family: inherit;
}
.ns-about-page__sz-label {
    margin: 0;
    color: #212121;
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.45;
}

/* Product channel list n_fangan（对齐 shuangliang cpjjfa.html） */
.ns-product-fangan {
    width: 100%;
    overflow: hidden;
    padding-bottom: var(--ns-pad-y);
}
.ns-product-fangan__item {
    padding-top: 6rem;
}
.ns-product-fangan__item:first-of-type { padding-top: 2.5rem; }
.ns-product-fangan__hd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3.625rem;
}
.ns-product-fangan__tit {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.ns-product-fangan__tit i {
    display: block;
    width: 2.6875rem;
    height: 2.75rem;
    background-size: contain;
    flex-shrink: 0;
}
html:not(.ns-style001):not(.ns-style003):not(.ns-style004) .ns-product-fangan__tit i {
    background: url(../img/style002/fangan_tt.png) center no-repeat;
}
.ns-product-fangan__tit h3 {
    margin: 0;
    font-size: 2.875rem;
    color: #212121;
    font-weight: 700;
    line-height: 1.2;
}
.ns-product-fangan__arr {
    display: flex;
    gap: 1rem;
}
.ns-product-fangan__prev,
.ns-product-fangan__next {
    width: 4.375rem;
    height: 4.375rem;
    border: 2px solid #bdc1c6;
    border-radius: 50%;
    background: #fff;
    color: #414141;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color .5s, background .5s, color .5s;
}
.ns-product-fangan__prev i,
.ns-product-fangan__next i { font-size: 1.5rem; }
.ns-product-fangan__prev:hover,
.ns-product-fangan__next:hover {
    border-color: #00479d;
    background: #00479d;
    color: #fff;
}
.ns-product-fangan__prev.swiper-button-disabled,
.ns-product-fangan__next.swiper-button-disabled {
    opacity: .35;
    cursor: not-allowed;
    border-color: #bdc1c6;
    background: #fff;
    color: #414141;
}
.ns-product-swiper {
    overflow: visible;
}
.ns-product-swiper .swiper-slide {
    height: auto;
    display: flex;
}
.ns-product-fangan__box {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background: #fff;
    justify-content: space-between;
    gap: 0;
    padding: 2rem 1.5rem;
    transition: box-shadow .5s;
    color: inherit;
    min-height: 100%;
    width: 100%;
    height: 100%;
}
.ns-product-fangan__box:hover {
    box-shadow: 5px 8.66px 25px rgba(29, 50, 149, .15);
}
.ns-product-fangan__box:focus,
.ns-product-fangan__box:active,
.ns-product-fangan__box:focus-visible {
    outline: none;
}
.ns-product-fangan__box:focus:not(:hover) {
    box-shadow: none;
}
.ns-product-fangan__box:hover .ns-product-fangan__btn {
    border-color: #00479d;
    background: #00479d;
    color: #fff;
}
.ns-product-fangan__img {
    display: none !important;
}
.ns-product-fangan__txt {
    flex: 1;
    min-width: 0;
    width: 100%;
    padding-right: 0;
    display: flex;
    flex-direction: column;
}
.ns-product-fangan__txt h4 {
    margin: 0 0 .75rem;
    font-size: 1.3rem;
    color: #212121;
    font-weight: 700;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.ns-product-fangan__meta {
    margin-bottom: .625rem;
}
.ns-product-fangan__meta:last-of-type {
    margin-bottom: 1.1rem;
}
.ns-product-fangan__label {
    display: block;
    font-size: 1.1rem;
    color: #00479d;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: .2rem;
}
.ns-product-fangan__val {
    font-size: 1.1rem;
    line-height: 1.65;
    color: #515151;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.ns-product-fangan__btn {
    width: 9rem;
    max-width: 100%;
    height: 2.5rem;
    border: 2px solid #e0e2e4;
    border-radius: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-size: 1rem;
    color: #414141;
    transition: border-color .5s, background .5s, color .5s;
    margin-top: auto;
    flex-shrink: 0;
}
.ns-product-fangan__btn i { font-size: .875rem; }

/* Solution list grid (list_fangan) */
.ns-product-fangan--grid {
    padding-bottom: var(--ns-pad-y);
}
.ns-fangan-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    padding: 2.5rem 0 0;
}
.ns-fangan-grid__item {
    display: flex;
    min-width: 0;
}
.ns-fangan-grid__item .ns-product-fangan__box {
    width: 100%;
    height: 100%;
}

/* Case detail — show_case.html */
@keyframes ns-case-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(0); }
    40% { transform: translateX(-8px); }
    60% { transform: translateX(-4px); }
}
.ns-case-show__hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    margin-top: calc(-1 * var(--ns-header-h));
    padding-top: var(--ns-header-h);
    overflow: hidden;
}
.ns-case-show__hero .ns-container {
    height: 100%;
    min-height: calc(100vh - var(--ns-header-h));
}
.ns-case-show__hero-flex {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: calc(100vh - var(--ns-header-h));
    position: relative;
}
.ns-case-show__hero-left {
    position: relative;
    z-index: 2;
    width: 48%;
    flex-shrink: 0;
    padding: 3rem 0;
}
.ns-case-show__loc {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 300;
    color: #212121;
    margin: 1.5rem 0;
}
.ns-case-show__loc svg {
    width: 1.375rem;
    height: 1.375rem;
    margin-right: .5rem;
    flex-shrink: 0;
}
.ns-case-show__loc svg path {
    fill: var(--ns-primary);
}
.ns-case-show__title {
    margin: 0 0 1.25rem;
    font-size: 4.5rem;
    line-height: 1.15;
    font-weight: 700;
    color: #212121;
}
.ns-case-show__tags {
    margin: 0 0 3.125rem;
    font-size: 1.125rem;
    font-weight: 300;
    color: #616161;
}
.ns-case-show__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 5.625rem;
}
.ns-case-show__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .9375rem;
    padding: 1.25rem 3.125rem;
    border-radius: 5rem;
    border: 1px solid #212121;
    font-size: 1.125rem;
    color: #212121;
    white-space: nowrap;
    transition: all .5s ease;
    text-decoration: none;
}
.ns-case-show__btn svg {
    width: .9375rem;
    height: .9375rem;
}
.ns-case-show__btn svg path {
    fill: #212121;
    transition: all .5s ease;
}
.ns-case-show__btn:hover {
    color: #fff;
    background: var(--ns-primary);
    border-color: var(--ns-primary);
}
.ns-case-show__btn:hover svg path {
    fill: #fff;
}
.ns-case-show__scan {
    display: inline-block;
    vertical-align: top;
}
.ns-case-show__btn--scan {
    position: relative;
    overflow: visible;
}
.ns-case-show__scan-pop {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 1rem);
    transform: translateX(-50%) translateY(.375rem);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: #fff;
    padding:1rem 0rem;
    border-radius: .875rem;
    box-shadow: 0 .75rem 2.25rem rgba(15, 23, 42, .16);
    transition: opacity .35s ease, transform .35s ease, visibility .35s ease;
    z-index: 30;
    width: max-content;
    max-width: none;
    box-sizing: border-box;
}
.ns-case-show__scan-pop::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -.5rem;
    width: 1rem;
    height: 1rem;
    margin-left: -.5rem;
    background: #fff;
    transform: rotate(45deg);
    box-shadow: .2rem .2rem .375rem rgba(15, 23, 42, .08);
}
.ns-case-show__scan-pop img {
    display: block;
    width: 17.5rem;
    height: 12.5rem;
    max-width: none;
    max-height: 12.5rem;
    object-fit: contain;
}
.ns-case-show__scan:hover .ns-case-show__scan-pop,
.ns-case-show__btn--scan:focus .ns-case-show__scan-pop,
.ns-case-show__btn--scan:focus-within .ns-case-show__scan-pop {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}
.ns-case-show__ewm-box {
    display: flex;
    align-items: center;
    gap: 3.125rem;
    margin-bottom: 2.5rem;
}
.ns-case-show__ewm {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.ns-case-show__ewm img {
    mix-blend-mode: darken;
    max-width: 7.8125rem;
    max-height: 7.8125rem;
    display: block;
    margin: 10px;
}
.ns-case-show__ewm > svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.ns-case-show__ewm > svg path {
    stroke: #212121;
    fill: none;
}
.ns-case-show__ewm::before,
.ns-case-show__ewm::after {
    content: '';
    display: block;
    position: absolute;
    left: 1px;
    right: 1px;
    height: 62%;
    z-index: 1;
    border-radius: .9375rem;
}
.ns-case-show__ewm::before {
    bottom: 100%;
    background: linear-gradient(to bottom, rgba(3, 110, 184, 0), var(--ns-primary));
}
.ns-case-show__ewm::after {
    top: 100%;
    background: linear-gradient(to top, rgba(3, 110, 184, 0), var(--ns-primary));
}
.ns-case-show__ewm.is-active::before {
    transform: translateY(270%);
    transition: transform 1.5s;
}
.ns-case-show__ewm.is-active::after {
    transition: transform 1.5s 1.5s;
    transform: translateY(-270%);
}
.ns-case-show__ewm-tip {
    display: flex;
    align-items: center;
    gap: .625rem;
    animation: ns-case-bounce 1.6s infinite;
    font-size: 1rem;
    font-weight: 300;
    color: #212121;
}
.ns-case-show__ewm-tip svg {
    width: 2rem;
    height: 2rem;
    transform: rotate(270deg) scaleX(-1);
    flex-shrink: 0;
}
.ns-case-show__ewm-tip svg path {
    fill: #212121;
}
.ns-case-show__ewm-tip p {
    margin: 0;
    color: #212121;
}
.ns-case-show__contact-label {
    display: block;
    font-size: 1rem;
    font-weight: 300;
    color: #696c6e;
    margin-bottom: .5rem;
}
.ns-case-show__contact-phone {
    margin: 0;
    font-size: 2.5rem;
    font-family: 'Barlow-bold', sans-serif;
    color: #212121;
    line-height: 1.3;
}
.ns-case-show__contact-phone span + span {
    margin-left: 1.5rem;
}
.ns-case-show__hero-right {
    position: absolute;
    right: 0;
    top: 21%;
    width: 52%;
    z-index: 1;
}
.ns-case-show__hero-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
.ns-case-show__hero-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 16rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .72);
    font-size: 3rem;
}

.ns-case-show__sec-head p {
    margin: 0 0 2.25rem;
    font-size: 1rem;
    color: #212121;
}
.ns-case-show__sec-head h2 {
    margin: 0;
    font-size: 5rem;
    line-height: 1.1;
    color: #212121;
    font-weight: 700;
}
.ns-case-show__section {
    margin-bottom: 0;
}
.ns-case-show__section--intro {
    padding: 4.5rem 0 1rem;
}
.ns-case-show__intro-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.875rem;
}
.ns-case-show__intro-card {
    position: relative;
    padding: 2rem 2.25rem 2.25rem;
    border-radius: .75rem;
    background: linear-gradient(145deg, #f8fbff 0%, #fff 55%);
    border: 1px solid rgba(3, 110, 184, .12);
    box-shadow: 0 .625rem 2rem rgba(3, 110, 184, .06);
    overflow: hidden;
}
.ns-case-show__intro-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: .25rem;
    height: 100%;
    background: linear-gradient(180deg, var(--ns-primary) 0%, rgba(3, 110, 184, .35) 100%);
}
.ns-case-show__intro-label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: .35rem .875rem;
    border-radius: 999px;
    background: rgba(3, 110, 184, .08);
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--ns-primary);
}
.ns-case-show__intro-val {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: #333;
    word-break: break-word;
}
.ns-case-show__section--devices .ns-case-show__sec-head {
    padding: 6.25rem 0 3.125rem;
}
.ns-case-show__visual-flex {
    display: flex;
    align-items: flex-end;
    gap: 2rem;
}
.ns-case-show__type {
    width: 100%;
    display: flex;
    align-items: flex-end;
    gap: 6.25rem;
}
.ns-case-show__type > i {
    font-size: 16.25rem;
    font-weight: 700;
    font-style: normal;
    text-transform: capitalize;
    text-shadow: -1px -1px 0 #828282, 1px -1px 0 #828282, -1px 1px 0 #828282, 1px 1px 0 #828282;
    color: #fff;
    line-height: 1;
}
.ns-case-show__type-box {
    display: flex;
    align-items: center;
    gap: 6.25rem;
    font-weight: 300;
}
.ns-case-show__type-box p {
    margin: 0 0 1.25rem;
    font-size: 1.625rem;
    color: #000;
}
.ns-case-show__type-box span {
    display: block;
    margin-bottom: 3.125rem;
    font-size: 1rem;
    color: #676767;
}
.ns-case-show__type-size {
    margin-bottom: 0 !important;
    font-size: 1rem !important;
    color: #000 !important;
    text-transform: uppercase;
}
.ns-case-show__colors {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 37.125rem;
    flex-shrink: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .9375rem;
}
.ns-case-show__colors li {
    min-height: 13.125rem;
    border-radius: .625rem;
    border: 1px solid #dfdfdf;
    position: relative;
    transition: all .5s ease;
}
.ns-case-show__colors li:hover {
    transform: scale(1.05) rotate(.1deg);
}
.ns-case-show__color-txt {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 1.875rem;
    font-size: .875rem;
    font-weight: 300;
    line-height: 1.625rem;
    color: #241e4a;
}
.ns-case-show__color-txt.is-light {
    color: #fff;
}
.ns-case-show__color-txt p {
    margin: 0;
}
.ns-case-show__color-txt span {
    display: block;
}
.ns-case-show__devices {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: flex-end;
    flex-wrap: nowrap;
    gap: 5rem;
    user-select: none;
}
.ns-case-show__devices li {
    flex: 1;
    min-width: 0;
}
.ns-case-show__devices img {
    width: 100%;
    height: auto;
    display: block;
}
.ns-case-show__rich {
    font-size: 1rem;
    line-height: 1.85;
    color: #333;
    padding: 4rem 0;
}
.ns-case-show__rich p,
.ns-case-show__rich li,
.ns-case-show__rich td,
.ns-case-show__rich th {
    color: #616161;
    font-size: 1rem;
    line-height: 1.875rem;
}
.ns-case-show__rich p {
    margin: 0 0 1em;
}
.ns-case-show__rich h1,
.ns-case-show__rich h2,
.ns-case-show__rich h3,
.ns-case-show__rich h4,
.ns-case-show__rich h5,
.ns-case-show__rich h6 {
    color: #212121;
    line-height: 1.4;
    margin: 1.5em 0 .75em;
}
.ns-case-show__rich ul,
.ns-case-show__rich ol {
    margin: 0 0 1em;
    padding-left: 1.5em;
}
.ns-case-show__rich table {
    max-width: 100%;
    border-collapse: collapse;
    margin: 0 0 1.5em;
}
.ns-case-show__rich table td,
.ns-case-show__rich table th {
    border: 1px solid #ddd;
    padding: 6px 8px;
    font-size: .875rem;
}
.ns-case-show__rich img {
    max-width: 100%;
    height: auto;
}
.ns-case-show__notice {
    font-size: 1rem;
    font-weight: 300;
    color: #838383;
    line-height: 2.125rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid #e6e6e5;
}
.ns-case-show__notice p {
    margin: 0;
}
.ns-case-show__related {
    padding: 7.4375rem 0;
    border-top: 0;
}
.ns-case-show__related.ns-inner-pic--case {
    border-top: 0;
    border-bottom: 0;
}
.ns-case-show__rel-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 4.375rem;
}
.ns-case-show__rel-head .ns-case-title h2 {
    margin: 0 0 1.25rem;
    font-size: 3.75rem;
}
.ns-case-show__rel-more {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    font-size: 1rem;
    color: #212121;
    text-decoration: none;
    white-space: nowrap;
    transition: color .3s ease;
}
.ns-case-show__rel-more svg {
    width: 2rem;
    height: 2rem;
    padding: .5rem;
    background: #fff;
    border-radius: 50%;
    box-sizing: border-box;
}
.ns-case-show__rel-more svg path {
    fill: #020202;
}
.ns-case-show__rel-more:hover {
    color: var(--ns-primary);
}
@media (max-width: 1199px) {
    .ns-case-show__hero-flex {
        flex-direction: column;
        align-items: flex-start;
        min-height: 0;
        padding: 2rem 0 4rem;
    }
    .ns-case-show__hero-left {
        width: 100%;
        padding: 2rem 0 0;
    }
    .ns-case-show__hero-right {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        margin-top: 2rem;
    }
    .ns-case-show__title {
        font-size: 3rem;
    }
    .ns-case-show__sec-head h2 {
        font-size: 3rem;
    }
    .ns-case-show__visual-flex {
        flex-wrap: wrap;
    }
    .ns-case-show__type {
        flex-wrap: wrap;
        gap: 2rem;
    }
    .ns-case-show__type > i {
        font-size: 8rem;
    }
    .ns-case-show__type-box {
        flex-wrap: wrap;
        gap: 2rem;
    }
    .ns-case-show__devices {
        flex-wrap: wrap;
        gap: 2rem;
    }
    .ns-case-show__ewm-box {
        display: none;
    }
    .ns-case-show__rel-head {
        flex-wrap: wrap;
    }
}
@media (max-width: 767px) {
    .ns-case-show__hero {
        min-height: 0;
    }
    .ns-case-show__title {
        font-size: 2rem;
    }
    .ns-case-show__actions {
        margin-bottom: 2rem;
    }
    .ns-case-show__btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    .ns-case-show__contact-phone {
        font-size: 1.25rem;
    }
    .ns-case-show__body {
        padding-top: 3rem;
    }
    .ns-case-show__section--intro {
        padding: 2.5rem 0 .5rem;
    }
    .ns-case-show__intro-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .ns-case-show__intro-card {
        padding: 1.5rem 1.375rem 1.625rem;
    }
    .ns-case-show__sec-head h2 {
        font-size: 2rem;
    }
    .ns-case-show__related {
        padding: 4rem 0;
    }
}

/* Product detail show_product / list_fangan_detail */
.ns-product-detail {
    padding: 2.5rem 0 0;
    background: none;
}
.ns-product-detail__hero {
    display: flex;
    align-items: flex-start;
    gap: 3.75rem;
    padding: 0 0 3rem;
    background: none;
    border-radius: 0;
    box-shadow: none;
}
.ns-product-detail__media {
    flex: 0 0 33.333%;
    width: 33.333%;
    max-width: 33.333%;
    flex-shrink: 0;
}
.ns-product-detail__img.img_db::after {
    padding-top: 75%;
}
.ns-product-detail__img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
}
.ns-product-detail__info {
    flex: 1;
    min-width: 0;
    padding-top: .5rem;
}
.ns-product-detail__title {
    margin: 0 0 1.75rem;
    font-size: 2rem;
    line-height: 1.35;
    font-weight: 700;
    color: var(--ns-title);
}
.ns-product-detail__meta {
    margin-bottom: 1.25rem;
}
.ns-product-detail__meta:last-of-type {
    margin-bottom: 2rem;
}
.ns-product-detail__label {
    display: block;
    margin-bottom: .5rem;
    font-size: .9375rem;
    line-height: 1.5;
    font-weight: 600;
    color: var(--ns-primary);
}
.ns-product-detail__val {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--ns-text);
}
.ns-product-detail__consult {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 9.375rem;
    height: 3rem;
    padding: 0 2rem;
    border-radius: .375rem;
    background: var(--ns-primary);
    color: #fff !important;
    font-size: 1rem;
    font-weight: 600;
    transition: background .3s;
}
.ns-product-detail__consult:hover {
    background: var(--ns-primary-dark);
    color: #fff !important;
}
.ns-product-detail__body {
    margin-top: 2.5rem;
    padding: 3.75rem 0 4.5rem;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
}
.ns-product-detail > .ns-container:last-of-type {
    padding-bottom: 4.5rem;
}
.ns-product-detail__hd {
    margin: 0 0 2rem;
    padding-bottom: 0;
    border-bottom: none;
    font-size: 1.75rem;
    line-height: 1.4;
    font-weight: 700;
    color: var(--ns-title);
    text-align: center;
}
.ns-product-detail__content {
    color: var(--ns-text);
    font-size: 1rem;
    line-height: 1.875;
    text-align: left;
}
.ns-product-detail__content p {
    margin: 0 0 1em;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}
.ns-product-detail__content img {
    max-width: 100%;
    height: auto;
}
.ns-product-detail__content table {
    width: auto;
    max-width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    text-align: left;
}
.ns-product-detail__content table td,
.ns-product-detail__content table th {
    border: 1px solid #ddd;
    padding: .625rem .875rem;
    font-size: .9375rem;
    line-height: 1.6;
    vertical-align: top;
}
.ns-product-detail__content table th {
    background: #f7f8fc;
    font-weight: 600;
    white-space: nowrap;
}
.ns-product-detail__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--ns-border);
}
.ns-product-detail__back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 9.375rem;
    height: 2.8125rem;
    border-radius: .625rem;
    background: transparent;
    border: 1px solid var(--ns-primary);
    color: var(--ns-primary) !important;
    font-size: 1rem;
    transition: color .3s, border-color .3s, background .3s;
}
.ns-product-detail__back:hover {
    background: rgba(111, 117, 214, .08);
    border-color: var(--ns-primary-dark);
    color: var(--ns-primary-dark) !important;
}
.ns-product-detail__next {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-left: auto;
    color: #313131;
    font-size: 1rem;
}
.ns-product-detail__next i {
    font-size: 1.875rem;
    color: var(--ns-primary);
}

/* History timeline n_lc */
.ns-inner-history {
    padding: var(--ns-pad-y-md) 0 var(--ns-pad-y);
}
.ns-history-head {
    text-align: center;
    margin-bottom: 3.75rem;
}
.ns-history-head h3 {
    margin: 0;
    font-size: 2.875rem;
    color: var(--ns-title);
    font-weight: 700;
    line-height: 1.2;
}
.ns-history-hero {
    position: relative;
    z-index: 5;
}
.ns-history-hero .ns-history-hero__pic {
    display: block;
    width: 100%;
    height: 31.25rem;
    max-width: none;
    object-fit: cover;
}
.ns-history-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: linear-gradient(to top, rgba(111, 117, 214, .55), transparent);
    pointer-events: none;
}
.ns-history-hero__cloud {
    opacity: .5;
    position: absolute;
    inset: 0;
    z-index: 2;
    animation: ns-history-cloud 30s linear infinite;
    pointer-events: none;
}
html:not(.ns-style001):not(.ns-style003):not(.ns-style004) .ns-history-hero__cloud {
    background: url(../img/style002/cloundy.png) repeat-x left center;
}
@keyframes ns-history-cloud {
    from { background-position: 1920px 100%; }
    to { background-position: 0 100%; }
}
.ns-history-hero__txt {
    position: absolute;
    left: 6.625rem;
    top: 5.5rem;
    z-index: 9;
    width: 26.25rem;
    height: 30.9375rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3.5rem 3.125rem;
}
html:not(.ns-style001):not(.ns-style003):not(.ns-style004) .ns-history-hero__txt {
    background: url(../img/style002/licheng_txt.jpg) center no-repeat;
}
.ns-history-hero__num {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}
.ns-history-hero__num span {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
}
.ns-history-hero__txt h5 {
    margin: .5rem 0 0;
    font-size: 2rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.3;
}
.ns-history-hero__range {
    margin: 0;
    font-size: 2rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.ns-history-filter {
    margin-top: 2rem;
    background: #fff;
    border-radius: .75rem;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 0 32px rgba(52, 113, 225, .1);
}
.ns-history-filter__group ul {
    list-style: none;
    margin: .5rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.ns-history-filter__group li a {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid #dce0e8;
    font-size: .8125rem;
    color: #616161;
}
.ns-history-filter__group li.active a,
.ns-history-filter__group li a:hover {
    border-color: var(--ns-primary);
    color: var(--ns-primary);
}
.ns-history-list {
    position: relative;
    z-index: 1;
    padding: var(--ns-pad-y-md) 0 var(--ns-pad-y-sm);
}
.ns-history-list::before {
    content: "";
    display: block;
    width: 2px;
    height: 100%;
    background: #e5e5e5;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}
.ns-history-list ul {
    list-style: none;
    margin: 0;
    padding: 3rem 0 0;
    position: relative;
    z-index: 3;
}
.ns-history-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    column-gap: 2.875rem;
    align-items: start;
}
.ns-history-item + .ns-history-item {
    margin-top: 3.75rem;
}
.ns-history-item__year {
    grid-column: 1;
    font-size: 3.75rem;
    line-height: 1;
    color: var(--ns-primary);
    font-weight: 700;
}
.ns-history-item__dot {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    width: 18px;
    height: 18px;
    margin-top: 1.75rem;
    border-radius: 50%;
    border: 3px solid var(--ns-primary);
    background: #fff;
}
.ns-history-item__txt {
    grid-column: 3;
    overflow: hidden;
}
.ns-history-item:nth-child(even) .ns-history-item__year {
    grid-column: 3;
}
.ns-history-item:nth-child(even) .ns-history-item__txt {
    grid-column: 1;
}
.ns-history-item__con {
    font-size: 1.0625rem;
    line-height: 2.5rem;
    color: #414141;
    max-height: 7.5rem;
    overflow: hidden;
}
.ns-history-item__con p {
    margin: 0;
    white-space: pre-line;
}
.ns-history-item__txt.is-open .ns-history-item__con {
    max-height: none;
    overflow: visible;
}
.ns-history-item:nth-child(odd) .ns-history-item__year {
    text-align: right;
}
.ns-history-item:nth-child(odd) .ns-history-item__txt {
    text-align: left;
}
.ns-history-item:nth-child(even) .ns-history-item__year {
    text-align: left;
}
.ns-history-item:nth-child(even) .ns-history-item__txt {
    text-align: right;
}
.ns-history-item__toggle {
    margin-top: 1rem;
    width: 26px;
    height: 26px;
    padding: 0;
    border: 1px solid #97999a;
    border-radius: 50%;
    background: #fff;
    color: #97999a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color .3s, background .3s, color .3s, transform .3s;
}
.ns-history-item__toggle:hover,
.ns-history-item__txt.is-open .ns-history-item__toggle {
    color: #fff;
    border-color: var(--ns-primary);
    background: var(--ns-primary);
}
.ns-history-item__txt.is-open .ns-history-item__toggle i {
    transform: rotate(180deg);
}
.ns-history-item__toggle.is-hidden {
    display: none;
}
.ns-history-pager { margin-top: 2rem; text-align: center; }
.ns-history-pager .pager { margin: 0; }

/* Partner list n_huoban（对齐 bjxxtech partner 卡片） */
.ns-inner-partner {
    padding: var(--ns-pad-y-md) 0 var(--ns-pad-y);
    overflow: hidden;
}
.ns-partner-list-head {
    color: var(--ns-title);
    font-size: 2.5rem;
    line-height: 1.5;
    font-weight: 700;
    text-align: center;
    margin: 0 0 2.5rem;
}
.ns-partner-filter {
    background: #fff;
    border-radius: .75rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.875rem;
    box-shadow: 0 0 32px rgba(52, 113, 225, .1);
}
.ns-partner-filter__group { margin-bottom: .75rem; font-size: .875rem; }
.ns-partner-filter__group:last-child { margin-bottom: 0; }
.ns-partner-filter__group ul {
    list-style: none; margin: .5rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px;
}
.ns-partner-filter__group li a {
    display: inline-block; padding: 4px 12px; border-radius: 4px; border: 1px solid #dce0e8;
    font-size: .8125rem; color: #616161;
}
.ns-partner-filter__group li.active a,
.ns-partner-filter__group li a:hover {
    border-color: var(--ns-primary); color: var(--ns-primary);
}
.ns-partner-grid {
    list-style: none; margin: 0; padding: 0;
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 2rem 1.25rem;
}
.ns-partner-card a {
    display: block; text-align: center; color: inherit; text-decoration: none;
}
.ns-partner-card__img {
    position: relative; width: 11.25rem; max-width: 100%; margin: 0 auto;
}
.ns-partner-card__ring {
    position: absolute;
    top: -.625rem; right: -.625rem; bottom: -.625rem; left: -.625rem;
    border-radius: 50%;
    border: 1px dashed rgba(111, 117, 214, .35);
    opacity: 0;
    transition: opacity .5s;
    pointer-events: none;
}
.ns-partner-card a:hover .ns-partner-card__ring {
    opacity: 1;
    animation: ns-partner-ring-spin 18s linear infinite;
}
@keyframes ns-partner-ring-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.ns-partner-card__pic {
    border-radius: 50%; overflow: hidden; background: #fff;
    box-shadow: 0 8px 24px rgba(34, 34, 82, .08);
}
.ns-partner-card__pic::after { padding-top: 100%; }
.ns-partner-card__pic img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 78%;
    max-height: 78%;
    width: auto;
    height: auto;
    object-fit: contain;
}
.ns-partner-card h5 {
    margin: 2rem 0 0;
    font-size: 1.25rem;
    line-height: 1.25;
    color: #0c0c0c;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ns-partner-card a:hover h5 { color: var(--ns-primary); }
.ns-partner-pager { margin-top: 2.5rem; }
.ns-partner-pager .pager { margin: 0; text-align: center; }
.ns-partner-pager .pagination {
    display: flex; flex-wrap: wrap; justify-content: center; gap: .625rem;
    margin: 0; padding: 0; list-style: none;
}
.ns-partner-pager .pagination > li { display: block; }
.ns-partner-pager .pagination > li > a,
.ns-partner-pager .pagination > li > span {
    display: flex; align-items: center; justify-content: center;
    min-width: 2.8125rem; height: 2.8125rem; padding: 0 1rem;
    font-size: .875rem; color: #3a3a3a; border-radius: .375rem;
    border: 1px solid #c6cfda; background: #fff; transition: all .5s;
}
.ns-partner-pager .pagination > .active > a,
.ns-partner-pager .pagination > .active > span {
    border-color: var(--ns-primary); background: var(--ns-primary); color: #fff;
}
.ns-partner-pager .pagination > li > a:hover { border-color: var(--ns-primary); color: var(--ns-primary); }
.ns-partner-pager .loadmore-tips { color: #727272; font-size: .875rem; }

/* Job list n_zhaopin（对齐 imdetek join/zpxx） */
.ns-inner-job {
    padding: var(--ns-pad-y-md) 0 var(--ns-pad-y);
}
.ns-job-head {
    color: #1f1f1f;
    font-size: 2.5rem;
    line-height: 1.5;
    font-weight: 700;
    text-align: center;
    margin: 0 0 2.5rem;
}
.ns-job-filter {
    background: #fff;
    border-radius: .75rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.875rem;
}
.ns-job-filter__group { margin-bottom: .75rem; font-size: .875rem; }
.ns-job-filter__group:last-child { margin-bottom: 0; }
.ns-job-filter__group ul {
    list-style: none; margin: .5rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px;
}
.ns-job-filter__group li a {
    display: inline-block; padding: 4px 12px; border-radius: 4px; border: 1px solid #dce0e8;
    font-size: .8125rem; color: #616161;
}
.ns-job-filter__group li.active a,
.ns-job-filter__group li a:hover {
    border-color: #1c509c; color: #1c509c;
}
.ns-job-list {
    display: grid;
    gap: 1rem;
    margin: 0;
}
.ns-job-item {
    margin: 0;
    overflow: hidden;
}
.ns-job-item__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 8.125rem;
    padding: 0 4.5rem;
    cursor: pointer;
    user-select: none;
    background: #fff;
    transition: background .5s, color .5s;
}
.ns-job-item__fx {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.ns-job-item__title {
    flex-shrink: 0;
    width: 19rem;
    max-width: 30%;
    margin: 0;
    font-size: 1.375rem;
    line-height: 2.25rem;
    font-weight: 700;
    color: #1f1f1f;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color .5s;
}
.ns-job-item__meta {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .5rem;
    margin: 0;
    font-size: 1.125rem;
    line-height: 2.25rem;
    font-weight: 400;
    color: rgb(31 31 31 / 70%);
}
.ns-job-item__meta span {
    text-align: center;
    transition: color .5s;
}
.ns-job-item__toggle {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 3%;
    width: 5rem;
    height: 2.5rem;
    border-radius: 1.25rem;
    background: #f0f3f5;
    font-size: .875rem;
    line-height: 2.25rem;
    color: #1f1f1f;
    white-space: nowrap;
    transition: background .5s, color .5s;
}
.ns-job-item.is-open .ns-job-item__head {
    background: #1c509c;
}
.ns-job-item.is-open .ns-job-item__title {
    color: #fff;
}
.ns-job-item.is-open .ns-job-item__meta {
    color: rgb(215 231 255 / 70%);
}
.ns-job-item.is-open .ns-job-item__meta span {
    color: rgb(215 231 255 / 70%);
}
.ns-job-item.is-open .ns-job-item__toggle {
    background: #fff;
    color: #1c509c;
}
.ns-job-item__body {
    display: none;
    margin: 0;
    padding: 2.25rem 4.5rem 3.75rem;
    background: #1c509c;
    line-height: 2rem;
    font-size: .9375rem;
}
.ns-job-item.is-open .ns-job-item__body { display: block; }
.ns-job-item__cols {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}
.ns-job-item__cols--single .ns-job-item__col { max-width: 100%; }
.ns-job-item__col {
    flex: 1;
    min-width: 0;
}
.ns-job-item__col h6 {
    margin: 0 0 1.25rem;
    font-size: 1.125rem;
    line-height: 2.25rem;
    font-weight: 700;
    color: #fff;
}
.ns-job-item__text {
    max-height: 12.9375rem;
    overflow: auto;
    padding-right: 1.5rem;
    font-size: 1.125rem;
    line-height: 2.25rem;
    color: rgb(255 255 255 / 70%);
}
.ns-job-item__text p {
    position: relative;
    margin: 0 0 .5rem;
    padding-left: .875rem;
}
.ns-job-item__text p:last-child { margin-bottom: 0; }
.ns-job-item__text p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 2px;
    height: 2px;
    background: rgb(255 255 255 / 70%);
}
.ns-job-item__text ol,
.ns-job-item__text ul {
    margin: 0;
    padding-left: 1.25rem;
}
.ns-job-item__text li {
    margin-bottom: .5rem;
    color: rgb(255 255 255 / 70%);
}
.ns-job-item__foot {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: .6875rem;
    margin-top: 2.5rem;
}
.ns-job-item__foot a {
    max-width: 20.625rem;
    width: 100%;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #1c509c;
    font-size: 1rem;
    line-height: 2.25rem;
    border-radius: 1.5rem;
    text-decoration: none;
    transition: opacity .3s;
}
.ns-job-item__foot a:hover {
    opacity: .92;
    text-decoration: none;
}
.ns-job-item__phone {
    margin: 0;
    color: #fff;
    font-size: 1.5rem;
    line-height: 2.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}
.ns-job-item__phone p {
    margin: 0 0 0 .25rem;
    font-size: 1.875rem;
    line-height: 1;
    font-weight: 600;
    color: #fff;
}
.ns-job-pager { margin-top: 2.5rem; }
.ns-job-pager .pager { margin: 0; text-align: center; }
.ns-job-pager .pagination {
    display: flex; flex-wrap: wrap; justify-content: center; gap: .625rem;
    margin: 0; padding: 0; list-style: none;
}
.ns-job-pager .pagination > li { display: block; }
.ns-job-pager .pagination > li > a,
.ns-job-pager .pagination > li > span {
    display: flex; align-items: center; justify-content: center;
    min-width: 2.8125rem; height: 2.8125rem; padding: 0 1rem;
    font-size: .875rem; color: #3a3a3a; border-radius: .375rem;
    border: 1px solid #c6cfda; background: #fff; transition: all .5s;
}
.ns-job-pager .pagination > .active > a,
.ns-job-pager .pagination > .active > span {
    border-color: #1c509c; background: #1c509c; color: #fff;
}
.ns-job-pager .pagination > li > a:hover { border-color: #1c509c; color: #1c509c; }
@media (max-width: 1199px) {
    .ns-job-item__head { padding: 0 2rem; }
    .ns-job-item__body { padding: 2rem 2rem 3rem; }
    .ns-job-item__title { width: 14rem; max-width: 28%; }
}
@media (max-width: 991px) {
    .ns-job-item__head {
        flex-wrap: wrap;
        min-height: 0;
        padding: 1.25rem 1.25rem;
    }
    .ns-job-item__fx {
        flex-direction: column;
        align-items: flex-start;
        gap: .5rem;
        width: calc(100% - 6rem);
    }
    .ns-job-item__title {
        width: 100%;
        max-width: 100%;
        white-space: normal;
    }
    .ns-job-item__meta {
        width: 100%;
        grid-template-columns: 1fr;
    }
    .ns-job-item__meta span { text-align: left; }
    .ns-job-item__toggle { margin-left: auto; }
    .ns-job-item__cols { flex-direction: column; gap: 1.5rem; }
}
@media (max-width: 575px) {
    .ns-job-head { font-size: 1.75rem; margin-bottom: 1.5rem; }
    .ns-job-item__foot { flex-direction: column; }
    .ns-job-item__phone { font-size: 1.125rem; }
    .ns-job-item__phone p { font-size: 1.375rem; }
}

/* FAQ list — 常见问题手风琴 */
.ns-inner-qa {
    padding: var(--ns-pad-y-md) 0 var(--ns-pad-y);
}
.ns-qa-filter {
    background: #fff;
    border-radius: .75rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.875rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}
.ns-qa-filter__group { margin-bottom: .75rem; font-size: .875rem; }
.ns-qa-filter__group:last-child { margin-bottom: 0; }
.ns-qa-filter__group ul {
    list-style: none; margin: .5rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px;
}
.ns-qa-filter__group li a {
    display: inline-block; padding: 4px 12px; border-radius: 999px; border: 1px solid #dce0e8;
    font-size: .8125rem; color: #616161; transition: all .25s;
}
.ns-qa-filter__group li.active a,
.ns-qa-filter__group li a:hover {
    border-color: var(--ns-primary); color: var(--ns-primary);
}
.ns-qa-list {
    display: grid;
    gap: 1rem;
}
.ns-qa-item {
    background: #fff;
    border-radius: .75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
    overflow: hidden;
    transition: box-shadow .2s;
}
.ns-qa-item.is-open {
    box-shadow: 0 4px 16px rgba(3, 110, 184, .08);
}
.ns-qa-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: 1rem 1.25rem;
    cursor: pointer;
    user-select: none;
}
.ns-qa-mark {
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .8125rem;
    line-height: 1;
}
.ns-qa-mark--q {
    background: rgba(3, 110, 184, .1);
    color: var(--ns-primary);
}
.ns-qa-mark--a {
    background: rgba(98, 98, 139, .1);
    color: var(--ns-text-soft);
    margin-top: .125rem;
}
.ns-qa-question__title {
    margin: 0;
    flex: 1;
    min-width: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--ns-title);
}
.ns-qa-question__toggle {
    flex-shrink: 0;
    font-size: 1.125rem;
    color: #999;
    transition: transform .2s, color .2s;
}
.ns-qa-item.is-open .ns-qa-question__toggle {
    transform: rotate(180deg);
    color: var(--ns-primary);
}
.ns-qa-answer {
    display: none;
    border-top: 1px solid #f0f2f5;
    background: #fafbfc;
}
.ns-qa-answer__inner {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: 1rem 1.25rem 1.25rem;
}
.ns-qa-answer__content {
    flex: 1;
    min-width: 0;
    font-size: .9375rem;
    line-height: 1.7;
    color: var(--ns-text-soft);
}
.ns-qa-answer__content p { margin: 0 0 .75em; }
.ns-qa-answer__content p:last-child { margin-bottom: 0; }
.ns-qa-answer__content img { max-width: 100%; height: auto; }
.ns-qa-answer__content a { color: var(--ns-primary); }
.ns-qa-answer__empty {
    margin: 0;
    color: #999;
}
.ns-qa-pager {
    margin-top: 2rem;
    text-align: center;
}
.ns-qa-pager .pager { margin: 0; }

/* Payment methods page */
.ns-inner-pay {
    padding: var(--ns-pad-y-md) 0 var(--ns-pad-y);
}
.ns-pay-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.ns-pay-section + .ns-pay-section {
    margin-top: 2.75rem;
    padding-top: 2.75rem;
    border-top: 1px solid rgba(0, 0, 0, .06);
}
.ns-pay-section__head {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    border-radius: .75rem;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}
.ns-pay-section--public .ns-pay-section__head {
    background: linear-gradient(90deg, rgba(3, 110, 184, .1) 0%, rgba(3, 110, 184, .04) 100%);
    border: 1px solid rgba(3, 110, 184, .16);
}
.ns-pay-section--private .ns-pay-section__head {
    background: linear-gradient(90deg, rgba(0, 163, 155, .1) 0%, rgba(0, 163, 155, .04) 100%);
    border: 1px solid rgba(0, 163, 155, .16);
}
.ns-pay-section__badge {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.ns-pay-section__title {
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 5rem;
    padding: 1rem 1.375rem;
    border-radius: 0;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .08em;
}
.ns-pay-section--public .ns-pay-section__title {
    color: #fff;
    background: linear-gradient(135deg, #036eb8 0%, #0288d1 100%);
    box-shadow: inset -1px 0 0 rgba(255, 255, 255, .15);
}
.ns-pay-section--private .ns-pay-section__title {
    color: #fff;
    background: linear-gradient(135deg, #00897b 0%, #00a39b 100%);
    box-shadow: inset -1px 0 0 rgba(255, 255, 255, .15);
}
.ns-pay-section__desc {
    flex: 1;
    min-width: 12rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .875rem 1.375rem;
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--ns-title);
}
.ns-pay-section__desc-icon {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.0625rem;
}
.ns-pay-section--public .ns-pay-section__desc-icon {
    color: #036eb8;
    background: rgba(3, 110, 184, .14);
}
.ns-pay-section--private .ns-pay-section__desc-icon {
    color: #00897b;
    background: rgba(0, 163, 155, .14);
}
.ns-pay-section__desc-text {
    flex: 1;
    min-width: 0;
}
.ns-pay-section--private .ns-pay-grid {
    grid-template-columns: repeat(3, 1fr);
}
.ns-pay-card {
    position: relative;
    overflow: hidden;
    border-radius: .75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
    padding: 1.5rem;
    height: 100%;
    transition: box-shadow .2s, transform .2s;
    border: 1px solid transparent;
    border-top-width: 3px;
    --ns-pay-accent: var(--ns-primary);
    --ns-pay-accent-soft: rgba(3, 110, 184, .1);
    --ns-pay-accent-border: rgba(3, 110, 184, .18);
    --ns-pay-bg: #fff;
}
.ns-pay-card--bank {
    --ns-pay-accent: #f57c00;
    --ns-pay-accent-soft: rgba(245, 124, 0, .12);
    --ns-pay-accent-border: rgba(245, 124, 0, .2);
    --ns-pay-bg: #fff8f1;
    background: linear-gradient(165deg, #fffaf4 0%, #fff3e6 100%);
    border-color: rgba(245, 124, 0, .14);
    border-top-color: #f57c00;
}
.ns-pay-card--alipay {
    --ns-pay-accent: #1677ff;
    --ns-pay-accent-soft: rgba(22, 119, 255, .12);
    --ns-pay-accent-border: rgba(22, 119, 255, .2);
    --ns-pay-bg: #f3f8ff;
    background: linear-gradient(165deg, #f8fbff 0%, #edf4ff 100%);
    border-color: rgba(22, 119, 255, .14);
    border-top-color: #1677ff;
}
.ns-pay-card--wechat {
    --ns-pay-accent: #07c160;
    --ns-pay-accent-soft: rgba(7, 193, 96, .12);
    --ns-pay-accent-border: rgba(7, 193, 96, .2);
    --ns-pay-bg: #f2fbf6;
    background: linear-gradient(165deg, #f6fdf9 0%, #eaf8f0 100%);
    border-color: rgba(7, 193, 96, .14);
    border-top-color: #07c160;
}
.ns-pay-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
    transform: translateY(-2px);
}
.ns-pay-card__head {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .875rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid var(--ns-pay-accent-border);
}
.ns-pay-card__head-main {
    flex: 1;
    min-width: 0;
}
.ns-pay-card__logo {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: .625rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    line-height: 1;
    overflow: hidden;
    background: var(--ns-pay-accent-soft);
    border: 1px solid var(--ns-pay-accent-border);
}
.ns-pay-card__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: .375rem;
    box-sizing: border-box;
}
.ns-pay-card__logo--bank,
.ns-pay-card__logo--alipay,
.ns-pay-card__logo--wechat {
    background: #fff;
}
.ns-pay-card__title {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--ns-title);
}
.ns-pay-card__body {
    font-size: .9375rem;
    line-height: 1.7;
    color: var(--ns-text-soft);
}
.ns-pay-info {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .375rem;
}
.ns-pay-info__row {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .375rem .5rem;
    border-radius: .375rem;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(255, 255, 255, .9);
}
.ns-pay-info__row--note {
    background: rgba(255, 255, 255, .72);
    border: 1px dashed var(--ns-pay-accent-border);
}
.ns-pay-info__icon {
    flex-shrink: 0;
    width: 1.375rem;
    height: 1.375rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .6875rem;
    line-height: 1;
    background: var(--ns-pay-accent-soft);
    color: var(--ns-pay-accent);
}
.ns-pay-info__icon--hint {
    background: var(--ns-pay-accent-soft);
    color: var(--ns-pay-accent);
}
.ns-pay-info__main {
    flex: 1;
    min-width: 0;
}
.ns-pay-info__text {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0 .25rem;
    line-height: 1.45;
}
.ns-pay-info__label {
    flex-shrink: 0;
    font-size: .8125rem;
    color: #8a94a6;
    white-space: nowrap;
}
.ns-pay-info__label::after {
    content: '：';
}
.ns-pay-info__value {
    flex: 1;
    min-width: 0;
    font-size: .875rem;
    line-height: 1.45;
    color: var(--ns-title);
    word-break: break-all;
}
.ns-pay-val--num {
    font-size: .9375rem;
    font-weight: 700;
    letter-spacing: .03em;
    color: var(--ns-title);
}
.ns-pay-info__row--note .ns-pay-info__value {
    font-size: .8125rem;
    color: var(--ns-text-soft);
}
.ns-pay-info__media {
    margin-top: 1rem;
    text-align: center;
}
.ns-pay-info__media img {
    max-width: 100%;
    height: auto;
    border-radius: .5rem;
}
.ns-pay-card__body p { margin: 0 0 .75em; }
.ns-pay-card__body p:last-child { margin-bottom: 0; }
.ns-pay-card__body img { max-width: 100%; height: auto; }
.ns-pay-card__body a { color: var(--ns-primary); }
.ns-pay-card__empty {
    margin: 0;
    color: #999;
}

/* Honors / qualification list n_zizhi */
.ns-inner-honors {
    position: relative;
    padding: var(--ns-pad-y-md) 0 var(--ns-pad-y);
}
.ns-honors-head {
    color: var(--ns-title);
    font-size: 2.5rem;
    line-height: 1.5;
    font-weight: 700;
    text-align: center;
    margin: 0 0 2rem;
}
.ns-honors-filter {
    background: #fff;
    border-radius: .75rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.875rem;
    box-shadow: 0 0 32px rgba(52, 113, 225, .1);
}
.ns-honors-filter__group { margin-bottom: .75rem; font-size: .875rem; }
.ns-honors-filter__group:last-child { margin-bottom: 0; }
.ns-honors-filter__group ul {
    list-style: none; margin: .5rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px;
}
.ns-honors-filter__group li a {
    display: inline-block; padding: 4px 12px; border-radius: 4px; border: 1px solid #dce0e8;
    font-size: .8125rem; color: #616161;
}
.ns-honors-filter__group li.active a,
.ns-honors-filter__group li a:hover {
    border-color: var(--ns-primary); color: var(--ns-primary);
}
.ns-honors-grid {
    list-style: none; margin: 0; padding: 0;
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1.125rem 1.625rem;
}
.ns-honor-card a {
    display: flex; flex-direction: column; gap: 2.5rem; height: 100%;
    background: rgba(255, 255, 255, .6);
    border-radius: .875rem; border: 1px solid #ebebf5;
    padding: 3.75rem 3.75rem 2.25rem;
    color: inherit; text-decoration: none;
    transition: border-color .5s, box-shadow .5s;
}
.ns-honor-card a:hover {
    border-color: var(--ns-primary);
    box-shadow: 0 8px 24px rgba(111, 117, 214, .12);
}
.ns-honor-card__img {
    height: 14.125rem; display: flex; align-items: center; justify-content: center;
}
.ns-honor-card__img img {
    max-width: 100%; max-height: 100%; width: auto; height: auto;
    object-fit: contain; display: block;
}
.ns-honor-card a p {
    color: #414141; text-align: center;
    font-size: 1.0625rem; line-height: 1.875rem; margin: 0;
}
.ns-honors-pager { margin-top: 3rem; }
.ns-honors-pager .pager { margin: 0; text-align: center; }
.ns-honors-pager .pagination {
    display: flex; flex-wrap: wrap; justify-content: center; gap: .625rem;
    margin: 0; padding: 0; list-style: none;
}
.ns-honors-pager .pagination > li { display: block; }
.ns-honors-pager .pagination > li > a,
.ns-honors-pager .pagination > li > span {
    display: flex; align-items: center; justify-content: center;
    min-width: 2.8125rem; height: 2.8125rem; padding: 0 1rem;
    font-size: .875rem; color: #3a3a3a; border-radius: .375rem;
    border: 1px solid #c6cfda; background: #fff; transition: all .5s;
}
.ns-honors-pager .pagination > .active > a,
.ns-honors-pager .pagination > .active > span {
    border-color: var(--ns-primary); background: var(--ns-primary); color: #fff;
}
.ns-honors-pager .pagination > li > a:hover { border-color: var(--ns-primary); color: var(--ns-primary); }
.ns-honors-pager .loadmore-tips { color: #727272; font-size: .875rem; }

/* Contact page */
.ns-inner-contact {
    position: relative;
    width: 100%;
    padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
    overflow: hidden;
}
.ns-inner-contact::before,
.ns-inner-contact::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.ns-inner-contact::before {
    top: 4%;
    right: -4rem;
    width: 18rem;
    height: 18rem;
    background: radial-gradient(circle, rgba(3, 110, 184, .09) 0%, transparent 68%);
}
.ns-inner-contact::after {
    bottom: 18%;
    left: -5rem;
    width: 14rem;
    height: 14rem;
    background: radial-gradient(circle, rgba(0, 163, 155, .07) 0%, transparent 70%);
}
.ns-inner-contact > .ns-container {
    position: relative;
    z-index: 1;
}
.ns-contact-stage {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.ns-contact-intro {
    max-width: 34rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}
.ns-contact-intro__tag {
    display: inline-block;
    margin-bottom: .875rem;
    color: var(--ns-primary);
    font-size: .6875rem;
    font-weight: 600;
    letter-spacing: .28em;
    line-height: 1;
}
.ns-contact-intro__title {
    margin: 0 0 .75rem;
    color: var(--ns-title);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -.02em;
}
.ns-contact-intro__lead {
    margin: 0;
    color: var(--ns-text-soft);
    font-size: 1rem;
    line-height: 1.8;
}
.ns-contact-cells {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 clamp(2.5rem, 5vw, 4rem);
}
.ns-contact-cell {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.625rem 0;
    border-bottom: 1px solid rgba(15, 23, 42, .07);
}
.ns-contact-cell--wide {
    grid-column: 1 / -1;
}
.ns-contact-cell__icon {
    flex-shrink: 0;
    width: 3.25rem;
    font-size: 2.75rem;
    line-height: 1;
    background: linear-gradient(145deg, var(--ns-primary) 0%, var(--ns-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: .92;
    transition: transform .35s ease, opacity .35s ease;
}
.ns-contact-cell:hover .ns-contact-cell__icon {
    transform: translateY(-2px) scale(1.04);
    opacity: 1;
}
.ns-contact-cell__body {
    min-width: 0;
    padding-top: .25rem;
}
.ns-contact-cell__title {
    margin: 0 0 .5rem;
    color: var(--ns-title);
    font-size: .9375rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .04em;
}
.ns-contact-cell__text {
    margin: 0;
    color: #52525f;
    font-size: 1.0625rem;
    line-height: 1.75;
    word-break: break-word;
}
.ns-contact-cell__link {
    color: var(--ns-title);
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s ease;
    font-variant-numeric: tabular-nums;
}
.ns-contact-cell__link:hover {
    color: var(--ns-primary);
}
.ns-contact-qrrow {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-top: .5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(15, 23, 42, .07);
}
.ns-contact-qrrow__head {
    flex-shrink: 0;
}
.ns-contact-qrrow__title {
    margin: 0 0 .375rem;
    color: var(--ns-title);
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.4;
}
.ns-contact-qrrow__desc {
    margin: 0;
    color: var(--ns-text-soft);
    font-size: .875rem;
    line-height: 1.6;
}
.ns-contact-qrrow__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1.75rem 2.25rem;
}
.ns-contact-qrrow__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .625rem;
}
.ns-contact-qrrow__img {
    width: 6.5rem;
    aspect-ratio: 1;
    padding: .375rem;
    background: #fff;
    box-shadow: 0 .5rem 1.5rem rgba(15, 23, 42, .06);
}
.ns-contact-qrrow__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ns-contact-qrrow__label {
    color: #616170;
    font-size: .8125rem;
    line-height: 1.4;
}
.ns-contact-qrrow__label .fa {
    margin-right: .25rem;
    color: var(--ns-primary);
}
.ns-contact-ly {
    position: relative;
    padding-top: clamp(2rem, 4vw, 3rem);
}
.ns-contact-ly__con {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: clamp(2rem, 5vw, 5rem);
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 1.25rem;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(236, 254, 255, .84) 0%, rgba(239, 246, 255, .9) 46%, rgba(224, 242, 254, .86) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .75);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, .95) inset,
        0 1.5rem 3.5rem rgba(3, 110, 184, .1);
}
.ns-contact-ly__con::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 16%, rgba(103, 232, 249, .32) 0%, transparent 38%),
        radial-gradient(circle at 88% 82%, rgba(3, 110, 184, .16) 0%, transparent 36%),
        linear-gradient(rgba(3, 110, 184, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(3, 110, 184, .045) 1px, transparent 1px);
    background-size: auto, auto, 2.25rem 2.25rem, 2.25rem 2.25rem;
    pointer-events: none;
}
.ns-contact-ly__left,
.ns-contact-form--tech {
    position: relative;
    z-index: 1;
}
.ns-contact-ly__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 24.5625rem;
    width: 100%;
    flex-shrink: 0;
}
.ns-contact-ly__left h5 {
    margin: 0 0 .875rem;
    color: var(--ns-title);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.25;
    font-weight: 700;
}
.ns-contact-ly__left p {
    margin: 0 0 2rem;
    color: var(--ns-text-soft);
    font-size: 1.0625rem;
    line-height: 1.75;
}
.ns-contact-ly__left img {
    display: block;
    max-width: 100%;
    height: auto;
    opacity: .88;
    filter: drop-shadow(0 .75rem 1.5rem rgba(3, 110, 184, .12));
}
.ns-contact-form--tech {
    width: 100%;
    max-width: 52.8125rem;
}
.ns-contact-form--tech ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}
.ns-contact-form--tech ul li p {
    color: var(--ns-title);
    font-size: 1.0625rem;
    line-height: 1.875rem;
    margin: 0 0 .5rem;
    position: relative;
    display: inline-flex;
    font-weight: 600;
}
.ns-contact-form--tech ul li p i {
    position: absolute;
    right: -.755rem;
    color: #ff6b6b;
    font-style: normal;
    font-size: 1.0625rem;
}
.ns-contact-form--tech ul li input,
.ns-contact-form--tech ul li textarea {
    border: 1px solid rgba(3, 110, 184, .16);
    border-radius: .625rem;
    width: 100%;
    padding: 0 1.5rem;
    background: rgba(255, 255, 255, .68);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--ns-title);
    font-size: 1rem;
    outline: none;
    transition: border-color .3s, background .3s, box-shadow .3s;
}
.ns-contact-form--tech ul li input {
    line-height: 4.0625rem;
    height: 4.0625rem;
}
.ns-contact-form--tech ul li textarea {
    min-height: 10.625rem;
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    line-height: 1.875rem;
    resize: vertical;
}
.ns-contact-form--tech ul li input:focus,
.ns-contact-form--tech ul li textarea:focus {
    border-color: rgba(3, 110, 184, .38);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 0 0 3px rgba(3, 110, 184, .1);
}
.ns-contact-form--tech ul li input::placeholder,
.ns-contact-form--tech ul li textarea::placeholder {
    color: rgba(100, 116, 139, .72);
}
.ns-contact-form--tech .ns-contact-form__full,
.ns-contact-form--tech .ns-contact-form__captcha,
.ns-contact-form--tech .ns-contact-form__submit {
    grid-column: 1 / -1;
}
.ns-contact-form--tech .ns-contact-form__captcha-row {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.ns-contact-form--tech .ns-contact-form__captcha-row input {
    flex: 1;
    min-width: 0;
}
.ns-contact-form--tech .ns-contact-form__captcha-row img {
    flex-shrink: 0;
    border-radius: .375rem;
    cursor: pointer;
}
.ns-contact-form--tech .ns-contact-form__submit button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: .625rem;
    background: linear-gradient(135deg, rgba(103, 232, 249, .95) 0%, var(--ns-primary) 100%);
    color: #fff;
    width: 13.1875rem;
    height: 4.0625rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform .25s, box-shadow .25s, filter .25s;
    box-shadow: 0 .75rem 1.75rem rgba(3, 110, 184, .35);
}
.ns-contact-form--tech .ns-contact-form__submit button:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: 0 1rem 2rem rgba(3, 110, 184, .42);
}
.ns-contact-form--tech .ns-contact-form__submit button:disabled {
    opacity: .65;
    cursor: not-allowed;
    transform: none;
}
.ns-contact-form--tech .ns-contact-form__submit button i {
    font-size: 1.5rem;
}

/* Contact page — card variant (page_contact01.html) */
.ns-inner-contact--card .ns-contact01-stage {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.ns-inner-contact--card .ns-contact01-intro {
    max-width: 36rem;
    margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}
.ns-inner-contact--card .ns-contact01-intro__tag {
    display: inline-block;
    margin-bottom: .875rem;
    color: var(--ns-primary);
    font-size: .6875rem;
    font-weight: 600;
    letter-spacing: .28em;
    line-height: 1;
}
.ns-inner-contact--card .ns-contact01-intro__title {
    margin: 0 0 .75rem;
    color: var(--ns-title);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -.02em;
}
.ns-inner-contact--card .ns-contact01-intro__lead {
    margin: 0;
    color: var(--ns-text-soft);
    font-size: 1.0625rem;
    line-height: 1.8;
}
.ns-inner-contact--card .ns-contact01-panel {
    display: flex;
    align-items: stretch;
    gap: 0;
    border-radius: 1.375rem;
    overflow: hidden;
    background: #fff;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, .8) inset,
        0 1.25rem 3rem rgba(15, 23, 42, .07),
        0 0 0 1px rgba(15, 23, 42, .05);
}
.ns-inner-contact--card .ns-contact01-panel__main {
    flex: 1;
    min-width: 0;
    padding: clamp(1.75rem, 3.5vw, 2.5rem);
}
.ns-inner-contact--card .ns-contact01-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.ns-inner-contact--card .ns-contact01-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.375rem;
    border-radius: 1rem;
    background: linear-gradient(145deg, rgba(248, 250, 252, .95) 0%, rgba(241, 245, 249, .65) 100%);
    border: 1px solid rgba(15, 23, 42, .05);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.ns-inner-contact--card .ns-contact01-item:hover {
    transform: translateY(-2px);
    border-color: rgba(3, 110, 184, .14);
    box-shadow: 0 .75rem 1.75rem rgba(3, 110, 184, .08);
}
.ns-inner-contact--card .ns-contact01-item--wide {
    grid-column: 1 / -1;
}
.ns-inner-contact--card .ns-contact01-item__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: .875rem;
    font-size: 1.375rem;
    color: #fff;
    background: linear-gradient(145deg, var(--ns-primary) 0%, var(--ns-accent) 100%);
    box-shadow: 0 .5rem 1rem rgba(3, 110, 184, .22);
}
.ns-inner-contact--card .ns-contact01-item__body {
    min-width: 0;
    padding-top: .125rem;
}
.ns-inner-contact--card .ns-contact01-item__label {
    display: block;
    margin-bottom: .375rem;
    color: #64748b;
    font-size: .8125rem;
    font-weight: 600;
    letter-spacing: .06em;
    line-height: 1.4;
}
.ns-inner-contact--card .ns-contact01-item__value {
    display: block;
    color: var(--ns-title);
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.65;
    word-break: break-word;
}
.ns-inner-contact--card .ns-contact01-item__link {
    text-decoration: none;
    transition: color .2s ease;
    font-variant-numeric: tabular-nums;
}
.ns-inner-contact--card .ns-contact01-item__link:hover {
    color: var(--ns-primary);
}
.ns-inner-contact--card .ns-contact01-panel__aside {
    flex-shrink: 0;
    width: min(100%, 17.5rem);
    padding: clamp(1.75rem, 3.5vw, 2.25rem);
    background: linear-gradient(180deg, rgba(3, 110, 184, .04) 0%, rgba(0, 163, 155, .06) 100%);
    border-left: 1px solid rgba(15, 23, 42, .06);
}
.ns-inner-contact--card .ns-contact01-scan {
    margin-bottom: 1.5rem;
}
.ns-inner-contact--card .ns-contact01-scan__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: .75rem;
    border-radius: .75rem;
    color: var(--ns-primary);
    font-size: 1.125rem;
    background: rgba(3, 110, 184, .1);
}
.ns-inner-contact--card .ns-contact01-scan__title {
    margin: 0 0 .375rem;
    color: var(--ns-title);
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.4;
}
.ns-inner-contact--card .ns-contact01-scan__desc {
    margin: 0;
    color: var(--ns-text-soft);
    font-size: .875rem;
    line-height: 1.6;
}
.ns-inner-contact--card .ns-contact01-qrcodes {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.ns-inner-contact--card .ns-contact01-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .625rem;
}
.ns-inner-contact--card .ns-contact01-qr__img {
    width: 6.75rem;
    aspect-ratio: 1;
    padding: .375rem;
    border-radius: .75rem;
    background: #fff;
    box-shadow: 0 .5rem 1.25rem rgba(15, 23, 42, .08);
}
.ns-inner-contact--card .ns-contact01-qr__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: .375rem;
}
.ns-inner-contact--card .ns-contact01-qr__label {
    color: #616170;
    font-size: .8125rem;
    line-height: 1.4;
    text-align: center;
}
.ns-inner-contact--card .ns-contact01-qr__label .fa {
    margin-right: .25rem;
    color: var(--ns-primary);
}

/* Download list n_prozl */
.ns-inner-dl {
    position: relative;
    padding: var(--ns-pad-y-md) 0 var(--ns-pad-y);
}
.ns-dl-tabs {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 3rem; gap: 1.5rem; flex-wrap: wrap;
}
.ns-dl-tabs h4 {
    color: var(--ns-title); font-size: 2.5rem; line-height: 1.5; font-weight: 700;
    margin: 0;
}
.ns-dl-tabs ul {
    list-style: none; margin: 0; padding: 0;
    display: flex; align-items: center; gap: .9375rem; flex-wrap: wrap;
}
.ns-dl-tabs li a {
    border: 1px solid var(--ns-primary); min-width: 8.75rem; height: 3.125rem;
    border-radius: .625rem; display: flex; align-items: center; justify-content: center;
    color: var(--ns-primary); font-size: 1.0625rem; line-height: 2.25rem;
    padding: 0 1.25rem; transition: all .5s; text-decoration: none;
}
.ns-dl-tabs li.on a,
.ns-dl-tabs li:hover a { color: #fff; background: var(--ns-primary); }

.ns-dl-filter {
    background: rgba(255,255,255,.85); border-radius: .75rem; padding: 1.25rem 1.5rem;
    margin-bottom: 1.875rem; box-shadow: 0 0 32px rgba(52, 113, 225, .08);
}
.ns-dl-filter__group { margin-bottom: .75rem; font-size: .875rem; }
.ns-dl-filter__group ul {
    list-style: none; margin: .5rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px;
}
.ns-dl-filter__group li a {
    display: inline-block; padding: 4px 12px; border-radius: 4px; border: 1px solid #dce0e8;
    font-size: .8125rem; color: #616161;
}
.ns-dl-filter__group li.active a,
.ns-dl-filter__group li a:hover { border-color: var(--ns-primary); color: var(--ns-primary); }

.ns-dl-grid {
    list-style: none; margin: 0; padding: 0;
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.1875rem 1.25rem;
}
.ns-dl-item__inner {
    border-radius: .625rem; border: 1px solid #e4ecfc; padding: 2.75rem 3rem;
    display: flex; flex-direction: column; background: rgba(255, 255, 255, .7); color: inherit;
    transition: background .3s, box-shadow .3s; height: 100%;
}
.ns-dl-item__inner:hover {
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 8px 24px rgba(52, 113, 225, .1);
}
.ns-dl-item__main {
    display: block; color: inherit; text-decoration: none; flex: 1;
}
.ns-dl-item__main:hover { color: inherit; text-decoration: none; }
.ns-dl-item h5 {
    color: #48484b; font-weight: 700; font-size: 1.375rem; line-height: 2.0625rem; margin: 0;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ns-dl-item__desc {
    margin: .625rem 0 0;
    color: #727479;
    font-size: .9375rem;
    line-height: 1.625rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ns-dl-item__file {
    display: flex; align-items: center; flex-wrap: wrap; gap: 2rem;
    margin: 1rem 0 0;
}
.ns-dl-item__file div {
    display: flex; align-items: center; gap: 3px;
    color: #414141; font-size: .875rem; line-height: 1.875rem;
}
.ns-dl-item__file div i { color: #727479; font-size: 1.125rem; }
.ns-dl-item__actions {
    display: flex; align-items: center; flex-wrap: wrap; gap: .75rem;
    margin-top: 1.5rem; position: relative; z-index: 2;
}
.ns-dl-item__btn {
    transition: all .5s; width: 2.5rem; height: 2.5rem;
    border: 1px solid #d1d2d5; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; color: inherit; text-decoration: none;
    background: #fff;
}
.ns-dl-item__icon {
    display: block;
    width: 1.375rem;
    height: 1.375rem;
    flex-shrink: 0;
}
.ns-dl-item__inner:hover .ns-dl-item__btn,
.ns-dl-item__btn:hover,
.ns-dl-item__btn:focus {
    background: var(--ns-primary); border-color: var(--ns-primary); color: #fff; text-decoration: none;
}

.ns-dl-pager { margin-top: 3rem; }
.ns-dl-pager .pager { margin: 0; text-align: center; }
.ns-dl-pager .pagination {
    display: flex; flex-wrap: wrap; justify-content: center; gap: .625rem;
    margin: 0; padding: 0; list-style: none;
}
.ns-dl-pager .pagination > li { display: block; }
.ns-dl-pager .pagination > li > a,
.ns-dl-pager .pagination > li > span {
    display: flex; align-items: center; justify-content: center;
    min-width: 2.8125rem; height: 2.8125rem; padding: 0 1rem;
    font-size: .875rem; color: #3a3a3a; border-radius: .375rem;
    border: 1px solid #c6cfda; background: #fff; transition: all .5s;
}
.ns-dl-pager .pagination > .active > a,
.ns-dl-pager .pagination > .active > span {
    border-color: var(--ns-primary); background: var(--ns-primary); color: #fff;
}
.ns-dl-pager .pagination > li > a:hover { border-color: var(--ns-primary); color: var(--ns-primary); }
.ns-dl-pager .loadmore-tips { color: #727272; font-size: .875rem; }

/* Download detail n_download show */
.ns-dl-show {
    position: relative;
    padding: var(--ns-pad-y-md) 0 var(--ns-pad-y);
}
.ns-dl-show__grid {
    display: grid;
    grid-template-columns: 1fr 19.5625rem;
    gap: 1.875rem;
    align-items: flex-start;
}
.ns-dl-show__head {
    padding-bottom: 1.75rem;
    border-bottom: 1px solid #eaedf0;
    margin-bottom: 1.5rem;
}
.ns-dl-show__title {
    margin: 0 0 1rem;
    color: #060606;
    font-size: 2rem;
    line-height: 1.25;
    font-weight: 700;
}
.ns-dl-show__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    color: #727272;
    font-size: .9375rem;
}
.ns-dl-show__meta span {
    display: inline-flex;
    align-items: center;
    gap: .375rem;
}
.ns-dl-show__meta .fa { color: #9aa0a6; }
.ns-dl-show__dlbtns {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .875rem;
    margin-top: 1.25rem;
}
.ns-dl-show__dlbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 2.875rem;
    padding: 0 1.5rem;
    border-radius: .5rem;
    background: #1e293b;
    border: 1px solid #1e293b;
    color: #fff !important;
    font-size: .9375rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: background .3s, border-color .3s, transform .2s;
}
.ns-dl-show__dlbtn:hover,
.ns-dl-show__dlbtn:focus {
    background: #0f172a;
    border-color: #0f172a;
    color: #fff !important;
    text-decoration: none !important;
    transform: translateY(-1px);
}
.ns-dl-show__dlbtn--sm {
    min-height: 2.25rem;
    padding: 0 1rem;
    font-size: .8125rem;
}
.ns-dl-show__notice {
    width: 100%;
    padding: .875rem 1rem;
    border-radius: .5rem;
    font-size: .875rem;
    line-height: 1.6;
}
.ns-dl-show__notice--warn {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
}
.ns-dl-show__pay { margin-top: .75rem; }
.ns-dl-show__summary {
    display: flex;
    gap: .875rem;
    align-items: flex-start;
    background: #f7f9fb;
    border-left: 3px solid var(--ns-primary);
    border-radius: 0 .5rem .5rem 0;
    padding: 1rem 1.25rem;
    margin-bottom: 1.75rem;
}
.ns-dl-show__summary-label {
    flex-shrink: 0;
    color: var(--ns-primary);
    font-size: .8125rem;
    font-weight: 600;
}
.ns-dl-show__summary p {
    margin: 0;
    color: #555;
    font-size: .9375rem;
    line-height: 1.75;
}
.ns-dl-show__section-title {
    margin: 0 0 1rem;
    color: #313131;
    font-size: 1.25rem;
    font-weight: 700;
}
.ns-dl-show__shots { margin-bottom: 2rem; }
.ns-dl-show__swiper {
    position: relative;
    overflow: hidden;
}
.ns-dl-show__swiper .swiper-slide {
    width: auto;
    height: 16rem;
    border-radius: .5rem;
    border: 1px solid rgba(0, 0, 0, .08);
    overflow: hidden;
    cursor: pointer;
}
.ns-dl-show__swiper .swiper-slide img {
    display: block;
    height: 100%;
    width: auto;
    max-width: none;
}
.ns-dl-show__content { margin-bottom: 2rem; }
.ns-dl-show__article {
    color: #616161;
    font-size: 1rem;
    line-height: 1.875rem;
}
.ns-dl-show__article img { max-width: 100%; height: auto; }
.ns-dl-show__copyright {
    padding: 1rem 1.25rem;
    border-radius: .5rem;
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #92400e;
    font-size: .875rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.ns-dl-show__copyright p { margin: 0 0 .5rem; }
.ns-dl-show__copyright p:last-child { margin-bottom: 0; }
.ns-dl-show__copyright a { color: #b45309; }
.ns-dl-show__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .875rem;
    margin: 1.5rem 0;
}
.ns-dl-show__action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 2.75rem;
    padding: 0 1.375rem;
    border-radius: .5rem;
    background: #1e293b;
    border: 1px solid #1e293b;
    color: #fff !important;
    font-size: .9375rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: background .3s, border-color .3s;
}
.ns-dl-show__action-btn:hover,
.ns-dl-show__action-btn:focus {
    background: #0f172a;
    border-color: #0f172a;
    color: #fff !important;
    text-decoration: none !important;
}
.ns-dl-show__action-btn span { color: #fff !important; }
.ns-dl-show__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 2rem;
    margin-top: 1rem;
    border-top: 1px solid #eaedf0;
}
.ns-dl-show__foot-back {
    min-width: 9.375rem;
    height: 2.8125rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ns-primary);
    background: transparent;
    border: 1px solid var(--ns-primary);
    border-radius: .625rem;
    font-size: 1rem;
    text-decoration: none;
}
.ns-dl-show__foot-back:hover {
    background: rgba(111, 117, 214, .08);
    color: var(--ns-primary-dark);
    border-color: var(--ns-primary-dark);
}
.ns-dl-show__foot-next {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-left: auto;
    color: #313131;
    font-size: 1rem;
    text-decoration: none;
}
.ns-dl-show__foot-next i { color: var(--ns-primary); font-size: 1.5rem; }
.ns-dl-show__pwd-modal { padding: 1rem; min-width: 280px; }
.ns-dl-show__pwd-code {
    margin-bottom: 1rem;
    padding: .75rem;
    border-radius: .5rem;
    background: #f1f5f9;
    text-align: center;
}
.ns-dl-show__donate-modal {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem .5rem 0;
}
.ns-dl-show__donate-item { text-align: center; }
.ns-dl-show__donate-label {
    margin: 0 0 .75rem;
    color: #334155;
    font-size: .9375rem;
    font-weight: 600;
}
.ns-dl-show__donate-item img {
    display: block;
    margin: 0 auto;
    border-radius: .5rem;
    border: 1px solid #e2e8f0;
}
.ns-dl-side { position: sticky; top: 8rem; }
.ns-dl-side__box {
    background: #fff;
    border-radius: .625rem;
    box-shadow: 0 0 32px rgba(52, 113, 225, .08);
    padding: 1.5rem 1.25rem;
    margin-bottom: 1.25rem;
}
.ns-dl-side__box h5 {
    margin: 0 0 1rem;
    color: #313131;
    font-size: 1.125rem;
    font-weight: 700;
}
.ns-dl-side__tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: .625rem;
}
.ns-dl-side__tag {
    display: inline-flex;
    align-items: center;
    padding: .375rem .875rem;
    border-radius: 999px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-size: .8125rem;
    text-decoration: none;
    transition: all .25s;
}
.ns-dl-side__tag:hover {
    background: var(--ns-primary);
    border-color: var(--ns-primary);
    color: #fff;
    text-decoration: none;
}
.ns-dl-side__related ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .75rem;
}
.ns-dl-side__related li a {
    display: flex;
    align-items: flex-start;
    gap: .625rem;
    color: #475569;
    text-decoration: none;
    line-height: 1.5;
    font-size: .875rem;
}
.ns-dl-side__related li a:hover { color: var(--ns-primary); }
.ns-dl-side__related-num {
    flex-shrink: 0;
    width: 1.375rem;
    height: 1.375rem;
    border-radius: .25rem;
    background: var(--ns-primary);
    color: #fff;
    font-size: .75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.ns-dl-show .social-share { margin-top: .5rem; }

/* Changelog list n_renew */
.ns-inner-log {
    position: relative;
    padding: var(--ns-pad-y-md) 0 var(--ns-pad-y);
}
.ns-inner-log__grid {
    display: grid; grid-template-columns: 1fr 21rem; gap: 3.4375rem; align-items: flex-start;
}
.ns-log-list {
    list-style: none; margin: 0; padding: 0; display: grid; gap: 1.875rem;
}
.ns-log-item { padding-bottom: 1.875rem; border-bottom: 1px dashed #d6d7df; }
.ns-log-item:last-child { border-bottom: none; padding-bottom: 0; }
.ns-log-item a {
    display: flex; align-items: center; gap: 3.5rem; color: inherit; text-decoration: none;
}
.ns-log-item__time {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: var(--ns-title); flex-shrink: 0; min-width: 4.5rem;
}
.ns-log-item__time h5 {
    font-size: 2.125rem; line-height: 2.25rem; font-weight: 700; margin: 0;
}
.ns-log-item__time p {
    font-size: .875rem; line-height: 2.25rem; margin: 0;
}
.ns-log-item__con {
    display: flex; align-items: center; justify-content: space-between;
    padding-right: 1rem; gap: 3.75rem; position: relative; width: 100%; min-width: 0;
}
.ns-log-item__con::before {
    content: ''; position: absolute; width: 1px; height: 5.3125rem;
    background: #d6d7df; left: -1.875rem; top: 50%; transform: translateY(-50%);
}
.ns-log-item__txt { flex: 1; min-width: 0; }
.ns-log-item__txt h5 {
    color: #313131; font-size: 1.25rem; line-height: 2.25rem; font-weight: 700; margin: 0;
    display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
    transition: color .5s;
}
.ns-log-item__txt p {
    color: #616161; font-size: .9375rem; line-height: 2.25rem; margin: 0;
    display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
.ns-log-item__arrow {
    width: 2.5rem; height: 2.5rem; border-radius: 50%; border: 1px solid #c8cacd;
    display: flex; align-items: center; justify-content: center; transition: all .5s; flex-shrink: 0;
}
.ns-log-item__arrow i { color: #a2a5aa; font-size: 1.125rem; transition: color .5s; }
.ns-log-item a:hover .ns-log-item__txt h5 { color: var(--ns-primary); }
.ns-log-item a:hover .ns-log-item__arrow { background: var(--ns-primary); border-color: var(--ns-primary); }
.ns-log-item a:hover .ns-log-item__arrow i { color: #fff; }

.ns-log-filter {
    background: rgba(255,255,255,.85); border-radius: .75rem; padding: 1.25rem 1.5rem;
    margin-bottom: 1.875rem; box-shadow: 0 0 32px rgba(52, 113, 225, .08);
}
.ns-log-filter__group ul {
    list-style: none; margin: .5rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px;
}
.ns-log-filter__group li a {
    display: inline-block; padding: 4px 12px; border-radius: 4px; border: 1px solid #dce0e8;
    font-size: .8125rem; color: #616161;
}
.ns-log-filter__group li.active a,
.ns-log-filter__group li a:hover { border-color: var(--ns-primary); color: var(--ns-primary); }

.ns-log-pager { margin-top: 3rem; }
.ns-log-pager .pager { margin: 0; text-align: center; }
.ns-log-pager .pagination {
    display: flex; flex-wrap: wrap; justify-content: center; gap: .625rem;
    margin: 0; padding: 0; list-style: none;
}
.ns-log-pager .pagination > li > a,
.ns-log-pager .pagination > li > span {
    display: flex; align-items: center; justify-content: center;
    min-width: 2.8125rem; height: 2.8125rem; padding: 0 1rem;
    font-size: .875rem; color: #3a3a3a; border-radius: .375rem;
    border: 1px solid #c6cfda; background: #fff; transition: all .5s;
}
.ns-log-pager .pagination > .active > a,
.ns-log-pager .pagination > .active > span {
    border-color: var(--ns-primary); background: var(--ns-primary); color: #fff;
}
.ns-log-pager .pagination > li > a:hover { border-color: var(--ns-primary); color: var(--ns-primary); }

.ns-log-side { position: sticky; top: 8rem; }
.ns-log-side__head {
    display: flex; align-items: flex-start; padding: 0 .5rem 1.5rem 0; margin-bottom: .5rem; gap: 1rem;
}
.ns-log-side__head img { width: 2.5rem; height: 2.5rem; border-radius: 50%; flex-shrink: 0; object-fit: cover; }
.ns-log-side__head h5 {
    font-size: 1.875rem; color: #313131; font-weight: 300; margin: 0 0 6px; line-height: 1.2;
}
.ns-log-side__head span {
    font-size: 1.125rem; color: #d2d1d3; line-height: 1.25rem; text-transform: uppercase;
}
.ns-log-side__list { display: grid; gap: .625rem; }
.ns-log-side__box {
    display: flex; align-items: center;
    padding: 1.1875rem 0 1.1875rem 1.5625rem; border-radius: .625rem;
    gap: .9375rem; min-height: 8.4375rem;
}
html:not(.ns-style001):not(.ns-style003):not(.ns-style004) .ns-log-side__box {
    background: url(../img/style002/ewmlistbg.jpg) no-repeat center/cover;
}
.ns-log-side__icon {
    width: 2.0625rem; height: 2.0625rem; border-radius: 50%; background: #fff;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ns-log-side__icon i { color: var(--ns-primary); font-size: 1.25rem; }
.ns-log-side__qr { width: 4.5rem; height: 4.5rem; border-radius: 4px; flex-shrink: 0; object-fit: cover; }
.ns-log-side__box > p {
    font-size: .9375rem; color: #373750; line-height: 1.5rem; margin: 0;
}
.ns-log-side__phone p {
    font-size: .9375rem; color: #373750; line-height: 1.5rem; margin: 0;
}

/* News detail n_newxq */
.ns-inner-newxq {
    position: relative;
    padding: var(--ns-pad-y-md) 0 var(--ns-pad-y);
}
.ns-inner-newxq__grid {
    display: grid; grid-template-columns: 1fr 19.5625rem; gap: 1.875rem; align-items: flex-start;
}
.ns-ar-title {
    padding-bottom: 2rem; border-bottom: 1px solid #eaedf0; margin-bottom: 1.5rem;
}
.ns-ar-title__h {
    color: #060606; font-size: 2rem; line-height: 1.25; font-weight: 700; margin: 0 0 1.25rem;
}
.ns-ar-title__meta {
    display: flex; align-items: center; flex-wrap: wrap; gap: 1.6875rem;
}
.ns-ar-title__meta p {
    color: #727272; font-size: .9375rem; line-height: 1.625rem; margin: 0;
}
.ns-ar-summary {
    align-items: flex-start;
    background: #f7f9fb;
    border-left: 3px solid var(--ns-primary);
    border-radius: 0 .5rem .5rem 0;
    display: flex;
    gap: .875rem;
    margin-bottom: 1.75rem;
    padding: 1rem 1.25rem;
}
.ns-ar-summary__label {
    color: var(--ns-primary);
    flex-shrink: 0;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: .05em;
    line-height: 1.75;
}
.ns-ar-summary__text {
    color: #555;
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.75;
    margin: 0;
    min-width: 0;
}
.ns-ar-article {
    color: #616161; font-size: 1.2rem; line-height: 2.5rem;
}
.ns-ar-article p { color: #616161; font-size: 1.2rem; line-height: 2.5rem; margin: 0 0 1em; }
.ns-ar-article img { max-width: 100%; height: auto; }
.ns-ar-article table { max-width: 100%; border-collapse: collapse; }
.ns-ar-article table td,
.ns-ar-article table th { border: 1px solid #ddd; padding: 6px 8px; font-size: 1.2rem; }

.ns-ar-foot {
    padding-top: 2.5rem; margin-top: 1.5rem; border-top: 1px solid #eaedf0;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.ns-ar-foot__back {
    min-width: 9.375rem; height: 2.8125rem; display: inline-flex; align-items: center; justify-content: center;
    color: var(--ns-primary); background: transparent; border: 1px solid var(--ns-primary); border-radius: .625rem;
    font-size: 1rem; line-height: 1.875rem; transition: color .3s, border-color .3s, background .3s;
}
.ns-ar-foot__back:hover { background: rgba(111, 117, 214, .08); color: var(--ns-primary-dark); border-color: var(--ns-primary-dark); }
.ns-ar-foot__next {
    display: inline-flex; align-items: center; gap: .5rem;
    color: #313131; font-size: 1rem; line-height: 1.875rem; margin-left: auto;
}
.ns-ar-foot__next i { font-size: 1.875rem; color: var(--ns-primary); }

.ns-related {
    margin-top: 2rem;
}
.ns-related__title {
    color: #060606;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.875rem;
    margin: 0 0 1rem;
}
.ns-related__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.ns-related__item {
    border-bottom: 1px solid #f0f0f0;
}
.ns-related__item:last-child {
    border-bottom: none;
}
.ns-related__link {
    align-items: center;
    color: #666;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding: .75rem 0;
    text-decoration: none;
    transition: color .3s;
    font-size: 1.1rem;
}
.ns-related__link:hover {
    color: var(--ns-primary);
}
.ns-related__text {
    flex: 1;
    line-height: 1.5;
    min-width: 0;
    overflow: hidden;
    padding-left: 1.25rem;
    position: relative;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ns-related__text::before {
    background: #d7dae2;
    border-radius: 50%;
    content: '';
    height: 5px;
    left: 5px;
    position: absolute;
    top: calc(.75em - 2px);
    width: 5px;
}
.ns-related__date {
    color: #999;
    flex-shrink: 0;
    font-size: .875rem;
}

.ns-newxq-main .entry-meta { margin-top: 2rem; font-size: .875rem; color: #727272; }
.ns-newxq-main .entry-meta ul { list-style: none; margin: 0 0 .75rem; padding: 0; }
.ns-newxq-main .entry-meta .article-prevnext { display: none; }

/* News detail show_news */
.ns-inner-newxq--article {
    background: none;
    padding-top: 0;
    padding-bottom: 2.5rem;
}
.ns-newxq-top {
    display: grid;
    grid-template-columns: 1fr 19.5625rem;
    gap: 1.875rem;
    padding: 1.25rem 0;
}
.ns-newxq-top__crumb {
    grid-column: 1 / -1;
    justify-content: flex-end;
}
.ns-theme .ns-newxq-main .article-donate a.btn-primary.btn-like,
.ns-theme .ns-newxq-main .article-donate a.btn-primary.btn-like:hover,
.ns-theme .ns-newxq-main .article-donate a.btn-primary.btn-like:focus,
.ns-theme .ns-newxq-main .article-donate a.btn-primary.btn-like:active {
    color: #fff;
    background-color: var(--ns-primary);
    border-color: var(--ns-primary);
}
.ns-theme .ns-newxq-main .article-donate a.btn-primary.btn-like:hover,
.ns-theme .ns-newxq-main .article-donate a.btn-primary.btn-like:focus {
    background-color: var(--ns-primary-dark);
    border-color: var(--ns-primary-dark);
}
.ns-theme .ns-newxq-main .article-donate a.btn-primary.btn-like span {
    color: #fff;
}

/* Mobile */
.ns-nav-mask {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 1100;
}
.ns-nav-mask.is-open {
    display: block;
}
.ns-mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    max-width: 86vw;
    height: 100%;
    background: var(--ns-white);
    z-index: 1101;
    padding: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: right .3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, .12);
}
.ns-mobile-nav.is-open {
    right: 0;
}
.ns-mobile-nav__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: sticky;
    top: 0;
    z-index: 2;
    padding: calc(12px + env(safe-area-inset-top, 0px)) 16px 12px;
    background: var(--ns-white);
    border-bottom: 1px solid var(--ns-border);
}
.ns-mobile-nav__title {
    font-size: 16px;
    font-weight: 600;
    color: #1d2129;
}
.ns-mobile-nav__close {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, .06);
    color: #4e5969;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: background .2s, color .2s;
}
.ns-mobile-nav__close:hover,
.ns-mobile-nav__close:focus {
    background: rgba(0, 0, 0, .1);
    color: #1d2129;
}
.ns-mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 8px 16px calc(16px + env(safe-area-inset-bottom, 0px));
}
.ns-mobile-nav li a {
    display: block;
    padding: 14px 4px;
    border-bottom: 1px solid var(--ns-border);
    font-size: 16px;
    color: #1d2129;
    text-decoration: none;
}
.ns-mobile-nav li.has-sub > a {
    position: relative;
    padding-right: 2rem;
}
.ns-mobile-nav li.has-sub > a::after {
    content: "";
    position: absolute;
    right: 6px;
    top: 50%;
    width: .5rem;
    height: .5rem;
    margin-top: -.35rem;
    border-right: 1.5px solid #94a3b8;
    border-bottom: 1.5px solid #94a3b8;
    transform: rotate(45deg);
    transition: transform .25s ease, border-color .25s ease;
}
.ns-mobile-nav li.has-sub.is-open > a::after {
    transform: rotate(225deg);
    margin-top: -.15rem;
    border-color: var(--ns-primary);
}
.ns-mobile-nav li.has-sub.is-open > a {
    color: var(--ns-primary);
}
.ns-mobile-sub {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0 0 .5rem .75rem;
    background: linear-gradient(180deg, rgba(237, 246, 255, .55) 0%, rgba(237, 246, 255, 0) 100%);
    border-bottom: 1px solid var(--ns-border);
}
.ns-mobile-nav li.has-sub.is-open > .ns-mobile-sub {
    display: block;
}
.ns-mobile-sub li a {
    padding: 11px 4px 11px 12px;
    font-size: 14px;
    color: #64748b;
    border-bottom: none;
    position: relative;
}
.ns-mobile-sub li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    margin-top: -2px;
    border-radius: 50%;
    background: #cbd5e1;
}
.ns-mobile-sub li a:active,
.ns-mobile-sub li a:hover,
.ns-mobile-sub li.active > a {
    color: var(--ns-primary);
}
.ns-mobile-sub li a:active::before,
.ns-mobile-sub li a:hover::before,
.ns-mobile-sub li.active > a::before {
    background: var(--ns-primary);
}
.ns-mobile-nav li a:active {
    color: var(--ns-primary);
}
body.ns-mobile-nav-open {
    overflow: hidden;
}

@media (max-width: 1024px) {
    .foot__box1,
    .foot__box2,
    .foot_brand,
    .foot_nav,
    .foot_lx,
    .foot_logo,
    .foot_ewm {
        display: none !important;
    }
    #foot {
        padding-top: 0;
        padding-bottom: 0;
    }
    #foot .copyright {
        text-align: center;
        padding: 15px var(--ns-gutter);
        padding-bottom: calc(15px + var(--ns-mobile-footbar-h) + env(safe-area-inset-bottom, 0px));
    }
    .ns-mobile-footbar,
    .mobile-fixed-nav {
        display: flex;
    }
    body.ns-theme {
        padding-bottom: calc(var(--ns-mobile-footbar-h) + 8px + env(safe-area-inset-bottom, 0px));
    }
    .ns-floatdock__kefu,
    #ns-float-kefu {
        display: none !important;
    }
    .ns-floatdock {
        bottom: calc(var(--ns-mobile-footbar-h) + 12px + env(safe-area-inset-bottom, 0px));
    }
}
@media (max-width: 1200px) {
    :root { --ns-gutter: 2rem; }
    .ns-bycs.on { width: 55%; }
}
@media (max-width: 992px) {
    :root {
        --ns-gutter: 1.5rem;
        --ns-header-h: calc(3.25rem + env(safe-area-inset-top, 0px));
        --ns-mobile-kefu-bar-h: 72px;
    }
    .ns-header,
    body.ns-theme .ns-header.is-scrolled,
    body.ns-theme .ns-header.is-hovered,
    .ns-header.is-scrolled {
        height: var(--ns-header-h);
    }
    .ns-logo__img {
        width: auto;
        max-width: 7.5rem;
        max-height: 2rem;
        height: auto;
        object-fit: contain;
    }
    .ns-header__inner {
        gap: .75rem;
        min-height: 3.25rem;
    }
    .ns-menu-toggle {
        font-size: 20px;
        padding: 6px 8px;
        line-height: 1;
    }
    /* 手机端统一左右边距：全站以 .ns-container 的 --ns-gutter 为准 */
    .ns-container {
        padding-left: var(--ns-gutter);
        padding-right: var(--ns-gutter);
    }
    .ns-nav-wrap { margin-right: 0; }
    .sj-box { margin-left: 0; margin-right: 0; }
    .s_about__grid { grid-template-columns: 1fr; gap: 40px; }
    .s_ableft__stats {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: .625rem;
        margin-top: 1.5rem;
    }
    .s_ableft__stats li {
        flex: 1;
        min-width: 0;
        line-height: 1.35;
        white-space: normal;
        font-size: .8125rem;
    }
    .s_ableft__stats li div {
        gap: 4px;
    }
    .s_ableft__stats li em {
        font-size: .8125rem;
        line-height: 1.2;
    }
    .s_ableft__stats .counter { font-size: 2.5rem; }
    .s_about__more-link { display: none; }
    .s_about__ljweb { display: flex; }
    .ns-nav, .ns-search-form { display: none; }
    .ns-menu-toggle { display: block; }
    .ns-nav-mask.is-open, .ns-mobile-nav { display: block; }
    .ns-s-tit h4 { font-size: 2rem; }
    .ns-section--partner {
        height: auto;
        min-height: 0;
        padding-top: var(--ns-pad-y-sm);
        padding-bottom: var(--ns-pad-y-sm);
    }
    .ns-section--partner .ns-container {
        height: auto;
    }
    .ns-partner-wrap {
        flex-direction: column;
        align-items: stretch;
        height: auto;
        padding-bottom: 0;
        gap: 2rem;
    }
    .ns-partner-title {
        order: -1;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    .ns-section--partner .ns-partner-title.ns-s-tit {
        margin-bottom: 0;
    }
    .ns-partner-center,
    .ns-partner-rings {
        display: none;
    }
    .ns-partner-orbit {
        position: static;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: .875rem .5rem;
        width: 100%;
    }
    .ns-partner-orbit__item {
        position: static;
        top: auto !important;
        left: auto !important;
        animation: none;
        opacity: 1;
        transform: none;
    }
    .ns-partner-orbit__item div {
        width: 100%;
        max-width: none;
        height: auto;
        aspect-ratio: 1;
        padding: .5rem;
        margin: 0;
        box-sizing: border-box;
        border-radius: .625rem;
        box-shadow: 0 2px 8px rgba(0, 92, 161, .08);
        overflow: hidden;
    }
    .ns-byc { flex-direction: column; height: auto; }
    .ns-bycs + .ns-bycs { margin-left: 0; }
    .ns-bycs, .ns-bycs.on { width: 100% !important; height: auto; margin-bottom: 12px; }
    .ns-bycs__bg { height: 220px; }
    .ns-bycs__hide { flex-direction: column; gap: 1rem; }
    .ns-bycs__ycy > div { flex-direction: column; gap: .75rem; }
    .ns-bycs__ycy { gap: 1rem; }
    .ns-bycs__stats { grid-template-columns: 1fr; }
    .ns-bycs__actions { flex: 0 0 100%; width: 100%; flex-direction: row; flex-wrap: nowrap; align-items: center; justify-content: center; margin-top: 2.25rem; }
    .ns-bycs__go { width: auto; flex: 0 0 auto; padding: 0 .75rem; height: 2.25rem; font-size: .8125rem; }
    .ns-bycs__go-icon { width: .875rem; height: .875rem; }
    /* 全栈系统赋能 — 手机端可读字号（仅改字体，不改布局） */
    .ns-section--baiye .ns-s-tit h4 {
        font-size: 2.125rem;
        line-height: 1.45;
    }
    .ns-section--baiye .ns-s-tit h6 {
        font-size: 1.0625rem;
        line-height: 1.65;
    }
    .ns-section--baiye .ns-bycs__tit h4 {
        font-size: 1.375rem;
        line-height: 1.45;
    }
    .ns-section--baiye .ns-bycs.on .ns-bycs__tit h4 {
        font-size: 1.625rem;
        line-height: 1.45;
    }
    .ns-section--baiye .ns-bycs__ycy h6 {
        font-size: 1.0625rem;
        line-height: 1.5;
    }
    .ns-section--baiye .ns-bycs__ycy p,
    .ns-section--baiye .ns-bycs__scope,
    .ns-section--baiye .ns-bycs__effect {
        font-size: 1rem;
        line-height: 1.7;
    }
    .ns-section--baiye .ns-bycs__go {
        font-size: .9375rem;
        height: 2.75rem;
        padding: 0 1rem;
    }
    /* 展开卡片：缩小段落间距，并让内容区撑开以显示底部按钮 */
    .ns-section--baiye .ns-bycs.on {
        overflow: visible;
    }
    .ns-section--baiye .ns-bycs.on .ns-bycs__bg {
        height: 0;
        min-height: 0;
        overflow: hidden;
    }
    .ns-section--baiye .ns-bycs.on .ns-bycs__tit {
        position: relative;
        inset: auto;
        height: auto;
        padding: 1.25rem 1.25rem 1.125rem;
    }
    .ns-section--baiye .ns-bycs.on .ns-bycs__tit h4 {
        margin-bottom: .5rem;
    }
    .ns-section--baiye .ns-bycs.on .ns-bycs__hide {
        margin-top: .625rem;
        gap: .625rem;
    }
    .ns-section--baiye .ns-bycs.on .ns-bycs__hide > img,
    .ns-section--baiye .ns-bycs.on .ns-bycs__detail-img {
        display: none;
    }
    .ns-section--baiye .ns-bycs.on .ns-bycs__ycy {
        gap: .75rem;
    }
    .ns-section--baiye .ns-bycs.on .ns-bycs__field,
    .ns-section--baiye .ns-bycs.on .ns-bycs__ycy > div {
        gap: .25rem;
        min-height: 0;
    }
    .ns-section--baiye .ns-bycs.on .ns-bycs__ycy h6 {
        line-height: 1.4;
    }
    .ns-section--baiye .ns-bycs.on .ns-bycs__scope,
    .ns-section--baiye .ns-bycs.on .ns-bycs__effect {
        margin-top: .125rem;
    }
    .ns-section--baiye .ns-bycs.on .ns-bycs__actions {
        margin-top: .875rem;
        gap: .75rem;
    }
    .ns-section--baiye .ns-bycs__go--consult {
        display: none !important;
    }
    .sj-box__prev { left: -2%; }
    .sj-box__next { right: -2%; }
    .ns-newbox { grid-template-columns: 1fr; }
    .ns-newhot { grid-template-columns: 1fr; }
    .foot__box1 { flex-direction: column; gap: 2.5rem; }
    .foot_brand {
        flex-direction: row;
        align-items: flex-start;
        width: 100%;
        gap: 1.5rem;
    }
    .foot_logo { width: 7.5rem; }
    .foot_ewm { width: auto; align-items: flex-start; }
    .foot_nav { flex-wrap: wrap; max-width: 100%; width: 100%; }
    .foot_lx { max-width: 100%; width: 100%; }
    .foot_lx__addr { max-width: 100%; }
    .ns-content-wrap .ns-layout { grid-template-columns: 1fr; }
    .ns-ljweb { display: flex; }
    .ns-sltit__more { display: none; }
    .ns-case-ljweb { display: flex; }
    .ns-ljweb,
    .s_about__ljweb {
        width: 9.75rem;
        min-width: 9.75rem;
        max-width: 9.75rem;
        height: 2.75rem;
        padding: 0;
        margin-left: auto;
        margin-right: auto;
        border-radius: 999px;
        background: transparent;
        border: 1px solid var(--ns-primary);
        color: var(--ns-primary);
        font-size: 1rem;
        box-sizing: border-box;
    }
    .ns-ljweb:hover,
    .s_about__ljweb:hover {
        background: var(--ns-primary);
        color: #fff;
    }
    .ns-theme a.ns-ljweb,
    .ns-theme a.s_about__ljweb {
        color: var(--ns-primary);
    }
    .ns-theme a.ns-ljweb:hover,
    .ns-theme a.s_about__ljweb:hover {
        color: #fff;
    }
    .ns-inner-news__grid { grid-template-columns: 1fr; }
    .ns-search-page__hero { padding: 1.25rem 1rem; }
    .ns-search-page__field { flex-direction: column; }
    .ns-search-page__submit { width: 100%; }
    .ns-search-page__toolbar { align-items: flex-start; }
    .ns-search-page__order { width: 100%; justify-content: flex-end; }
    .ns-dl-show__grid { grid-template-columns: 1fr; }
    .ns-dl-side { position: static; }
    .ns-dl-show__donate-modal { flex-direction: column; align-items: center; }
    .ns-qa-question { padding: .75rem 1rem; gap: .625rem; }
    .ns-qa-mark { width: 1.5rem; height: 1.5rem; font-size: .75rem; }
    .ns-qa-question__title { font-size: .9375rem; }
    .ns-qa-answer__inner { padding: .75rem 1rem 1rem; gap: .625rem; }
    .ns-qa-answer__content { font-size: .875rem; }
    .ns-pay-section + .ns-pay-section { margin-top: 2rem; padding-top: 2rem; }
    .ns-pay-section__head { flex-direction: column; }
    .ns-pay-section__title { width: 100%; min-width: 0; padding: .75rem 1rem; font-size: 1rem; }
    .ns-pay-section__desc { padding: .75rem 1rem; font-size: .9375rem; gap: .625rem; }
    .ns-pay-section__desc-icon { width: 2rem; height: 2rem; font-size: .9375rem; }
    .ns-pay-section--private .ns-pay-grid { grid-template-columns: 1fr; }
    .ns-pay-grid { grid-template-columns: 1fr; gap: 1rem; }
    .ns-pay-card { padding: 1rem; }
    .ns-pay-card__head { margin-bottom: 1rem; padding-bottom: .875rem; gap: .75rem; }
    .ns-pay-card__logo { width: 2.5rem; height: 2.5rem; font-size: 1.125rem; }
    .ns-pay-card__title { font-size: 1rem; }
    .ns-pay-card__body { font-size: .875rem; }
    .ns-pay-info { gap: .3125rem; }
    .ns-pay-info__row { padding: .3125rem .4375rem; gap: .4375rem; }
    .ns-pay-info__icon { width: 1.25rem; height: 1.25rem; font-size: .625rem; }
    .ns-pay-info__label { font-size: .75rem; }
    .ns-pay-info__value { font-size: .8125rem; }
    .ns-pay-val--num { font-size: .875rem; }
    /* 内页：面包屑 + 子栏目（手机） */
    .ns-zidh {
        height: auto;
        background: #f8f9fc;
        border-bottom: 1px solid #eef0f4;
    }
    .ns-zidh__inner {
        flex-direction: column;
        align-items: stretch;
        height: auto;
        padding: .75rem 0.75rem 1rem;
        gap: .625rem;
    }
    .ns-zidh__inner > .ns-position {
        order: -1;
        width: 100%;
        justify-content: flex-start;
        margin-left: 0;
        flex-wrap: nowrap;
        font-size: .75rem;
        color: #999;
        white-space: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .ns-zidh__inner > .ns-position::-webkit-scrollbar { display: none; }
    .ns-position__home {
        font-size: .875rem;
        flex-shrink: 0;
        color: rgba(0, 0, 0, .45);
    }
    .ns-position__sep {
        margin: 0 .375rem;
        font-size: .625rem;
        flex-shrink: 0;
    }
    .ns-position a {
        font-size: .75rem;
        line-height: 1.5;
        flex-shrink: 0;
        color: rgba(0, 0, 0, .55);
    }
    .ns-position a:last-child {
        color: var(--ns-primary);
        flex-shrink: 1;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .ns-zidh__tabs-wrap {
        width: 100%;
        overflow: hidden;
    }
    .ns-zidh__tabs-wrap::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 2.75rem;
        pointer-events: none;
        background: linear-gradient(to right, rgba(248, 249, 252, 0) 0%, rgba(248, 249, 252, .92) 58%, #f8f9fc 100%);
        opacity: 0;
        transition: opacity .25s ease;
        z-index: 1;
    }
    .ns-zidh__tabs-wrap.is-scrollable:not(.is-at-end)::after {
        opacity: 1;
    }
    .ns-zidh__tabs-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1.5rem;
        height: 1.5rem;
        margin: 0;
        padding: 0;
        border: none;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        color: #707070;
        cursor: pointer;
        opacity: 0;
        pointer-events: none;
        transition: opacity .25s ease, color .2s ease, transform .2s ease;
        z-index: 2;
        -webkit-tap-highlight-color: transparent;
    }
    .ns-zidh__tabs-hint__icon {
        display: block;
        width: .6875rem;
        height: .6875rem;
    }
    .ns-zidh__tabs-wrap.is-scrollable:not(.is-at-end) .ns-zidh__tabs-hint {
        opacity: .85;
        pointer-events: auto;
    }
    .ns-zidh__tabs-hint:active {
        transform: translateY(-50%) scale(.92);
        color: #505050;
    }
    .ns-zidh__tabs-wrap.is-scrollable .ns-zidh__tabs {
        padding-right: 1.5rem;
    }
    .ns-zidh__tabs {
        flex-wrap: nowrap;
        gap: .625rem;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        scrollbar-width: none;
        padding-bottom: .125rem;
        box-sizing: border-box;
    }
    .ns-zidh__tabs::-webkit-scrollbar { display: none; }
    .ns-zidh__tabs::before { display: none; }
    .ns-zidh__tabs li { flex-shrink: 0; }
    .ns-zidh__tabs li a {
        line-height: 1.25;
        padding: .4375rem 1rem;
        border: 1px solid var(--ns-primary);
        border-radius: 999px;
        color: var(--ns-primary);
        font-size: .875rem;
        background: #fff;
        transition: background .3s, color .3s, border-color .3s;
    }
    .ns-zidh__tabs li a::before { display: none; }
    .ns-zidh__tabs li.on a,
    .ns-zidh__tabs li a:active {
        background: var(--ns-primary);
        color: #fff;
        border-color: var(--ns-primary);
    }
    .ns-zidh--crumb-only {
        min-height: auto;
    }
    .ns-zidh--crumb-only .ns-zidh__inner {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        padding: .625rem 0;
        gap: 0;
    }
    .ns-zidh--crumb-only .ns-position {
        width: 100%;
        margin-left: 0;
        justify-content: flex-start;
    }
    .ns-news-item a { flex-direction: column; align-items: flex-start; }
    .ns-news-item .img { max-width: 100%; }
    .ns-n-banner { height: 18rem; }
    .ns-n-banner__txt h4 { font-size: 2rem; }
    .ns-cloud__inner { text-align: center; }
    .ns-cloud__txt { max-width: none; }
    .ns-cloud__btn { margin-left: auto; margin-right: auto; }
    .ns-pic-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .ns-partner-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
    .ns-partner-card__img { width: 8.5rem; }
    .ns-partner-card h5 { margin-top: 1.25rem; font-size: 1rem; }
    .ns-partner-list-head { font-size: 2rem; margin-bottom: 1.5rem; }
    .ns-honors-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .ns-honor-card a { padding: 2rem 1.5rem 1.5rem; gap: 1.5rem; }
    .ns-honor-card__img { height: 10rem; }
    .ns-honors-head { font-size: 2rem; margin-bottom: 1.5rem; }
    .ns-dl-grid { grid-template-columns: 1fr; }
    .ns-dl-tabs { flex-direction: column; align-items: flex-start; margin-bottom: 2rem; }
    .ns-dl-tabs h4 { font-size: 2rem; }
    .ns-dl-item__inner { padding: 1.75rem 1.5rem; }
    .ns-inner-log__grid { grid-template-columns: 1fr; }
    .ns-log-side { position: static; margin-top: 2rem; }
    .ns-log-item a { gap: 1.5rem; }
    .ns-log-item__con { gap: 1rem; }
    .ns-log-item__con::before { left: -1rem; height: 4rem; }
    .ns-inner-newxq__grid { grid-template-columns: 1fr; }
    .ns-contact-cells {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .ns-contact-cell--wide { grid-column: 1; }
    .ns-contact-cell__icon { font-size: 2.25rem; width: 2.75rem; }
    .ns-contact-qrrow {
        flex-direction: column;
        align-items: flex-start;
    }
    .ns-contact-qrrow__list { justify-content: flex-start; }
    .ns-contact-ly__con { flex-direction: column; gap: 0; }
    .ns-contact-ly__left img { display: none; }
    .ns-contact-ly__left h5 { font-size: 1.75rem; }
    .ns-contact-form--tech ul { grid-template-columns: 1fr; }
    .ns-contact-form--tech .ns-contact-form__full,
    .ns-contact-form--tech .ns-contact-form__captcha,
    .ns-contact-form--tech .ns-contact-form__submit { grid-column: 1 / 2; }
    .ns-contact-form--tech .ns-contact-form__submit button { width: 100%; }
    .ns-inner-contact--card .ns-contact01-panel {
        flex-direction: column;
    }
    .ns-inner-contact--card .ns-contact01-panel__aside {
        width: 100%;
        border-left: 0;
        border-top: 1px solid rgba(15, 23, 42, .06);
    }
    .ns-inner-contact--card .ns-contact01-grid {
        grid-template-columns: 1fr;
    }
    .ns-inner-contact--card .ns-contact01-item--wide {
        grid-column: 1;
    }
    .ns-inner-contact--card .ns-contact01-qrcodes {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .ns-inner-page__body { padding: 2rem 0 1.75rem; }
    .ns-about-page__layout {
        flex-direction: column;
        gap: 2.5rem;
    }
    .ns-about-page__body {
        font-size: 1rem;
        line-height: 1.9;
    }
    .ns-about-page__aside {
        flex: none;
        max-width: 100%;
    }
    .ns-about-page__sz li {
        padding: 2rem 1.5rem;
    }
    .ns-about-page__sz-num .counter {
        font-size: 2.5rem;
    }
    .ns-about-page__sz-label {
        font-size: 1rem;
    }
    .ns-product-fangan__tit h3 { font-size: 2rem; }
    .ns-product-swiper { width: 100%; max-width: 100%; }
    .ns-product-fangan__box {
        flex-direction: row;
        padding: 1.5rem 1.25rem;
    }
    .ns-product-fangan__val { -webkit-line-clamp: 3; }
    .ns-fangan-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .ns-product-detail__hero {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 0 2rem;
    }
    .ns-product-detail__media {
        width: 100%;
        max-width: 100%;
    }
    .ns-product-detail__title { font-size: 1.5rem; margin-bottom: 1.25rem; }
    .ns-product-detail__body { padding: 2.5rem 0 3rem; margin-top: 1.5rem; }
    .ns-product-detail__hd { font-size: 1.375rem; margin-bottom: 1.5rem; }
    .ns-product-detail__foot { flex-direction: column; align-items: stretch; }
    .ns-product-detail__next { margin-left: 0; justify-content: center; }
    .ns-history-hero__txt {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        height: auto;
        margin-top: -4rem;
        padding: 2rem 1.5rem;
        background-size: cover;
    }
    .ns-history-hero .ns-history-hero__pic { height: 16rem; }
    .ns-history-hero__num span { font-size: 3rem; }
    .ns-history-hero__txt h5 { font-size: 1.5rem; }
    .ns-history-hero__range { font-size: 1.25rem; }
    .ns-history-head h3 { font-size: 2rem; }
    .ns-history-list::before { left: 1.125rem; transform: none; }
    .ns-history-item {
        display: flex !important;
        flex-direction: column;
        gap: .75rem;
        padding-left: 2.75rem;
        align-items: flex-start;
    }
    .ns-history-item__year,
    .ns-history-item__txt {
        grid-column: auto;
        width: 100%;
        text-align: left !important;
    }
    .ns-history-item__dot {
        position: absolute;
        left: .625rem;
        margin-top: .35rem;
    }
    .ns-history-item { position: relative; }
    .ns-history-item__year { font-size: 2.5rem; }
    .ns-newxq-top { grid-template-columns: 1fr; gap: 0; }
    .ns-newxq-main { padding: 2rem 0; }
    .ns-ar-title__h { font-size: 1.5rem; }
    .ns-banner__btn { min-width: 7.5rem; height: 2.625rem; padding: 0 1.25rem; font-size: .875rem; }
    .ns-banner--thumb .swiper-container {
        height: calc(var(--ns-hero-h) - 6.5rem);
        min-height: calc(var(--ns-hero-h) - 6.5rem);
    }
    .ns-banner__thumbbar-inner { gap: .5rem; }
    .ns-banner__thumb-title { display: none; }
    .ns-banner__nav { width: 2.375rem; height: 2.375rem; }
    .ns-banner--coverflow .swiper-container {
        height: clamp(20rem, 58vh, 32rem);
        min-height: clamp(20rem, 58vh, 32rem);
        padding: 1rem 0;
    }
    .ns-banner--coverflow .swiper-slide { width: 88vw; }
    .ns-banner__nav--stage,
    .ns-banner__nav--default { display: none; }
    .ns-banner--split .swiper-slide { flex-direction: column; }
    .ns-banner--split .ns-banner__body { flex: 0 0 auto; order: 2; width: 100%; padding: 1.5rem 0; }
    .ns-banner--split .ns-banner__media { flex: 1; order: 1; min-height: 50vh; }
    .ns-banner__split-pagination.swiper-pagination { width: 100%; text-align: center; padding-left: 0; }
    .ns-banner--cube .swiper-container,
    .ns-banner--flip .swiper-container {
        width: 92vw;
        height: clamp(18rem, 52vh, 28rem);
        min-height: clamp(18rem, 52vh, 28rem);
    }
    .ns-banner__kenburns-bar { flex-direction: column; align-items: stretch; }
    .ns-banner__scroll-hint { display: none; }
}
@media (min-width: 768px) and (max-width: 991px) {
    .ns-pic-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .ns-partner-grid { grid-template-columns: repeat(3, 1fr); }
    .ns-honors-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem 1.5rem; }
    .ns-honor-card a { padding: 2.5rem 2rem 1.75rem; }
}
@media (min-width: 992px) and (max-width: 1279px) {
    .ns-partner-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 576px) {
    .s_ableft__stats {
        flex-direction: row;
        align-items: flex-start;
        gap: .375rem;
    }
    .s_ableft__stats li {
        width: auto;
        flex: 1;
        min-width: 0;
        font-size: .75rem;
        line-height: 1.3;
    }
    .s_ableft__stats li div {
        gap: 2px;
    }
    .s_ableft__stats li em {
        font-size: .75rem;
        line-height: 1.1;
    }
    .s_ableft__stats .counter {
        font-size: 2rem;
    }
    .foot__lianjie { flex-direction: column; align-items: flex-start; }
    .foot_nav { flex-direction: column; }
    .foot_brand { flex-direction: column; align-items: center; }
    .foot_ewm { align-items: center; }
    .ns-newcool a { flex-direction: column; }
    .ns-newcool__img { flex: none; max-width: 100%; width: 100%; }
    .ns-list-item { flex-direction: column; }
    .ns-certify .swiper-slide { width: 88%; }
    .ns-certify__arr--prev { left: 0; }
    .ns-certify__arr--next { right: 0; }
    .ns-partner-orbit {
        gap: .625rem .375rem;
    }
    .ns-partner-orbit__item div {
        padding: .375rem;
        border-radius: .5rem;
        box-shadow: 0 2px 6px rgba(0, 92, 161, .08);
    }
}

@media (max-width: 991px) {
    .ns-section--shij .sj-box {
        margin: 0;
    }
    .ns-section--shij .sj-box .swiper-slide {
        width: 100%;
        max-width: 100%;
    }
    .sj-box__prev {
        left: 4px;
    }
    .sj-box__next {
        right: 4px;
    }
    .sj-box__nav {
        width: 2.5rem;
        height: 2.5rem;
    }
    .sj-box__nav i {
        font-size: 1.5rem;
    }
}
