/* 图片悬停外发光 */
.wp-posts-content img {
    transition: box-shadow 0.3s ease;
}

.wp-posts-content img:hover {
    box-shadow: 0 0 8px #63B8FF;
}
