 /* ===== CSS 变量 & 重置 ===== */
        :root {
            --primary: #4687f0;
            --primary-dark: #2558b8;
            --primary-light: #73b8ff;
            --dark: #1a1a1a;
            --gray: #666;
            --light-gray: #f8f8f8;
            --white: #fff;
            --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            --radius: 6px;
            --transition: 0.3s ease;
            --nav-height: 80px;
            --nav-height-mobile: 64px;
            --border-color: #e8ecf1;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            list-style: none;
            text-decoration: none;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: "Microsoft Yahei", "PingFang SC", -apple-system, BlinkMacSystemFont, sans-serif;
            color: #333;
            background: #fafbfc;
            line-height: 1.6;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
        }

        /* ===== 导航栏 ===== */
        .header-nav-wrap {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 99999;
            padding: 0 clamp(16px, 4%, 60px);
            min-height: var(--nav-height-mobile);
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: background var(--transition), box-shadow var(--transition);
            background: rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(2px);
            -webkit-backdrop-filter: blur(2px);
        }

        .header-nav-wrap.fixed-nav {
            background: #ffffff;
            box-shadow: var(--shadow);
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
        }

        .logo {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            z-index: 10;
        }

        .logo img {
            height: clamp(44px, 6vw, 76px);
            width: auto;
            object-fit: contain;
        }

        .nav-list {
            display: flex;
            align-items: center;
            gap: clamp(6px, 1.2vw, 16px);
        }

        .nav-list li a {
            display: block;
            color: #fff;
            font-size: clamp(14px, 1.1vw, 16px);
            padding: 8px 12px;
            position: relative;
            transition: color var(--transition);
            white-space: nowrap;
            font-weight: 500;
            letter-spacing: 0.3px;
        }

        .header-nav-wrap.fixed-nav .nav-list li a {
            color: #333;
        }

        .nav-list li a::after {
            content: '';
            position: absolute;
            left: 12px;
            bottom: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width var(--transition);
        }

        .nav-list li a:hover {
            color: var(--primary);
        }
        .nav-list li a:hover::after {
            width: calc(100% - 24px);
        }

        .header-nav-wrap.fixed-nav .nav-list li a:hover {
            color: var(--primary);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 6px 4px;
            z-index: 20;
            background: transparent;
            border: none;
            outline: none;
        }

        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: #fff;
            border-radius: 2px;
            transition: all var(--transition);
            transform-origin: center;
        }

        .header-nav-wrap.fixed-nav .hamburger span {
            background: #333;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }

        /* ===== 面包屑导航 ===== */
        .breadcrumb-bar {
            width: 100%;
            padding: clamp(80px, 12vh, 120px) clamp(16px, 4%, 60px) 20px;
            background: url("../tgy/bj8.jpg") center/cover no-repeat;
            color: #fff;
            margin-top: var(--nav-height-mobile);
        }

        @media (min-width: 769px) {
            .breadcrumb-bar {
                margin-top: var(--nav-height);
                padding: clamp(100px, 14vh, 140px) clamp(16px, 4%, 60px) 24px;
            }
        }

        .breadcrumb-bar h1 {
            font-size: clamp(24px, 2.6vw, 36px);
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 6px;
            line-height: 1.3;
        }

        .breadcrumb-bar .sub-title {
            font-size: clamp(13px, 0.9vw, 15px);
            opacity: 0.7;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .breadcrumb-bar .breadcrumb {
            font-size: clamp(13px, 0.85vw, 14px);
            opacity: 0.8;
        }

        .breadcrumb-bar .breadcrumb a {
            color: rgba(255, 255, 255, 0.85);
            transition: color var(--transition);
        }

        .breadcrumb-bar .breadcrumb a:hover {
            color: #fff;
        }

        .breadcrumb-bar .breadcrumb span {
            margin: 0 6px;
        }

        /* ===== 新闻详情主体 ===== */
        .news-detail-wrap {
            max-width: 1160px;
            margin: 0 auto;
            padding: 40px clamp(20px, 3vw, 50px) 60px;
        }

        /* 文章头部 */
        .article-header {
            background: #fff;
            border-radius: 12px;
            padding: 40px 48px 28px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
            margin-bottom: 28px;
        }

        .article-header .article-title {
            font-size: clamp(26px, 3vw, 40px);
            color: #1a1a2e;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 16px;
        }

        .article-header .article-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 28px;
            font-size: 14px;
            color: #999;
            border-top: 1px solid var(--border-color);
            padding-top: 16px;
        }

        .article-header .article-meta span {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .article-header .article-meta .icon {
            font-style: normal;
        }

        .article-header .article-meta .tag {
            display: inline-block;
            background: rgba(70, 135, 240, 0.08);
            color: var(--primary);
            padding: 0 12px;
            border-radius: 12px;
            font-size: 13px;
            font-weight: 500;
        }

        /* 文章正文 */
        .article-body {
            background: #fff;
            border-radius: 12px;
            padding: 40px 48px 44px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }

        .article-body .content p {
            font-size: 16.5px;
            color: #444;
            line-height: 1.95;
            margin-bottom: 22px;
            text-align: justify;
        }

        .article-body .content p:last-child {
            margin-bottom: 0;
        }

        .article-body .content strong {
            color: #1a1a2e;
        }

        .article-body .content .img-wrap {
            margin: 28px 0;
            border-radius: 8px;
            overflow: hidden;
            background: #f0f4fa;
        }

        .article-body .content .img-wrap img {
            width: 100%;
            height: auto;
        }

        .article-body .content .img-caption {
            font-size: 13px;
            color: #999;
            text-align: center;
            padding: 8px 0 4px;
        }

        .article-body .content .img-left {
            float: left;
            margin: 8px 28px 16px 0;
            max-width: 45%;
            border-radius: 8px;
        }

        .article-body .content .img-right {
            float: right;
            margin: 8px 0 16px 28px;
            max-width: 45%;
            border-radius: 8px;
        }

        .article-body .content .img-center {
            margin: 28px auto;
            max-width: 80%;
            border-radius: 8px;
        }

        .article-body .content img {
    display: block;
    margin: 15px auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
/* 图片所在段落取消首行缩进，避免视觉偏移 */
.article-body .content p {
    text-indent: 2em;
}
.article-body .content p:has(img) {
    text-indent: 0;
    text-align: center;
}
        /* ===== 页脚 ===== */
        footer {
            width: 100%;
            background: var(--dark);
            color: #ccc;
            padding: clamp(40px, 8vh, 80px) clamp(20px, 4vw, 60px) 30px;
            position: relative;
            margin-top: 20px;
        }

        .back-top-btn {
            width: clamp(48px, 5vw, 60px);
            height: clamp(48px, 5vw, 60px);
            border-radius: 50%;
            background: #444;
            color: #fff;
            font-size: clamp(20px, 2vw, 28px);
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            top: -30px;
            cursor: pointer;
            transition: background var(--transition);
            border: none;
        }

        .back-top-btn:hover {
            background: var(--primary);
        }

        .footer-top-wrap {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: clamp(30px, 4vw, 60px);
            margin-bottom: 50px;
        }

        .footer-column h3 {
            font-size: clamp(18px, 1.3vw, 20px);
            color: #fff;
            font-weight: 400;
            margin-bottom: 20px;
            padding-left: 16px;
            position: relative;
        }

        .footer-column h3::before {
            content: "|";
            position: absolute;
            left: 0;
            color: #fff;
            font-size: 22px;
        }

        .footer-column ul li {
            margin-bottom: 12px;
        }

        .footer-column ul li a {
            color: #ccc;
            font-size: clamp(13px, 0.9vw, 14px);
            transition: color var(--transition);
        }

        .footer-column ul li a:hover {
            color: var(--primary-light);
        }

        .footer-qrcode-box {
    text-align: right;
    /* 开启弹性布局，垂直排列 */
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-qrcode-title {
    font-size: clamp(16px, 1.2vw, 18px);
    color: #ccc;
    letter-spacing: 2px;
    margin-bottom: 16px;
    font-style: italic;
}

.footer-qrcode {
    width: clamp(140px, 15vw, 220px);
    height: auto;
    aspect-ratio: 1/1;
    border: 8px solid #fff;
    border-radius: 4px;
    max-width: 220px;
}

        .footer-copyright {
            border-top: 1px solid #333;
            padding-top: 24px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 12px;
            font-size: clamp(12px, 0.8vw, 14px);
            color: #888;
        }

        .copyright-left {
    display: flex;
    align-items: center; /* 所有元素垂直居中 */
    flex-wrap: nowrap; /* 强制不换行 */
    gap: 6px;
}
.copyright-left img {
    height: 20px;
}

        .copyright-right {
            flex-shrink: 0;
        }

        /* ===== 响应式 ===== */
        @media (max-width: 768px) {
            .header-nav-wrap {
                min-height: var(--nav-height-mobile);
                padding: 0 16px;
                background: rgba(0, 0, 0, 0.3);
            }

            .header-nav-wrap.fixed-nav {
                background: #fff;
            }

            .nav-list {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: rgba(0, 0, 0, 0.92);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 8px;
                transform: translateX(100%);
                transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
                padding: 80px 20px 40px;
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
            }

            .nav-list.open {
                transform: translateX(0);
            }

            .nav-list li a {
                color: #fff !important;
                font-size: 20px;
                padding: 12px 20px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
                width: 100%;
                text-align: center;
            }

            .nav-list li a::after {
                display: none;
            }

            .nav-list li a:hover {
                color: var(--primary-light) !important;
            }

            .hamburger {
                display: flex;
            }

            .header-nav-wrap.fixed-nav .hamburger span {
                background: #333;
            }

            .breadcrumb-bar {
                padding: clamp(70px, 10vh, 90px) 16px 16px;
                margin-top: var(--nav-height-mobile);
            }

            .news-detail-wrap {
                padding: 24px 12px 40px;
                max-width: 100%;
            }

            .article-header {
                padding: 24px 20px 18px;
            }

            .article-header .article-title {
                font-size: clamp(20px, 5vw, 26px);
            }

            .article-header .article-meta {
                font-size: 13px;
                gap: 8px 16px;
            }

            .article-body {
                padding: 24px 20px 28px;
            }

            .article-body .content p {
                font-size: 15px;
            }

            .article-body .content .img-left,
            .article-body .content .img-right {
                float: none;
                max-width: 100%;
                margin: 16px 0;
            }

            .article-body .content .img-center {
                max-width: 100%;
            }

            .footer-top-wrap {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
                margin-bottom: 30px;
            }

            .footer-qrcode-box {
                text-align: left;
                grid-column: 1 / -1;
            }

            .footer-qrcode {
                width: 140px;
                border-width: 6px;
            }

            .footer-copyright {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
        padding: 12px 8px;
        font-size: 12px;
    }

    /* 左侧内容：强制换行，居中，允许内部元素换行 */
    .copyright-left {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 4px 6px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* 所有文字、链接允许换行，去除强制不换行 */
    .copyright-left span,
    .copyright-left a,
    .copyright-left text {
        white-space: normal !important;
        word-break: break-word;
    }

    /* 安全图标限制尺寸，防止溢出 */
    .copyright-left .safe-icon {
        max-height: 18px;
        width: auto;
        display: inline-block;
    }

    /* 技术支持也居中，自动换行 */
    .copyright-right {
        text-align: center;
        width: 100%;
        word-break: break-word;
    }

            .back-top-btn {
                width: 48px;
                height: 48px;
                font-size: 20px;
                top: -24px;
            }
        }

        @media (max-width: 420px) {
            .footer-top-wrap {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .footer-qrcode-box {
                text-align: center;
            }

            .footer-qrcode {
                width: 120px;
            }
        }

        @media (min-width: 769px) and (max-width: 992px) {
            .news-detail-wrap {
                padding: 30px 24px 40px;
            }

            .article-header {
                padding: 32px 32px 22px;
            }

            .article-body {
                padding: 32px 32px 36px;
            }
        }

        /* ===== 滚动条美化 ===== */
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #f0f0f0;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 3px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-dark);
        }