:root {
    --primary: #2a5a98;
    --primary-dark: #1f477c;
    --accent: #ff8f1f;
    --accent-soft: #fff5e7;
    --text: #1f2937;
    --muted: #667085;
    --line: #dbe3ee;
    --surface: #ffffff;
    --surface-soft: #f5f8fc;
    --shadow: 0 20px 45px rgba(24, 57, 102, 0.12);
    --radius: 20px;
    --radius-sm: 14px;
    --max-width: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(42, 90, 152, 0.09), transparent 28%),
        linear-gradient(180deg, #f9fbfe 0%, #eef3f9 100%);
    font: 15px/1.75 "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

a:hover {
    color: var(--primary);
}

img {
    max-width: 100%;
    border: 0;
    vertical-align: middle;
}

ul,
ol,
dl,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

ul,
ol {
    list-style: none;
}

button,
input,
textarea {
    font: inherit;
}

.center {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.c,
.clearfix:after {
    clear: both;
}

.clearfix:after {
    content: "";
    display: block;
}

.main {
    padding: 0 0 70px;
}

.section-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
}

.section-title .eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(42, 90, 152, 0.1);
    color: var(--primary);
    font-size: 13px;
    letter-spacing: 1px;
}

.section-title h2 {
    font-size: 30px;
    line-height: 1.2;
    color: #13233f;
}

.section-title p,
.section-title .more {
    color: var(--muted);
    font-size: 15px;
}

.section-title .more {
    white-space: nowrap;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 12px 30px rgba(18, 42, 73, 0.08);
}

.site-toolbar {
    background: linear-gradient(90deg, #234b84, #2f65ad);
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
}

.site-toolbar__inner {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-toolbar__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 16px;
}

.site-toolbar a {
    color: rgba(255, 255, 255, 0.9);
}

.site-toolbar a:hover {
    color: #fff;
}

.site-header__main {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
}

.site-header__inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.site-brand img {
    width: 68px;
    height: 68px;
    object-fit: contain;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(42, 90, 152, 0.12);
    padding: 8px;
}

.site-brand__name {
    display: block;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.15;
    color: #10233f;
}

.site-brand__desc {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
    max-width: 420px;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: var(--surface-soft);
    color: var(--primary);
    cursor: pointer;
}

.nav-toggle span,
.nav-toggle:before,
.nav-toggle:after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: currentColor;
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span {
    margin: 6px auto;
}

.nav-toggle.is-active:before {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-active span {
    opacity: 0;
}

.nav-toggle.is-active:after {
    transform: translateY(-8px) rotate(-45deg);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav__list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav__item {
    position: relative;
}

.site-nav__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    color: #15335b;
    font-weight: 600;
}

.site-nav__item.is-current > .site-nav__link,
.site-nav__link:hover {
    color: var(--primary);
    background: rgba(42, 90, 152, 0.08);
}

.site-nav__drop {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 200px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(42, 90, 152, 0.08);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.site-nav__drop a {
    display: block;
    padding: 8px 10px;
    border-radius: 10px;
    color: var(--muted);
}

.site-nav__drop a:hover {
    background: var(--surface-soft);
    color: var(--primary);
}

.site-nav__item:hover .site-nav__drop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hero-home {
    padding: 34px 0 22px;
}

.hero-home__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
    gap: 24px;
}

.hero-home__panel,
.hero-home__stack {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(42, 90, 152, 0.08);
    border-radius: 28px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-home__panel {
    padding: 34px;
    background:
        linear-gradient(135deg, rgba(24, 64, 115, 0.98) 0%, rgba(41, 95, 165, 0.96) 58%, rgba(255, 143, 31, 0.92) 100%);
    color: #fff;
}

.hero-home__panel .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 13px;
    letter-spacing: 1px;
}

.hero-home__panel h1 {
    font-size: 42px;
    line-height: 1.18;
    margin-bottom: 18px;
}

.hero-home__panel p {
    max-width: 640px;
    color: rgba(255, 255, 255, 0.86);
}

.hero-home__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-home__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
}

.hero-home__actions .is-primary {
    background: #fff;
    color: var(--primary);
}

.hero-home__actions .is-secondary {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
}

.hero-home__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.hero-home__stats li {
    min-height: 112px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-home__stats strong {
    display: block;
    font-size: 30px;
    line-height: 1.1;
}

.hero-home__stats span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
}

.hero-home__stack {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-home__card {
    padding: 20px;
    border-radius: 20px;
    background: linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
    border: 1px solid rgba(42, 90, 152, 0.08);
}

.hero-home__card strong {
    display: block;
    font-size: 20px;
    color: #112744;
}

.hero-home__card p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
}

.hero-home__card a {
    display: inline-flex;
    align-items: center;
    margin-top: 14px;
    color: var(--primary);
    font-weight: 700;
}

.quick-channel {
    padding: 10px 0 16px;
}

.quick-channel__box {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 24px;
    border: 1px solid rgba(42, 90, 152, 0.08);
    box-shadow: 0 16px 35px rgba(24, 57, 102, 0.08);
    padding: 18px;
}

.quick-channel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.quick-channel__head h2 {
    font-size: 22px;
    color: #15335b;
}

.quick-channel__head p {
    color: var(--muted);
}

.quick-channel__list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.quick-channel__list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 14px;
    background: var(--surface-soft);
    color: #214a81;
    font-weight: 600;
}

.quick-channel__list a.is-home,
.quick-channel__list a:hover {
    background: rgba(42, 90, 152, 0.12);
    color: var(--primary);
}

.home-layout {
    padding: 16px 0 0;
}

.home-layout__grid,
.page-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
}

.content-panel,
.sidebar-card,
.feed-card,
.news-card,
.contact-card,
.category-card,
.legacy-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(42, 90, 152, 0.08);
    border-radius: var(--radius);
    box-shadow: 0 14px 30px rgba(20, 48, 85, 0.08);
}

.content-panel,
.sidebar-card,
.contact-card,
.legacy-card {
    padding: 26px;
}

.stream-list {
    display: grid;
    gap: 18px;
}

.feed-card {
    overflow: hidden;
}

.feed-card a {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    min-height: 220px;
}

.feed-card__media {
    min-height: 100%;
    background: linear-gradient(135deg, #d7e6f8, #eef4fb);
    overflow: hidden;
}

.feed-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feed-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.feed-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--muted);
    font-size: 13px;
}

.feed-card__body h3 {
    margin-top: 12px;
    font-size: 24px;
    line-height: 1.35;
    color: #10233f;
}

.feed-card__body p {
    margin-top: 12px;
    color: var(--muted);
}

.feed-card__more {
    margin-top: auto;
    padding-top: 18px;
    color: var(--primary);
    font-weight: 700;
}

.news-compact {
    display: grid;
    gap: 14px;
}

.news-compact li {
    padding-bottom: 14px;
    border-bottom: 1px dashed var(--line);
}

.news-compact li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.news-compact a {
    display: block;
}

.news-compact strong {
    display: block;
    color: #122948;
    line-height: 1.55;
}

.news-compact span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
}

.contact-card {
    padding: 28px;
    background:
        radial-gradient(circle at top right, rgba(255, 143, 31, 0.14), transparent 32%),
        linear-gradient(180deg, #f9fbff 0%, #eef4fb 100%);
}

.contact-card h3 {
    font-size: 24px;
    color: #13233f;
}

.contact-card p {
    margin-top: 10px;
    color: var(--muted);
}

.contact-card ul {
    margin-top: 18px;
    display: grid;
    gap: 12px;
}

.contact-card li {
    padding: 14px 16px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(42, 90, 152, 0.08);
}

.contact-card li span {
    display: block;
    color: var(--muted);
    font-size: 13px;
}

.contact-card li strong,
.contact-card li a {
    display: block;
    margin-top: 4px;
    color: #152e50;
    font-size: 18px;
    font-weight: 700;
}

.category-grid,
.news-grid,
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.category-card {
    padding: 22px;
}

.category-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(42, 90, 152, 0.1);
    color: var(--primary);
    font-size: 24px;
    font-weight: 700;
}

.category-card strong {
    display: block;
    margin-top: 18px;
    font-size: 20px;
    color: #13233f;
}

.category-card p {
    margin-top: 10px;
    color: var(--muted);
    min-height: 48px;
}

.category-card em {
    display: inline-flex;
    align-items: center;
    margin-top: 14px;
    color: var(--primary);
    font-style: normal;
    font-weight: 700;
}

.news-card {
    overflow: hidden;
}

.news-card a {
    display: block;
    height: 100%;
}

.news-card__media {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #d7e6f8, #eef4fb);
    overflow: hidden;
}

.news-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card__body {
    padding: 22px;
}

.news-card__body h3 {
    font-size: 20px;
    line-height: 1.45;
    color: #13233f;
}

.news-card__body p {
    margin-top: 10px;
    color: var(--muted);
}

.news-card__body span {
    display: block;
    margin-top: 14px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
}

.page-banner {
    padding: 34px 0 28px;
}

.page-banner__box {
    padding: 28px 34px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(23, 56, 101, 0.98) 0%, rgba(44, 99, 170, 0.95) 60%, rgba(255, 143, 31, 0.9) 100%);
    color: #fff;
    box-shadow: var(--shadow);
}

.page-banner__crumb {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.page-banner h1 {
    font-size: 36px;
    line-height: 1.2;
}

.page-banner p {
    max-width: 760px;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.86);
}

.page-banner__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.page-banner__chips a,
.page-banner__chips span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 13px;
}

.sidebar-card h3,
.content-panel h2,
.legacy-card h2 {
    font-size: 24px;
    line-height: 1.25;
    color: #13233f;
}

.sidebar-card__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.sidebar-card__title span {
    color: var(--muted);
    font-size: 13px;
}

.sidebar-links {
    display: grid;
    gap: 10px;
}

.sidebar-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: var(--surface-soft);
    color: #16345d;
    font-weight: 600;
}

.sidebar-links a:hover {
    transform: translateY(-2px);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.overview-card {
    padding: 22px;
    border-radius: 20px;
    background: linear-gradient(180deg, #f9fbff 0%, #eef4fb 100%);
    border: 1px solid rgba(42, 90, 152, 0.08);
}

.overview-card strong {
    display: block;
    font-size: 20px;
    color: #10233f;
}

.overview-card p {
    margin-top: 10px;
    color: var(--muted);
}

.overview-card em {
    display: inline-flex;
    align-items: center;
    margin-top: 14px;
    font-style: normal;
    font-weight: 700;
    color: var(--primary);
}

.product-grid {
    display: grid;
    gap: 18px;
}

.pagebar {
    margin-top: 28px;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(42, 90, 152, 0.08);
    color: #17345d;
}

.pagination .current,
.pagination a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.foot {
    margin-top: 70px;
    background: #0f1f36;
    color: rgba(255, 255, 255, 0.7);
}

.site-footer__upper {
    padding: 48px 0 34px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 36px;
    align-items: start;
}

.site-footer__brand strong {
    display: block;
    font-size: 28px;
    color: #fff;
}

.site-footer__brand p {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.site-footer__brand .summary {
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.site-footer__links h4 {
    margin-bottom: 14px;
    color: #fff;
    font-size: 18px;
}

.site-footer__links a {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.72);
}

.site-footer__links a:last-child {
    margin-bottom: 0;
}

.site-footer__links a:hover {
    color: #fff;
}

.copy {
    padding: 18px 20px 94px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
}

.copy a {
    color: rgba(255, 255, 255, 0.72);
}

.g_fnva {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(42, 90, 152, 0.1);
    box-shadow: 0 -12px 30px rgba(12, 29, 52, 0.08);
    backdrop-filter: blur(10px);
}

.m-f01 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.m-f01 li a {
    min-height: 66px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #4a607c;
    font-size: 12px;
}

.m-f01 li a em {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 10px;
    background: rgba(42, 90, 152, 0.1);
    color: var(--primary);
    font-style: normal;
    font-size: 14px;
    font-weight: 700;
}

.m-f01 li a:hover,
.m-f01 li.is-active a {
    color: var(--primary);
}

.ban-ny {
    padding: 34px 0 24px;
}

.ban-ny .img {
    display: none;
}

.ban-ny .txt b {
    display: block;
    font-size: 36px;
    line-height: 1.2;
    color: #10233f;
}

.ban-ny .txt p {
    margin-top: 12px;
    color: var(--muted);
}

.loca {
    margin-top: 18px;
    color: var(--muted);
    font-size: 14px;
}

.main-fr-pro {
    display: grid;
    gap: 18px;
}

.main-fr {
    width: 320px;
}

.main-fl {
    width: calc(100% - 348px);
}

.box {
    padding: 24px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(42, 90, 152, 0.08);
    box-shadow: 0 14px 30px rgba(20, 48, 85, 0.08);
}

.box > b,
.box .tit-pro span {
    display: block;
    font-size: 22px;
    line-height: 1.3;
    color: #13233f;
}

.box .mab {
    margin-bottom: 14px;
}

.fl-pro,
.box dl {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.fl-pro li a,
.box dl dt a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    background: var(--surface-soft);
    color: #17345d;
}

.box dl dt .imgfd,
.box dl dt .txt,
.list-news .imgfd,
.list-news .txt {
    float: none;
}

.box dl dt .imgfd {
    width: 88px;
    height: 64px;
    flex: 0 0 88px;
    overflow: hidden;
    border-radius: 12px;
}

.box dl dt .imgfd img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box dl dt .txt {
    flex: 1;
    line-height: 1.6;
}

.list-pro,
.list-news,
.xgcp {
    display: grid;
    gap: 18px;
}

.list-pro li,
.list-news li,
.xgcp li {
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(42, 90, 152, 0.08);
    box-shadow: 0 14px 30px rgba(20, 48, 85, 0.08);
    overflow: hidden;
}

.list-pro li a {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    min-height: 200px;
}

.list-pro .imgfd,
.show-pro1 .imgfd {
    background: linear-gradient(135deg, #d7e6f8, #eef4fb);
    overflow: hidden;
}

.list-pro .imgfd img,
.show-pro1 .imgfd img,
.xgcp .imgfd img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.list-pro .txt {
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.list-pro .txt h2 {
    font-size: 22px;
    line-height: 1.4;
    color: #13233f;
}

.list-pro .txt span {
    display: inline-flex;
    margin-top: 14px;
    color: var(--primary);
    font-weight: 700;
}

.list-news li a {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    min-height: 220px;
}

.list-news .imgfd {
    background: linear-gradient(135deg, #d7e6f8, #eef4fb);
    overflow: hidden;
}

.list-news .imgfd img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.list-news .txt {
    padding: 22px;
}

.list-news .txt h2 {
    font-size: 22px;
    line-height: 1.4;
    color: #13233f;
}

.list-news .des {
    margin-top: 10px;
    color: var(--muted);
}

.list-news .date {
    margin-top: 16px;
    color: var(--primary);
    font-weight: 700;
}

.show-pro1,
.show-new {
    padding: 28px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(42, 90, 152, 0.08);
    box-shadow: 0 14px 30px rgba(20, 48, 85, 0.08);
}

.show-pro1 {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 28px;
}

.show-pro1 .imgfd {
    min-height: 320px;
    border-radius: 22px;
}

.show-pro1 h1,
.show-new h1 {
    font-size: 34px;
    line-height: 1.3;
    color: #10233f;
}

.show-pro1 .des,
.show-new .des {
    margin-top: 18px;
    color: var(--muted);
}

.ind-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin-top: 24px;
    padding: 0 20px;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
}

.show-new dl {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 14px;
}

.show-pro2 {
    margin-top: 20px;
}

.tit-pro {
    margin-bottom: 18px;
}

.xgcp {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.xgcp li a {
    display: block;
}

.xgcp .imgfd {
    aspect-ratio: 16 / 11;
    background: linear-gradient(135deg, #d7e6f8, #eef4fb);
}

.xgcp h3 {
    padding: 18px 20px 20px;
    font-size: 18px;
    line-height: 1.5;
    color: #13233f;
}

.fanye {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    color: var(--muted);
}

#maximg img,
.des img,
.m-article img {
    max-width: 100%;
    height: auto !important;
}

#maximg table,
.des table {
    width: 100% !important;
    max-width: 100%;
}

.fn_h {
    display: none;
}

@media (max-width: 1024px) {
    .hero-home__grid,
    .home-layout__grid,
    .page-shell,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .main-fr,
    .main-fl {
        width: 100%;
    }

    .main-fr {
        margin-bottom: 18px;
    }

    .category-grid,
    .news-grid,
    .related-grid,
    .xgcp {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .site-header__inner {
        min-height: 76px;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .site-nav {
        position: fixed;
        top: 120px;
        right: 20px;
        left: 20px;
        display: none;
        padding: 18px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(42, 90, 152, 0.08);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: block;
    }

    .site-nav__list {
        display: grid;
        gap: 8px;
    }

    .site-nav__link {
        width: 100%;
        justify-content: flex-start;
        min-height: 44px;
    }

    .site-nav__drop {
        position: static;
        min-width: 0;
        margin-top: 8px;
        padding: 8px;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--surface-soft);
    }

    .site-nav__item:hover .site-nav__drop {
        transform: none;
    }

    .hero-home__grid,
    .feed-card a,
    .list-pro li a,
    .list-news li a,
    .show-pro1 {
        grid-template-columns: 1fr;
    }

    .hero-home__panel,
    .hero-home__stack,
    .page-banner__box,
    .content-panel,
    .sidebar-card,
    .contact-card,
    .show-pro1,
    .show-new,
    .box {
        padding: 22px;
    }

    .hero-home__panel h1,
    .page-banner h1,
    .ban-ny .txt b,
    .show-pro1 h1,
    .show-new h1 {
        font-size: 30px;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 14px;
    }

    .center {
        padding: 0 14px;
    }

    .site-toolbar__inner {
        min-height: 40px;
    }

    .site-toolbar__links {
        gap: 10px;
    }

    .site-brand img {
        width: 56px;
        height: 56px;
    }

    .site-brand__name {
        font-size: 22px;
    }

    .site-brand__desc {
        display: none;
    }

    .hero-home {
        padding-top: 22px;
    }

    .hero-home__panel h1,
    .page-banner h1,
    .ban-ny .txt b,
    .show-pro1 h1,
    .show-new h1 {
        font-size: 26px;
    }

    .section-title {
        display: block;
    }

    .section-title h2,
    .sidebar-card h3,
    .content-panel h2 {
        font-size: 24px;
    }

    .hero-home__stats,
    .category-grid,
    .news-grid,
    .related-grid,
    .xgcp {
        grid-template-columns: 1fr;
    }

    .quick-channel__head {
        display: block;
    }

    .quick-channel__head p {
        margin-top: 6px;
    }

    .show-pro1 .imgfd {
        min-height: 220px;
    }

    .list-pro li a,
    .list-news li a {
        min-height: 0;
    }

    .feed-card__body h3,
    .list-pro .txt h2,
    .list-news .txt h2 {
        font-size: 20px;
    }

    .copy {
        padding-bottom: 88px;
    }
}
