/* 文章内容中的图片样式 */
.wp-posts-content img:not(.avatar):not(.wp-smiley):not([class*="no-style"]) {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 25px auto;
    max-width: 92%;
    height: auto;
    padding: 0;
}

/* 大尺寸屏幕上的留白控制 */
@media (min-width: 992px) {
    .wp-posts-content img:not(.avatar):not(.wp-smiley):not([class*="no-style"]) {
        max-width: 85%;
    }
}

/* 确保图片在移动端也能正常显示 */
@media (max-width: 768px) {
    .wp-posts-content img:not(.avatar):not(.wp-smiley):not([class*="no-style"]) {
        border-radius: 6px;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
        max-width: 96%;
        margin: 20px auto;
    }
} 