        .news-container {
            width: 100%;
            max-width: 1200px;
            margin: 120px auto 20px;
            padding: 0 15px;
        }

        .section-title {
            font-size: 24px;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #1a4b8c;
            color: #1a4b8c;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: #ffd700;
        }

        /* 新闻列表 */
        .news-list {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .news-item {
            padding: 20px;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }

        .news-item:last-child {
            border-bottom: none;
        }

        .news-image {
            width: 120px;
            height: 80px;
            margin-right: 20px;
        }

        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 4px;
        }

        .news-content {
            flex: 1;
        }

        .news-title {
            font-size: 18px;
            color: #1a4b8c;
            margin-bottom: 5px;
        }

        .news-meta {
            font-size: 12px;
            color: #888;
            margin-bottom: 5px;
        }

        .news-excerpt {
            font-size: 14px;
            color: #555;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .news-item {
                flex-direction: column;
            }

            .news-image {
                width: 100%;
                height: 150px;
                margin-right: 0;
                margin-bottom: 15px;
            }
        }
        
        /*详情页*/
        /* 页面标题 */
        .page-header {
            background-color: #1a4b8c;
            color: white;
            padding: 15px 0;
            margin-bottom: 30px;
        }

        .page-header h1 {
            text-align: center;
            font-size: 24px;
        }

        /* 新闻详情 */
        .news-detail {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }

        .news-header {
            margin-bottom: 20px;
        }

        .news-title {
            font-size: 24px;
            font-weight: bold;
            color: #1a4b8c;
            margin-bottom: 15px;
        }

        .news-meta {
            display: flex;
            flex-wrap: wrap;
            font-size: 14px;
            color: #888;
            margin-bottom: 10px;
        }

        .news-meta span {
            margin-right: 15px;
        }

        .news-content {
            font-size: 16px;
            color: #333;
            line-height: 1.8;
        }

        .news-content p {
            margin-bottom: 15px;
        }

        .news-content img {
            max-width: 100%;
            border-radius: 4px;
            margin: 15px 0;
        }
        
        .file-attachments {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }
        
        .attachment-item {
            display: flex;
            align-items: center;
            padding: 10px 0;
        }
        
        .attachment-item i {
            color: #1a4b8c;
            margin-right: 10px;
        }
        
        .attachment-name {
            flex-grow: 1;
            font-size: 14px;
        }
        
        .attachment-size {
            color: #888;
            font-size: 14px;
            margin-right: 10px;
        }
        
        .btn {
            padding: 8px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .btn-primary {
            background-color: #1a4b8c;
            color: white;
        }
        
        .btn-primary:hover {
            background-color: #153a6d;
        }
        
        .btn-secondary {
            background-color: #6c757d;
            color: white;
        }
        
        .btn-secondary i {
            color: white;
        }
        
        .btn-secondary:hover {
            background-color: #5a6268;
        }

        /* 相关资讯 */
        .related-news {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .related-title {
            font-size: 20px;
            font-weight: bold;
            color: #1a4b8c;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }

        .related-list {
            display: flex;
            flex-wrap: wrap;
        }

        .related-item {
            width: 33.333%;
            padding: 0 15px;
            margin-bottom: 20px;
        }

        .related-item-title {
            font-size: 14px;
            color: #1a4b8c;
            margin-bottom: 5px;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
        }

        .related-item-date {
            font-size: 12px;
            color: #999;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .related-item {
                width: 50%;
            }
        }

        @media (max-width: 576px) {
            .related-item {
                width: 100%;
            }
        }