/* ==========================================================================
   全站清爽样式覆盖 (news-clean.css)
   用于收紧全站排版：基字、容器宽度、板块卡片样式、顶部导航等。
   所有规则都带 !important 以覆盖基础样式。
   ========================================================================== */

/* 强制覆盖首页的全局基色 */
.news-shell {
    background: #f5f6f8 !important;
}

body {
    background: #f5f6f8 !important;
    color: #1f2329 !important;
    font-family: "PingFang SC", "Hiragino Sans GB", "Noto Sans SC",
        "Source Han Sans SC", "Microsoft YaHei", sans-serif !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
}

/* ============== 顶栏: 瘦身 + 白底 ============== */
.news-topbar {
    background: #ffffff !important;
    border-bottom: 1px solid #e5e6eb !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 100 !important;
}

.news-header {
    min-height: 72px !important;
    padding: 0 !important;
    gap: 32px !important;
}

.news-brand {
    gap: 12px !important;
}

.news-brand-mark {
    width: 44px !important;
    height: 44px !important;
    border-radius: 10px !important;
}

.news-brand-copy strong {
    font-size: 26px !important;
    font-weight: 700 !important;
    color: #1f2329 !important;
    line-height: 1 !important;
}

.news-brand-copy span {
    display: none !important;
}

/* ============== 主导航: 单行 + 简洁 ============== */
.home-nav {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    flex-wrap: nowrap !important;
    min-height: 72px !important;
    padding: 0 !important;
    border-top: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.home-nav__item {
    position: relative !important;
    display: flex !important;
    align-items: stretch !important;
    flex: 0 0 auto !important;
}

.home-nav__link {
    min-height: 72px !important;
    min-width: auto !important;
    padding: 0 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    color: #4e5969 !important;
    background: transparent !important;
    border-radius: 0 !important;
    font-size: 17px !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    transition: color 0.15s !important;
}

.home-nav__link:hover,
.home-nav__link.is-active,
.home-nav__item.is-active .home-nav__link {
    color: #1e6dff !important;
}

.home-nav__link::after {
    display: none !important;
}

.home-nav__label strong {
    font-size: 17px !important;
    line-height: 1 !important;
    font-weight: 500 !important;
}

.home-nav__label small {
    display: none !important;
}

.home-nav__link i {
    font-size: 11px !important;
    color: #86909c !important;
    transition: transform 0.15s !important;
}

.home-nav__item:hover .home-nav__link i {
    transform: rotate(180deg) !important;
}

/* 下拉面板 - 简洁白底 */
.home-nav__panel {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    min-width: 180px !important;
    max-width: 280px !important;
    padding: 6px 0 !important;
    border: 1px solid #e5e6eb !important;
    border-radius: 6px !important;
    background: #ffffff !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-4px) !important;
    transition: opacity 0.15s, transform 0.15s, visibility 0.15s !important;
    z-index: 200 !important;
}

.home-nav__item:hover .home-nav__panel {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.home-nav__panel-grid {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    gap: 0 !important;
}

.home-nav__panel--topic,
.home-nav__panel--single {
    min-width: 180px !important;
    max-width: 280px !important;
}

.home-nav__panel--topic .home-nav__panel-grid,
.home-nav__panel--single .home-nav__panel-grid {
    grid-template-columns: none !important;
    gap: 0 !important;
}

.home-nav__hero,
.home-nav__section-title {
    display: none !important;
}

.home-nav__section {
    min-width: 0 !important;
}

.home-nav__section-links {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
}

.home-nav__panel-link {
    min-height: 32px !important;
    padding: 6px 14px !important;
    display: block !important;
    color: #4e5969 !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    border: 0 !important;
    background: transparent !important;
    transition: background 0.15s, color 0.15s !important;
}

.home-nav__panel-link:hover {
    color: #1e6dff !important;
    background: #f0f7ff !important;
    transform: none !important;
}

/* ============== 主内容布局 ============== */
.news-main {
    padding: 28px 0 40px !important;
}

.news-container {
    width: min(calc(100% - 40px), 1320px) !important;
    max-width: none !important;
}

.news-grid-home {
    grid-template-columns: minmax(0, 1fr) 340px !important;
    gap: 28px !important;
}

.news-grid-home .news-main-column {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
}

.news-grid-home .news-main-column > .news-panel {
    margin-top: 0 !important;
    background: #ffffff !important;
    border: 1px solid #e5e6eb !important;
    border-radius: 10px !important;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04) !important;
    backdrop-filter: none !important;
    padding: 0 !important;
}

/* ============== 板块 1: 头条 ============== */
.home-top {
    margin: 0 !important;
}

.home-top__lead {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    grid-template-columns: none !important;
}

/* 把原来的轮播+快讯完全隐藏，重写成头条列表 */
.home-top__carousel-card {
    display: none !important;
}

.home-top__flash {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    min-height: auto !important;
    height: auto !important;
    border-radius: 0 !important;
}

.home-top__flash::after {
    display: none !important;
}

.home-top__flash.is-linked {
    border: 0 !important;
    box-shadow: none !important;
}

.home-top__flash-head {
    display: none !important;
}

.home-top__flash-list {
    display: flex !important;
    flex-direction: column !important;
    grid-template-rows: none !important;
    grid-template-columns: none !important;
    gap: 0 !important;
    height: auto !important;
    overflow: visible !important;
}

.home-top__flash-item {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: center !important;
    gap: 16px !important;
    padding: 18px 24px !important;
    border-radius: 0 !important;
    border: 0 !important;
    border-bottom: 1px solid #f2f3f5 !important;
    background: transparent !important;
    box-shadow: none !important;
    min-height: auto !important;
    transition: background 0.15s !important;
}

.home-top__flash-item:last-child {
    border-bottom: 0 !important;
}

.home-top__flash-item:hover {
    background: #f0f7ff !important;
    transform: none !important;
    box-shadow: none !important;
}

.home-top__flash-item.is-linked-active {
    background: transparent !important;
    transform: none !important;
    border: 0 !important;
    border-bottom: 1px solid #f2f3f5 !important;
    box-shadow: none !important;
}

.home-top__flash-index {
    flex-shrink: 0 !important;
    width: 28px !important;
    height: 28px !important;
    border-radius: 5px !important;
    background: #1e6dff !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

.home-top__flash-item:nth-child(n+4) .home-top__flash-index {
    background: #f5f6f8 !important;
    color: #86909c !important;
    border: 1px solid #e5e6eb !important;
}

.home-top__flash-copy {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    flex: 1 !important;
    min-width: 0 !important;
}

.home-top__flash-title {
    flex: 1 !important;
    min-width: 0 !important;
    color: #1f2329 !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
    -webkit-line-clamp: 1 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.home-top__flash-item:hover .home-top__flash-title {
    color: #1e6dff !important;
}

.home-top__flash-time {
    flex-shrink: 0 !important;
    color: #86909c !important;
    font-size: 14px !important;
}

/* 顶部 CTA 隐藏（手机上已有底部悬浮） */
.home-top__slide-cta {
    display: none !important;
}

/* ============== 板块标题行 ============== */
.news-section-head,
.home-desk-board__head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    padding: 18px 24px !important;
    margin-bottom: 0 !important;
    border-bottom: 1px solid #e5e6eb !important;
    background: #fafbfc !important;
    border-radius: 0 !important;
}

.news-section-kicker,
.home-desk-card__kicker,
.topic-signal-card .home-desk-card__kicker {
    display: none !important;
}

.news-section-title,
.news-side-title {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #1f2329 !important;
    line-height: 1 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.news-section-title::before,
.news-side-title::before {
    content: "" !important;
    display: inline-block !important;
    width: 4px !important;
    height: 18px !important;
    background: #1e6dff !important;
    border-radius: 2px !important;
}

.news-section-copy {
    margin: 0 !important;
    color: #86909c !important;
    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 400 !important;
}

/* ============== 快捷入口 (核心栏目): 简化为文字链接条 ============== */
.home-shortcut-band {
    background: #ffffff !important;
}

.home-shortcut-band .news-shortcut-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    grid-template-columns: none !important;
    gap: 0 !important;
    padding: 8px 0 !important;
}

.home-shortcut-band .news-shortcut-card {
    display: flex !important;
    flex: 1 1 25% !important;
    align-items: center !important;
    gap: 12px !important;
    min-height: 0 !important;
    padding: 16px 24px !important;
    border: 0 !important;
    border-bottom: 1px solid #f2f3f5 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    transition: background 0.15s !important;
}

.home-shortcut-band .news-shortcut-card:last-child {
    border-bottom: 0 !important;
}

.home-shortcut-band .news-shortcut-card:hover {
    background: #f0f7ff !important;
    transform: none !important;
    box-shadow: none !important;
}

.home-shortcut-band .news-shortcut-card__eyebrow {
    display: none !important;
}

.home-shortcut-band .news-shortcut-card strong {
    font-size: 17px !important;
    font-weight: 500 !important;
    color: #1f2329 !important;
    line-height: 1.4 !important;
}

.home-shortcut-band .news-shortcut-card:hover strong {
    color: #1e6dff !important;
}

.home-shortcut-band .news-shortcut-card span:last-child {
    display: none !important;
}

/* ============== 今日要点 (信号面板): 简化为 4 行统计 ============== */
.home-signal-panel {
    background: #ffffff !important;
}

.home-signal-stats {
    display: flex !important;
    flex-wrap: wrap !important;
    grid-template-columns: none !important;
    gap: 0 !important;
    padding: 10px 24px !important;
    margin-bottom: 0 !important;
    border-bottom: 1px solid #f2f3f5 !important;
}

.home-signal-stat {
    flex: 1 1 25% !important;
    min-height: 0 !important;
    padding: 16px 20px !important;
    border: 0 !important;
    border-right: 1px solid #e5e6eb !important;
    border-radius: 0 !important;
    background: transparent !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 14px !important;
}

.home-signal-stat:last-child {
    border-right: 0 !important;
}

.home-signal-stat__label {
    font-size: 14px !important;
    color: #86909c !important;
    font-weight: 400 !important;
    flex: 0 0 auto !important;
}

.home-signal-stat__value {
    font-size: 26px !important;
    color: #1f2329 !important;
    font-weight: 700 !important;
    flex: 1 1 auto !important;
    text-align: right !important;
}

.home-signal-stat__note {
    display: none !important;
}

.home-signal-lines {
    display: none !important; /* 二级信号线隐藏，更清爽 */
}

/* ============== 重点栏目 (desk-board): 完全简化 ============== */
.home-desk-grid {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    gap: 0 !important;
    padding: 0 !important;
}

.home-desk-card {
    background: transparent !important;
    border: 0 !important;
    border-bottom: 1px solid #f2f3f5 !important;
    border-radius: 0 !important;
    padding: 18px 24px !important;
    min-width: 0 !important;
    box-shadow: none !important;
}

.home-desk-card:last-child {
    border-bottom: 0 !important;
}

.home-desk-card__head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px !important;
}

.home-desk-card h3 {
    margin: 0 !important;
    font-size: 17px !important;
    font-weight: 500 !important;
    color: #1f2329 !important;
    line-height: 1.5 !important;
}

.home-desk-card h3 a {
    font-weight: 500 !important;
}

.home-desk-card:hover h3 a {
    color: #1e6dff !important;
}

.home-desk-card__summary,
.home-desk-card__watch,
.home-desk-card__lead {
    display: none !important; /* 隐藏所有副信息 */
}

.home-desk-card__list {
    display: none !important;
}

.home-desk-card__more {
    color: #86909c !important;
    font-size: 14px !important;
    font-weight: 400 !important;
}

/* ============== 持续追踪 (topic-strip) ============== */
.news-topic-strip {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    gap: 10px !important;
    padding: 12px 20px 18px !important;
    background: #fafbfc !important;
}

.news-topic-pill {
    background: #ffffff !important;
    border: 1px solid #e5e6eb !important;
    border-bottom: 1px solid #e5e6eb !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    min-height: 0 !important;
    display: grid !important;
    grid-template-columns: 44px minmax(0, 1fr) !important;
    align-items: center !important;
    column-gap: 14px !important;
    row-gap: 0 !important;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04) !important;
    transition: border-color 0.15s, box-shadow 0.15s !important;
}

.news-topic-pill__media {
    width: 44px !important;
    height: 44px !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #1e6dff 0%, #4ea1ff 100%) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    letter-spacing: 0.5px !important;
    flex-shrink: 0 !important;
    box-shadow: 0 1px 4px rgba(30, 109, 255, 0.3) !important;
    grid-row: 1 / span 2 !important;
    align-self: center !important;
}

.news-topic-pill[data-event-type="etf"] .news-topic-pill__media {
    background: linear-gradient(135deg, #722ed1 0%, #b37feb 100%) !important;
    box-shadow: 0 1px 4px rgba(114, 46, 209, 0.3) !important;
}
.news-topic-pill[data-event-type="regulation"] .news-topic-pill__media {
    background: linear-gradient(135deg, #fa541c 0%, #ffa940 100%) !important;
    box-shadow: 0 1px 4px rgba(250, 84, 28, 0.3) !important;
}
.news-topic-pill[data-event-type="listing"] .news-topic-pill__media {
    background: linear-gradient(135deg, #13a89e 0%, #5cdbd3 100%) !important;
    box-shadow: 0 1px 4px rgba(19, 168, 158, 0.3) !important;
}
.news-topic-pill[data-event-type="onchain_flow"] .news-topic-pill__media {
    background: linear-gradient(135deg, #1e6dff 0%, #4ea1ff 100%) !important;
}
.news-topic-pill[data-event-type="stablecoin"] .news-topic-pill__media {
    background: linear-gradient(135deg, #2f54eb 0%, #85a5ff 100%) !important;
}
.news-topic-pill[data-event-type="liquidation"] .news-topic-pill__media {
    background: linear-gradient(135deg, #f5222d 0%, #ff7875 100%) !important;
    box-shadow: 0 1px 4px rgba(245, 34, 45, 0.3) !important;
}
.news-topic-pill[data-event-type="security"] .news-topic-pill__media {
    background: linear-gradient(135deg, #cb1c1c 0%, #ff4d4f 100%) !important;
    box-shadow: 0 1px 4px rgba(203, 28, 28, 0.3) !important;
}
.news-topic-pill[data-event-type="halving"] .news-topic-pill__media {
    background: linear-gradient(135deg, #d4b106 0%, #ffe58f 100%) !important;
    color: #874d00 !important;
}
.news-topic-pill[data-event-type="upgrade"] .news-topic-pill__media {
    background: linear-gradient(135deg, #52c41a 0%, #95de64 100%) !important;
    box-shadow: 0 1px 4px rgba(82, 196, 26, 0.3) !important;
}

.news-topic-pill__media-letter {
    display: block !important;
    font-family: 'Helvetica Neue', Arial, sans-serif !important;
}

.news-topic-pill:last-child {
    border-bottom: 1px solid #e5e6eb !important;
}

.news-topic-pill:hover {
    background: #ffffff !important;
    border-color: #1e6dff !important;
    transform: none !important;
    box-shadow: 0 2px 6px rgba(30, 109, 255, 0.12) !important;
}

.news-topic-pill strong {
    font-size: 17px !important;
    font-weight: 600 !important;
    color: #1f2329 !important;
    line-height: 1.5 !important;
    flex: 0 0 auto !important;
    min-width: 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 1 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.news-topic-pill:hover strong {
    color: #1e6dff !important;
}

.news-topic-pill span {
    color: #86909c !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    display: -webkit-box !important;
    white-space: normal !important;
}

/* ============== 最新文章列表 (网格布局，避免flex挤压标题) ============== */
.news-list-grid {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    gap: 0 !important;
    padding: 0 !important;
}

.news-list-card {
    display: grid !important;
    grid-template-columns: 120px minmax(0, 1fr) !important;
    grid-template-areas: "media body" !important;
    align-items: start !important;
    gap: 20px !important;
    min-height: 96px !important;
    padding: 18px 24px !important;
    border: 0 !important;
    border-bottom: 1px solid #f2f3f5 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    transition: background 0.15s !important;
    width: 100% !important;
    max-width: 100% !important;
    text-decoration: none !important;
    color: inherit !important;
    overflow: hidden !important;
}

/* 兼容旧版 HTML（无封面图时） */
.news-list-card:not(:has(.news-list-media)) {
    grid-template-columns: minmax(0, 1fr) auto !important;
    grid-template-areas: "body time" !important;
}

.news-list-card:not(:has(.news-list-media)) .news-card-body {
    grid-column: 1 !important;
    grid-area: body !important;
}

.news-list-card:last-child {
    border-bottom: 0 !important;
}

.news-list-card:hover {
    background: #f0f7ff !important;
    transform: none !important;
    box-shadow: none !important;
    border-bottom-color: #f2f3f5 !important;
}

.news-list-card .news-list-media {
    grid-area: media !important;
    position: relative !important;
    display: block !important;
    width: 120px !important;
    height: 80px !important;
    flex-shrink: 0 !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    background: #f5f6f8 !important;
}

.news-list-card .news-list-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.news-list-card .news-slide-fallback {
    position: absolute !important;
    inset: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #f5f6f8 0%, #e5e6eb 100%) !important;
}

.news-list-card .news-card-body {
    grid-area: body !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    min-width: 0 !important;
}

.news-list-card .news-card-meta {
    display: inline-flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
    gap: 8px !important;
    flex-wrap: nowrap !important;
    min-width: 0 !important;
}

.news-list-card .news-card-meta > span:not(.news-badge),
.news-list-card .news-card-meta > time {
    display: none !important;
}

.news-list-card .news-card-meta .news-badge {
    min-height: 0 !important;
    padding: 3px 10px !important;
    background: #f5f6f8 !important;
    color: #4e5969 !important;
    border: 1px solid #e5e6eb !important;
    border-radius: 3px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    margin-left: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1.4 !important;
    white-space: nowrap !important;
}

.news-list-card .news-card-title {
    color: #1f2329 !important;
    font-size: 17px !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    margin: 0 !important;
    padding: 0 !important;
    min-width: 0 !important;
}

.news-list-card:hover .news-card-title {
    color: #1e6dff !important;
}

.news-list-card .news-link-row {
    display: none !important;
}

/* 首页 list-card 显示摘要与 meta 内时间（不再隐藏） */
.news-list-card .news-card-summary {
    display: block !important;
    color: #4e5969 !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
    margin-top: 6px !important;
    overflow: hidden !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    text-overflow: ellipsis !important;
}

.news-list-card .news-card-meta time {
    display: inline-block !important;
    color: #86909c !important;
    font-size: 12px !important;
    font-variant-numeric: tabular-nums !important;
    margin-left: auto !important;
}

/* 右上角独立 time 标记隐藏（已被 meta 内 time 取代） */
.news-list-card > .news-card-time {
    display: none !important;
}

/* 文章卡右侧时间 (留作备援) */
.news-list-card .news-card-time {
    grid-area: time !important;
    flex-shrink: 0 !important;
    color: #86909c !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    font-variant-numeric: tabular-nums !important;
    display: inline-block !important;
    visibility: visible !important;
    align-self: center !important;
}

/* ============== 分页 ============== */
.news-pagination {
    margin-top: 0 !important;
    padding: 20px 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}

.news-page-meta,
.news-page-mobile-state,
.news-page-jump {
    display: none !important;
}

.news-page-btn {
    min-width: 44px !important;
    height: 40px !important;
    padding: 0 16px !important;
    border: 1px solid #e5e6eb !important;
    border-radius: 4px !important;
    background: #ffffff !important;
    color: #4e5969 !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    box-shadow: none !important;
    transition: all 0.15s !important;
}

.news-page-btn:hover {
    border-color: #1e6dff !important;
    color: #1e6dff !important;
    background: #ffffff !important;
    transform: none !important;
    box-shadow: none !important;
}

.news-page-btn.is-active {
    background: #1e6dff !important;
    border-color: #1e6dff !important;
    color: #ffffff !important;
}

.news-page-btn.is-nav {
    min-width: 80px !important;
    padding: 0 14px !important;
}

.news-page-btn.is-nav .layui-icon {
    font-size: 12px !important;
}

.news-page-btn.is-disabled {
    background: #fafafa !important;
    color: #c9cdd4 !important;
    border-color: #e5e6eb !important;
}

.news-page-btn.is-gap {
    display: none !important;
}

/* 在分页左侧显示 1/10 */
.news-pagination::before {
    content: "第 " attr(data-current) " / " attr(data-total) " 页";
    color: #4e5969;
    font-size: 13px;
    margin-right: 12px;
}

/* ============== 侧栏: 完全简化 ============== */
.news-sidebar-home {
    position: sticky !important;
    top: 80px !important;
    align-self: start !important;
    max-height: none !important;
    overflow: visible !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
}

.news-sidebar-home .news-promo {
    display: none !important; /* 隐藏原 chat-style promo，被替换为简洁 CTA */
}

.news-sidebar-home .news-aside-card {
    background: #ffffff !important;
    border: 1px solid #e5e6eb !important;
    border-radius: 10px !important;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04) !important;
    backdrop-filter: none !important;
    padding: 0 !important;
}

.news-sidebar-home .news-side-head {
    padding: 16px 20px !important;
    margin-bottom: 0 !important;
    border-bottom: 1px solid #e5e6eb !important;
    background: #fafbfc !important;
    border-radius: 0 !important;
}

.news-sidebar-home .news-side-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    margin: 0 !important;
    color: #1f2329 !important;
}

.news-sidebar-home .news-section-kicker {
    display: none !important;
}

.news-sidebar-home .news-aside-group {
    padding: 6px 0 !important;
    gap: 0 !important;
}

.news-sidebar-home .news-aside-group .news-link-item,
.news-sidebar-home .news-aside-group .news-link-item--editor {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 14px 20px !important;
    border: 0 !important;
    border-radius: 0 !important;
    border-bottom: 1px solid #f2f3f5 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.news-sidebar-home .news-aside-group .news-link-item:last-child {
    border-bottom: 0 !important;
}

.news-sidebar-home .news-aside-group .news-link-item::before,
.news-sidebar-home .news-aside-group .news-link-item--editor::before {
    display: none !important;
}

.news-sidebar-home .news-aside-group .news-link-item:hover,
.news-sidebar-home .news-aside-group .news-link-item--editor:hover {
    background: #f0f7ff !important;
    transform: none !important;
    box-shadow: none !important;
}

.news-sidebar-home .news-link-item strong,
.news-sidebar-home .news-link-item--editor strong {
    flex: 1 !important;
    min-width: 0 !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    color: #4e5969 !important;
    line-height: 1.5 !important;
    -webkit-line-clamp: 2 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
}

.news-sidebar-home .news-link-item:hover strong {
    color: #1e6dff !important;
}

.news-sidebar-home .news-link-item span,
.news-sidebar-home .news-link-item--editor span {
    flex-shrink: 0 !important;
    color: #86909c !important;
    font-size: 14px !important;
    -webkit-line-clamp: 1 !important;
    display: block !important;
}

/* 侧栏排行榜前的数字 */
.side-rank__num {
    flex-shrink: 0 !important;
    width: 22px !important;
    height: 22px !important;
    border-radius: 3px !important;
    background: #f5f6f8 !important;
    color: #86909c !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.news-sidebar-home .news-link-item:has(.side-rank__num):nth-child(1) .side-rank__num,
.news-sidebar-home .news-link-item:has(.side-rank__num):nth-child(2) .side-rank__num,
.news-sidebar-home .news-link-item:has(.side-rank__num):nth-child(3) .side-rank__num {
    background: #1e6dff !important;
    color: #ffffff !important;
}

.news-sidebar-home .news-link-item:has(.side-rank__num) strong {
    flex: 1 !important;
    min-width: 0 !important;
}

/* 侧栏简单 CTA */
.side-cta {
    background: #ffffff !important;
    border: 1px solid #e5e6eb !important;
    border-radius: 10px !important;
    padding: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    box-shadow: none !important;
}

.side-cta__brand {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.side-cta__logo {
    flex-shrink: 0 !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: #1f2329 !important;
    color: #f0b85c !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.side-cta__brand div {
    display: flex !important;
    flex-direction: column !important;
}

.side-cta__brand strong {
    display: block !important;
    color: #1f2329 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
}

.side-cta__brand span {
    display: block !important;
    color: #86909c !important;
    font-size: 14px !important;
    margin-top: 2px !important;
}

.side-cta__btns {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.side-cta__btn {
    display: block !important;
    padding: 12px 0 !important;
    border-radius: 6px !important;
    text-align: center !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    transition: opacity 0.15s !important;
}

.side-cta__btn--primary {
    background: #1e6dff !important;
    color: #ffffff !important;
}

.side-cta__btn--primary:hover {
    opacity: 0.88 !important;
}

.side-cta__btn--ghost {
    background: #f5f6f8 !important;
    color: #1f2329 !important;
    border: 1px solid #e5e6eb !important;
}

.side-cta__btn--ghost:hover {
    border-color: #1e6dff !important;
    color: #1e6dff !important;
}

.side-cta__note {
    color: #86909c !important;
    font-size: 13px !important;
    text-align: center !important;
    margin-top: 0 !important;
}

/* ============== 页脚 ============== */
.news-footer {
    background: #ffffff !important;
    border-top: 1px solid #e5e6eb !important;
    margin-top: 32px !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

.news-footer__inner {
    min-height: 0 !important;
    padding: 24px 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
}

.news-footer__brand strong {
    font-size: 16px !important;
    color: #1f2329 !important;
    font-weight: 600 !important;
}

.news-footer__brand span {
    color: #86909c !important;
    font-size: 14px !important;
}

.news-footer__links {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
}

.news-footer__links a {
    color: #4e5969 !important;
    font-size: 15px !important;
    font-weight: 400 !important;
}

.news-footer__links a:hover {
    color: #1e6dff !important;
}

/* ============== 归档视图 ============== */
.news-panel.news-section:has(.layui-empty):not(:has(.news-shortcut-grid)):not(:has(.home-signal-stats)):not(:has(.home-desk-grid)):not(:has(.news-topic-strip)):not(:has(.news-list-grid)) {
    display: none !important;
}

/* ============== 卡片聚焦于文字，而不是装饰 ============== */
.news-main-column {
    background: transparent !important;
}

.news-module {
    background: #ffffff !important;
    border: 1px solid #e5e6eb !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    padding: 0 !important;
    overflow: hidden !important;
}

/* ==========================================================================
   移动端: 最终覆盖
   ========================================================================== */

@media (max-width: 900px) {
    .news-container {
        width: calc(100% - 16px) !important;
    }

    .news-grid-home {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .news-list-card {
        grid-template-columns: 96px minmax(0, 1fr) auto !important;
        gap: 14px !important;
        padding: 14px 16px !important;
    }

    .news-list-card .news-list-media {
        width: 96px !important;
        height: 64px !important;
    }

    .news-sidebar-home {
        position: relative !important;
        top: 0 !important;
        max-height: none !important;
    }

    .news-main {
        padding: 12px 0 80px !important;
    }

    .news-main-column {
        gap: 12px !important;
    }

    .news-header {
        min-height: 56px !important;
    }

    .home-nav {
        overflow-x: auto !important;
        scrollbar-width: none !important;
        -webkit-overflow-scrolling: touch !important;
        min-height: 56px !important;
    }

    .home-nav::-webkit-scrollbar {
        display: none !important;
    }

    .home-nav__link {
        min-height: 56px !important;
        padding: 0 12px !important;
        font-size: 15px !important;
    }

    .home-nav__item {
        position: static !important;
    }

    /* 移动端下拉面板全屏 */
    .home-nav__panel {
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
        top: 56px !important;
        max-width: none !important;
        min-width: auto !important;
        max-height: calc(100vh - 56px) !important;
        overflow-y: auto !important;
        border-radius: 0 !important;
        border: 0 !important;
        border-bottom: 1px solid #e5e6eb !important;
        background: #ffffff !important;
    }

    .module-title-row,
    .news-section-head,
    .home-desk-board__head,
    .news-sidebar-home .news-side-head {
        padding: 10px 14px !important;
    }

    .news-section-title,
    .news-side-title {
        font-size: 18px !important;
    }

    .home-top__flash-item,
    .home-shortcut-band .news-shortcut-card,
    .home-desk-card,
    .news-topic-pill,
    .news-list-card {
        padding: 14px 16px !important;
    }

    .home-top__flash-title,
    .home-shortcut-band .news-shortcut-card strong,
    .home-desk-card h3,
    .news-list-card .news-card-title {
        font-size: 16px !important;
    }

    .news-sidebar-home {
        display: none !important; /* 手机上彻底隐藏侧栏，聚焦主内容 */
    }
}

@media (max-width: 480px) {
    .news-brand-copy strong {
        font-size: 18px !important;
    }

    .news-list-card {
        grid-template-columns: 96px minmax(0, 1fr) !important;
        grid-template-areas: "media body" !important;
        gap: 12px !important;
        padding: 14px 14px !important;
        min-height: 0 !important;
    }

    .news-list-card .news-list-media {
        width: 96px !important;
        aspect-ratio: 16 / 11 !important;
        height: auto !important;
        border-radius: 8px !important;
    }

    .news-list-card .news-card-title {
        font-size: 15px !important;
        -webkit-line-clamp: 2 !important;
    }

    .news-list-card .news-card-summary {
        font-size: 12px !important;
        -webkit-line-clamp: 2 !important;
    }

    .news-list-card .news-card-time {
        font-size: 12px !important;
    }
}

/* ============== 底部悬浮 (mobile 已有，继续保留) ============== */
@media (max-width: 900px) {
    .home-mobile-float-cta {
        display: flex !important;
    }
    .news-shell {
        padding-bottom: 72px !important;
    }
}
