@charset "UTF-8";

:root {
    --article-primary: #1677ff;
    --article-primary-2: #0a5bdb;
    --article-accent: #eaf3ff;
    --article-text: #162033;
    --article-text-soft: #5f6f87;
    --article-line: rgba(18, 45, 88, 0.08);
    --article-shadow: 0 24px 60px rgba(19, 56, 117, 0.08);
    --article-radius: 24px;
}

body {
    background:
        radial-gradient(circle at 12% 18%, rgba(59,130,246,0.08), transparent 24%),
        radial-gradient(circle at 88% 28%, rgba(96,165,250,0.06), transparent 20%),
        linear-gradient(180deg, #f3f8ff 0%, #f7faff 25%, #ffffff 52%, #f5f9ff 100%) !important;
    color: var(--article-text);
}

.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    z-index: 9999;
    background: linear-gradient(90deg, #5bb5ff 0%, #1677ff 48%, #0a5bdb 100%);
    box-shadow: 0 0 14px rgba(22,119,255,0.42);
}

.article-hero-pro {
    padding: 0 !important;
    position: relative;
    margin-top: 72px;
    min-height: 270px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 18% 12%, rgba(54,147,255,.24), transparent 34%),
        radial-gradient(circle at 80% 18%, rgba(87,171,255,.18), transparent 32%),
        linear-gradient(180deg, rgba(8, 27, 64, 0.96) 0%, rgba(13, 43, 94, 0.93) 58%, rgba(31, 91, 168, 0.84) 100%);
}

.article-hero-pro::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 92px;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(245,249,255,0.38) 48%, rgba(245,249,255,0.95) 100%);
}

.article-hero-inner {
    position: relative;
    z-index: 2;
    padding: 56px 0 108px;
    text-align: center;
}

.article-hero-kicker {
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.08);
    color: rgba(235,244,255,0.92);
    font-size: 13px;
    margin-bottom: 16px;
    letter-spacing: .04em;
}

.article-hero-inner h1 {
    font-size: 40px;
    line-height: 1.18;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
}

.article-hero-inner p {
    max-width: 680px;
    margin: 0 auto;
    color: rgba(226, 237, 255, 0.82);
    font-size: 15px;
    line-height: 1.8;
}

.article-breadcrumb {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(216, 230, 255, 0.74);
    font-size: 13px;
}

.article-breadcrumb a,
.article-breadcrumb em {
    color: inherit;
    text-decoration: none;
    font-style: normal;
}

.article-hero-glow {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.article-hero-glow-a {
    width: 260px;
    height: 260px;
    border-radius: 36px;
    background: linear-gradient(135deg, rgba(84,174,255,0.34) 0%, rgba(11,96,224,0.12) 100%);
    transform: rotate(-24deg);
    right: 14%;
    top: 18px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.14);
}

.article-hero-glow-b {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.38) 0%, rgba(255,255,255,0.08) 58%, transparent 72%);
    left: 12%;
    top: 38px;
}

.article-page-wrap {
    position: relative;
    z-index: 3;
    max-width: 1260px;
    margin: -72px auto 64px;
    padding: 0 20px;
}

.notice-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.notice-header-card {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(255,255,255,0.75);
    box-shadow: 0 14px 32px rgba(16, 43, 86, 0.08);
    backdrop-filter: blur(12px);
}

.nh-link {
    height: 42px;
    line-height: 42px;
    padding: 0 20px;
    border-radius: 999px;
    text-decoration: none;
    color: #57667d;
    font-size: 14px;
    font-weight: 600;
    transition: all .25s ease;
}

.nh-link:hover {
    color: var(--article-primary);
    background: #f6f9ff;
}

.nh-link.active {
    color: #fff;
    background: linear-gradient(180deg, #43a2ff 0%, #1677ff 56%, #0a5bdb 100%);
    box-shadow: 0 12px 28px rgba(22,119,255,0.24);
}

.notice-header-meta {
    color: #73819a;
    font-size: 14px;
}

.notice-header-meta strong {
    color: var(--article-text);
}

.article-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 296px;
    gap: 24px;
    align-items: start;
}

.article-content-card,
.article-side-card {
    background: rgba(255,255,255,0.93);
    border: 1px solid rgba(255,255,255,0.9);
    border-radius: var(--article-radius);
    box-shadow: var(--article-shadow);
    backdrop-filter: blur(12px);
}

.article-content-card {
    padding: 34px;
}

.article-side-card {
    padding: 22px;
    margin-bottom: 18px;
}

.article-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--article-line);
}

.article-section-kicker {
    color: var(--article-primary);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
}

.article-section-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--article-text);
    margin: 0;
}

.article-section-tip {
    color: var(--article-text-soft);
    font-size: 13px;
}

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

.notice-card-item {
    display: block;
    text-decoration: none;
    padding: 22px 24px;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(18, 45, 88, 0.08);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.notice-card-item:hover {
    transform: translateY(-4px);
    border-color: rgba(22,119,255,0.18);
    box-shadow: 0 24px 44px rgba(22,119,255,0.10);
}

.notice-card-top,
.notice-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.notice-tag,
.detail-cat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: #ebf3ff;
    color: var(--article-primary);
    font-size: 12px;
    font-weight: 700;
}

.notice-badge-new {
    display: inline-flex;
    align-items: center;
    height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ff8e4d 0%, #ff6238 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
}

.notice-card-title {
    margin: 16px 0 18px;
    font-size: 20px;
    line-height: 1.5;
    color: var(--article-text);
}

.notice-card-date {
    font-size: 13px;
    color: #7b8aa3;
}

.notice-card-link {
    color: var(--article-primary);
    font-weight: 700;
    font-size: 14px;
}

.notice-card-link i {
    font-style: normal;
    display: inline-block;
    margin-left: 6px;
    transition: transform .2s ease;
}

.notice-card-item:hover .notice-card-link i {
    transform: translateX(4px);
}

.pagination-wrap {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--article-line);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination li { list-style: none; }
.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid rgba(18,45,88,0.1);
    background: #fff;
    color: #57667d;
    text-decoration: none;
    transition: all .25s ease;
}

.pagination a:hover,
.pagination .active span {
    border-color: rgba(22,119,255,0.22);
    background: #edf4ff;
    color: var(--article-primary);
}

.article-side-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--article-text);
    margin-bottom: 16px;
}

.mini-link,
.side-action-btn,
.side-article-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-decoration: none;
    border-radius: 14px;
}

.mini-link {
    min-height: 44px;
    padding: 0 14px;
    margin-bottom: 10px;
    color: #526179;
    background: #f7faff;
    border: 1px solid rgba(18,45,88,0.06);
    font-weight: 600;
}

.mini-link.active,
.mini-link:hover {
    color: var(--article-primary);
    border-color: rgba(22,119,255,0.18);
    background: #edf4ff;
}

.side-action-btn {
    min-height: 46px;
    padding: 0 16px;
    margin-bottom: 12px;
    border: 1px solid rgba(18,45,88,0.08);
    background: #fff;
    color: var(--article-text);
    font-weight: 700;
    transition: all .25s ease;
}

.side-action-btn.primary {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(180deg, #43a2ff 0%, #1677ff 56%, #0a5bdb 100%);
    box-shadow: 0 12px 28px rgba(22,119,255,0.22);
}

.side-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(19,56,117,0.10);
}

.article-contact-line {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 0;
    border-bottom: 1px dashed rgba(18,45,88,0.08);
    font-size: 13px;
    color: var(--article-text-soft);
}

.article-contact-line:last-child { border-bottom: none; }
.article-contact-line strong { color: var(--article-text); font-size: 15px; }

.detail-card {
    padding: 38px 40px;
}

.detail-head {
    margin-bottom: 30px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--article-line);
}

.detail-badges {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.detail-date-chip {
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: #f6f8fb;
    color: #6f7e95;
    font-size: 12px;
    font-weight: 600;
}

.detail-title {
    margin: 0 0 16px;
    font-size: 34px;
    line-height: 1.35;
    color: #101828;
    font-weight: 800;
}

.detail-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: #6f7e95;
    font-size: 14px;
}

.detail-body {
    font-size: 16px;
    line-height: 1.95;
    color: #2c3a4e;
}

.detail-body h1,
.detail-body h2,
.detail-body h3,
.detail-body h4,
.detail-body h5,
.detail-body h6 {
    color: #13243d;
    line-height: 1.45;
    margin-top: 1.8em;
    margin-bottom: 0.8em;
    font-weight: 800;
    scroll-margin-top: 100px;
}

.detail-body h2 {
    font-size: 28px;
    padding-left: 14px;
    border-left: 4px solid var(--article-primary);
}

.detail-body h3 { font-size: 22px; }
.detail-body h4 { font-size: 18px; }

.detail-body p,
.detail-body ul,
.detail-body ol,
.detail-body table,
.detail-body blockquote {
    margin: 0 0 1.15em;
}

.detail-body a {
    color: var(--article-primary);
    text-decoration: none;
    border-bottom: 1px solid rgba(22,119,255,0.24);
}

.detail-body ul,
.detail-body ol { padding-left: 1.5em; }

.detail-body blockquote {
    margin-left: 0;
    margin-right: 0;
    padding: 16px 18px;
    border-radius: 14px;
    background: #f7fbff;
    border: 1px solid rgba(22,119,255,0.10);
    color: #48617f;
}

.detail-body table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(18,45,88,0.08);
}

.detail-body th,
.detail-body td {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(18,45,88,0.08);
    border-right: 1px solid rgba(18,45,88,0.06);
}

.detail-body th {
    background: #f5f9ff;
    color: #1d3557;
    font-weight: 700;
}

.detail-body img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 16px 34px rgba(18,45,88,0.12);
    margin: 14px auto 18px;
    display: block;
}

.article-bottom-tools { margin-top: 36px; }

.article-back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 128px;
    height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    text-decoration: none;
    color: #28456e;
    background: #f6f9ff;
    border: 1px solid rgba(18,45,88,0.10);
    font-weight: 700;
    transition: all .25s ease;
}

.article-back-btn:hover {
    color: var(--article-primary);
    border-color: rgba(22,119,255,0.18);
    transform: translateY(-2px);
}

.article-pager {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 32px;
    padding-top: 22px;
    border-top: 1px solid var(--article-line);
}

.pager-item {
    min-height: 88px;
    padding: 18px 20px;
    border-radius: 18px;
    background: #f8fbff;
    border: 1px solid rgba(18,45,88,0.06);
}

.pager-item.align-right { text-align: right; }
.pager-label { display: block; color: #7b8aa3; font-size: 12px; margin-bottom: 8px; }
.pager-link { color: var(--article-text); font-weight: 700; text-decoration: none; line-height: 1.6; }
.pager-link:hover { color: var(--article-primary); }
.pager-empty { color: #a0acbe; }

.article-toc { display: flex; flex-direction: column; gap: 10px; }
.toc-empty,
.side-empty { color: #93a0b3; font-size: 14px; }

.toc-link {
    display: block;
    text-decoration: none;
    color: #5c6e87;
    font-size: 14px;
    line-height: 1.6;
    padding: 8px 10px 8px 12px;
    border-radius: 12px;
    border-left: 2px solid transparent;
    transition: all .2s ease;
}

.toc-link.level-3 { padding-left: 24px; font-size: 13px; }
.toc-link:hover,
.toc-link.active {
    color: var(--article-primary);
    background: #f3f8ff;
    border-left-color: var(--article-primary);
}

.side-article-list { display: flex; flex-direction: column; gap: 10px; }
.side-article-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(18,45,88,0.07);
    background: #fafcff;
    transition: all .25s ease;
}

.side-article-item:hover {
    transform: translateY(-2px);
    border-color: rgba(22,119,255,0.18);
    background: #f2f8ff;
}

.side-article-title { color: var(--article-text); line-height: 1.55; font-weight: 600; }
.side-article-date { color: #8c99ab; font-size: 12px; }

.empty-box { text-align: center; padding: 70px 20px; color: #a5afbe; }
.wide-empty {
    grid-column: 1 / -1;
    border-radius: 20px;
    background: linear-gradient(180deg, #fbfdff 0%, #f7faff 100%);
    border: 1px dashed rgba(18,45,88,0.08);
}

@media (max-width: 1080px) {
    .article-shell { grid-template-columns: minmax(0, 1fr); }
    .article-side { order: 2; }
}

@media (max-width: 768px) {
    .article-hero-pro {
    padding: 0 !important; margin-top: 60px; min-height: 230px; }
    .article-hero-inner { padding: 42px 0 88px; }
    .article-hero-inner h1 { font-size: 30px; }
    .article-page-wrap { margin-top: -54px; padding: 0 14px; }
    .notice-header-row,
    .article-section-head,
    .article-pager { grid-template-columns: 1fr; display: grid; }
    .notice-header-card { width: 100%; overflow-x: auto; white-space: nowrap; }
    .article-content-card,
    .article-side-card,
    .detail-card { padding: 22px 18px; border-radius: 20px; }
    .article-section-title { font-size: 24px; }
    .notice-card-title { font-size: 18px; }
    .detail-title { font-size: 28px; }
    .detail-meta-row { gap: 10px; font-size: 13px; }
    .detail-body { font-size: 15px; line-height: 1.88; }
    .detail-body h2 { font-size: 24px; }
    .pager-item,
    .pager-item.align-right { text-align: left; }
}


/* ===== 文章页与首页头尾同步补丁：只控制文章内容区，不覆盖 Header/Footer ===== */
.article-page-wrap,
.article-hero-pro,
.article-shell,
.article-content-card,
.article-side-card {
    box-sizing: border-box;
}

.article-hero-pro .container,
.article-page-wrap {
    isolation: isolate;
}

/* 避免首页全局 section 规则影响文章内容区 */
.article-hero-pro,
.article-content-card {
    background-clip: padding-box;
}

/* 让文章内容和首页 Footer 之间有稳定间距 */
.article-page-wrap {
    margin-bottom: 86px;
}

/* =========================================================
   公告/文章页二次精修：导航下方 Banner + 页脚紧凑化
   说明：Header/Footer 仍使用首页最终版结构，这里只做文章页场景下的视觉修正。
========================================================= */

/* 1. 修复导航下方过白：全局 section 背景透明规则带 !important，必须在文章页强制覆盖 */
.article-hero-pro {
    margin-top: 68px !important;
    min-height: 318px !important;
    overflow: hidden !important;
    background:
        radial-gradient(circle at 18% 10%, rgba(74, 158, 255, .30), transparent 32%),
        radial-gradient(circle at 82% 16%, rgba(90, 179, 255, .18), transparent 30%),
        linear-gradient(180deg, #071734 0%, #0a2452 54%, #1559a8 100%) !important;
    border-bottom: 1px solid rgba(22, 119, 255, .08) !important;
}

.article-hero-pro::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,.025) 1px, transparent 1px),
        radial-gradient(circle at 50% 8%, rgba(255,255,255,.10), transparent 38%);
    background-size: 72px 72px, 72px 72px, auto;
    opacity: .72;
    mask-image: linear-gradient(180deg, rgba(0,0,0,.75), rgba(0,0,0,.22) 78%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.75), rgba(0,0,0,.22) 78%, transparent 100%);
}

.article-hero-pro::after {
    height: 118px !important;
    z-index: 2 !important;
    background: linear-gradient(180deg, rgba(245,249,255,0) 0%, rgba(245,249,255,.22) 40%, rgba(245,249,255,.84) 82%, #f5f9ff 100%) !important;
}

.article-hero-inner {
    z-index: 3 !important;
    padding: 62px 0 124px !important;
}

.article-hero-kicker {
    background: rgba(255,255,255,.10) !important;
    border-color: rgba(255,255,255,.18) !important;
    color: rgba(236,245,255,.92) !important;
}

.article-hero-inner h1 {
    color: #fff !important;
    text-shadow: 0 12px 34px rgba(0,0,0,.32) !important;
}

.article-hero-inner p,
.article-breadcrumb {
    color: rgba(226, 237, 255, .82) !important;
}

.article-hero-glow-a {
    opacity: .72 !important;
    filter: blur(.2px) !important;
}

.article-hero-glow-b {
    opacity: .45 !important;
}

/* 2. 内容区与顶部 Banner 的交叠更自然 */
.article-page-wrap {
    margin-top: -88px !important;
    margin-bottom: 52px !important;
}

.notice-header-row {
    margin-bottom: 16px !important;
}

.article-content-card,
.article-side-card {
    box-shadow: 0 22px 54px rgba(18, 56, 115, .075) !important;
}

/* 3. 响应式补充：仅控制文章内容区，不覆盖首页公共头尾 */
@media (max-width: 1100px) {
    .article-hero-pro { min-height: 270px !important; }
    .article-hero-inner { padding: 48px 0 104px !important; }
    .article-page-wrap { margin-top: -68px !important; }
}

@media (max-width: 760px) {
    .article-hero-pro { margin-top: 60px !important; min-height: 230px !important; }
    .article-hero-inner { padding: 40px 0 84px !important; }
    .article-page-wrap { margin-top: -52px !important; }
}

/* 公共头尾继承保护：article.css 不覆盖首页 Header/Footer/Sidebar，仅作用文章内容区 */


/* ===== 公告中心精修版：只作用于文章/公告内容区，不影响公共 Header/Footer/SideBar ===== */
.article-hero-pro {
    margin-top: 68px;
    min-height: 230px;
    background:
        radial-gradient(circle at 16% 18%, rgba(71,160,255,.30), transparent 32%),
        radial-gradient(circle at 78% 24%, rgba(76,143,255,.24), transparent 34%),
        linear-gradient(180deg, rgba(7, 24, 58, 0.98) 0%, rgba(11, 42, 91, 0.96) 56%, rgba(31, 91, 168, 0.86) 100%) !important;
}

.article-hero-pro::after {
    height: 78px;
    background: linear-gradient(180deg, rgba(245,249,255,0) 0%, rgba(245,249,255,0.56) 58%, rgba(245,249,255,0.98) 100%);
}

.article-hero-inner {
    min-height: 230px;
    padding: 44px 32px 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 40px;
}

.article-hero-copy {
    position: relative;
    z-index: 3;
    flex: 1;
    min-width: 0;
    text-align: left;
}

.article-hero-kicker {
    height: 30px;
    padding: 0 13px;
    margin-bottom: 12px;
    font-size: 12px;
    background: rgba(255,255,255,0.09);
}

.article-hero-inner h1 {
    font-size: 36px;
    margin: 0 0 10px;
    letter-spacing: .02em;
}

.article-hero-inner p {
    margin: 0;
    max-width: 560px;
    font-size: 14px;
    color: rgba(226,237,255,.84);
}

.article-breadcrumb {
    margin-top: 14px;
    font-size: 12px;
}

.article-hero-visual {
    position: relative;
    z-index: 3;
    width: 280px;
    height: 150px;
    flex: 0 0 280px;
}

.hero-doc-card {
    position: absolute;
    border-radius: 22px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 24px 60px rgba(0,0,0,.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.hero-doc-main {
    left: 20px;
    top: 18px;
    width: 190px;
    height: 116px;
    padding: 18px;
    transform: rotate(-6deg);
}

.hero-doc-top {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
}

.hero-doc-top span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.55);
}

.hero-doc-line {
    height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,.28);
    margin-top: 10px;
}

.hero-doc-line-lg { width: 100%; }
.hero-doc-line-sm { width: 58%; }

.hero-doc-mini {
    right: 0;
    bottom: 10px;
    width: 126px;
    height: 78px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #dcebff;
    transform: rotate(6deg);
}

.hero-doc-mini svg {
    width: 24px;
    height: 24px;
    color: #8ec5ff;
}

.hero-doc-mini span {
    font-size: 13px;
    font-weight: 700;
}

.hero-visual-ring {
    position: absolute;
    right: 38px;
    top: -4px;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    border: 18px solid rgba(255,255,255,.055);
}

.article-page-wrap {
    max-width: 1320px;
    margin: -56px auto 58px;
    padding: 0 28px;
}

.article-shell-list {
    grid-template-columns: minmax(0, 900px) 276px;
    justify-content: center;
    gap: 22px;
}

.list-card {
    padding: 24px 26px 26px;
}

.article-list-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 18px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(18,45,88,.07);
}

.notice-header-card {
    padding: 5px;
    box-shadow: 0 10px 26px rgba(16,43,86,.07);
}

.nh-link {
    height: 36px;
    line-height: 36px;
    padding: 0 18px;
    font-size: 13px;
}

.notice-header-meta {
    font-size: 13px;
    color: #7a8aa2;
}

.article-section-head {
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 0;
    border-bottom: 0;
}

.article-section-kicker {
    margin-bottom: 5px;
    font-size: 12px;
}

.article-section-title {
    font-size: 25px;
    letter-spacing: -.02em;
}

.article-section-tip {
    max-width: 280px;
    text-align: right;
    line-height: 1.6;
}

.notice-list-grid {
    gap: 12px;
}

.notice-card-item {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 120px;
    gap: 14px;
    align-items: center;
    min-height: 84px;
    padding: 16px 18px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(248,251,255,.92) 100%);
}

.notice-card-top {
    justify-content: flex-start;
    gap: 8px;
    order: 1;
    grid-column: 1;
    margin-bottom: 5px;
}

.notice-card-title {
    order: 2;
    grid-column: 1;
    margin: 0;
    font-size: 17px;
    line-height: 1.45;
    font-weight: 800;
    color: #152238;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.notice-card-bottom {
    grid-column: 2;
    grid-row: 1 / span 2;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
}

.notice-tag {
    height: 24px;
    padding: 0 9px;
    font-size: 11px;
}

.notice-badge-new {
    height: 20px;
    padding: 0 7px;
    font-size: 10px;
}

.notice-card-date {
    font-size: 12px;
    color: #8796ad;
}

.notice-card-link {
    font-size: 13px;
}

.pagination-wrap {
    margin-top: 22px;
    padding-top: 18px;
}

.pagination {
    gap: 8px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    min-width: 34px;
    height: 34px;
    padding: 0 11px;
    border-radius: 999px;
    font-size: 13px;
    box-shadow: 0 8px 20px rgba(20, 65, 130, 0.04);
}

.pagination .active span {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(180deg, #43a2ff 0%, #1677ff 56%, #0a5bdb 100%);
    box-shadow: 0 10px 22px rgba(22,119,255,.20);
}

.article-side-card {
    padding: 18px;
    margin-bottom: 14px;
    border-radius: 18px;
    box-shadow: 0 18px 48px rgba(19,56,117,.07);
}

.article-side-title {
    font-size: 15px;
    margin-bottom: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-side-title::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--article-primary);
    box-shadow: 0 0 0 4px rgba(22,119,255,.10);
}

.mini-link {
    min-height: 38px;
    margin-bottom: 8px;
    padding: 0 12px;
    border-radius: 12px;
    font-size: 13px;
}

.side-action-btn {
    min-height: 40px;
    margin-bottom: 9px;
    padding: 0 13px;
    border-radius: 12px;
    font-size: 13px;
}

.article-contact-line {
    padding: 11px 0;
    gap: 3px;
}

.article-contact-line span {
    font-size: 12px;
    color: #7b8aa3;
}

.article-contact-line strong {
    font-size: 13px;
}

@media (max-width: 1080px) {
    .article-hero-inner {
        text-align: center;
        justify-content: center;
    }
    .article-hero-copy { text-align: center; }
    .article-hero-inner p { margin-left: auto; margin-right: auto; }
    .article-hero-visual { display: none; }
    .article-shell-list { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 768px) {
    .article-hero-pro { min-height: 210px; }
    .article-hero-inner { min-height: 210px; padding: 38px 18px 72px; }
    .article-hero-inner h1 { font-size: 30px; }
    .article-page-wrap { margin-top: -46px; padding: 0 14px; }
    .article-list-toolbar { flex-direction: column; align-items: stretch; }
    .notice-header-card { overflow-x: auto; white-space: nowrap; }
    .notice-header-meta { text-align: center; }
    .article-section-head { flex-direction: column; align-items: flex-start; }
    .article-section-tip { text-align: left; max-width: none; }
    .notice-card-item { grid-template-columns: 1fr; min-height: auto; }
    .notice-card-bottom { grid-column: 1; grid-row: auto; flex-direction: row; align-items: center; justify-content: space-between; }
    .notice-card-title { white-space: normal; font-size: 16px; }
}
