 /* 主容器样式 */
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* 文章头部样式 */
        .article-header {
            margin-bottom: 30px;
			margin-top:50px;
        }
        
        .article-title {
            font-size: clamp(1.8rem, 5vw, 3rem);
            font-weight: 700;
            color: #1a202c;
            line-height: 1.2;
            margin-bottom: 15px;
        }
        
        .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            color: #64748b;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .tag {
            background-color: #eef7f0;
            color: #485F4E;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 1.5rem;
        }
        
        .author-info {
            display: flex;
            align-items: center;
            gap: 15px;
            padding-top: 20px;
            border-top: 1px solid #e2e8f0;
            margin-top: 15px;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .author-name {
            font-weight: 600;
            color: #1e293b;
        }
        
        .author-bio {
            font-size: 1.55rem;
            color: #64748b;
        }
        
        /* 文章内容样式 */
        .article-content {
            background-color: white;
            padding: 30px;
			font-size:20px;
            border-radius: 10px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }
        
        .article-content p {
            margin-bottom: 1.5rem;
            color: #334155;
			font-size:20px;
        }
        
        .article-content h2 {
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
            color: #1e293b;
        }
        
        .article-content img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 25px 0;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        
        .lead {
            font-size: 1.2rem;
            color: #475569;
            line-height: 1.8;
        }
        
        /* 分页导航样式 */
        .pagination {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 15px;
            margin: 30px 0 50px;
        }
        
        .pagination-link {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 20px;
            background-color: white;
            color: #334155;
            text-decoration: none;
            border-radius: 8px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            flex: 1;
            min-width: 250px;
            justify-content: center;
        }
        
        .pagination-link.prev {
            justify-content: flex-start;
        }
        
        .pagination-link.next {
            justify-content: flex-end;
        }
        
        .pagination-link:hover {
            color: #485F4E;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transform: translateY(-2px);
        }
        
        /* 推荐阅读样式 */
        .recommended-section {
            margin: 50px 0 30px;
        }
        
        .section-title {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: #1e293b;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .recommended-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
        }
        
        @media (min-width: 768px) {
            .recommended-list {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        .recommended-item {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .recommended-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        }
        
        .recommended-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        
        .recommended-content {
            padding: 20px;
        }
        
        .recommended-title {
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: #1e293b;
            transition: color 0.3s ease;
        }
        
        .recommended-item:hover .recommended-title {
            color: #485F4E;
        }
        
        .recommended-excerpt {
            font-size: 0.9rem;
            color: #64748b;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .recommended-meta {
            font-size: 0.8rem;
            color: #94a3b8;
            display: flex;
            justify-content: space-between;
        }
        
        .read-more {
            text-decoration: none;
            display: block;
        }
        /* 动画相关样式 */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }
            
            .article-content {
                padding: 20px;
            }
            
            .pagination-link {
                padding: 10px 15px;
                font-size: 0.9rem;
            }
        }
