/*
 * 核心功能：移除所有图片在被选中时的背景色
 * 这将覆盖主题默认的红色高亮，使其对图片无效
 * 适用于所有图片，包括文章头图和正文图片
 */

/* 针对所有 <img> 元素 */
img::selection {
  background: transparent !important;
}

img::-moz-selection { /* 兼容 Firefox 浏览器 */
  background: transparent !important;
}