 :root {
            --red-light: #df2027;
            --red-dark: #960e14;
            --bg-dark: #010101;
            --card-bg: #1a1a1a;
            --card-light: #252525;
            --text-light: #ffffff;
            --text-gray: #b3b3b3;
            --win-green: #4CAF50;
            --lose-red: #F44336;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Microsoft YaHei', 'PingFang SC', sans-serif;
        }

		body {
            background: 
                radial-gradient(circle at 10% 20%, rgba(223, 32, 39, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(150, 14, 20, 0.1) 0%, transparent 20%),
                var(--bg-dark);
            color: var(--text-light);
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
            line-height: 1.8;
        }

        /* 羽毛球场网格背景 */
        body::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
            background-size: 40px 40px;
            z-index: -1;
            opacity: 0.3;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        /* 头部导航 - 修改为链接样式 */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            margin-bottom: 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-icon {
            
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            
        }

        .logo-icon i {
            font-size: 28px;
            color: white;
        }

        .logo-text {
            font-size: 24px;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--text-light);
            text-transform: uppercase;
        }

        /* 导航链接样式 - 主要修改部分 */
        .nav-links {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .nav-link {
            padding: 10px 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            font-weight: 600;
            transition: var(--transition);
            border: 1px solid transparent;
            color: var(--text-light);
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .nav-link:hover {
            background: var(--red-light);
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(223, 32, 39, 0.3);
        }

        .nav-link.active {
            background: var(--red-light);
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(223, 32, 39, 0.3);
        }

        /* 内容容器 */
        .content-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            margin-bottom: 50px;
        }

        /* 通用卡片样式 */
        .card {
            background: var(--card-bg);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .card-header {
            background: linear-gradient(to right, var(--red-dark), var(--red-light));
            color: var(--text-light);
            padding: 16px 25px;
            font-size: 20px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .card-body {
            padding: 25px;
        }

        /* 运动员照片 */
        .player-photo {
            width: 160px;
            height: 220px;
            border-radius: 10px;
            background: linear-gradient(45deg, #252525, #333333);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
            border: 2px solid var(--red-light);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        }

        .player-photo i {
            font-size: 60px;
            color: rgba(255, 255, 255, 0.1);
        }

        /* 双打搭档信息 */
        .doubles-container {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 40px;
            align-items: center;
            padding: 20px 0;
        }

        .partner-section {
            text-align: center;
        }

        .partners {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 25px 0;
        }

        .partner-info {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .player-name {
            font-size: 22px;
            font-weight: 700;
            margin: 15px 0 5px;
        }

        .partner-stats {
            background: var(--card-light);
            border-radius: 12px;
            padding: 20px;
            margin-top: 20px;
        }

        .partner-stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-top: 15px;
        }

        .vs-section {
            font-size: 32px;
            font-weight: 800;
            color: var(--text-light);
            background: var(--red-light);
            width: 300px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* 双打比赛直播 */
        .match-teams {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 40px;
            padding: 30px 0;
        }

        .team {
            text-align: center;
        }

        .team-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text-light);
        }

        .team-players {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 20px 0;
        }

        .player-small {
            width: 140px;
            height: 190px;
        }

        .player-name-small {
            font-size: 18px;
            font-weight: 600;
            margin-top: 10px;
        }

        .live-score {
            font-size: 72px;
            font-weight: 800;
            color: var(--text-light);
            text-align: center;
            margin: 30px 0;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
			width:250px;
			margin-top:-210px
        }

        .prediction-section {
            background: var(--card-light);
            border-radius: 12px;
            padding: 25px;
            margin-top: 20px;
            border-left: 4px solid var(--red-light);
        }

        .prediction-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .prediction-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-light);
        }

        .prediction-value {
            background: var(--red-light);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: 600;
        }

        .vote-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 25px;
        }

        .vote-option {
            text-align: center;
            background: var(--card-bg);
            padding: 20px;
            border-radius: 12px;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .vote-option:hover {
            transform: translateY(-5px);
            border-color: var(--red-light);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
        }

        .vote-percentage {
            height: 25px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            margin-top: 15px;
            overflow: hidden;
            position: relative;
        }

        .vote-fill {
            height: 100%;
            background: var(--red-light);
            border-radius: 12px;
            transition: width 1s ease;
        }

        /* 表格样式 */
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 16px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .data-table th {
            background: linear-gradient(to right, var(--red-dark), var(--red-light));
            color: var(--text-light);
            padding: 16px;
            text-align: left;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
        }

        .data-table td {
            padding: 14px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .data-table tr:nth-child(even) {
            background: rgba(30, 30, 30, 0.5);
        }

        .data-table tr:hover {
            background: rgba(223, 32, 39, 0.1);
        }

        .win {
            color: var(--win-green);
            font-weight: 600;
        }

        .lose {
            color: var(--lose-red);
            font-weight: 600;
        }

        /* 积分排名样式 */
        .ranking-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }

        .ranking-table th {
            background: linear-gradient(to right, var(--red-dark), var(--red-light));
            color: var(--text-light);
            padding: 16px;
            text-align: left;
            font-weight: 600;
        }

        .ranking-table td {
            padding: 14px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .ranking-table tr:nth-child(1) {
            background: rgba(255, 215, 0, 0.1);
        }

        .ranking-table tr:nth-child(2) {
            background: rgba(192, 192, 192, 0.1);
        }

        .ranking-table tr:nth-child(3) {
            background: rgba(205, 127, 50, 0.1);
        }

        .ranking-table tr:hover {
            background: rgba(223, 32, 39, 0.1);
        }

        /* 动画效果 */
        @keyframes float {
            0% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-10px) rotate(2deg); }
            100% { transform: translateY(0) rotate(0deg); }
        }

        .shuttlecock {
            position: absolute;
            width: 40px;
            height: 40px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="30" r="25" fill="white" opacity="0.7"/><path d="M50,55 L30,95 L70,95 Z" fill="%23df2027" opacity="0.7"/></svg>');
            background-size: contain;
            z-index: -1;
            opacity: 0.4;
            animation: float 8s infinite ease-in-out;
        }

        .shuttlecock-1 { top: 10%; left: 5%; animation-delay: 0s; }
        .shuttlecock-2 { top: 25%; right: 7%; animation-delay: 2s; }
        .shuttlecock-3 { bottom: 15%; left: 10%; animation-delay: 4s; }
        
        /* 页脚 */
        .footer {
            text-align: center;
            margin-top: 40px;
            padding: 20px;
            color: var(--text-gray);
            font-size: 14px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .doubles-container, .match-teams {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .vs-section {
                margin: 0 auto;
				width:500px;
            }
        }

        @media (max-width: 992px) {
            .header {
                flex-direction: column;
                gap: 20px;
            }
            
            .nav-links {
                justify-content: center;
            }
            
            .team-players {
                flex-wrap: wrap;
            }
            
            .partner-stats-grid {
                grid-template-columns: 0.5fr 0.5fr;
            }
        }

        @media (max-width: 768px) {
            .player-photo {
                width: 140px;
                height: 190px;
            }
            
            .player-small {
                width: 120px;
                height: 170px;
            }
            
            .live-score {
                font-size: 56px;
            }
            
            .vote-container {
                grid-template-columns: 1fr;
            }
            
            .nav-link {
                padding: 8px 15px;
                font-size: 14px;
            }
        }

        @media (max-width: 576px) {
            .player-photo {
                width: 120px;
                height: 170px;
            }
            
            .player-small {
                width: 100px;
                height: 150px;
            }
            
            .partners {
                flex-direction: column;
            }
            
            .partner-stats-grid {
                grid-template-columns: 1fr;
            }
            
            .live-score {
                font-size: 42px;
            }
        }

        /* 页面切换 */
        .page {
            display: none;
        }
        
        .page.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
/* ================== */
        /* 超链接样式 */
        /* ================== */
        
        /* 基础链接样式 */
        a {
            color: white;
            text-decoration: none;
            transition: var(--transition);
            position: relative;
            font-weight: 500;
        }
        
        /* 下划线动画效果 */
        a.underline:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: var(--red-light);
            transition: width 0.3s ease;
        }
        
        a.underline:hover:after {
            width: 100%;
        }
        
        /* 背景高亮效果 */
        a.highlight {
            padding: 5px 10px;
            border-radius: 4px;
        }
        
        a.highlight:hover {
            background: rgba(223, 32, 39, 0.2);
        }
        
        /* 按钮样式链接 */
        a.button-link {
            display: inline-block;
            background: var(--red-light);
            color: white !important;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            text-align: center;
            transition: var(--transition);
            border: 2px solid var(--red-light);
            box-shadow: 0 4px 15px rgba(223, 32, 39, 0.3);
        }
        
        a.button-link:hover {
            background: transparent;
            color: var(--red-light) !important;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(223, 32, 39, 0.4);
        }
        
        /* 图标链接 */
        a.icon-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
			color:#ff6600;
        }
        
        a.icon-link i {
            transition: var(--transition);
        }
        
        a.icon-link:hover i {
            transform: translateX(5px);
        }
        
        /* 卡片链接 */
        a.card-link {
            display: block;
            padding: 20px;
            border-radius: 12px;
            background: var(--card-light);
            transition: var(--transition);
            border-left: 4px solid transparent;
        }
        
        a.card-link:hover {
            background: rgba(223, 32, 39, 0.1);
            border-left-color: var(--red-light);
            transform: translateX(5px);
        }
        
        /* 禁用链接样式 */
        a.disabled {
            color: var(--text-gray);
            cursor: not-allowed;
            pointer-events: none;
        }
        
        /* 新闻标题链接 */
        a.news-title {
            font-size: 1.2rem;
            font-weight: 600;
            display: block;
            margin-bottom: 8px;
            color: var(--text-light);
        }
        
        a.news-title:hover {
            color: var(--red-light);
        }
        
        /* 页脚链接 */
        .footer a {
            color: var(--text-gray);
            border-bottom: 1px dashed rgba(179, 179, 179, 0.3);
        }
        
        .footer a:hover {
            color: var(--text-light);
            border-bottom-color: var(--red-light);
        }

        /* 示例内容样式 */
        .content-section {
            margin: 40px 0;
            padding: 30px;
            background: var(--card-bg);
            border-radius: 16px;
        }
        
        .content-section h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--red-light);
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .content-section p {
            margin: 20px 0;
            line-height: 1.8;
        }

        .footer {
            text-align: center;
            margin-top: 40px;
            padding: 30px;
            color: var(--text-gray);
            font-size: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .badge {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-left: 10px;
        }
        
        .badge-red {
            background: rgba(223, 32, 39, 0.2);
            color: var(--red-light);
        }
        
        .badge-blue {
            background: rgba(33, 150, 243, 0.2);
            color: #2196F3;
        }
        
        .badge-green {
            background: rgba(76, 175, 80, 0.2);
            color: #4CAF50;
        }
        
        .code-block {
            background: rgba(0, 0, 0, 0.3);
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
            font-family: monospace;
            overflow-x: auto;
            line-height: 1.6;
            border-left: 4px solid var(--red-light);
        }
		/* 图集页面样式 */
        .gallery-header {
            text-align: center;
            padding: 40px 0 30px;
        }

        .gallery-header h1 {
            font-size: 3.2rem;
            margin-bottom: 15px;
            background: linear-gradient(to right, #ff9966, #ff5e62);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .gallery-header p {
            color: var(--text-gray);
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .filter-bar {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 30px 0;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 10px 25px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 30px;
            color: var(--text-light);
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
        }

        .filter-btn:hover, .filter-btn.active {
            background: var(--red-light);
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(223, 32, 39, 0.3);
        }

        /* 瀑布流图集 */
        .masonry-gallery {
            columns: 4;
            column-gap: 20px;
            margin: 40px 0;
        }

        @media (max-width: 1200px) {
            .masonry-gallery {
                columns: 3;
            }
        }

        @media (max-width: 768px) {
            .masonry-gallery {
                columns: 2;
            }
        }

        @media (max-width: 480px) {
            .masonry-gallery {
                columns: 1;
            }
        }

        .photo-card {
            break-inside: avoid;
            margin-bottom: 20px;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            background: var(--card-bg);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            transition: var(--transition);
            cursor: pointer;
        }

        .photo-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(223, 32, 39, 0.3);
        }

        .photo-card:hover .photo-overlay {
            opacity: 1;
        }

        .photo-card img {
            width: 100%;
            display: block;
            transition: var(--transition);
        }

        .photo-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 20px;
            opacity: 0;
            transition: var(--transition);
        }

        .photo-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: white;
        }

        .photo-meta {
            display: flex;
            justify-content: space-between;
            color: var(--text-gray);
            font-size: 0.9rem;
        }

        /* 加载更多 */
        .load-more {
            text-align: center;
            margin: 40px 0;
        }

        .load-btn {
            padding: 12px 35px;
            background: var(--red-light);
            color: white;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(223, 32, 39, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .load-btn:hover {
            background: #e62e35;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(223, 32, 39, 0.4);
        }

        .loading-spinner {
            display: none;
            width: 40px;
            height: 40px;
            margin: 20px auto;
            border: 4px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            border-top: 4px solid var(--red-light);
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* 图片模态框 */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            overflow: auto;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            max-width: 90%;
            max-height: 90%;
            margin: auto;
            display: block;
            border-radius: 8px;
            box-shadow: 0 0 40px rgba(223, 32, 39, 0.3);
        }

        .modal-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.7);
            padding: 20px;
            color: white;
            text-align: center;
        }

        .modal-title {
            font-size: 1.4rem;
            margin-bottom: 8px;
        }

        .modal-meta {
            color: var(--text-gray);
            font-size: 1rem;
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }

        .close-btn:hover {
            color: var(--red-light);
            transform: rotate(90deg);
        }

        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-size: 50px;
            cursor: pointer;
            background: rgba(0, 0, 0, 0.3);
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: var(--transition);
        }

        .nav-btn:hover {
            background: rgba(223, 32, 39, 0.5);
        }

        .prev-btn {
            left: 30px;
        }

        .next-btn {
            right: 30px;
        }

        /* 页脚 */
        .footer {
            text-align: center;
            margin-top: 40px;
            padding: 20px;
            color: var(--text-gray);
            font-size: 14px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .header {
                flex-direction: column;
                gap: 20px;
            }
            
            .nav-links {
                justify-content: center;
            }
            
            .gallery-header h1 {
                font-size: 2.5rem;
            }
            
            .filter-bar {
                gap: 10px;
            }
            
            .filter-btn {
                padding: 8px 15px;
                font-size: 0.9rem;
            }
            
            .nav-btn {
                width: 50px;
                height: 50px;
                font-size: 30px;
            }
            
            .prev-btn {
                left: 10px;
            }
            
            .next-btn {
                right: 10px;
            }
            
            .close-btn {
                top: 10px;
                right: 15px;
                font-size: 30px;
            }
        }
 /* 响应式设计 */
        @media (max-width: 992px) {
            .news-list {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .header {
                flex-direction: column;
                gap: 20px;
            }
            
            .nav-links {
                justify-content: center;
            }
            
            .page-header h1 {
                font-size: 2.2rem;
            }
            
            .news-filters {
                flex-direction: column;
                align-items: stretch;
            }
            
            .filter-options {
                justify-content: center;
            }
            
            .search-box {
                width: 100%;
            }
            
            .search-box input {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .news-list {
                grid-template-columns: 1fr;
            }
            
            .page-header h1 {
                font-size: 1.8rem;
            }
        }
		 /* 页面标题 */
        .page-header {
            text-align: center;
            padding: 40px 0 30px;
        }

        .page-header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            background: linear-gradient(to right, #ff9966, #ff5e62);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .page-header p {
            color: var(--text-gray);
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* 新闻列表 */
        .news-filters {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 30px 0;
            padding: 20px;
            background: var(--card-bg);
            border-radius: 12px;
            flex-wrap: wrap;
            gap: 15px;
        }

        .filter-options {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 8px 20px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 30px;
            color: var(--text-light);
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
        }

        .filter-btn:hover, .filter-btn.active {
            background: var(--red-light);
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(223, 32, 39, 0.3);
        }

        .search-box {
            position: relative;
        }

        .search-box input {
            padding: 10px 15px 10px 40px;
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            width: 250px;
            font-size: 1rem;
        }

        .search-box i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-gray);
        }

        .news-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .news-item {
            background: var(--card-bg);
            border-radius: 16px;
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .news-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(223, 32, 39, 0.3);
            border-color: var(--red-light);
        }

        .news-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .news-item:hover .news-image img {
            transform: scale(1.05);
        }

        .news-category {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--red-light);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .news-content {
            padding: 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .news-title {
            font-size: 1.4rem;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .news-title a {
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
        }

        .news-title a:hover {
            color: var(--red-light);
        }

        .news-excerpt {
            color: var(--text-gray);
            margin-bottom: 20px;
            flex: 1;
        }

        .news-meta {
            display: flex;
            justify-content: space-between;
            color: var(--text-gray);
            font-size: 0.9rem;
            padding-top: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .news-date, .news-views {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* 热门新闻标签 */
        .hot-tag {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(45deg, #ff8a00, #ff2070);
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 600;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 138, 0, 0.5); }
            70% { box-shadow: 0 0 0 8px rgba(255, 138, 0, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 138, 0, 0); }
        }

        /* 分页控件 */
        .pagination {
            display: flex;
            justify-content: center;
            margin: 50px 0;
            gap: 10px;
        }

        .page-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--card-bg);
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .page-btn:hover, .page-btn.active {
            background: var(--red-light);
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(223, 32, 39, 0.3);
        }

        .page-btn i {
            font-size: 1rem;
        }
		 /* 新闻内容 */
        .news-container {
            background: var(--card-bg);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            padding: 40px;
            margin-bottom: 40px;
            position: relative;
        }

        @media (max-width: 768px) {
            .news-container {
                padding: 25px;
            }
        }

        .news-header {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }

        .news-header::after {
            content: "";
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--red-light);
            border-radius: 2px;
        }

        .news-title {
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.3;
            background: linear-gradient(to right, #ff9966, #ff5e62);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .news-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: var(--text-gray);
            font-size: 1.1rem;
        }

        .news-meta div {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .news-content {
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .news-content p {
            margin: 25px 0;
        }

        .news-content img {
            max-width: 100%;
            border-radius: 12px;
            margin: 30px auto;
            display: block;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .image-caption {
            text-align: center;
            color: var(--text-gray);
            font-style: italic;
            margin-top: -20px;
            margin-bottom: 30px;
            font-size: 0.95rem;
        }

        .highlight {
            background: rgba(223, 32, 39, 0.1);
            border-left: 4px solid var(--red-light);
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin: 30px 0;
            font-style: italic;
        }

        .emoji {
            font-size: 1.4rem;
            margin: 0 3px;
            vertical-align: middle;
        }

        .quote {
            display: flex;
            align-items: center;
            gap: 20px;
            background: var(--card-light);
            padding: 25px;
            border-radius: 12px;
            margin: 40px 0;
            border-left: 4px solid var(--red-light);
        }

        .quote-icon {
            font-size: 3rem;
            color: var(--red-light);
            opacity: 0.7;
        }

        .quote-text {
            flex: 1;
            font-size: 1.2rem;
            font-style: italic;
        }

        .quote-author {
            margin-top: 15px;
            font-weight: 600;
            color: var(--red-light);
            text-align: right;
        }

        .tags {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .tag {
            background: rgba(223, 32, 39, 0.1);
            color: var(--red-light);
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
        }

        /* 分享功能区域 */
        .share-section {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin: 50px 0 30px;
            background: var(--card-light);
            padding: 25px;
            border-radius: 12px;
            border-left: 4px solid var(--red-light);
        }

        .share-header {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.4rem;
            font-weight: 600;
        }

        .share-header i {
            color: var(--red-light);
            font-size: 1.8rem;
        }

        .share-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 15px;
        }

        .share-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 20px;
            border-radius: 30px;
            background: var(--card-bg);
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .share-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
        }

        .share-btn.weibo {
            background: #e6162d;
        }

        .share-btn.wechat {
            background: #2aae67;
        }

        .share-btn.qq {
            background: #12b7f5;
        }

        .share-btn.twitter {
            background: #1da1f2;
        }

        .share-btn.facebook {
            background: #3b5998;
        }

        .share-btn.link {
            background: var(--card-bg);
            position: relative;
        }

        .share-btn.link .copied-message {
            position: absolute;
            top: -35px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
            opacity: 0;
            transition: opacity 0.3s;
            white-space: nowrap;
        }

        .share-btn.link .copied-message.show {
            opacity: 1;
        }

        .qrcode-section {
            display: none;
            margin-top: 25px;
            text-align: center;
            padding: 20px;
            background: var(--card-bg);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .qrcode-container {
            margin: 15px auto;
            width: 180px;
            height: 180px;
            background: white;
            padding: 10px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .qrcode-placeholder {
            width: 160px;
            height: 160px;
            background: #f0f0f0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #888;
            font-size: 0.9rem;
        }

        .qrcode-placeholder i {
            font-size: 2.5rem;
            margin-bottom: 10px;
            color: #ccc;
        }

        .qrcode-instruction {
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-top: 15px;
        }

        /* 相关新闻 */
        .related-news {
            margin-top: 60px;
        }

        .section-title {
            font-size: 1.8rem;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--red-light);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }

        .related-card {
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .related-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 25px rgba(223, 32, 39, 0.3);
        }

        .related-image {
            height: 180px;
            background: var(--card-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-gray);
        }

        .related-content {
            padding: 20px;
        }

        .related-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 10px;
            display: block;
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
        }

        .related-title:hover {
            color: var(--red-light);
        }

        .related-meta {
            color: var(--text-gray);
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        /* 页脚 */
        .footer {
            text-align: center;
            margin-top: 60px;
            padding: 30px 0;
            color: var(--text-gray);
            font-size: 14px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .header {
                flex-direction: column;
                gap: 20px;
            }
            
            .nav-links {
                justify-content: center;
            }
            
            .news-title {
                font-size: 2rem;
            }
            
            .news-meta {
                flex-direction: column;
                gap: 8px;
            }
            
            .quote {
                flex-direction: column;
                text-align: center;
            }
            
            .quote-author {
                text-align: center;
            }
            
            .share-buttons {
                flex-direction: column;
            }
            
            .share-btn {
                justify-content: center;
            }
        }

/* 移动端图片自适应 */
.news-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* 覆盖内联样式 - 针对移动设备 */
@media screen and (max-width: 768px) {
    .news-content img[style*="height:"] {
        width: auto !important;
        height: auto !important;
        max-width: 100% !important;
    }
    
    /* 针对特定尺寸的图片进行优化 */
    .news-content img[style*="height:720px; width:1080px"] {
        max-height: 300px !important;
    }
    
    .news-content img[style*="height:1620px; width:1080px"] {
        max-height: 500px !important;
    }
    
    .news-content img[style*="height:539px; width:1080px"] {
        max-height: 250px !important;
    }
    
    .news-content img[style*="height:608px; width:1080px"] {
        max-height: 280px !important;
    }
}