* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background-color: #d81e06;
            color: white;
            padding: 15px 0;
            margin-bottom: 20px;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 24px;
            font-weight: bold;
        }
        .search-box {
            display: flex;
        }
        .search-box input {
            padding: 8px 12px;
            border: none;
            border-radius: 4px 0 0 4px;
            width: 200px;
        }
        .search-box button {
            padding: 8px 15px;
            background-color: #333;
            color: white;
            border: none;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
        }
        nav {
            background-color: #333;
        }
        .nav-container {
            display: flex;
            justify-content: center;
        }
        .nav-menu {
            display: flex;
            list-style: none;
        }
        .nav-menu li {
            position: relative;
        }
        .nav-menu a {
            display: block;
            color: white;
            text-decoration: none;
            padding: 15px 20px;
            transition: background-color 0.3s;
        }
        .nav-menu a:hover {
            background-color: #d81e06;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 14px;
            color: #666;
        }
        .breadcrumb a {
            color: #666;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: #d81e06;
            text-decoration: underline;
        }
        .breadcrumb span {
            margin: 0 5px;
            color: #999;
        }
        
        /* 文章内容区域布局 */
        .content-wrapper {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
        }
        .main-content {
            width: calc(100% - 310px);
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            padding: 30px;
        }
        .sidebar {
            width: 280px;
        }
        
        /* 文章标题区域 */
        .article-header {
            margin-bottom: 30px;
            border-bottom: 1px solid #eee;
            padding-bottom: 20px;
        }
        .article-title {
            font-size: 28px;
            line-height: 1.4;
            color: #222;
            margin-bottom: 15px;
        }
        .article-meta {
            display: flex;
            font-size: 14px;
            color: #999;
            margin-bottom: 15px;
        }
        .article-meta span {
            margin-right: 20px;
        }
        .article-meta .source {
            color: #d81e06;
        }
        .article-image {
            width: 100%;
            height: 400px;
            background-color: #eee;
            background-size: cover;
            background-position: center;
            border-radius: 4px;
            margin-bottom: 20px;
        }
        
        /* 文章正文样式 */
        .article-content {
            font-size: 16px;
            line-height: 1.8;
            color: #444;
        }
        .article-content p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .article-content h2 {
            font-size: 22px;
            color: #222;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        .article-content h3 {
            font-size: 18px;
            color: #222;
            margin: 25px 0 10px;
        }
        .article-content img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 20px auto;
            border-radius: 4px;
        }
        .article-content blockquote {
            border-left: 4px solid #d81e06;
            background-color: #f9f9f9;
            padding: 15px 20px;
            margin: 20px 0;
            color: #666;
            font-style: italic;
        }
        
        /* 文章底部区域 */
        .article-footer {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }
        .article-tags {
            margin-bottom: 20px;
        }
        .article-tags a {
            display: inline-block;
            padding: 5px 10px;
            background-color: #f5f5f5;
            color: #666;
            text-decoration: none;
            border-radius: 3px;
            margin: 0 5px 5px 0;
            font-size: 14px;
        }
        .article-tags a:hover {
            background-color: #d81e06;
            color: white;
        }
        .article-nav {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
        }
        .article-nav a {
            color: #666;
            text-decoration: none;
        }
        .article-nav a:hover {
            color: #d81e06;
            text-decoration: underline;
        }
        
        /* 相关文章 */
        .related-articles {
            margin-top: 40px;
        }
        .related-title {
            font-size: 20px;
            color: #d81e06;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
            margin-bottom: 20px;
            position: relative;
        }
        .related-title::after {
            content: "";
            display: block;
            width: 40px;
            height: 3px;
            background-color: #d81e06;
            margin-top: 10px;
        }
        .related-list {
            list-style: none;
        }
        .related-list li {
            padding: 12px 0;
            border-bottom: 1px dashed #eee;
        }
        .related-list li:last-child {
            border-bottom: none;
        }
        .related-list a {
            color: #333;
            text-decoration: none;
        }
        .related-list a:hover {
            color: #d81e06;
            text-decoration: underline;
        }
        
        /* 侧边栏样式 */
        .widget {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            padding: 20px;
            margin-bottom: 20px;
        }
        .widget-title {
            font-size: 18px;
            color: #d81e06;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
            margin-bottom: 15px;
            position: relative;
        }
        .widget-title::after {
            content: "";
            display: block;
            width: 40px;
            height: 3px;
            background-color: #d81e06;
            margin-top: 10px;
        }
        .hot-news-sidebar li {
            padding: 10px 0;
            border-bottom: 1px dashed #eee;
        }
        .hot-news-sidebar li:last-child {
            border-bottom: none;
        }
        .hot-news-sidebar a {
            color: #333;
            text-decoration: none;
            display: block;
        }
        .hot-news-sidebar a:hover {
            color: #d81e06;
            text-decoration: underline;
        }
        .tags a {
            display: inline-block;
            padding: 5px 10px;
            background-color: #f5f5f5;
            color: #666;
            text-decoration: none;
            border-radius: 3px;
            margin: 0 5px 5px 0;
            font-size: 14px;
        }
        .tags a:hover {
            background-color: #d81e06;
            color: white;
        }
        
        /* 评论区域 */
        .comments {
            margin-top: 40px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            padding: 30px;
        }
        .comments-title {
            font-size: 20px;
            color: #d81e06;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
            margin-bottom: 20px;
            position: relative;
        }
        .comments-title::after {
            content: "";
            display: block;
            width: 40px;
            height: 3px;
            background-color: #d81e06;
            margin-top: 10px;
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            margin-bottom: 15px;
            height: 120px;
            resize: vertical;
        }
        .comment-form input[type="text"],
        .comment-form input[type="email"] {
            width: 100%;
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            margin-bottom: 15px;
        }
        .comment-form button {
            background-color: #d81e06;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            cursor: pointer;
        }
        .comment-form button:hover {
            background-color: #c21807;
        }
        .comment-list {
            margin-top: 30px;
        }
        .comment-item {
            padding: 20px 0;
            border-bottom: 1px solid #eee;
        }
        .comment-item:last-child {
            border-bottom: none;
        }
        .comment-author {
            font-weight: bold;
            color: #333;
            margin-bottom: 5px;
        }
        .comment-meta {
            font-size: 12px;
            color: #999;
            margin-bottom: 10px;
        }
        .comment-content {
            color: #444;
            line-height: 1.6;
        }
        
        footer {
            background-color: #333;
            color: #fff;
            padding: 40px 0 20px;
            margin-top: 30px;
        }
        .footer-links {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .footer-column {
            flex: 1;
            min-width: 200px;
            margin-bottom: 20px;
        }
        .footer-column h3 {
            margin-bottom: 20px;
            font-size: 18px;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-column h3::after {
            content: "";
            display: block;
            width: 30px;
            height: 2px;
            background-color: #d81e06;
            position: absolute;
            bottom: 0;
            left: 0;
        }
        .footer-column ul {
            list-style: none;
        }
        .footer-column li {
            margin-bottom: 10px;
        }
        .footer-column a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-column a:hover {
            color: #fff;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #999;
            font-size: 14px;
        }