/* Reset CSS */

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
span,
a {
  box-sizing: border-box;
  margin: 0;
  /* 清空所有元素的外边距 */
  padding: 0;
  /* 清空所有元素的内边距 */
  font-size: inherit;
  /* 设置字体大小为继承自父元素 */
  font-family: inherit;
  /* 设置字体族为继承自父元素 */
  vertical-align: baseline;
  /* 将行内元素与基线对齐 */
}

a {
  color: inherit;
  /* 设置超链接文本颜色为继承自父元素 */
  text-decoration: none;
  /* 去除超链接的装饰效果 */
}

img {
  border: 0;
  /* 移除图片周围的边框 */
}

table {
  border-collapse: collapse;
  /* 合并单元格边框 */
}

input[type="text"],
input[type="password"] {
  -webkit-appearance: none;
  /* 取消输入框的原生样式 */
  -moz-appearance: none;
  appearance: none;
}

input {
  outline: none;
}