/* 统一所有文章的背景样式 */
article.post-entry,
article.first {
    background-color: white !important; /* 统一设置为白底 */
    padding: 20px;                     /* 添加内边距 */
    border-radius: 8px;                /* 设置圆角 */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* 添加阴影 */
}

