        .news-section {
            max-width: 1400px;
            margin: 50px auto;
            padding: 30px;
            background: #fff;
        }
        
        .news-section .section-header {
            text-align: left;
            margin-bottom: 40px;
            position: relative;
        }
        
        .news-section .section-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a3a6d;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        

        .news-section .section-subtitle {
            font-size: 1rem;
            color: #6c757d;
            max-width: 1400px;
            margin: 0 auto;
            line-height: 1.6;
            text-align: left;
        }
        
        .news-container {
            display: flex;
            gap: 30px;
            margin-top: 20px;
        }
        
        /* 左侧主新闻样式 */
        .main-news {
            flex: 1;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .main-news:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .main-news-image {
            height: 350px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .main-news-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60%;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
        }
        
        .main-news-content {
            padding: 25px;
        }
        
        .main-news-date {
            display: inline-block;
            background: #1a3a6d;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        .main-news-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #1a3a6d;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        
        .main-news-excerpt {
            color: #555;
            line-height: 1.7;
            margin-bottom: 20px;
            font-size: 1.0rem;
        }
        
        .read-more-btn {
            display: inline-flex;
            align-items: center;
            padding: 10px 25px;
            background: #1a3a6d;
            color: white;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .read-more-btn:hover {
            background: #0d2a57;
            transform: translateX(5px);
        }
        
        .read-more-btn i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }
        
        .read-more-btn:hover i {
            transform: translateX(5px);
        }
        
        /* 右侧新闻列表样式 */
        .news-list-container {
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .news-list-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e9ecef;
        }
        
        .news-list-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1a3a6d;
        }
        
        .view-all-link {
            color: #1a3a6d;
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
        }
        
        .view-all-link:hover {
            text-decoration: underline;
        }
        
        .view-all-link i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }
        
        .view-all-link:hover i {
            transform: translateX(3px);
        }
        
        .news-list {
            flex: 1;
            overflow-y: auto;
            max-height: 600px;
            padding-right: 10px;
        }
        
        /* 自定义滚动条样式 */
        .news-list::-webkit-scrollbar {
            width: 8px;
        }
        
        .news-list::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        
        .news-list::-webkit-scrollbar-thumb {
            background: #1a3a6d;
            border-radius: 10px;
        }
        
        .news-list::-webkit-scrollbar-thumb:hover {
            background: #0d2a57;
        }
        
        .news-item {
            display: flex;
            gap: 20px;
            padding: 20px;
            margin-bottom: 20px;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }
        
        .news-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
        .news-item-image {
            width: 120px;
            height: 100px;
            border-radius: 8px;
            background-size: cover;
            background-position: center;
            flex-shrink: 0;
        }
        
        .news-item-content {
            flex: 1;
        }
        
        .news-item-date {
            color: #6c757d;
            font-size: 0.85rem;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }
        
        .news-item-date i {
            margin-right: 5px;
            color: #1a3a6d;
        }
        
        .news-item-title {
            font-size: 1.0rem;
            font-weight: 600;
            color: #1a3a6d;
            margin-bottom: 10px;
            line-height: 1.4;
        }
        
        .news-item-excerpt {
            color: #6c757d;
            font-size: 0.95rem;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .news-container {
                flex-direction: column;
            }
            
            .main-news-image {
                height: 300px;
            }
        }
        
        @media (max-width: 768px) {

            
            .main-news-title {
                font-size: 1.5rem;
            }
            
            .news-item {
                flex-direction: column;
            }
            
            .news-item-image {
                width: 100%;
                height: 180px;
            }
        }
        
        @media (max-width: 480px) {

            
            .main-news-image {
                height: 250px;
            }
            
            .news-list-title {
                font-size: 1.3rem;
            }
        }