        :root {
            --primary-white: #ffffff;
            --secondary-dark: #1a1a1a;
            --accent-green: #00c853;
            --accent-orange: #ff6b00;
            --text-gray: #666666;
            --border-light: #e0e0e0;
            --hover-bg: #f5f5f5;
            --footer-dark: #0f0f0f;
            --footer-gray: #2a2a2a;
            --bg-light: #f8f9fa;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Noto Sans SC', sans-serif;
            background-color: var(--bg-light);
            color: var(--secondary-dark);
            line-height: 1.6;
        }

        /* 顶部实时比分条 - 复用头部样式 */
        .live-ticker {
            background-color: var(--secondary-dark);
            color: white;
            padding: 8px 0;
            font-size: 0.85rem;
            border-bottom: 3px solid var(--accent-green);
        }

        .ticker-wrapper {
            display: flex;
            align-items: center;
            overflow: hidden;
            white-space: nowrap;
        }

        .ticker-label {
            background-color: var(--accent-green);
            color: white;
            padding: 4px 12px;
            border-radius: 4px;
            font-weight: 700;
            margin-right: 15px;
            flex-shrink: 0;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .ticker-content {
            display: flex;
            animation: scroll 30s linear infinite;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .match-item {
            display: inline-flex;
            align-items: center;
            margin-right: 30px;
            padding: 0 10px;
        }

        .match-item:hover {
            background-color: rgba(255,255,255,0.1);
            border-radius: 4px;
            cursor: pointer;
        }

        .team-name {
            font-weight: 500;
            margin: 0 8px;
        }

        .score {
            color: var(--accent-green);
            font-weight: 700;
            font-family: 'Oswald', sans-serif;
            font-size: 1.1em;
        }

        .match-time {
            color: #aaa;
            font-size: 0.8em;
            margin-left: 8px;
        }

        /* 主导航栏 - 复用头部样式 */
        .main-navbar {
            background-color: var(--primary-white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1030;
        }

        .navbar-brand {
            font-family: 'Oswald', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary-dark) !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .brand-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--accent-green) 0%, #00a344 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }

        .nav-link {
            color: var(--secondary-dark) !important;
            font-weight: 500;
            padding: 1.2rem 1rem !important;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--accent-green) !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background-color: var(--accent-green);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after, .nav-link.active::after {
            width: 80%;
        }

        /* 页面标题区 */
        .page-header {
            background: linear-gradient(135deg, var(--secondary-dark) 0%, #2d2d2d 100%);
            color: white;
            padding: 60px 0 40px;
            position: relative;
            overflow: hidden;
            margin-bottom: 0;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(0, 200, 83, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(255, 107, 0, 0.05) 0%, transparent 40%);
        }

        .page-header-content {
            position: relative;
            z-index: 2;
        }

        .breadcrumb {
            background: none;
            padding: 0;
            margin-bottom: 15px;
        }

        .breadcrumb-item a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s;
        }

        .breadcrumb-item a:hover {
            color: var(--accent-green);
        }

        .breadcrumb-item.active {
            color: white;
        }

        .breadcrumb-item + .breadcrumb-item::before {
            color: rgba(255,255,255,0.5);
        }

        .page-title {
            font-family: 'Oswald', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .page-title::after {
            content: '';
            flex: 1;
            height: 2px;
            background: linear-gradient(to right, var(--accent-green), transparent);
            margin-left: 20px;
        }

        .page-subtitle {
            color: rgba(255,255,255,0.8);
            font-size: 1.1rem;
            max-width: 600px;
        }

        /* 筛选标签栏 */
        .filter-bar {
            background-color: white;
            border-bottom: 1px solid var(--border-light);
            padding: 20px 0;
            position: sticky;
            top: 72px;
            z-index: 1020;
            box-shadow: 0 2px 10px rgba(0,0,0,0.03);
        }

        .filter-wrapper {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .filter-label {
            font-weight: 700;
            color: var(--secondary-dark);
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
        }

        .filter-label i {
            color: var(--accent-green);
        }

        .filter-tags {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            flex: 1;
        }

        .filter-tag {
            padding: 8px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s;
            border: 2px solid var(--border-light);
            color: var(--text-gray);
            background-color: white;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .filter-tag:hover {
            border-color: var(--accent-green);
            color: var(--accent-green);
            transform: translateY(-2px);
        }

        .filter-tag.active {
            background-color: var(--accent-green);
            border-color: var(--accent-green);
            color: white;
        }

        .filter-tag .count {
            background-color: rgba(0,0,0,0.1);
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 700;
        }

        .filter-tag.active .count {
            background-color: rgba(255,255,255,0.2);
        }

        .filter-sort {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .sort-select {
            border: 2px solid var(--border-light);
            border-radius: 8px;
            padding: 8px 15px;
            font-size: 0.9rem;
            color: var(--secondary-dark);
            background-color: white;
            cursor: pointer;
            transition: all 0.3s;
        }

        .sort-select:focus {
            outline: none;
            border-color: var(--accent-green);
        }

        /* 主内容区 */
        .news-section {
            padding: 40px 0 60px;
        }

        /* 特色新闻大卡片 */
        .featured-news {
            margin-bottom: 40px;
        }

        .featured-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            height: 450px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }

        .featured-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .featured-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .featured-card:hover .featured-image {
            transform: scale(1.05);
        }

        .featured-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 40px;
            background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
        }

        .featured-tag {
            display: inline-block;
            background-color: var(--accent-orange);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .featured-title {
            font-family: 'Oswald', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: white;
            line-height: 1.2;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .featured-excerpt {
            color: rgba(255,255,255,0.8);
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .featured-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
        }

        .featured-meta span {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .featured-meta i {
            color: var(--accent-green);
        }

        /* 新闻列表 */
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .news-card {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: all 0.3s;
            display: flex;
            height: 200px;
        }

        .news-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        .news-image-wrapper {
            width: 320px;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
        }

        .news-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }

        .news-card:hover .news-image {
            transform: scale(1.08);
        }

        .news-category-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: var(--accent-green);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 2;
        }

        .news-content {
            flex: 1;
            padding: 25px 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .news-title {
            font-family: 'Oswald', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--secondary-dark);
            margin-bottom: 12px;
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color 0.3s;
        }

        .news-card:hover .news-title {
            color: var(--accent-green);
        }

        .news-excerpt {
            color: var(--text-gray);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            font-size: 0.85rem;
            color: #999;
        }

        .news-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .news-meta i {
            font-size: 0.9rem;
        }

        .news-author {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--secondary-dark);
            font-weight: 500;
        }

        .author-avatar {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--border-light);
        }

        /* 侧边栏 */
        .sidebar-section {
            margin-bottom: 30px;
        }

        .sidebar-title {
            font-family: 'Oswald', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--secondary-dark);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .sidebar-title::after {
            content: '';
            flex: 1;
            height: 2px;
            background-color: var(--accent-green);
            margin-left: 10px;
        }

        .sidebar-title i {
            color: var(--accent-green);
        }

                .sidebar-widget {
            background-color: white;
            border-radius: 16px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: var(--card-shadow);
        }

        .widget-title {
            font-family: 'Oswald', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--secondary-dark);
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 3px solid var(--accent-green);
            display: flex;
            align-items: center;
            gap: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .widget-title i {
            color: var(--accent-green);
        }

        /* ==================== 今日赛事推荐 ==================== */
        .match-recommendation {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 15px;
            border: 2px solid transparent;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .match-recommendation:hover {
            border-color: var(--accent-green);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,200,83,0.15);
        }

        .match-recommendation::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background-color: var(--accent-green);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .match-recommendation:hover::before {
            opacity: 1;
        }

        .recommend-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background-color: var(--accent-orange);
            color: white;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }

        .recommend-badge.high-confidence {
            background-color: var(--accent-green);
        }

        .recommend-badge.risk {
            background-color: #ff1744;
        }

        .match-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 15px;
        }

        .team-info {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            flex: 1;
        }

        .team-logo-placeholder {
            width: 40px;
            height: 40px;
            background-color: var(--hover-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--secondary-dark);
            font-size: 0.9rem;
            border: 2px solid var(--border-light);
        }

        .team-info-name {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--secondary-dark);
            text-align: center;
        }

        .match-vs {
            font-family: 'Oswald', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-gray);
            padding: 0 15px;
        }

        .match-details {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px dashed var(--border-light);
        }

        .match-league {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.8rem;
            color: var(--text-gray);
        }

        .match-league i {
            color: var(--accent-green);
        }

        .match-time-countdown {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--accent-orange);
        }

        .match-time-countdown i {
            font-size: 0.9rem;
        }

        .odds-section {
            margin-top: 12px;
            padding: 12px;
            background-color: white;
            border-radius: 8px;
            display: flex;
            justify-content: space-around;
            align-items: center;
        }

        .odds-item {
            text-align: center;
        }

        .odds-label {
            font-size: 0.7rem;
            color: #999;
            margin-bottom: 4px;
            text-transform: uppercase;
        }

        .odds-value {
            font-family: 'Oswald', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--secondary-dark);
        }

        .odds-value.recommended {
            color: var(--accent-green);
            position: relative;
        }

        .odds-value.recommended::after {
            content: '★';
            position: absolute;
            top: -8px;
            right: -10px;
            font-size: 0.6rem;
            color: var(--accent-orange);
        }

        .prediction-bar {
            margin-top: 12px;
            height: 6px;
            background-color: var(--hover-bg);
            border-radius: 3px;
            overflow: hidden;
            display: flex;
        }

        .prediction-segment {
            height: 100%;
            transition: all 0.3s;
        }

        .prediction-segment.win {
            background-color: var(--accent-green);
        }

        .prediction-segment.draw {
            background-color: var(--warning-yellow);
        }

        .prediction-segment.loss {
            background-color: var(--danger-red);
        }

        .prediction-labels {
            display: flex;
            justify-content: space-between;
            margin-top: 8px;
            font-size: 0.75rem;
            color: #999;
        }

        .view-analysis-btn {
            width: 100%;
            margin-top: 15px;
            padding: 10px;
            background-color: transparent;
            border: 2px solid var(--accent-green);
            color: var(--accent-green);
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .view-analysis-btn:hover {
            background-color: var(--accent-green);
            color: white;
        }

        .more-matches-link {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid var(--border-light);
            color: var(--text-gray);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s;
        }

        .more-matches-link:hover {
            color: var(--accent-green);
            gap: 12px;
        }


        /* 热门新闻 */
        .trending-item {
            display: flex;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 1px solid var(--border-light);
            transition: all 0.3s;
        }

        .trending-item:last-child {
            border-bottom: none;
        }

        .trending-item:hover {
            transform: translateX(5px);
        }

        .trending-rank {
            font-family: 'Oswald', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--border-light);
            line-height: 1;
            min-width: 35px;
            text-align: center;
            transition: color 0.3s;
        }

        .trending-item:hover .trending-rank {
            color: var(--accent-green);
        }

        .trending-content {
            flex: 1;
        }

        .trending-title {
            font-weight: 600;
            color: var(--secondary-dark);
            font-size: 0.95rem;
            line-height: 1.4;
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color 0.3s;
        }

        .trending-item:hover .trending-title {
            color: var(--accent-green);
        }

        .trending-meta {
            font-size: 0.8rem;
            color: #999;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* 标签云 */
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .tag-item {
            background-color: white;
            border: 1px solid var(--border-light);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            color: var(--text-gray);
            text-decoration: none;
            transition: all 0.3s;
        }

        .tag-item:hover {
            background-color: var(--accent-green);
            border-color: var(--accent-green);
            color: white;
            transform: translateY(-2px);
        }

        /* 分页 */
        .pagination-wrapper {
            margin-top: 50px;
            display: flex;
            justify-content: center;
        }

        .pagination {
            gap: 8px;
        }

        .page-link {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            border: 2px solid var(--border-light);
            color: var(--text-gray);
            font-weight: 600;
            transition: all 0.3s;
            text-decoration: none;
        }

        .page-link:hover {
            background-color: var(--hover-bg);
            border-color: var(--accent-green);
            color: var(--accent-green);
            transform: translateY(-2px);
        }

        .page-item.active .page-link {
            background-color: var(--accent-green);
            border-color: var(--accent-green);
            color: white;
        }

        .page-item.disabled .page-link {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* 页脚 - 复用脚部样式 */
        .site-footer {
            background-color: var(--footer-dark);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .footer-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(0, 200, 83, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 107, 0, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .footer-cta {
            background: linear-gradient(135deg, var(--accent-green) 0%, #00a344 100%);
            padding: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .footer-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 120%;
            height: 200%;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 10px,
                rgba(255,255,255,0.03) 10px,
                rgba(255,255,255,0.03) 20px
            );
            animation: slide 20s linear infinite;
        }

        @keyframes slide {
            0% { transform: translateX(0); }
            100% { transform: translateX(50px); }
        }

        .cta-content {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        .cta-text h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-text p {
            margin: 0;
            opacity: 0.9;
            font-size: 1rem;
        }

        .cta-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn-cta {
            background-color: white;
            color: var(--accent-green);
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
            text-decoration: none;
        }

        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            color: var(--accent-green);
        }

        .btn-cta-outline {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-cta-outline:hover {
            background-color: white;
            color: var(--accent-green);
        }

        .footer-main {
            padding: 60px 0 40px;
            position: relative;
            z-index: 1;
        }

        .footer-brand-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
            text-decoration: none;
        }

        .brand-icon-footer {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--accent-green) 0%, #00a344 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            transform: rotate(-5deg);
            transition: transform 0.3s;
        }

        .footer-brand-logo:hover .brand-icon-footer {
            transform: rotate(0deg) scale(1.1);
        }

        .brand-text {
            font-family: 'Oswald', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            letter-spacing: 1px;
        }

        .brand-text span {
            color: var(--accent-green);
        }

        .footer-desc {
            color: #999;
            line-height: 1.8;
            margin-bottom: 25px;
            font-size: 0.95rem;
        }

        .subscribe-form {
            position: relative;
            margin-bottom: 30px;
        }

        .subscribe-input {
            width: 100%;
            background-color: var(--footer-gray);
            border: 2px solid transparent;
            border-radius: 30px;
            padding: 14px 50px 14px 20px;
            color: white;
            font-size: 0.95rem;
            transition: all 0.3s;
        }

        .subscribe-input:focus {
            outline: none;
            border-color: var(--accent-green);
            background-color: rgba(255,255,255,0.05);
        }

        .subscribe-input::placeholder {
            color: #666;
        }

        .subscribe-btn {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background-color: var(--accent-green);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }

        .subscribe-btn:hover {
            background-color: var(--accent-orange);
            transform: translateY(-50%) scale(1.1);
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-link {
            width: 42px;
            height: 42px;
            background-color: var(--footer-gray);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 1.1rem;
            border: 1px solid transparent;
        }

        .social-link:hover {
            background-color: var(--accent-green);
            color: white;
            transform: translateY(-3px);
            border-color: var(--accent-green);
            box-shadow: 0 5px 15px rgba(0, 200, 83, 0.3);
        }

        .footer-links-col {
            margin-bottom: 30px;
        }

        .footer-title {
            font-family: 'Oswald', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: white;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            display: inline-block;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--accent-green);
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #999;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
            font-size: 0.95rem;
        }

        .footer-links a i {
            font-size: 0.7rem;
            color: var(--accent-green);
            opacity: 0;
            transition: all 0.3s;
            transform: translateX(-5px);
        }

        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }

        .footer-links a:hover i {
            opacity: 1;
            transform: translateX(0);
        }

        .app-download {
            background-color: var(--footer-gray);
            border-radius: 16px;
            padding: 25px;
            margin-top: 10px;
        }

        .app-title {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .app-title i {
            color: var(--accent-green);
        }

        .app-buttons {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .app-btn {
            background-color: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 10px;
            padding: 12px 15px;
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: white;
            transition: all 0.3s;
        }

        .app-btn:hover {
            background-color: rgba(255,255,255,0.1);
            border-color: var(--accent-green);
            transform: translateX(5px);
        }

        .app-btn i {
            font-size: 1.5rem;
        }

        .app-btn-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .app-btn-small {
            font-size: 0.75rem;
            color: #999;
        }

        .app-btn-large {
            font-size: 1rem;
            font-weight: 700;
        }

        .footer-bottom {
            background-color: #0a0a0a;
            border-top: 1px solid rgba(255,255,255,0.05);
            padding: 25px 0;
            position: relative;
            z-index: 1;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright {
            color: #666;
            font-size: 0.9rem;
            margin: 0;
        }

        .copyright a {
            color: var(--accent-green);
            text-decoration: none;
        }

        .footer-bottom-links {
            display: flex;
            gap: 25px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-bottom-links a {
            color: #666;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .footer-bottom-links a:hover {
            color: white;
        }

        /* 响应式设计 */
        @media (max-width: 991px) {
            .news-card {
                flex-direction: column;
                height: auto;
            }

            .news-image-wrapper {
                width: 100%;
                height: 200px;
            }

            .page-title {
                font-size: 2rem;
            }

            .page-title::after {
                display: none;
            }

            .filter-wrapper {
                flex-direction: column;
                align-items: flex-start;
            }

            .filter-tags {
                width: 100%;
                overflow-x: auto;
                flex-wrap: nowrap;
                padding-bottom: 10px;
            }

            .featured-title {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .featured-card {
                height: 350px;
            }

            .featured-overlay {
                padding: 25px;
            }

            .news-content {
                padding: 20px;
            }

            .news-title {
                font-size: 1.1rem;
            }

            .cta-text h3 {
                font-size: 1.4rem;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }
        }

        /* 加载动画 */
        .fade-in {
            animation: fadeIn 0.5s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
    body,td,th {
	font-family: "Noto Sans SC", sans-serif;
}
