* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
        }
        
        body {
            background-color: #f4f5f6;
            color: #222;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* 头部样式 */
        .header {
            background-color: #f85959;
            color: white;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-content {
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .header-left {
            display: flex;
            align-items: center;
        }
        
        .header-title {
            font-size: 24px;
            font-weight: bold;
            margin-right: 30px;
        }
        
        .header-nav {
            display: flex;
        }
        
        .nav-item {
            padding: 0 15px;
            line-height: 60px;
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            cursor: pointer;
        }
        
        .nav-item:hover, .nav-item.active {
            color: white;
            background-color: rgba(0, 0, 0, 0.1);
        }
        
        .header-right {
            display: flex;
            align-items: center;
        }
        
        .header-search {
            position: relative;
            margin-right: 20px;
        }
        
        .search-input {
            width: 200px;
            height: 36px;
            border: none;
            border-radius: 18px;
            padding: 0 15px 0 40px;
            outline: none;
            background-color: rgba(255, 255, 255, 0.2);
            color: white;
            transition: all 0.3s;
        }
        
        .search-input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .search-input:focus {
            width: 250px;
            background-color: rgba(255, 255, 255, 0.3);
        }
        
        .search-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: rgba(255, 255, 255, 0.7);
        }
        
        .user-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
        }
        
        /* 面包屑导航 */
        .breadcrumb {
            padding: 15px 0;
            font-size: 14px;
            color: #666;
        }
        
        .breadcrumb a:hover {
            color: #f85959;
        }
        
        .breadcrumb-separator {
            margin: 0 8px;
            color: #999;
        }
        
        /* 主体内容 */
        .main-content {
            display: flex;
            margin-top: 10px;
        }
        
        /* 左侧内容 */
        .content-left {
            flex: 1;
            margin-right: 20px;
        }
        
        /* 右侧边栏 */
        .sidebar {
            width: 300px;
        }
        
        /* 文章区域 */
        .article-container {
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 20px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }
        
        .article-title {
            font-size: 28px;
            line-height: 1.4;
            margin-bottom: 15px;
            font-weight: bold;
            color: #222;
        }
        
        .article-meta {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .author-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        .author-info {
            flex: 1;
        }
        
        .author-name {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 3px;
        }
        
        .article-date {
            font-size: 14px;
            color: #999;
        }
        
        .follow-btn {
            padding: 6px 15px;
            font-size: 14px;
            border-radius: 4px;
            background-color: #f85959;
            color: white;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            outline: none;
        }
        
        .follow-btn:hover {
            background-color: #e74c4c;
        }
        
        .article-content {
            font-size: 16px;
            line-height: 1.8;
            color: #333;
        }
        
        .article-content p {
            margin-bottom: 20px;
        }
        
        .article-image {
            max-width: 100%;
            height: auto;
            margin: 20px 0;
            border-radius: 4px;
        }
        
        .article-footer {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }
        
        .action-btn {
            display: flex;
            align-items: center;
            color: #666;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .action-btn:hover {
            color: #f85959;
        }
        
        .action-btn i {
            margin-right: 5px;
            font-size: 18px;
        }
        
        /* 相关推荐 */
        .related-articles {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }
        
        .section-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .related-item {
            display: flex;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #eee;
        }
        
        .related-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .related-image {
            width: 100px;
            height: 70px;
            border-radius: 4px;
            margin-right: 15px;
            object-fit: cover;
        }
        
        .related-title {
            flex: 1;
            font-size: 16px;
            line-height: 1.4;
        }
        
        .related-title:hover {
            color: #f85959;
        }
        
        /* 评论区域 */
        .comment-section {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }
        
        .comment-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .comment-count {
            font-size: 18px;
            font-weight: bold;
        }
        
        .comment-sort {
            font-size: 14px;
            color: #666;
        }
        
        .comment-form {
            display: flex;
            margin-bottom: 20px;
        }
        
        .comment-input {
            flex: 1;
            height: 40px;
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 20px;
            outline: none;
            font-size: 14px;
            transition: all 0.3s;
        }
        
        .comment-input:focus {
            border-color: #f85959;
        }
        
        .comment-submit {
            width: 80px;
            height: 40px;
            margin-left: 10px;
            border: none;
            border-radius: 20px;
            background-color: #f85959;
            color: white;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .comment-submit:hover {
            background-color: #e74c4c;
        }
        
        .comment-list {
            margin-top: 20px;
        }
        
        .comment-item {
            display: flex;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .comment-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .comment-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        .comment-content {
            flex: 1;
        }
        
        .comment-user {
            font-size: 15px;
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .comment-text {
            font-size: 15px;
            line-height: 1.5;
            margin-bottom: 10px;
        }
        
        .comment-meta {
            display: flex;
            font-size: 12px;
            color: #999;
        }
        
        .comment-time {
            margin-right: 15px;
        }
        
        .comment-action {
            margin-right: 15px;
            cursor: pointer;
        }
        
        .comment-action:hover {
            color: #f85959;
        }
        
        /* 右侧边栏样式 */
        .sidebar-card {
            background-color: white;
            border-radius: 8px;
            margin-bottom: 20px;
            padding: 20px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }
        
        .sidebar-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .hot-news-item {
            display: flex;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #eee;
        }
        
        .hot-news-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .hot-news-index {
            width: 20px;
            height: 20px;
            background-color: #f4f5f6;
            color: #999;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            font-size: 12px;
        }
        
        .hot-news-index.top {
            background-color: #f85959;
            color: white;
        }
        
        .hot-news-title {
            flex: 1;
            font-size: 15px;
            line-height: 1.4;
        }
        
        .hot-news-title:hover {
            color: #f85959;
        }
        
        /* 作者推荐 */
        .author-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #eee;
        }
        
        .author-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .author-sidebar-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 10px;
            object-fit: cover;
        }
        
        .author-sidebar-info {
            flex: 1;
        }
        
        .author-sidebar-name {
            font-size: 15px;
            font-weight: bold;
            margin-bottom: 3px;
        }
        
        .author-sidebar-desc {
            font-size: 12px;
            color: #999;
        }
        
        .follow-sidebar-btn {
            padding: 4px 10px;
            font-size: 12px;
            border-radius: 4px;
            background-color: #f85959;
            color: white;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
        }
        
        .follow-sidebar-btn:hover {
            background-color: #e74c4c;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .sidebar {
                display: none;
            }
            
            .content-left {
                margin-right: 0;
            }
            
            .article-title {
                font-size: 24px;
            }
        }
        
        @media (max-width: 768px) {
            .header-content {
                height: 50px;
                padding: 0 15px;
            }
            
            .header-title {
                font-size: 20px;
                margin-right: 15px;
            }
            
            .nav-item {
                padding: 0 10px;
                font-size: 14px;
            }
            
            .search-input {
                width: 150px;
            }
            
            .search-input:focus {
                width: 180px;
            }
            
            .article-title {
                font-size: 22px;
            }
            
            .article-meta {
                flex-wrap: wrap;
            }
            
            .follow-btn {
                width: 100%;
                margin-top: 10px;
            }
            
            .article-footer {
                flex-wrap: wrap;
            }
            
            .action-btn {
                width: 50%;
                margin-bottom: 10px;
            }
        }
        
        @media (max-width: 576px) {
            .header-nav {
                display: none;
            }
            
            .search-input {
                width: 120px;
            }
            
            .search-input:focus {
                width: 150px;
            }
            
            .article-title {
                font-size: 20px;
            }
            
            .article-content {
                font-size: 15px;
            }
            
            .related-item {
                flex-direction: column;
            }
            
            .related-image {
                width: 100%;
                height: auto;
                margin-right: 0;
                margin-bottom: 10px;
            }
        }
		 /* 底部Footer样式 */
        .footer {
            background-color: #333;
            color: #999;
            padding: 40px 0 20px;
            font-size: 14px;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        
        .footer-column {
            width: 20%;
            margin-bottom: 20px;
        }
        
        .footer-title {
            color: #fff;
            font-size: 16px;
            margin-bottom: 15px;
            font-weight: bold;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #999;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #f85959;
        }
        
        .footer-bottom {
            border-top: 1px solid #444;
            padding-top: 20px;
            text-align: center;
        }
        
        .footer-copyright {
            margin-bottom: 10px;
        }
        
        .footer-legal {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .footer-legal a {
            color: #999;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .footer-legal a:hover {
            color: #f85959;
        }
        
        /* 响应式调整 */
        @media (max-width: 992px) {
            .footer-column {
                width: 25%;
            }
        }
        
        @media (max-width: 768px) {
            .footer-column {
                width: 33.33%;
            }
        }
        
        @media (max-width: 576px) {
            .footer-column {
                width: 50%;
            }
            
            .footer-legal a {
                margin: 5px 10px;
            }
        }