* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", Arial, sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            width: 1200px;
            margin: 0 auto;
        }
        
        /* 头部样式 */
        .header {
            background-color: #fff;
            border-bottom: 2px solid #c00;
            padding: 10px 0;
        }
        
        .logo {
            float: left;
        }
        
        .logo img {
            height: 60px;
        }
        
        .nav {
            float: right;
            margin-top: 20px;
        }
        
        .nav ul {
            list-style: none;
        }
        
        .nav li {
            float: left;
            margin-left: 20px;
        }
        
        .nav a {
            color: #333;
            text-decoration: none;
            font-size: 16px;
            font-weight: bold;
        }
        
        .nav a:hover {
            color: #c00;
        }
        
        /* 面包屑导航 */
        .breadcrumb {
            padding: 15px 0;
            font-size: 14px;
            color: #666;
        }
        
        .breadcrumb a {
            color: #333;
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            color: #c00;
            text-decoration: underline;
        }
        
        /* 主要内容区 */
        .main {
            margin-top: 10px;
            overflow: hidden;
            background-color: #fff;
            padding: 30px;
            border: 1px solid #e5e5e5;
        }
        
        /* 文章标题区 */
        .article-header {
            text-align: center;
            margin-bottom: 30px;
            border-bottom: 1px solid #e5e5e5;
            padding-bottom: 20px;
        }
        
        .article-title {
            font-size: 28px;
            font-weight: normal;
            line-height: 1.4;
            margin-bottom: 15px;
            color: #222;
        }
        
        .article-meta {
            color: #999;
            font-size: 14px;
            margin-bottom: 10px;
        }
        
        .article-meta span {
            margin-right: 20px;
        }
        
        .article-source {
            color: #666;
            font-size: 14px;
        }
        
        /* 文章正文 */
        .article-content {
            font-size: 16px;
            line-height: 1.8;
        }
        
        .article-content p {
            margin-bottom: 20px;
            text-indent: 2em;
        }
        
        .article-content img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 20px auto;
        }
        
        .article-content .pic-info {
            text-align: center;
            color: #666;
            font-size: 14px;
            margin-top: -15px;
            margin-bottom: 20px;
        }
        
        /* 文章分页 */
        .article-page {
            margin: 30px 0;
            text-align: center;
        }
        
        .article-page a {
            color: #333;
            text-decoration: none;
            margin: 0 10px;
        }
        
        .article-page a:hover {
            color: #c00;
        }
        
        /* 文章工具 */
        .article-tools {
            border-top: 1px solid #e5e5e5;
            border-bottom: 1px solid #e5e5e5;
            padding: 15px 0;
            margin: 30px 0;
            text-align: center;
        }
        
        .article-tools a {
            color: #666;
            text-decoration: none;
            margin: 0 10px;
            font-size: 14px;
        }
        
        .article-tools a:hover {
            color: #c00;
        }
        
        /* 相关新闻 */
        .related-news {
            margin-top: 40px;
        }
        
        .related-title {
            border-left: 4px solid #c00;
            padding-left: 10px;
            font-size: 18px;
            margin-bottom: 20px;
        }
        
        .related-list li {
            list-style: none;
            padding: 8px 0;
            border-bottom: 1px dashed #e5e5e5;
        }
        
        .related-list li:last-child {
            border-bottom: none;
        }
        
        .related-list a {
            color: #333;
            text-decoration: none;
            font-size: 14px;
        }
        
        .related-list a:hover {
            color: #c00;
            text-decoration: underline;
        }
        
        /* 侧边栏 */
        .sidebar {
            width: 280px;
            float: right;
            margin-left: 20px;
        }
        
        .sidebar-block {
            background-color: #fff;
            margin-bottom: 20px;
            padding: 15px;
            border: 1px solid #e5e5e5;
        }
        
        .sidebar-title {
            border-bottom: 1px solid #e5e5e5;
            padding-bottom: 10px;
            margin-bottom: 15px;
            color: #c00;
            font-size: 18px;
        }
        
        .sidebar-list li {
            list-style: none;
            padding: 8px 0;
            border-bottom: 1px dashed #e5e5e5;
        }
        
        .sidebar-list li:last-child {
            border-bottom: none;
        }
        
        .sidebar-list a {
            color: #333;
            text-decoration: none;
            font-size: 14px;
        }
        
        .sidebar-list a:hover {
            color: #c00;
            text-decoration: underline;
        }
        
        /* 页脚 */
        .footer {
            background-color: #333;
            color: #fff;
            padding: 30px 0;
            text-align: center;
            margin-top: 30px;
            clear: both;
        }
        
        .footer p {
            margin-bottom: 10px;
            font-size: 14px;
        }
        
        .footer a {
            color: #fff;
            text-decoration: none;
        }
        
        .footer a:hover {
            text-decoration: underline;
        }