
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", sans-serif;
        }
        
        body {
            background: linear-gradient(to bottom, #001756, #000c38);
            color: #fff;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: transparent;
        }
        
        /* Header Styles */
        header {
            background-color: rgba(0, 23, 86, 0.8);
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .logo {
            font-weight: bold;
            font-size: 18px;
            color: #fff;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin: 0 15px;
        }
        
        .nav-menu li a {
            text-decoration: none;
            color: #fff;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .nav-menu li.active a {
            color: #f5d742;
            border-bottom: 2px solid #f5d742;
            padding-bottom: 5px;
        }
        
        .nav-menu li a:hover {
            color: #f5d742;
        }
        
        .search-icon {
            color: #f5d742;
            cursor: pointer;
        }
                
        .search-icon a {
            color: #fff;
            text-decoration: none;
        } 
        
        .search-icon a:hover {
            color: #f5d742;
        }
	
				.huangse {
				    color: #f5d742;;
				}
        
        /* Decorative elements */
        .decorative-line {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 150px;
            overflow: hidden;
            pointer-events: none;
        }
        
        .decorative-line svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        /* News Banner */
        .news-banner {
            padding: 40px 0;
            position: relative;
            background: linear-gradient(135deg, #001756 0%, #000c38 100%);
        }
        
        .news-container {
            display: flex;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .news-left {
            flex: 1;
            padding: 0 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .news-title {
            font-size: 28px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            color: #f5d742;
        }
        
        .news-title::after {
            content: '';
            display: block;
            width: 30px;
            height: 4px;
            background-color: #f5d742;
            margin-left: 10px;
        }
        
        .news-subtitle {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.8);
            text-transform: uppercase;
            margin-bottom: 20px;
        }
        
        .news-description {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .news-right {
            flex: 1;
            padding: 0 20px;
            position: relative;
        }
        
        .timeline-wrapper {
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 20px;
            display: flex;
            justify-content: center;
        }
        
        .timeline {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background-color: rgba(255, 255, 255, 0.3);
        }
        
        .timeline-dot {
            position: absolute;
            left: 50%;
            top: 25px; /* Initial position */
            width: 12px;
            height: 12px;
            background-color: white;
            border-radius: 50%;
            transform: translateX(-50%);
            transition: top 0.3s ease;
            z-index: 2;
        }
        
        .news-list {
            background-color: rgba(0, 23, 86, 0.5);
            border-radius: 5px;
            padding: 20px;
            max-height: 300px;
            overflow-y: auto;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            margin-left: 30px;
            border: 1px solid rgba(245, 215, 66, 0.3);
        }
        
        .news-item {
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .news-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .news-item-title {
            font-size: 16px;
            color: #f5d742;
            margin-bottom: 10px;
        }
        
        .news-item-date {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 10px;
        }
        
        .news-item-content {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
        }
        
        .read-more {
            display: inline-block;
            color: #f5d742;
            font-size: 12px;
            margin-top: 5px;
            text-decoration: none;
        }
        
        /* Media Reports */
        .media-reports {
            padding: 40px 20px;
            text-align: center;
            background: linear-gradient(135deg, rgba(0, 23, 86, 0.7) 0%, rgba(0, 12, 56, 0.7) 100%);
        }
        
        .section-title {
            font-size: 24px;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
            color: #f5d742;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: #f5d742;
        }
        
        .media-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 40px;
        }

				
				.media-card {
				    background: rgba(0, 23, 86, 0.5);
				    border-radius: 5px;
				    overflow: hidden;
				    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
				    padding: 20px;
				    text-align: left;
				    transition: transform 0.3s ease, box-shadow 0.3s ease;
				    height: 100%;
				    display: flex;
				    flex-direction: column;
				    border: 1px solid rgba(245, 215, 66, 0.3);
				}

        .media-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            border-color: rgba(245, 215, 66, 0.5);
        }
        
        .media-name {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #f5d742;
        }
        
        .media-content {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 15px;
            flex-grow: 1;
        }
        
        .media-link {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            color: #f5d742;
            font-size: 12px;
            text-decoration: none;
        }
        
        .media-link-text {
            margin-right: 5px;
        }
        
        .media-link-icon {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background-color: #f5d742;
            color: #001756;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
        }
        
        .load-more-btn {
            display: inline-block;
            margin-top: 30px;
            padding: 8px 30px;
            background: linear-gradient(to right, #f5d742, #f7b733);
            color: #001756;
            border: none;
            border-radius: 20px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: bold;
            box-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }
        
        .load-more-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.4);
        }
        
        /* Footer */
        footer {
            background-color: rgba(0, 12, 56, 0.9);
            color: rgba(255,255,255,0.7);
            padding: 40px 20px 20px;
            font-size: 14px;
		max-width: 1200px;
    margin: 0 auto;
    background: transparent;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
        }
        
        .footer-info {
            max-width: 60%;
        }
        
        .footer-contact {
            text-align: right;
        }
        
        .qr-code {
            width: 100px;
            height: 100px;
            
            margin-left: auto;
            margin-bottom: 10px;
            border-radius: 5px;
            border: 1px solid rgba(245, 215, 66, 0.3);
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            padding: 20px 0;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #f5d742;
        }
        
        .back-to-top {
            display: block;
            text-align: center;
            margin-top: 20px;
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .back-to-top:hover {
            color: #f5d742;
        }
        
        /* Decorative elements */
        .decorative-line {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 150px;
            overflow: hidden;
            pointer-events: none;
        }
        
        .decorative-line svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .noline{
        	text-decoration: none;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .news-container {
                flex-direction: column;
            }
            
            .competition-intro {
                flex-direction: column;
            }
            
            .intro-image {
                max-width: 100%;
            }
            
            ul.nav-menu {
            		display: none;
            }
            
            .search-icon{
            	display: none;
            }
            
            .stats {
                flex-wrap: wrap;
            }
            
            .stat-item {
                flex: 1 0 50%;
                margin-bottom: 20px;
            }
    .footer-links {
    	background-color: #000e3e;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        justify-content: space-evenly;
        /* ÆäËûÑùÊ½ */
    }
    body {
        padding-bottom: 60px;
    }
    
    .media-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
      margin-top: 20px;

}

        }
        

