/* 博客园Markdown文章超链接样式（99%的用户用这个） */
#cnblogs_post_body a:link {
    color: #0366d6 !important; /* 标准蓝色，和GitHub/Typora默认一致 */
    text-decoration: none !important; /* 平时无下划线 */
    transition: color 0.2s ease; /* 平滑过渡效果 */
}

#cnblogs_post_body a:visited {
    color: #6f42c1 !important; /* 已访问链接紫色（可改为和未访问一样） */
}

#cnblogs_post_body a:hover {
    color: #0056b3 !important; /* 鼠标悬停深蓝色 */
    text-decoration: underline !important; /* 悬停时显示下划线 */
}

#cnblogs_post_body a:active {
    color: #d73a49 !important; /* 点击瞬间红色 */
}

/* 兼容传统格式文章（可选，加上更保险） */
.postBody a:link, .postCon a:link {
    color: #0366d6 !important;
    text-decoration: none !important;
}

.postBody a:visited, .postCon a:visited {
    color: #6f42c1 !important;
}

.postBody a:hover, .postCon a:hover {
    color: #0056b3 !important;
    text-decoration: underline !important;
}
