* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', system-ui, sans-serif;
    background: #f6f4f0;
    color: #1e1e1e;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== 顶部横幅 ===== */
.banner {
    position: relative;
    width: 100%;
    min-height: 160px;
    background: linear-gradient(145deg, #a80000, #cc0000);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 36px 20px 28px;
    border-bottom: 6px solid #f5c542;
}

.banner .banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.banner .banner-content .tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 4px 20px;
    border-radius: 30px;
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 500;
    margin-bottom: 10px;
}

.banner .banner-content h1 {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 6px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 6px;
}

.banner .banner-content .sub {
    font-size: 15px;
    opacity: 0.95;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 28px;
}

.banner .banner-content .sub i {
    margin-right: 6px;
    color: #f5c542;
}

/* ===== 头条新闻 ===== */
.headline-section {
    padding: 28px 0 20px;
}

.headline-card {
    background: #fff;
    border-radius: 0px;
    padding: 24px 28px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    border-left: 6px solid #cc0000;
    transition: box-shadow 0.3s ease;
    text-align: center;
}

.headline-card:hover {
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.07);
}

.headline-card .headline-tag {
    display: inline-block;
    background: #cc0000;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 18px;
    border-radius: 20px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.headline-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 8px;
}

.headline-card .headline-meta {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}

.headline-card .headline-meta i {
    margin-right: 6px;
    color: #cc0000;
}

.headline-card p {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    text-align: left;
}

/* ===== 新闻列表 ===== */
.news-section {
    padding: 10px 0 40px;
}

.news-section .section-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    padding-bottom: 14px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.news-section .section-title i {
    color: #cc0000;
    font-size: 22px;
}

.news-section .section-title .line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, #e8e3dc, transparent);
}

.news-section .section-title .count {
    font-size: 14px;
    font-weight: 400;
    color: #999;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

/* ===== 新闻条目 — 日期和内容组分离控制间距 ===== */
.news-item {
    display: flex;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid #f0ede8;
    transition: background 0.2s ease;
    cursor: default;
    gap: 16px;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item:hover {
    background: #faf8f5;
}

/* 日期列 — 固定宽度 */
.news-item .date-col {
    flex: 0 0 72px;
    font-size: 13px;
    color: #cc0000;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.news-item .date-col i {
    margin-right: 3px;
    font-size: 11px;
    color: #cc0000;
}

/* 图片 + 内容 作为一个整体，内部间距独立控制 */
.news-item .content-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

/* 图片列 — 无圆角 */
.news-item .thumb-col {
    flex: 0 0 80px;
    width: 80px;
    height: 60px;
    overflow: hidden;
    flex-shrink: 0;
    background: #e8e3dc;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
}

.news-item .thumb-col.no-image {
    display: none;
}

/* 内容列 */
.news-item .content-col {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

/* ===== 标题链接（新闻列表）—— 蓝色，无下划线，悬停下划线 ===== */
.news-item .content-col .title-link {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;                 
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.2s ease, text-decoration 0.2s ease;
    cursor: pointer;
}

.news-item .content-col .title-link:hover {
    text-decoration: underline;  /* 悬停下划线，颜色保持蓝色 */
    color: #cc0000;                 /* 保持不变，若需变红可改为 #cc0000 */
}

/* 原有旧标题规则（.title）保留，但可能不再使用，不影响 */
.news-item .content-col .title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    transition: color 0.2s;
}
.news-item:hover .content-col .title {
    color: #cc0000;
}

.news-item .content-col .summary {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== 分页 ===== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    background: #fff;
    border: 1px solid #e0dbd4;
    text-decoration: none;
    transition: all 0.25s ease;
}

.pagination a:hover {
    background: #f0ede8;
    border-color: #cc0000;
    color: #cc0000;
}

.pagination .active {
    background: #cc0000;
    border-color: #cc0000;
    color: #fff;
}

.pagination .prev,
.pagination .next {
    padding: 0 14px;
    color: #888;
}

.pagination .prev:hover,
.pagination .next:hover {
    background: #f0ede8;
    border-color: #cc0000;
    color: #cc0000;
}

.pagination .disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination .disabled:hover {
    background: #fff;
    border-color: #e0dbd4;
    color: #555;
}

.pagination .ellipsis {
    border: none;
    background: transparent;
    color: #999;
    min-width: 30px;
}

/* ===== 页脚 ===== */
.footer {
    background: #e8e3dc;
    color: #555;
    padding: 24px 0 18px;
    text-align: center;
    font-size: 14px;
    border-top: 4px solid #cc0000;
    margin-top: 20px;
}

.footer .brand {
    color: #1a1a1a;
    font-weight: 600;
    letter-spacing: 1px;
}

.footer .brand i {
    color: #cc0000;
    margin-right: 6px;
}

.footer .divider {
    color: #bbb;
    margin: 0 8px;
}

.footer .copyright {
    margin-top: 8px;
    font-size: 12px;
    color: #999;
    line-height: 1.8;
}

.footer .copyright .ban {
    display: block;
    font-size: 12px;
    color: #888;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

/* ===== 响应式 ===== */
@media (max-width: 860px) {
    .news-item .thumb-col {
        flex: 0 0 80px;
        width: 80px;
        height: 50px;
    }
    .news-item .content-col .title {
        font-size: 14px;
    }
    .news-item .content-col .summary {
        font-size: 13px;
    }
}

@media (max-width: 700px) {
    .news-item {
        flex-wrap: wrap;
        padding: 12px 16px;
        gap: 6px;
    }

    .news-item .date-col {
        flex: 0 0 100%;
        font-size: 12px;
        order: 1;
    }

    .news-item .content-wrap {
        flex: 0 0 100%;
        flex-wrap: wrap;
        gap: 8px;
        order: 2;
    }

    .news-item .thumb-col {
        flex: 0 0 100%;
        width: 100%;
        height: 120px;
        order: 1;
    }

    .news-item .thumb-col.no-image {
        display: none;
    }

    .news-item .content-col {
        flex: 0 0 100%;
        order: 2;
    }

    .news-item .content-col .title {
        font-size: 14px;
    }
    .news-item .content-col .summary {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }
}

@media (max-width: 480px) {
    .banner {
        min-height: 110px;
        padding: 16px 12px 14px;
    }

    .banner .banner-content h1 {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .banner .banner-content .sub {
        font-size: 11px;
        gap: 2px 12px;
        flex-direction: column;
        gap: 2px;
    }

    .banner .banner-content .tag {
        font-size: 9px;
        padding: 2px 12px;
    }

    .headline-card {
        padding: 14px 16px;
    }

    .headline-card h2 {
        font-size: 17px;
    }
    .headline-card p {
        font-size: 14px;
    }

    .news-item {
        padding: 10px 14px;
        gap: 4px;
    }

    .news-item .date-col {
        font-size: 12px;
    }

    .news-item .thumb-col {
        height: 200px;
    }

    .news-item .content-col .title {
        font-size: 14px;
    }
    .news-item .content-col .summary {
        font-size: 12px;
    }

    .news-section .section-title {
        font-size: 16px;
    }

    .pagination a,
    .pagination span {
        min-width: 30px;
        height: 30px;
        font-size: 12px;
        padding: 0 8px;
    }

    .pagination .prev,
    .pagination .next {
        padding: 0 10px;
        font-size: 12px;
    }
}

/* ===== 头条区域链接（额外保险，覆盖继承） ===== */
.headline-card h2 a {
    color: #1a1a1a !important;  
    text-decoration: none;
}
.headline-card h2 a:hover {
    text-decoration: underline;
}

.article-subtitle {
    font-size: 18px;
    color: #666;
    margin: 8px 0 16px 0;
    font-weight: 400;
}