﻿@charset "utf-8";

 /* ===== 页面横幅 ===== */
        .page-banner {
            background: linear-gradient(135deg, rgba(10, 47, 108, 0.80) 0%, rgba(26, 75, 140, 0.65) 100%),
                        url('../img1/a8.jpg') center / cover no-repeat;
            padding: 5rem 2rem;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .page-banner::after {
            content: '';
            position: absolute;
            right: -60px;
            top: -60px;
            width: 280px;
            height: 280px;
            background: radial-gradient(circle, rgba(106, 176, 254, 0.18) 0%, transparent 70%);
            border-radius: 50%;
        }
        .page-banner .banner-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
            margin: 0 auto;
        }
        .page-banner .banner-icon {
            font-size: 3rem;
            margin-bottom: 0.8rem;
            color: #b3d9ff;
            background: rgba(255,255,255,0.10);
            width: 80px; height: 80px;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            margin-left: auto; margin-right: auto;
            border: 2px solid rgba(255,255,255,0.20);
        }
        .page-banner h1 {
            font-size: 2.6rem; font-weight: 700; letter-spacing: 1px;
            text-shadow: 0 4px 20px rgba(0,0,0,0.5); margin-bottom: 0.5rem;
        }
        .page-banner p {
            font-size: 1.1rem; font-weight: 300; opacity: 0.90;
            text-shadow: 0 2px 10px rgba(0,0,0,0.4);
        }
        @media (max-width: 768px) {
            .page-banner { padding: 3.5rem 1.5rem; }
            .page-banner h1 { font-size: 2rem; }
            .page-banner .banner-icon { width: 64px; height: 64px; font-size: 2.4rem; }
        }

        /* ===== 通用区块 ===== */
        .section-block {
            margin: 0 1.5rem 2.5rem;
            padding: 3.5rem 2.5rem;
            background: #fff;
            border-radius: 24px;
            box-shadow: 0 4px 20px rgba(10,47,108,0.06);
            border: 1px solid #e8f0fe;
        }
        .section-title {
            text-align: center;
            font-size: 1.9rem; font-weight: 700;
            color: #08305c; margin-bottom: 0.4rem;
        }
        .section-title i { color: #1a6bc4; margin-right: 8px; }
        .section-sub {
            text-align: center; color: #5d7a9e;
            font-size: 0.95rem; margin-bottom: 2.5rem;
        }

        /* ===== 新闻列表 ===== */
        .news-list {
            width: 73%; margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }
        .news-card {
            display: flex; flex-direction: column; gap: 1rem;
            background: #f8fbff;
            border: 1px solid #e8f0fe;
            border-radius: 18px;
            padding: 1.5rem;
            transition: all 0.3s ease;
        }
        .news-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 28px rgba(10,47,108,0.08);
            border-color: #6ab0fe;
        }
        .news-card .news-date {
            width: 120px; height: 60px;
            border-radius: 14px;
            background: linear-gradient(135deg, #4a9ae5, #2b7bd4);
            color: #fff;
            display: flex; flex-direction: column;
            align-items: center; justify-content: center;
            font-weight: 700;
        }
        .news-card .news-date .day {
            font-size: 1.4rem; line-height: 1; margin-bottom: 2px;
        }
        .news-card .news-date .month {
            font-size: 0.72rem; text-transform: uppercase;
            letter-spacing: 1px; opacity: 0.85;
        }
        .news-card .news-info { flex: 1; }
        .news-card h3 {
            font-size: 1.05rem; font-weight: 600;
            color: #08305c; margin-bottom: 0.4rem;
            line-height: 1.4;
        }
        .news-card p {
            font-size: 0.88rem; color: #5d7a9e;
            line-height: 1.6; margin-bottom: 0.6rem;
        }
        .news-card .read-more {
            font-size: 0.82rem; color: #1a6bc4;
            font-weight: 600; text-decoration: none;
            display: inline-flex; align-items: center; gap: 4px;
            transition: gap 0.25s;
        }
        .news-card .read-more:hover { gap: 8px; }
        .news-card .read-more i { font-size: 0.7rem; }

        @media (max-width: 900px) {
            .news-list { width: auto; margin: 0; }
        }
        @media (max-width: 600px) {
            .section-block { margin: 0 1rem 2rem; padding: 2.5rem 1.2rem; }
            .news-list { grid-template-columns: 1fr; gap: 1rem; }
            .news-card { padding: 1.2rem; }
            .news-card .news-date { width: 100px; height: 52px; border-radius: 12px; }
            .news-card .news-date .day { font-size: 1.2rem; }
            .section-title { font-size: 1.5rem; }
        }

        /* ===== 分页 ===== */
        .news-pagination {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 2.5rem;
            flex-wrap: wrap;
        }
        .news-pagination-item {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: #f0f5ff;
            color: #1a6bc4;
            font-weight: 600;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.25s ease;
            border: 1px solid #dce8f8;
        }
        .news-pagination-item:hover {
            background: #cfe2ff;
            border-color: #6ab0fe;
        }
        .news-pagination-item.active {
            background: linear-gradient(135deg, #4a9ae5, #2b7bd4);
            color: #fff;
            border-color: transparent;
            box-shadow: 0 4px 12px rgba(26,107,196,0.25);
        }
        .news-pagination-prev,
        .news-pagination-next {
            width: auto;
            padding: 0 1rem;
            gap: 0.35rem;
            font-size: 0.85rem;
        }
        .news-pagination-dots {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            color: #8a9bb5;
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* ===== 新闻详情页 ===== */
        .news-detail-container {
            margin: 0 1.5rem 2.5rem;
            padding: 3rem 3rem 2rem;
            background: #fff;
            border-radius: 24px;
            box-shadow: 0 4px 20px rgba(10,47,108,0.06);
            border: 1px solid #e8f0fe;
        }
        .news-detail-breadcrumb {
            margin-bottom: 2rem;
        }
        .news-detail-breadcrumb .back-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #1a6bc4;
            font-size: 0.9rem;
            font-weight: 500;
            text-decoration: none;
            padding: 0.5rem 1.2rem;
            background: #f0f5ff;
            border-radius: 8px;
            transition: all 0.25s ease;
        }
        .news-detail-breadcrumb .back-btn:hover {
            background: #dce8ff;
            color: #08305c;
        }

        .news-detail-article {
            max-width: 860px;
            margin: 0 auto;
        }
        .news-detail-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }
        .news-detail-icon {
            width: 72px; height: 72px;
            margin: 0 auto 1.2rem;
            background: linear-gradient(135deg, #eaf3ff, #d4e6ff);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: #1a6bc4;
        }
        .news-detail-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #08305c;
            line-height: 1.4;
            margin-bottom: 1rem;
        }
        .news-detail-meta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        .news-detail-date {
            font-size: 0.9rem;
            color: #7a93b0;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .news-detail-date i {
            color: #1a6bc4;
        }

        .news-detail-content {
            font-size: 1rem;
            color: #3a4f6a;
            line-height: 1.9;
            word-break: break-word;
        }
        .news-detail-content img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 1rem 0;
        }
        .news-detail-content p {
            margin-bottom: 1rem;
        }

        .news-detail-divider {
            height: 1px;
            background: #e8f0fe;
            margin: 2.5rem 0 1.5rem;
        }

        .news-detail-footer {
            text-align: center;
        }
        .news-detail-footer .back-btn-back {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #1a6bc4;
            font-size: 0.9rem;
            font-weight: 500;
            text-decoration: none;
            padding: 0.6rem 1.5rem;
            background: #f0f5ff;
            border-radius: 8px;
            transition: all 0.25s ease;
        }
        .news-detail-footer .back-btn-back:hover {
            background: #dce8ff;
            color: #08305c;
        }

        @media (max-width: 768px) {
            .news-detail-container {
                margin: 0 1rem 2rem;
                padding: 2rem 1.2rem;
            }
            .news-detail-title {
                font-size: 1.4rem;
            }
            .news-detail-content {
                font-size: 0.95rem;
            }
        }