﻿/* ===== 全局链接样式重置（所有 <a> 标签）===== */
/* 使用至少一个父级限定，如 body a，权重高于单一 a */
body a, body a:link, body a:visited {
    text-decoration: none;
    color: inherit;
}

a {
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

    a:link,
    a:visited,
    a:hover,
    a:active {
        text-decoration: none;
        color: inherit;
        background: transparent;
    }

    /* 需要特殊样式的链接请单独覆盖（如蓝色链接） */
    a.link-blue {
        color: #3b82f6;
    }
