/* 资讯频道 — 大厂内容列表/阅读页 */
:root {
    --info-bg: #f5f7fb;
    --info-surface: #ffffff;
    --info-text: #1f2329;
    --info-text-2: #646a73;
    --info-text-3: #8f959e;
    --info-line: #eef0f3;
    --info-primary: #1677ff;
    --info-primary-soft: #e8f3ff;
    --info-primary-hover: #0f66e0;
    --info-radius: 12px;
    --info-shadow: 0 1px 2px rgba(31, 35, 41, 0.04), 0 8px 24px rgba(31, 35, 41, 0.06);
}

body:has(.info-wrap) {
    background: var(--info-bg);
}

.info-wrap {
    min-height: calc(100vh - 120px);
    padding-bottom: 56px;
    background:
        radial-gradient(1200px 280px at 20% -40px, rgba(22, 119, 255, 0.08), transparent 60%),
        radial-gradient(900px 240px at 90% 0, rgba(14, 165, 233, 0.06), transparent 55%),
        var(--info-bg);
}

.info-wrap > .container.info-page {
    width: 100%;
    max-width: 1250px;
}

.info-page {
    padding: 24px 15px 0;
    max-width: 1250px;
}

/* ---- Banner ---- */
.info-banner-wrap {
    margin: 0 0 20px;
}

.info-banner {
    position: relative;
    display: block;
    width: 100%;
    height: 240px;
    border-radius: var(--info-radius);
    background: #0b5fff center/cover no-repeat;
    box-shadow: var(--info-shadow);
    overflow: hidden;
    text-decoration: none !important;
}

.info-banner-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 28, 68, 0.72) 0%, rgba(6, 28, 68, 0.35) 42%, rgba(6, 28, 68, 0.08) 70%, transparent 100%);
    pointer-events: none;
}

.info-banner-copy {
    position: absolute;
    left: 36px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 460px;
    color: #fff;
}

.info-banner-copy em {
    font-style: normal;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.04em;
    opacity: 0.85;
}

.info-banner-copy strong {
    font-size: 34px;
    font-weight: 450;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.info-banner-copy i {
    font-style: normal;
    font-size: 14px;
    opacity: 0.78;
}

/* ---- Hero ---- */
.info-channel-tabs {
    display: inline-flex;
    padding: 4px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(238, 240, 243, 0.9);
    border-radius: 999px;
    box-shadow: 0 1px 2px rgba(31, 35, 41, 0.04);
    backdrop-filter: blur(8px);
}

.info-channel-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 104px;
    padding: 8px 18px;
    color: var(--info-text-2);
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 400;
    border-radius: 999px;
    transition: color .18s ease, background .18s ease, box-shadow .18s ease;
}

.info-channel-tab:hover {
    color: var(--info-primary);
}

.info-channel-tab.active {
    color: #fff;
    background: linear-gradient(135deg, #1677ff, #3b9bff);
    font-weight: 400;
    box-shadow: 0 4px 12px rgba(22, 119, 255, 0.28);
}

.info-hero {
    margin-bottom: 16px;
    padding: 4px 2px 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 14px;
}

.info-hero-title {
    margin: 0;
    font-size: 28px;
    font-weight: 450;
    color: var(--info-text);
    letter-spacing: -0.02em;
    line-height: 1.3;
    flex: 0 0 auto;
}

.info-hero-tag {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.info-hero-kicker {
    margin: 0;
    color: var(--info-text-3);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.04em;
}

/* ---- Tag page ---- */
.info-tag-page {
    max-width: 1250px;
}

.info-tag-hero {
    margin: 8px 0 20px;
    padding: 28px 28px 24px;
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(22, 119, 255, 0.08), rgba(14, 165, 233, 0.04)),
        var(--info-surface);
    border: 1px solid rgba(238, 240, 243, 0.95);
    box-shadow: var(--info-shadow);
}

.info-tag-kicker {
    margin: 0 0 8px;
    color: var(--info-primary);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
}

.info-tag-title {
    margin: 0 0 10px;
    font-size: 32px;
    font-weight: 450;
    color: #17191c;
    letter-spacing: -0.03em;
    line-height: 1.3;
}

.info-tag-hash {
    margin-right: 4px;
    color: var(--info-primary);
    font-weight: 450;
}

.info-tag-desc {
    margin: 0 0 16px;
    color: var(--info-text-2);
    font-size: 15px;
    line-height: 1.6;
}

.info-tag-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.info-tag-action {
    display: inline-flex;
    align-items: center;
    height: 32px;
    padding: 0 12px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e5e8eb;
    color: var(--info-text-2);
    font-size: 13px;
    font-weight: 400;
    text-decoration: none !important;
    transition: border-color .15s ease, color .15s ease;
}

.info-tag-action:hover {
    border-color: #cfe2ff;
    color: var(--info-primary);
}

.info-tag-related {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
    margin-bottom: 16px;
}

.info-tag-related-label {
    flex: 0 0 auto;
    color: var(--info-text-3);
    font-size: 13px;
    font-weight: 400;
}

.info-tag-related-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.info-tag-related-list .info-tag.is-current {
    background: var(--info-primary);
    color: #fff;
}

.info-tag-related-list .info-tag-tone-0 { background: #e8f1ff; color: #1677ff; }
.info-tag-related-list .info-tag-tone-1 { background: #ecfdf5; color: #059669; }
.info-tag-related-list .info-tag-tone-2 { background: #fff7ed; color: #c2410c; }
.info-tag-related-list .info-tag-tone-3 { background: #f5f3ff; color: #7c3aed; }
.info-tag-related-list .info-tag-tone-4 { background: #fdf2f8; color: #db2777; }
.info-tag-related-list .info-tag-tone-5 { background: #ecfeff; color: #0891b2; }
.info-tag-related-list .info-tag-tone-6 { background: #fefce8; color: #a16207; }
.info-tag-related-list .info-tag-tone-7 { background: #f1f5f9; color: #475569; }

.info-tag-related-list a.info-tag:hover {
    filter: brightness(0.97);
}

.info-tag-related-list a.info-tag.is-current:hover {
    filter: none;
    background: var(--info-primary-hover, #0958d9);
    color: #fff;
}

.info-tag-panel {
    margin-top: 0;
}

.info-hero-desc {
    margin: 0;
    max-width: none;
    color: var(--info-text-2);
    font-size: 14px;
    line-height: 1.5;
    flex: 1 1 auto;
    min-width: 0;
}

/* ---- Panel ---- */
.info-panel {
    background: var(--info-surface);
    border: 1px solid rgba(238, 240, 243, 0.95);
    border-radius: var(--info-radius);
    box-shadow: var(--info-shadow);
    overflow: hidden;
}

.info-filters {
    padding: 16px 20px 12px;
    border-bottom: 1px solid var(--info-line);
    background: linear-gradient(180deg, #fafbfd 0%, #fff 100%);
}

.info-filter-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.info-filter-row:last-child {
    margin-bottom: 0;
}

.info-filter-label {
    flex: 0 0 36px;
    padding-top: 6px;
    color: var(--info-text-3);
    font-size: 13px;
    font-weight: 400;
}

.info-filter-chips {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    min-width: 0;
}

.info-filter-chips.collapsed {
    max-height: 32px;
    overflow: hidden;
}

.info-chip {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: #f5f6f8;
    border: 1px solid transparent;
    color: var(--info-text-2);
    font-size: 13px;
    text-decoration: none !important;
    line-height: 1;
    transition: all .15s ease;
}

.info-chip:hover {
    color: var(--info-primary);
    background: var(--info-primary-soft);
}

.info-chip.active {
    color: var(--info-primary);
    background: var(--info-primary-soft);
    border-color: rgba(22, 119, 255, 0.2);
    font-weight: 400;
}

.info-expand-btn {
    flex: 0 0 auto;
    height: 28px;
    margin-top: 0;
    padding: 0 8px;
    border: none;
    background: transparent;
    color: var(--info-primary);
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    white-space: nowrap;
}

.info-expand-btn:hover {
    color: var(--info-primary-hover);
}

/* ---- List：上图下文卡片 ---- */
.info-list {
    list-style: none;
    margin: 0;
    padding: 8px 16px 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.info-list-item {
    border-bottom: 1px solid rgba(238, 240, 243, 0.95);
    min-width: 0;
}

.info-list-item:last-child {
    border-bottom: none;
}

.info-list-item:has(.info-empty) {
    grid-column: 1 / -1;
    border-bottom: none;
}

.info-row {
    display: block;
    height: auto;
    gap: 0;
    padding: 0;
    margin: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    color: inherit;
    overflow: visible;
    transition: background .18s ease;
}

.info-row:hover {
    background: #f7f9fc;
    border-color: transparent;
    box-shadow: none;
    transform: none;
}

.info-row-hit {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 18px;
    height: auto;
    padding: 16px 8px;
    text-decoration: none !important;
    color: inherit !important;
}

.info-thumb {
    flex: 0 0 220px;
    width: 220px;
    height: 146px;
    aspect-ratio: auto;
    max-height: none;
    margin: 0;
    padding-bottom: 0;
    border-radius: 10px;
    background: #1a2744 center / cover no-repeat;
    box-shadow: none;
    overflow: hidden;
    position: relative;
    align-self: center;
    transition: none;
}

.info-row:hover .info-thumb {
    box-shadow: none;
    transform: none;
}

.info-thumb-photo {
    display: block;
}

.info-row-main {
    flex: 1;
    min-width: 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 2px 4px 2px 0;
}

.info-title {
    margin: 0;
    font-size: 17px;
    font-weight: 400;
    color: #1f2329 !important;
    line-height: 1.45;
    letter-spacing: -0.015em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .15s ease;
    min-height: 0;
}

a.info-row-hit:link .info-title,
a.info-row-hit:visited .info-title {
    color: #1f2329 !important;
}

.info-row:hover .info-title {
    color: var(--info-primary) !important;
}

.info-digest {
    color: #8b929a;
    font-size: 13px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.info-meta-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 4px;
    font-size: 12px;
    color: var(--info-text-3);
    min-width: 0;
}

.info-meta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    min-width: 0;
    flex: 1;
}

.info-meta-stats {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    color: #a0a6ad;
}

.info-meta-inline .info-tag[data-href] {
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.info-meta-inline .info-tag {
    height: 24px;
    padding: 0 9px;
    font-size: 12px;
    max-width: 8em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.info-meta-inline em,
.info-meta-item {
    font-style: normal;
}

.info-arrow {
    flex: 0 0 auto;
    align-self: center;
    width: 8px;
    height: 8px;
    margin-right: 4px;
    border-right: 2px solid #c9cdd4;
    border-top: 2px solid #c9cdd4;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity .18s ease, transform .18s ease;
}

.info-tag {
    display: inline-flex;
    align-items: center;
    height: 22px;
    padding: 0 9px;
    border-radius: 999px;
    background: var(--info-primary-soft);
    color: var(--info-primary);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    text-decoration: none !important;
    transition: background .15s ease, color .15s ease;
}

a.info-tag:hover {
    background: #d6e8ff;
    color: var(--info-primary-hover);
}

.info-tag-channel {
    background: #eef2ff;
    color: #4338ca;
}

.info-tag-contest,
.info-tag-topic {
    background: var(--info-primary-soft);
    color: var(--info-primary);
}

.info-tag-region,
.info-tag-city {
    background: #ecfdf5;
    color: #047857;
}

.info-tag-year {
    background: #fff7ed;
    color: #c2410c;
}

.info-tag-soft,
.info-tag-muted {
    background: #f0f2f5;
    color: var(--info-text-2);
}

.info-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 64px 16px;
    text-align: center;
    color: var(--info-text-3);
    list-style: none;
}

.info-empty p {
    margin: 8px 0 0;
    color: var(--info-text-2);
    font-size: 15px;
    font-weight: 400;
}

.info-empty span {
    font-size: 13px;
}

.info-empty-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(22, 119, 255, 0.12), rgba(14, 165, 233, 0.08)),
        #f5f7fb;
    position: relative;
}

.info-empty-icon::after {
    content: "";
    position: absolute;
    inset: 18px 14px 18px 14px;
    border: 2px solid rgba(22, 119, 255, 0.35);
    border-radius: 6px;
}

/* ---- Pager ---- */
.info-pager {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 20px 20px;
    border-top: 1px solid var(--info-line);
    background: #fafbfd;
}

.info-pager .pagination {
    margin: 0;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
}

.info-pager .pagination > li > a,
.info-pager .pagination > li > span {
    color: var(--info-text-2);
    border-color: #e5e8eb;
    border-radius: 6px !important;
    margin: 0 2px;
    min-width: 34px;
    text-align: center;
}

.info-pager .pagination > .active > a,
.info-pager .pagination > .active > span {
    background: var(--info-primary);
    border-color: var(--info-primary);
    color: #fff;
}

.info-pager .pagination > li > a:hover {
    background: var(--info-primary-soft);
    border-color: #cfe2ff;
    color: var(--info-primary);
}

/* ---- Detail ---- */
.info-wrap-detail {
    position: relative;
}

.info-read-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    height: 2px;
    pointer-events: none;
    background: transparent;
}

.info-read-progress i {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #1677ff, #36bffa);
    box-shadow: 0 0 8px rgba(22, 119, 255, 0.35);
    transition: width .08s linear;
}

.info-detail-page {
    max-width: 1250px;
}

.info-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 24px;
    align-items: start;
}

.info-detail-layout.is-single {
    grid-template-columns: minmax(0, 1fr);
}

.info-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2px;
    margin-bottom: 18px;
    color: var(--info-text-3);
    font-size: 13px;
}

.info-breadcrumb a {
    color: var(--info-text-2);
    text-decoration: none !important;
}

.info-breadcrumb a:hover {
    color: var(--info-primary);
}

.info-bc-sep {
    margin: 0 6px;
    color: #c9cdd4;
}

.info-bc-current {
    color: var(--info-text-3);
}

.info-article {
    background: var(--info-surface);
    border: 1px solid rgba(238, 240, 243, 0.9);
    border-radius: 16px;
    box-shadow:
        0 1px 2px rgba(31, 35, 41, 0.03),
        0 12px 32px rgba(31, 35, 41, 0.05);
    padding: 40px 48px 48px;
    min-width: 0;
    animation: infoArticleIn .45s ease both;
}

@keyframes infoArticleIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.info-article-head {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--info-line);
}

.info-article-eyebrow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.info-eyebrow-chip {
    display: inline-flex;
    align-items: center;
    height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    background: #eef2ff;
    color: #4338ca;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.info-eyebrow-region {
    background: #ecfdf5;
    color: #047857;
}

.info-eyebrow-meta {
    margin-left: 2px;
    color: var(--info-text-3);
    font-size: 12px;
    font-weight: 400;
}

.info-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.info-article-title {
    margin: 0 0 14px;
    font-size: 32px;
    font-weight: 450;
    color: #17191c;
    text-align: left;
    letter-spacing: -0.03em;
    line-height: 1.32;
}

.info-article-lead {
    margin: 0 0 18px;
    max-width: none;
    color: var(--info-text-2);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
}

.info-article-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    margin: 0;
    padding: 0;
    background: transparent;
    color: var(--info-text-3);
    font-size: 13px;
    line-height: 1.4;
}

.info-article-meta .info-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.info-meta-channel {
    padding: 2px 8px;
    border-radius: 4px;
    background: #f5f6f8;
    color: var(--info-text-2);
}

.info-ico {
    display: inline-block;
    width: 14px;
    height: 14px;
    opacity: 0.7;
    background: currentColor;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

.info-ico-date {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M3 10h18M8 3v4M16 3v4'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M3 10h18M8 3v4M16 3v4'/%3E%3C/svg%3E");
}

.info-ico-eye {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M1 12s4-7 11-7 11 7 11 7-4 7-11 7S1 12 1 12z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M1 12s4-7 11-7 11 7 11 7-4 7-11 7S1 12 1 12z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
}

.info-article-content {
    max-width: none;
    width: 100%;
    color: #2b2f36;
    font-size: 16.5px;
    line-height: 1.95;
    letter-spacing: 0.01em;
}

.info-sec {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 2em 0 0.85em;
    padding: 0 0 10px;
    border-bottom: 1px solid var(--info-line);
    scroll-margin-top: 80px;
    color: #17191c;
    font-size: 20px;
    font-weight: 450;
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.info-sec-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 32px;
    height: 28px;
    padding: 0 8px;
    border-radius: 8px;
    background: linear-gradient(135deg, #1677ff, #3b9bff);
    color: #fff;
    font-size: 13px;
    font-weight: 450;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 10px rgba(22, 119, 255, 0.22);
}

.info-sec-text {
    min-width: 0;
}

.info-article-content p,
.info-article-content .info-p {
    margin: 0 0 1.05em;
}

.info-article-content h2:not(.info-sec),
.info-article-content h3,
.info-article-content h4 {
    margin: 1.6em 0 .7em;
    color: var(--info-text);
    font-weight: 450;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.info-article-content h2:not(.info-sec) {
    font-size: 22px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--info-line);
}

.info-article-content h3 {
    font-size: 18px;
}

.info-article-content img,
.info-md-img {
    display: block;
    width: auto;
    max-width: min(100%, 680px);
    max-height: 420px;
    height: auto;
    margin: 20px auto;
    padding: 0;
    border: none;
    border-radius: 10px;
    background: transparent;
    box-shadow: none;
    object-fit: contain;
}

/* 方图 / 二维码：更小更易读 */
.info-article-content img.info-md-img-square,
.info-md-img-square {
    max-width: min(100%, 220px);
    max-height: 220px;
}

/* 宽图：保留可读宽度，避免过高 */
.info-article-content img.info-md-img-wide,
.info-md-img-wide {
    max-width: min(100%, 720px);
    max-height: 360px;
}

.info-article-content figure {
    margin: 20px auto;
    text-align: center;
}

.info-article-content figure img {
    margin: 0 auto;
}

.info-article-content code {
    padding: 2px 6px;
    background: #f5f6f8;
    border-radius: 4px;
    color: #c41d7f;
    font-size: 0.9em;
}

.info-article-content a,
.info-ext-link {
    color: var(--info-primary);
    text-decoration: none;
    border-bottom: 1px solid rgba(22, 119, 255, 0.28);
    word-break: break-all;
    transition: border-color .15s ease, color .15s ease;
}

.info-article-content a:hover,
.info-ext-link:hover {
    border-bottom-color: var(--info-primary);
}

.info-article-content blockquote,
.info-article-content .info-md-table-row {
    margin: 16px 0;
    padding: 12px 16px;
    background: #f7f9fc;
    border-left: 3px solid var(--info-primary);
    border-radius: 0 8px 8px 0;
    color: var(--info-text-2);
}

.info-article-tagbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    margin-top: 36px;
    padding: 20px 0 4px;
    border-top: 1px solid var(--info-line);
}

.info-article-tagbar-label {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    height: 24px;
    margin: 0;
    color: var(--info-text-3);
    font-size: 13px;
    font-weight: 400;
    line-height: 24px;
}

.info-article-tagbar .info-article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
}

.info-toc-list {
    list-style: none;
    margin: 0;
    padding: 8px 10px 12px;
}

.info-toc-list li + li {
    margin-top: 2px;
}

.info-toc-list a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 10px;
    margin: 0;
    border-radius: 8px;
    text-decoration: none !important;
    color: inherit;
    transition: background .15s ease;
}

.info-toc-list a:hover {
    background: #f5f8ff;
}

.info-toc-num {
    flex: 0 0 auto;
    min-width: 1.6em;
    color: var(--info-primary);
    font-size: 12px;
    font-weight: 450;
    font-variant-numeric: tabular-nums;
    line-height: 1.55;
}

.info-toc-text {
    flex: 1;
    min-width: 0;
    color: #2b2f36;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.55;
}

.info-toc-list a:hover .info-toc-text {
    color: var(--info-primary);
}

.info-toc-card .info-side-title {
    margin-bottom: 0;
}

.info-pager-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
    padding: 28px 0 0;
    border-top: 1px solid rgba(31, 35, 41, 0.08);
}

.info-pager-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    min-height: 108px;
    padding: 18px 18px 16px;
    border-radius: 14px;
    background: linear-gradient(180deg, #f8fafc 0%, #f3f6fa 100%);
    border: 1px solid rgba(238, 240, 243, 0.95);
    text-decoration: none !important;
    color: inherit !important;
    min-width: 0;
    transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.info-pager-link.is-next {
    align-items: flex-end;
    text-align: right;
}

a.info-pager-link:hover {
    background: #fff;
    border-color: #dbe7ff;
    transform: translateY(-1px);
}

.info-pager-dir {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--info-text-3);
    line-height: 1.3;
}

.info-pager-arrow {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-style: solid;
    border-color: currentColor;
    border-width: 0 0 1.5px 1.5px;
    transform: rotate(45deg);
    opacity: 0.7;
}

.info-pager-link.is-next .info-pager-arrow {
    border-width: 1.5px 1.5px 0 0;
}

a.info-pager-link:hover .info-pager-dir {
    color: var(--info-primary);
}

.info-pager-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: -0.015em;
    line-height: 1.5;
    color: #1f2329 !important;
    white-space: normal;
    text-overflow: unset;
}

a.info-pager-link:hover .info-pager-title {
    color: var(--info-primary-hover) !important;
}

.info-pager-link.is-empty {
    opacity: 0.5;
    cursor: default;
    background: #f7f8fa;
}

.info-pager-link.is-empty .info-pager-title {
    font-weight: 400;
    color: var(--info-text-3) !important;
}

.info-related {
    margin-top: 24px;
    padding-top: 4px;
}

.info-related-title {
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--info-text);
    line-height: 1.4;
}

.info-related-list {
    list-style: none;
    margin: 0;
    padding: 2px 0;
    border: 1px solid rgba(238, 240, 243, 0.95);
    border-radius: 10px;
    overflow: hidden;
    background: var(--info-surface);
}

.info-related-list li + li {
    border-top: 1px solid var(--info-line);
}

.info-related-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 11px 16px;
    text-decoration: none !important;
    color: inherit;
    transition: background .15s ease;
}

.info-related-list a:hover {
    background: #f7f9fc;
}

.info-related-list strong {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 400;
    color: #2b2f36;
    letter-spacing: 0.01em;
    line-height: 1.5;
}

.info-related-list a:hover strong {
    color: var(--info-primary);
}

.info-related-list em {
    flex: 0 0 auto;
    font-style: normal;
    font-size: 12px;
    font-weight: 400;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
    color: var(--info-text-2);
    line-height: 1.4;
}

/* 正文底部：继续阅读 */
.info-more {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(31, 35, 41, 0.08);
}

.info-more-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.info-more-kicker {
    margin: 0 0 4px;
    color: var(--info-text-3);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.2;
}

.info-more-title {
    margin: 0;
    font-size: 20px;
    font-weight: 450;
    letter-spacing: -0.02em;
    color: #17191c;
    line-height: 1.3;
}

.info-more-all {
    flex: 0 0 auto;
    margin-bottom: 2px;
    color: var(--info-text-2);
    font-size: 13px;
    font-weight: 400;
    text-decoration: none !important;
    transition: color .15s ease;
}

.info-more-all:hover {
    color: var(--info-primary);
}

.info-more-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.info-more-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 118px;
    padding: 18px 18px 16px;
    border-radius: 14px;
    background: linear-gradient(180deg, #f8fafc 0%, #f3f6fa 100%);
    border: 1px solid rgba(238, 240, 243, 0.95);
    text-decoration: none !important;
    color: inherit !important;
    transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.info-more-item:hover {
    background: #fff;
    border-color: #dbe7ff;
    transform: translateY(-1px);
}

.info-more-item-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.info-more-region {
    display: inline-flex;
    align-items: center;
    height: 22px;
    padding: 0 8px;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #e8ebf0;
    color: #646a73;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
}

.info-more-item-meta time {
    color: #8f959e;
    font-size: 12px;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.info-more-item-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    color: #1f2329;
    letter-spacing: -0.015em;
    line-height: 1.5;
}

.info-more-item:hover .info-more-item-title {
    color: var(--info-primary-hover);
}

.info-article-foot {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--info-line);
}

/* ---- Sidebar（仅目录） ---- */
.info-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 76px;
    align-self: start;
    width: 100%;
    margin: 0;
    padding: 0;
}

.info-side-card {
    background: var(--info-surface);
    border: 1px solid rgba(238, 240, 243, 0.9);
    border-radius: 16px;
    box-shadow:
        0 1px 2px rgba(31, 35, 41, 0.03),
        0 12px 32px rgba(31, 35, 41, 0.05);
    padding: 0;
    overflow: hidden;
}

.info-side-title {
    margin: 0;
    padding: 28px 22px 12px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--info-text);
    line-height: 1.4;
    border-bottom: 1px solid var(--info-line);
}

.info-toc-card .info-side-title {
    margin-bottom: 0;
}

.info-toc-list {
    list-style: none;
    margin: 0;
    padding: 8px 12px 14px;
}

.info-back-btn {
    display: inline-flex;
    align-items: center;
    height: 36px;
    padding: 0 14px;
    border-radius: 8px;
    background: #f5f6f8;
    color: var(--info-text-2);
    font-size: 14px;
    font-weight: 400;
    text-decoration: none !important;
    transition: background .15s ease, color .15s ease;
}

.info-back-btn:hover {
    background: var(--info-primary-soft);
    color: var(--info-primary);
}

@media (max-width: 768px) {
    .info-page {
        padding-top: 16px;
    }

    .info-banner {
        height: 160px;
        border-radius: 10px;
    }

    .info-banner-copy {
        left: 18px;
        max-width: 70%;
        gap: 4px;
    }

    .info-banner-copy strong {
        font-size: 22px;
    }

    .info-banner-copy em,
    .info-banner-copy i {
        font-size: 12px;
    }

    .info-hero-title {
        font-size: 22px;
    }

    .info-channel-tabs {
        width: 100%;
    }

    .info-channel-tab {
        flex: 1;
        min-width: 0;
    }

    .info-filters {
        padding: 14px 14px 10px;
    }

    .info-filter-row {
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 8px;
    }

    .info-filter-label {
        flex: 0 0 32px;
        padding-top: 5px;
        font-size: 12px;
    }

    /* 地区/赛事：换行全部显示，不被裁切 */
    .info-filter-chips,
    .info-filter-chips.collapsed {
        flex-wrap: wrap;
        overflow: visible;
        max-height: none;
        gap: 6px;
        padding-bottom: 0;
    }

    .info-chip {
        flex: 0 0 auto;
        height: 26px;
        padding: 0 10px;
        font-size: 12px;
        white-space: nowrap;
    }

    .info-expand-btn {
        display: none;
    }

    .info-list {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 12px;
    }

    .info-list-item {
        border-bottom: none;
    }

    .info-row {
        border-radius: 12px;
        background: #fff;
        border: 1px solid rgba(238, 240, 243, 0.95);
        box-shadow: 0 1px 2px rgba(31, 35, 41, 0.03);
        overflow: hidden;
    }

    .info-row:hover {
        background: #fff;
        transform: none;
    }

    .info-row-hit {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    .info-row-main {
        gap: 6px;
        padding: 12px 14px 14px;
    }

    .info-meta-inline {
        margin-top: auto;
        padding-top: 4px;
        gap: 8px;
        justify-content: flex-start;
    }

    .info-meta-tags {
        display: none;
    }

    .info-meta-stats {
        gap: 8px;
        font-size: 11px;
    }

    .info-thumb {
        flex: 0 0 auto;
        width: calc(100% - 20px);
        height: auto;
        aspect-ratio: 16 / 9;
        max-height: 168px;
        margin: 10px 10px 0;
        border-radius: 8px;
        align-self: center;
        background-position: center bottom;
    }

    .info-row:hover .info-thumb {
        transform: none;
    }

    .info-title {
        font-size: 15px;
        min-height: 0;
    }

    .info-digest {
        -webkit-line-clamp: 2;
        font-size: 12px;
        line-height: 1.5;
    }

    .info-arrow {
        display: none;
    }

    /* 分页：一行横向滑动，不换行 */
    .info-pager {
        display: block;
        padding: 10px 8px 14px;
        overflow: hidden;
    }

    .info-pager .pagination {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start;
        align-items: center;
        float: none;
        gap: 6px;
        margin: 0;
        padding: 2px 0 4px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        white-space: nowrap;
    }

    .info-pager .pagination::-webkit-scrollbar {
        display: none;
    }

    .info-pager .pagination > li {
        float: none !important;
        display: inline-flex;
        flex: 0 0 auto;
    }

    .info-pager .pagination > li > a,
    .info-pager .pagination > li > span {
        min-width: 32px;
        height: 32px;
        margin: 0;
        padding: 0 8px;
        line-height: 30px;
        white-space: nowrap;
    }

    .info-detail-layout {
        grid-template-columns: 1fr;
    }

    .info-side {
        position: static;
        order: 2;
    }

    .info-article {
        padding: 22px 16px 28px;
        border-radius: 12px;
    }

    .info-article-title {
        font-size: 22px;
    }

    .info-tag-hero {
        padding: 20px 16px 18px;
        border-radius: 12px;
    }

    .info-tag-title {
        font-size: 24px;
    }

    .info-article-lead {
        font-size: 15px;
    }

    .info-article-content {
        font-size: 15.5px;
        line-height: 1.88;
    }

    .info-sec {
        font-size: 17px;
        gap: 10px;
    }

    .info-sec-num {
        min-width: 28px;
        height: 24px;
        font-size: 12px;
    }

    .info-related-list a {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .info-more-grid {
        grid-template-columns: 1fr;
    }

    .info-more-item {
        min-height: 0;
    }

    .info-pager-nav {
        grid-template-columns: 1fr;
    }

    .info-pager-link,
    .info-pager-link.is-next {
        align-items: flex-start;
        text-align: left;
        min-height: 0;
    }

    .info-pager-link.is-next .info-pager-dir {
        flex-direction: row-reverse;
        justify-content: flex-end;
        width: 100%;
    }
}

@media (max-width: 992px) {
    .info-detail-layout {
        grid-template-columns: 1fr;
    }

    .info-side {
        position: static;
    }
}

@media (prefers-reduced-motion: reduce) {
    .info-row,
    .info-channel-tab,
    .info-chip,
    .info-arrow,
    .info-back-btn,
    .info-article {
        transition: none;
        animation: none;
    }
}
