 /* 全局样式 - 与首页保持一致 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Microsoft YaHei', Arial, sans-serif;
        }
        
        body {
            background-color: #fff5f5;
            color: #333;
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: #d81e06;
            transition: all 0.3s ease;
        }
        
        a:hover {
            color: #ff4e79;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* 头部样式 - 与首页保持一致 */
        header {
            background: linear-gradient(135deg, #d81e06, #ff4e79);
            color: white;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(216, 30, 6, 0.2);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            letter-spacing: 1px;
        }
        
        .logo span {
            color: #ffccd5;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            color: white;
            font-weight: 500;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        
        nav ul li a:hover {
            border-bottom: 2px solid white;
        }
        
        /* 面包屑导航 */
        .breadcrumb {
            padding: 20px 0;
            background-color: #fff9f9;
            border-bottom: 1px solid #ffd6e0;
        }
        
        .breadcrumb ul {
            display: flex;
            list-style: none;
        }
        
        .breadcrumb ul li {
            margin-right: 10px;
            font-size: 14px;
        }
        
        .breadcrumb ul li:after {
            content: '>';
            margin-left: 10px;
            color: #888;
        }
        
        .breadcrumb ul li:last-child:after {
            content: '';
        }
        
        .breadcrumb ul li a {
            color: #888;
        }
        
        .breadcrumb ul li a:hover {
            color: #d81e06;
        }
        
        /* 文章主体 */
        .article-main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        
        @media (max-width: 992px) {
            .article-main {
                grid-template-columns: 1fr;
            }
        }
        
        /* 文章内容 */
        .article-content {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .article-header {
            margin-bottom: 30px;
            text-align: center;
        }
        
        .article-header h1 {
            font-size: 32px;
            color: #d81e06;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        
        .article-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            color: #888;
            font-size: 14px;
            margin-bottom: 20px;
        }
        
        .article-meta span {
            margin: 0 10px;
        }
        
        .article-meta a {
            color: #888;
            margin: 0 5px;
        }
        
        .article-meta a:hover {
            color: #ff4e79;
        }
        
        .article-image {
            margin-bottom: 30px;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .article-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .article-body {
            font-size: 16px;
            line-height: 1.8;
        }
        
        .article-body p {
            margin-bottom: 20px;
        }
        
        .article-body h2 {
            font-size: 24px;
            color: #d81e06;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .article-body h3 {
            font-size: 20px;
            color: #ff4e79;
            margin: 30px 0 15px;
        }
        
        .article-body ul, 
        .article-body ol {
            margin-bottom: 20px;
            padding-left: 20px;
        }
        
        .article-body li {
            margin-bottom: 10px;
        }
        
        .article-body blockquote {
            border-left: 4px solid #ff4e79;
            padding: 15px 20px;
            background: #fff9f9;
            margin: 20px 0;
            font-style: italic;
            color: #555;
        }
        
        .article-tags {
            display: flex;
            flex-wrap: wrap;
            margin: 40px 0 30px;
        }
        
        .tag {
            display: inline-block;
            padding: 5px 15px;
            background: #fff0f0;
            color: #ff4e79;
            border-radius: 20px;
            margin-right: 10px;
            margin-bottom: 10px;
            font-size: 14px;
        }
        
        .tag:hover {
            background: #ff4e79;
            color: white;
        }
        
        /* 文章导航 */
        .article-navigation {
            display: flex;
            justify-content: space-between;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
            padding: 20px 0;
            margin: 30px 0;
        }
        
        .nav-previous, 
        .nav-next {
            flex: 1;
        }
        
        .nav-next {
            text-align: right;
        }
        
        .nav-label {
            display: block;
            color: #888;
            font-size: 14px;
            margin-bottom: 5px;
        }
        
        /* 相关文章 */
        .related-articles {
            margin-top: 50px;
        }
        
        .section-title {
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .section-title h2 {
            font-size: 24px;
            color: #d81e06;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: #ff4e79;
        }
        
        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .related-article {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .related-article:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(216, 30, 6, 0.1);
        }
        
        .related-image {
            height: 180px;
            overflow: hidden;
        }
        
        .related-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .related-article:hover .related-image img {
            transform: scale(1.05);
        }
        
        .related-content {
            padding: 20px;
        }
        
        .related-content h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: #d81e06;
        }
        
        .related-meta {
            color: #888;
            font-size: 14px;
            margin-bottom: 10px;
        }
        
        /* 侧边栏 */
        .sidebar {
            position: relative;
        }
        
        .sidebar-widget {
            background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }
        
        .widget-title {
            font-size: 18px;
            color: #d81e06;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
            position: relative;
        }
        
        .widget-title::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 40px;
            height: 2px;
            background: #ff4e79;
        }
        
        /* 关于作者 */
        .author-bio {
            text-align: center;
        }
        
        .author-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 15px;
            border: 3px solid #ffd6e0;
        }
        
        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-name {
            font-size: 20px;
            color: #d81e06;
            margin-bottom: 5px;
        }
        
        .author-position {
            color: #888;
            font-size: 14px;
            margin-bottom: 15px;
        }
        
        .author-description {
            color: #555;
            margin-bottom: 15px;
        }
        
        .author-social {
            display: flex;
            justify-content: center;
            gap: 10px;
        }
        
        .author-social a {
            display: inline-block;
            width: 36px;
            height: 36px;
            line-height: 36px;
            text-align: center;
            background: #fff0f0;
            color: #ff4e79;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .author-social a:hover {
            background: #ff4e79;
            color: white;
            transform: translateY(-3px);
        }
        
        /* 分类列表 */
        .category-list {
            list-style: none;
        }
        
        .category-list li {
            margin-bottom: 10px;
        }
        
        .category-list a {
            display: block;
            padding: 10px 0;
            color: #555;
            border-bottom: 1px dashed #eee;
            transition: all 0.3s ease;
        }
        
        .category-list a:hover {
            color: #ff4e79;
            padding-left: 10px;
            border-bottom-color: #ffd6e0;
        }
        
        .category-count {
            float: right;
            color: #888;
        }
        
        /* 热门文章 */
        .popular-posts {
            list-style: none;
        }
        
        .popular-post {
            display: flex;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #eee;
        }
        
        .popular-post:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .popular-image {
            flex: 0 0 80px;
            height: 60px;
            border-radius: 5px;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .popular-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .popular-title {
            font-size: 15px;
            margin-bottom: 5px;
        }
        
        .popular-date {
            color: #888;
            font-size: 13px;
        }
        
        /* 标签云 */
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .tag-cloud a {
            display: inline-block;
            padding: 5px 12px;
            background: #fff0f0;
            color: #ff4e79;
            border-radius: 20px;
            font-size: 13px;
            transition: all 0.3s ease;
        }
        
        .tag-cloud a:hover {
            background: #ff4e79;
            color: white;
        }
        
        /* 评论区域 */
        .comments-area {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-top: 50px;
        }
        
        .comments-title {
            font-size: 24px;
            color: #d81e06;
            margin-bottom: 30px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
            position: relative;
        }
        
        .comments-title::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 60px;
            height: 2px;
            background: #ff4e79;
        }
        
        .comment-list {
            list-style: none;
            margin-bottom: 40px;
        }
        
        .comment {
            padding: 20px 0;
            border-bottom: 1px solid #eee;
        }
        
        .comment:last-child {
            border-bottom: none;
        }
        
        .comment-body {
            display: flex;
        }
        
        .comment-author-avatar {
            flex: 0 0 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
        }
        
        .comment-author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .comment-content {
            flex: 1;
        }
        
        .comment-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        
        .comment-author {
            font-weight: bold;
            color: #d81e06;
        }
        
        .comment-date {
            color: #888;
            font-size: 14px;
        }
        
        .comment-text {
            color: #555;
            line-height: 1.7;
        }
        
        .reply {
            margin-top: 10px;
        }
        
        .reply a {
            font-size: 14px;
            color: #888;
        }
        
        .reply a:hover {
            color: #ff4e79;
        }
        
        .comment-respond {
            margin-top: 40px;
        }
        
        .comment-reply-title {
            font-size: 20px;
            color: #d81e06;
            margin-bottom: 20px;
        }
        
        .comment-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 15px;
        }
        
        .comment-form textarea {
            grid-column: 1 / -1;
            min-height: 150px;
        }
        
        .comment-form .submit {
            grid-column: 1 / -1;
            background: #ff4e79;
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .comment-form .submit:hover {
            background: #d81e06;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(216, 30, 6, 0.3);
        }
        
        /* 页脚 - 与首页保持一致 */
        footer {
            background: #333;
            color: #ccc;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            color: white;
            font-size: 18px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: #ff4e79;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #ccc;
        }
        
        .footer-column ul li a:hover {
            color: #ff4e79;
            padding-left: 5px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: #444;
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: #ff4e79;
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            font-size: 14px;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
            }
            
            nav ul {
                margin-top: 20px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0 10px 10px;
            }
            
            .article-content {
                padding: 25px;
            }
            
            .article-header h1 {
                font-size: 26px;
            }
            
            .article-meta {
                flex-direction: column;
            }
            
            .article-meta span {
                margin: 5px 0;
            }
            
            .comment-form {
                grid-template-columns: 1fr;
            }
        }