/* 自定义样式：解决无法复制文本的问题 */

/* 覆盖主题的 user-select: none */
body {
  user-select: auto !important;
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  -ms-user-select: auto !important;
}

/* 确保文章正文可以选择 */
.article-container,
.post-content,
.article-content,
.markdown-body {
  user-select: text !important;
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
}

/* 允许选中标题 */
h1, h2, h3, h4, h5, h6,
.post-title,
.article-title {
  user-select: text !important;
}
