 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        .container {
            width: 1200px;
            margin: 0 auto;
        }
        
        /* 顶部导航 - 与首页一致 */
        .top-bar {
            background-color: #1479d7;
            height: 40px;
            line-height: 40px;
            color: white;
            font-size: 14px;
        }
        
        .top-bar .container {
            display: flex;
            justify-content: space-between;
        }
        
        .top-nav a {
            color: white;
            margin-left: 15px;
            transition: opacity 0.3s;
        }
        
        /* 主导航 - 与首页一致 */
        .main-nav {
            background-color: white;
            height: 80px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 100;
        }
        
        .main-nav .container {
            display: flex;
            align-items: center;
            height: 100%;
        }
        
        .logo {
            margin-right: 30px;
        }
        
        .logo img {
            height: 50px;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-right: 25px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            position: relative;
            padding: 30px 0;
        }
        
        .nav-menu li:hover {
            color: #1479d7;
        }
        
        .nav-menu li.active {
            color: #1479d7;
        }
        
        .nav-menu li.active::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background-color: #1479d7;
        }
        
        .search-box {
            margin-left: auto;
            display: flex;
        }
        
        /* 面包屑导航 */
        .breadcrumb {
            padding: 15px 0;
            font-size: 14px;
            color: #666;
        }
        
        .breadcrumb a {
            color: #1479d7;
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        .breadcrumb span {
            margin: 0 5px;
            color: #999;
        }
        
        /* 文章主要内容区 */
        .article-main {
            display: flex;
            margin-top: 20px;
        }
        
        .article-content {
            width: 820px;
            margin-right: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            padding: 30px;
        }
        
        .article-sidebar {
            width: 360px;
        }
        
        /* 文章标题区 */
        .article-header {
            margin-bottom: 30px;
            border-bottom: 1px solid #f0f0f0;
            padding-bottom: 20px;
        }
        
        .article-title {
            font-size: 28px;
            font-weight: bold;
            line-height: 1.4;
            margin-bottom: 15px;
            color: #222;
        }
        
        .article-meta {
            display: flex;
            align-items: center;
            font-size: 14px;
            color: #666;
        }
        
        .article-source {
            color: #1479d7;
            margin-right: 15px;
        }
        
        .article-time {
            margin-right: 15px;
        }
        
        .article-comment {
            display: flex;
            align-items: center;
            margin-right: 15px;
        }
        
        .article-comment i {
            margin-right: 5px;
        }
        
        .article-share {
            display: flex;
            align-items: center;
            margin-left: auto;
        }
        
        .share-btn {
            margin-left: 10px;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background-color: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .share-btn:hover {
            background-color: #e0e0e0;
        }
        
        /* 文章正文 */
        .article-body {
            font-size: 16px;
            line-height: 1.8;
            color: #444;
        }
        
        .article-body p {
            margin-bottom: 20px;
            text-align: justify;
        }
        
        .article-body img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 20px auto;
            border-radius: 4px;
        }
        
        .article-body h2 {
            font-size: 22px;
            font-weight: bold;
            margin: 30px 0 15px;
            color: #222;
        }
        
        .article-body h3 {
            font-size: 18px;
            font-weight: bold;
            margin: 25px 0 12px;
            color: #222;
        }
        
        .article-body blockquote {
            border-left: 4px solid #1479d7;
            padding: 10px 15px;
            background-color: #f9f9f9;
            margin: 20px 0;
            color: #666;
            font-style: italic;
        }
        
        /* 文章页脚 */
        .article-footer {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #f0f0f0;
        }
        
        .article-tags {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .tag-title {
            font-size: 14px;
            color: #666;
            margin-right: 10px;
        }
        
        .tag-item {
            padding: 4px 10px;
            background-color: #f0f0f0;
            border-radius: 4px;
            font-size: 12px;
            color: #666;
            margin-right: 8px;
            transition: all 0.3s;
        }
        
        .tag-item:hover {
            background-color: #1479d7;
            color: white;
        }
        
        /* 相关推荐 */
        .related-news {
            margin-top: 40px;
        }
        
        .related-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .related-list {
            list-style: none;
        }
        
        .related-item {
            padding: 10px 0;
            border-bottom: 1px dashed #eee;
        }
        
        .related-item:last-child {
            border-bottom: none;
        }
        
        .related-item a {
            color: #333;
            transition: color 0.3s;
        }
        
        .related-item a:hover {
            color: #1479d7;
        }
        
        /* 右侧边栏 - 与列表页类似 */
        .sidebar-section {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            margin-bottom: 20px;
        }
        
        .sidebar-header {
            padding: 15px 20px;
            border-bottom: 1px solid #f0f0f0;
            background-color: #f9f9f9;
            font-size: 16px;
            font-weight: bold;
            color: #333;
        }
        
        .sidebar-content {
            padding: 15px 20px;
        }
        
        /* 热门推荐 */
        .hot-recommend-item {
            display: flex;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #eee;
        }
        
        .hot-recommend-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .hot-recommend-image {
            width: 80px;
            height: 60px;
            border-radius: 4px;
            overflow: hidden;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .hot-recommend-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .hot-recommend-title {
            font-size: 14px;
            line-height: 1.4;
            transition: color 0.3s;
        }
        
        .hot-recommend-title:hover {
            color: #1479d7;
        }
        
        /* 评论区域 */
        .comment-area {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            margin-top: 30px;
            padding: 20px;
        }
        
        .comment-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .comment-form {
            margin-bottom: 30px;
        }
        
        .comment-textarea {
            width: 100%;
            height: 100px;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            resize: vertical;
            margin-bottom: 10px;
        }
        
        .comment-submit {
            background-color: #1479d7;
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .comment-submit:hover {
            background-color: #0d6bb7;
        }
        
        .comment-list {
            list-style: none;
        }
        
        .comment-item {
            padding: 15px 0;
            border-bottom: 1px solid #f5f5f5;
        }
        
        .comment-user {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .comment-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 10px;
        }
        
        .comment-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .comment-info {
            flex: 1;
        }
        
        .comment-name {
            font-weight: bold;
            margin-bottom: 2px;
        }
        
        .comment-time {
            font-size: 12px;
            color: #999;
        }
        
        .comment-content {
            font-size: 14px;
            line-height: 1.6;
            padding-left: 50px;
        }
        
        /* 页脚 - 与首页一致 */
        .footer {
            background-color: #333;
            color: #999;
            padding: 40px 0 30px;
            font-size: 14px;
            line-height: 1.8;
            margin-top: 30px;
        }
        
        .footer-container {
            width: 1200px;
            margin: 0 auto;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        
        .footer-links a {
            color: #ccc;
            margin: 0 15px;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #1479d7;
        }
        
        .copyright {
            text-align: center;
            color: #777;
        }
        
        .footer-logo {
            text-align: center;
            margin-bottom: 20px;
        }