.title-banner{
	height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    color: #ffffff;
}
/* 博客页面样式 */
.blog-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.blog-page-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-page-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.blog-page-description {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

/* 博客文章网格 */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

/* 博客文章卡片 */
.blog-post-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-post-thumbnail {
    height: 220px;
    overflow: hidden;
}

.blog-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post-card:hover .blog-post-thumbnail img {
    transform: scale(1.05);
}

.blog-post-content {
    padding: 25px;
}

.blog-post-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.blog-post-title a {
    color: #2c3e50;
    text-decoration: none;
}

.blog-post-title a:hover {
    color: #3498db;
}

.blog-post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #95a5a6;
}

.blog-post-category {
    background: #f8f9fa;
    padding: 3px 10px;
    border-radius: 12px;
}

.blog-post-excerpt {
    color: #5d6d7e;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-post-footer {
    border-top: 1px solid #ecf0f1;
    padding-top: 15px;
}

.blog-read-more {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* 分页样式 */
.blog-pagination {
    margin-top: 60px;
    text-align: center;
}

.blog-pagination .page-numbers {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 5px;
    background: #f8f9fa;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.blog-pagination .current,
.blog-pagination .page-numbers:hover {
    background: #3498db;
    color: #fff;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .blog-page-container {
        padding: 20px 15px;
    }
    
    .blog-page-title {
        font-size: 2rem;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-post-thumbnail {
        height: 180px;
    }
}