﻿       /* 内容区域 */
        .content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            display: flex;
        }
        
         

        

        
        /* 新闻详情内容区域 */
        .news-main {
            flex: 1;
        }
        
        .news-container {
            background-color: white;
            border-radius: 4px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            padding: 30px;
            margin-bottom: 30px;
        }
        
        .news-title {
            color: #1565c0;
            font-size: 24px;
            margin-bottom: 15px;
            text-align: center;
            font-weight: bold;
        }
        
        .news-meta {
            color: #666;
            text-align: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .news-meta span {
            margin: 0 10px;
        }
        
        .news-content {
            line-height: 1.8;
            font-size: 16px;
        }
        
        .news-content p {
            margin-bottom: 20px;
            text-indent: 2em;
        }
        
        .news-content img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 20px auto;
            border-radius: 4px;
        }
        
        .news-footer {
            margin-top: 30px;
            padding-top: 15px;
            border-top: 1px dashed #e0e0e0;
            color: #666;
            font-size: 14px;
        }
        
        .prev-next {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }
        
        .prev-next a {
            color: #1565c0;
            text-decoration: none;
        }
        
        .prev-next a:hover {
            text-decoration: underline;
        }
        
        /* 相关新闻 */
        .related-news {
            margin-top: 40px;
        }
        
        .related-news h3 {
            color: #1976d2;
            border-bottom: 1px solid #e0e0e0;
            padding-bottom: 10px;
            margin-bottom: 15px;
        }
        
        .related-list {
            list-style: none;
        }
        
        .related-list li {
            padding: 10px 0;
            border-bottom: 1px dashed #e0e0e0;
        }
        
        .related-list li a {
            color: #333;
            text-decoration: none;
            display: block;
            transition: color 0.3s;
        }
        
        .related-list li a:hover {
            color: #1976d2;
        }
        
        .related-list .date {
            font-size: 12px;
            color: #999;
            float: right;
        }
        
