/* 去除常见标签默认的 margin 和 padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Microsoft YaHei', Arial, sans-serif;
  font-style: normal;
  text-transform: none;
}

/* 去除列表默认样式 */
ul,
ol {
  list-style: none;
}

/* 去除默认的倾斜效果 */
em,
i {
  font-style: normal;
}

/* 去除a标签默认下划线，并设置默认文字颜色 */
a {
  text-decoration: none;
  color: #333;
}

a,
a:hover,
a:active,
a:visited,
a:link,
a:focus {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  /* 或者设置为transparent */
  -webkit-user-select: none;
  -moz-user-focus: none;
  -moz-user-select: none;
  outline: none;
  /* 取消点击时的外边框 */
  background: none;
  /* 取消背景 */
  text-decoration: none;
  /* 取消下划线 */
}



/* 去除input默认样式 */
input {
  border: none;
  outline: none;
  color: #333;
}