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

        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', sans-serif;
            background-color: #e0e5ec;
            overflow-x: hidden;
        }

        /* ========== 顶部导航 (完全复刻首页风格) ========== */
        .ys-hd-pc {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 99;
            background: transparent;
            transition: all 0.3s ease;
            padding: 18px 40px;
        }
        body.scrolled .ys-hd-pc {
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(8px);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        .mod-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .head-logo-link img {
            height: 48px;
            transition: opacity 0.25s;
        }
        .head-logo-link img:first-child {
            display: block;
        }
        .head-logo-link img:last-child {
            display: none;
        }
        body.scrolled .head-logo-link img:first-child {
            display: none;
        }
        body.scrolled .head-logo-link img:last-child {
            display: block;
        }
        .head-other {
            display: flex;
            align-items: center;
            gap: 18px;
        }
        .head-nav {
            display: flex;
            list-style: none;
            gap: 28px;
            margin: 0;
            padding: 0;
        }
        .head-nav-item a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            font-size: 1rem;
            transition: color 0.25s;
            letter-spacing: 0.5px;
        }
        body.scrolled .head-nav-item a {
            color: #1a1f2e;
        }
        .head-nav-item a:hover {
            color: #00e0ff;
        }
        .head-other-more {
            margin-left: 0;
            position: relative;
        }
        .head-other-more a {
            background: linear-gradient(135deg, #00e0ff, #0088ff);
            padding: 8px 24px;
            border-radius: 40px;
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.25s;
            display: inline-block;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            white-space: nowrap;
        }
        .head-other-more a:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 14px rgba(0,160,255,0.35);
            background: linear-gradient(135deg, #00f0ff, #0095ff);
        }
        @media (max-width: 1100px) {
            .head-nav { gap: 18px; }
            .head-other { gap: 16px; }
            .head-nav-item a { font-size: 0.9rem; }
        }
        @media (max-width: 900px) {
            .head-nav { display: none; }
        }
        @media (max-width: 768px) {
            .ys-hd-pc { padding: 12px 20px; }
            .head-logo-link img { height: 38px; }
        }

        /* ========== 资讯中心主体 (银灰金属质感 + 细腻底纹) ========== */
        .news-main {
            margin-top: 20px;
            padding: 40px 5% 80px;
            min-height: calc(100vh - 400px);
            background-color: #dce1e6;
            background-image: 
                linear-gradient(135deg, rgba(255,255,255,0.6) 0%, rgba(220,225,230,0.9) 100%),
                repeating-linear-gradient(45deg, rgba(0,0,0,0.02) 0px, rgba(0,0,0,0.02) 2px, transparent 2px, transparent 8px);
            position: relative;
        }
        .news-main::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.2) 0%, rgba(0,0,0,0.02) 80%);
            pointer-events: none;
        }

        /* 页面头部 */
        .news-header {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 2;
        }
        .news-header .sub {
            color: #0088cc;
            font-size: 1rem;
            letter-spacing: 4px;
            margin-bottom: 8px;
            font-weight: 500;
        }
        .news-header h1 {
            font-size: 3rem;
            background: linear-gradient(135deg, #2c3e50, #4ca1af);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .news-header .desc {
            color: #546e7a;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }

        /* 分类筛选栏 */
        .news-filter {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-bottom: 50px;
            position: relative;
            z-index: 2;
        }
        .filter-btn {
            background: rgba(255,255,255,0.5);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(0,0,0,0.08);
            padding: 10px 28px;
            border-radius: 50px;
            font-weight: 600;
            color: #2c3e50;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.02);
            font-size: 0.95rem;
        }
        .filter-btn.active, .filter-btn:hover {
            background: linear-gradient(135deg, #00e0ff, #0088ff);
            color: white;
            border-color: transparent;
            box-shadow: 0 8px 20px rgba(0,136,255,0.2);
            transform: translateY(-2px);
        }

        /* 资讯网格布局 */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
            gap: 35px;
            position: relative;
            z-index: 2;
        }

        /* 资讯卡片 - 金属质感玻璃态 */
        .news-card {
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(2px);
            border-radius: 28px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            box-shadow: 0 12px 28px -8px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.8);
            border: 1px solid rgba(255,255,255,0.6);
            cursor: pointer;
            position: relative;
        }
        .news-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 40px -12px rgba(0,0,0,0.25);
            background: rgba(255,255,255,0.9);
            border-color: rgba(0,224,255,0.4);
        }

        /* 卡片图片区域 */
        .news-img {
            height: 210px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(145deg, #eef2f5, #d0d7de);
        
            position: relative;
            overflow: hidden;
        }
        .news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .news-card:hover .news-img img {
            transform: scale(1.05);
        }
        .news-category {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(0,224,255,0.85);
            backdrop-filter: blur(4px);
            padding: 5px 14px;
            border-radius: 40px;
            font-size: 0.7rem;
            font-weight: 700;
            color: #1e2a3a;
            letter-spacing: 0.5px;
        }

        /* 卡片内容 */
        .news-info {
            padding: 22px 22px 28px;
        }
        .news-date {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.8rem;
            color: #0088cc;
            margin-bottom: 12px;
            font-weight: 500;
        }
        .news-date i {
            font-size: 0.85rem;
        }
        .news-info h3 {
            font-size: 1.35rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 12px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-summary {
            color: #475569;
            line-height: 1.6;
            font-size: 0.9rem;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid rgba(0,0,0,0.05);
            padding-top: 15px;
            margin-top: 5px;
        }
        .news-tag {
            font-size: 0.75rem;
            background: rgba(0,136,204,0.1);
            padding: 4px 12px;
            border-radius: 40px;
            color: #006699;
        }
        .news-link {
            color: #0088cc;
            font-weight: 600;
            font-size: 0.85rem;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .news-link i {
            transition: transform 0.2s;
        }
        .news-card:hover .news-link i {
            transform: translateX(6px);
        }

        /* 无数据提示 */
        .no-news {
            text-align: center;
            padding: 60px;
            background: rgba(255,255,255,0.6);
            border-radius: 40px;
            color: #5c6f87;
            font-size: 1.2rem;
        }

        /* 分页样式 */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 50px;
            position: relative;
            z-index: 2;
        }
        .page-btn {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.6);
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #2c3e50;
            font-weight: 600;
            border: 1px solid rgba(0,0,0,0.05);
        }
        .page-btn.active {
            background: linear-gradient(135deg, #00e0ff, #0088ff);
            color: white;
            box-shadow: 0 4px 12px rgba(0,136,255,0.3);
        }
        .page-btn:hover:not(.active) {
            background: rgba(255,255,255,0.9);
            transform: translateY(-2px);
        }
        .page-btn.disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        /* ========== 页脚 (完全复刻首页) ========== */
        .site-footer {
            background-color: #0f172a;
            color: rgba(255, 255, 255, 0.7);
            padding: 50px 5% 15px;
            position: relative;
            z-index: 1;
            margin-top: 0;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin: 0 auto;
            width: 100%;
            gap: 20px;
            flex-wrap: wrap;
        }
        .footer-left { flex: 0 0 200px; }
        .footer-logo img { height: 40px; margin-bottom: 10px; filter: brightness(0) invert(1); }
        .footer-left .slogan { font-size: 0.9rem; color: #94a3b8; }
        .footer-nav { flex: 1; }
        .footer-nav h4, .footer-contact h4, .footer-qrcode h4 {
            color: #fff;
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 600;
            position: relative;
            display: inline-block;
        }
        .footer-nav h4::after, .footer-contact h4::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 30px;
            height: 2px;
            background: #00e0ff;
        }
        .footer-nav ul { list-style: none; margin: 20px 0; }
        .footer-nav ul li { margin-bottom: 8px; }
        .footer-nav ul li a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .footer-nav ul li a:hover { color: #00e0ff; padding-left: 5px; }
        .footer-contact { flex: 1.5; }
        .footer-contact p { margin: 20px 0; font-size: 1rem; color: #94a3b8; }
        .footer-contact i { color: #00e0ff; margin-right: 8px; width: 16px; }
        .footer-qrcode { flex: 0 0 200px; text-align: center; }
        .footer-qrcode img { width: 150px; height: 150px; background: #fff; padding: 4px; border-radius: 6px; margin-bottom: 5px; }
        .footer-qrcode p { font-size: 0.7rem; color: #64748b; }
        .copyright-bar {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 25px;
            margin-top: 20px;
            text-align: center;
            font-size: 0.9rem;
            color: #64748b;
        }
        .copyright-bar a { color: #64748b; text-decoration: none; transition: color 0.3s; }
        .copyright-bar a:hover { color: #00e0ff; }
        @media (max-width: 1024px) {
            .footer-content { gap: 15px; }
            .footer-left { flex: 0 0 150px; }
        }
        @media (max-width: 768px) {
            .footer-content { flex-direction: column; align-items: center; text-align: center; }
            .footer-nav h4::after, .footer-contact h4::after { left: 50%; transform: translateX(-50%); }
            .footer-nav ul li a:hover { padding-left: 0; }
            .news-main { margin-top: 70px; padding: 30px 4% 50px; }
            .news-header h1 { font-size: 2rem; }
            .news-grid { grid-template-columns: 1fr; gap: 25px; }
            .filter-btn { padding: 6px 18px; font-size: 0.8rem; }
        }