/* You can add custom styles here. */

/* 基础样式：移除下划线、统一颜色、取消点击高亮 */
.gblog-footer a {
    /* 移除下划线 */
    text-decoration: none;
    /* 取消点击时的高亮框（部分浏览器） */
    outline: none;
    /* 继承父元素颜色（替代默认蓝色/紫色） */
    color: inherit;
    /* 取消手型光标（可选，若要完全像普通文本） */
    cursor: default;
    /* 取消背景色/边框等默认样式 */
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}

/* 移除访问过的链接颜色变化 */
a:visited {
    color: inherit;
}

/* 移除 hover/active 时的默认样式 */
a:hover,
a:active,
a:focus {
    text-decoration: none;
    color: inherit;
    outline: none;
}