/* ============ 通用重置 ============ */

/* a 标签：去除默认下划线、hover/active/visited 状态颜色继承父级，触摸无高亮 */
a {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
  color: inherit;
  outline: none;
}
