.articleTitle { 
    width: 100%;
    text-align: center;
    font-size: 20px;
    margin-top: 10px;
    font-weight: bold;
}
.meta { 
    text-align: center;
    font-size: 14px;
    color: #666;
    margin: 10px 0;
}

.body {
    font-size: 16px;
    line-height: 1.75;
    text-indent: 2em;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    padding: 20px;
}
/* 链接样式 - 去除下划线 */
.body a {
    text-decoration: none;
    color: #007bff;
}

/* 链接悬停效果 */
.body a:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* 段落样式 */
.body p {
    margin-bottom: 1.5em;
    text-indent: 2em;
}

/* 首行不需要再次缩进 */
.body p:first-line {
    text-indent: 0;
}

/* 清除某些元素的缩进 */
.body p:first-child {
    text-indent: 0;
}

/* 图片样式 */
.body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
}

/* 标题样式 */
.body h1, .body h2, .body h3, .body h4, .body h5, .body h6 {
    font-weight: bold;
    margin: 1.5em 0 1em 0;
    text-indent: 0;
}

.body h1 {
    font-size: 2em;
}

.body h2 {
    font-size: 1.75em;
}

.body h3 {
    font-size: 1.5em;
}

/* 列表样式 */
.body ul, .body ol {
    margin: 1em 0;
    padding-left: 2em;
    text-indent: 0;
}

.body li {
    margin-bottom: 0.5em;
}

/* 引用样式 */
.body blockquote {
    margin: 1.5em 0;
    padding: 1em 2em;
    border-left: 4px solid #ddd;
    background-color: #f9f9f9;
    text-indent: 0;
}

.footer {
    text-align: right;
    font-size: 16px;
    margin-bottom: 20px;
    padding: 0 20px 0 0;
}


.footer a {
    text-decoration: none;
    color: #3e3e3e;
}

/* 链接悬停效果 */
.footer a:hover {
    text-decoration: underline;
    color: #494a4a;
}

/* 博客列表样式 */
.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: 300px;
    height: 300px;
    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;
}