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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
            
        }

        /* 顶部信息栏 */
        .top-bar {
            background: linear-gradient(90deg, #0d1f3c 0%, #1a3a5c 100%);
            padding: 8px 0;
            border-bottom: 2px solid #c9a227;
        }

        .top-bar-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: #a8c4e0;
        }

        .top-bar-left {
            display: flex;
            gap: 20px;
        }

        .top-bar-left span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .live-indicator {
            color: #ff4444;
            font-weight: bold;
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .top-bar-right {
            display: flex;
            gap: 15px;
        }

        .top-bar-right a {
            color: #c9a227;
            text-decoration: none;
            transition: color 0.3s;
        }

        .top-bar-right a:hover {
            color: #ffd700;
        }

        /* 主头部区域 */
        .main-header {
            background: linear-gradient(135deg, #0d2137 0%, #1a4d8c 50%, #2a6db8 100%);
            padding: 20px 0;
            position: relative;
            overflow: hidden;
        }

        .main-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(90deg, transparent 0%, rgba(201, 162, 39, 0.1) 50%, transparent 100%),
                repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255,255,255,0.03) 50px, rgba(255,255,255,0.03) 51px);
            pointer-events: none;
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #1a4d8c 0%, #4da6ff 50%, #c9a227 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: bold;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            box-shadow: 
                0 4px 15px rgba(0,0,0,0.3),
                inset 0 1px 0 rgba(255,255,255,0.3),
                0 0 20px rgba(201, 162, 39, 0.3);
            border: 2px solid #c9a227;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-main {
            font-size: 42px;
            font-weight: 900;
            background: linear-gradient(180deg, #4da6ff 0%, #1a4d8c 50%, #0d3a7a 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
            letter-spacing: 2px;
            line-height: 1;
        }

        .logo-sub {
            font-size: 14px;
            color: #c9a227;
            font-weight: 600;
            letter-spacing: 3px;
            margin-top: 5px;
            text-transform: uppercase;
        }

        .search-section {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .search-box {
            position: relative;
        }

        .search-box input {
            width: 300px;
            padding: 12px 45px 12px 20px;
            border: 2px solid #c9a227;
            border-radius: 30px;
            background: rgba(13, 31, 60, 0.8);
            color: white;
            font-size: 14px;
            outline: none;
            transition: all 0.3s;
        }

        .search-box input::placeholder {
            color: #7a9bc4;
        }

        .search-box input:focus {
            background: rgba(13, 31, 60, 1);
            box-shadow: 0 0 20px rgba(201, 162, 39, 0.3);
        }

        .search-btn {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, #c9a227 0%, #a08220 100%);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s;
        }

        .search-btn:hover {
            transform: translateY(-50%) scale(1.1);
        }

        .search-btn svg {
            width: 18px;
            height: 18px;
            fill: white;
        }

        .user-actions {
            display: flex;
            gap: 15px;
        }

        .action-btn {
            padding: 10px 20px;
            background: linear-gradient(135deg, rgba(201, 162, 39, 0.2) 0%, rgba(201, 162, 39, 0.1) 100%);
            border: 1px solid #c9a227;
            border-radius: 25px;
            color: #c9a227;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }

        .action-btn:hover {
            background: linear-gradient(135deg, #c9a227 0%, #a08220 100%);
            color: #0d2137;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
        }

        /* 导航栏 */
        .nav-bar {
            background: linear-gradient(90deg, #0d2137 0%, #1a3a5c 50%, #0d2137 100%);
            border-top: 1px solid rgba(201, 162, 39, 0.3);
            border-bottom: 3px solid #c9a227;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .nav-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .nav-list {
            display: flex;
            list-style: none;
            gap: 0;
        }

        .nav-item {
            position: relative;
        }

        .nav-item a {
            display: block;
            padding: 18px 30px;
            color: #a8c4e0;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .nav-item a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, #c9a227, transparent);
            transition: width 0.3s;
        }

        .nav-item a:hover,
        .nav-item.active a {
            color: #c9a227;
            background: linear-gradient(180deg, transparent 0%, rgba(201, 162, 39, 0.1) 100%);
        }

        .nav-item a:hover::after,
        .nav-item.active a::after {
            width: 80%;
        }

        .nav-item.active a {
            background: linear-gradient(180deg, transparent 0%, rgba(201, 162, 39, 0.15) 100%);
        }

        .hot-tags {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-left: auto;
            padding: 0 20px;
        }

        .hot-label {
            color: #ff4444;
            font-size: 12px;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .tag {
            padding: 5px 12px;
            background: rgba(201, 162, 39, 0.15);
            border: 1px solid rgba(201, 162, 39, 0.3);
            border-radius: 15px;
            color: #c9a227;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .tag:hover {
            background: #c9a227;
            color: #0d2137;
        }

        /* 全幅轮转新闻图 */
        .hero-slider {
            position: relative;
            width: 100%;
            height: 500px;
            overflow: hidden;
            background: #0a1628;
        }

        .slider-container {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 100%;
        }

        .slide {
            min-width: 100%;
            height: 100%;
            position: relative;
            background-size: cover;
            background-position: center;
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                90deg, 
                rgba(10, 22, 40, 0.95) 0%,
                rgba(10, 22, 40, 0.7) 30%,
                rgba(10, 22, 40, 0.3) 60%,
                rgba(10, 22, 40, 0.6) 100%
            );
        }

        .slide-content {
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            padding: 0 20px 0 80px;
            color: white;
            z-index: 2;
        }

        .slide-category {
            display: inline-block;
            padding: 8px 20px;
            background: linear-gradient(135deg, #c9a227 0%, #a08220 100%);
            color: #0d2137;
            font-size: 14px;
            font-weight: 700;
            border-radius: 25px;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .slide-title {
            font-size: 48px;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 20px;
            max-width: 600px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
            background: linear-gradient(180deg, #ffffff 0%, #a8c4e0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .slide-desc {
            font-size: 18px;
            color: #a8c4e0;
            max-width: 500px;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .slide-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 35px;
            background: linear-gradient(135deg, #1a4d8c 0%, #4da6ff 100%);
            border: 2px solid #c9a227;
            color: white;
            font-size: 16px;
            font-weight: 700;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
        }

        .slide-btn:hover {
            background: linear-gradient(135deg, #c9a227 0%, #a08220 100%);
            color: #0d2137;
            transform: translateX(5px);
            box-shadow: 0 5px 20px rgba(201, 162, 39, 0.4);
        }

        /* 轮播控制 */
        .slider-controls {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 10;
        }

        .slider-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            border: 2px solid transparent;
            cursor: pointer;
            transition: all 0.3s;
        }

        .slider-dot.active {
            background: #c9a227;
            border-color: white;
            transform: scale(1.2);
        }

        .slider-dot:hover {
            background: rgba(201, 162, 39, 0.7);
        }

        /* 左右箭头 */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: rgba(13, 33, 55, 0.8);
            border: 2px solid #c9a227;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 10;
            color: #c9a227;
            font-size: 24px;
        }

        .slider-arrow:hover {
            background: #c9a227;
            color: #0d2137;
            transform: translateY(-50%) scale(1.1);
        }

        .slider-arrow.prev {
            left: 30px;
        }

        .slider-arrow.next {
            right: 30px;
        }

        /* 实时比分条 */
        .live-scores-bar {
            background: linear-gradient(90deg, #0d2137 0%, #1a3a5c 50%, #0d2137 100%);
            border-top: 1px solid rgba(201, 162, 39, 0.3);
            border-bottom: 1px solid rgba(201, 162, 39, 0.3);
            padding: 15px 0;
            overflow: hidden;
        }

        .scores-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            gap: 30px;
            animation: scrollScores 20s linear infinite;
        }

        @keyframes scrollScores {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .score-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 10px 20px;
            background: rgba(201, 162, 39, 0.1);
            border: 1px solid rgba(201, 162, 39, 0.3);
            border-radius: 10px;
            white-space: nowrap;
        }

        .score-league {
            color: #c9a227;
            font-size: 12px;
            font-weight: 700;
        }

        .score-teams {
            display: flex;
            align-items: center;
            gap: 10px;
            color: white;
            font-weight: 600;
        }

        .score-vs {
            color: #7a9bc4;
            font-size: 12px;
        }

        .score-result {
            color: #4da6ff;
            font-weight: 700;
            font-size: 18px;
        }

        .score-live {
            color: #ff4444;
            font-size: 11px;
            animation: pulse 1s infinite;
        }

        /* 响应式 */
        @media (max-width: 1200px) {
            .search-box input { width: 200px; }
            .logo-main { font-size: 32px; }
            .slide-title { font-size: 36px; }
            .hero-slider { height: 400px; }
        }

        @media (max-width: 768px) {
            .header-content { flex-direction: column; gap: 20px; }
            .nav-list { flex-wrap: wrap; justify-content: center; }
            .nav-item a { padding: 12px 20px; font-size: 14px; }
            .hot-tags { display: none; }
            .slide-title { font-size: 28px; }
            .slide-content { padding: 0 20px; }
            .slider-arrow { width: 45px; height: 45px; font-size: 18px; }
            .hero-slider { height: 350px; }
        }
    body,td,th {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}
