/* 博客列表样式 */

.articleTitle { 
    width: 100%;
    text-align: right;
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.blog-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.blog-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.blog-item:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.thumbnail {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    margin-right: 20px;
    overflow: hidden;
    border-radius: 4px;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post-intro {
    flex: 1;
    min-width: 0;
}

.post-intro a {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.post-intro a:hover {
    color: #007bff;
    text-decoration: underline;
}

.date {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.page-intro {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 4px;
    border-left: 4px solid #007bff;
}

.post-intro a {
    text-decoration: none;
    color: #2a2a2b;
}

/* 链接悬停效果 */
.post-intro a:hover {
    text-decoration: none;
    color: #6a6b6b;
}