/* 基础重置 */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 删除所有列表样式 */
ul,
ol {
  list-style: none;
}

/* 删除链接的下划线 */
a {
  text-decoration: none;
}

/* 删除表格的默认样式 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 移除图片的边框 */
img {
  border: 0;
  height: auto;
}

/* 设置输入框、文本框和按钮样式 */
input,
textarea,
button {
  outline: none;
  border: none;
  background: none;
}

/* 设置HTML5元素的默认显示 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
mark,
nav,
section,
summary {
  display: block;
}

/* 设置音视频元素 */
audio,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 去除默认字体 */
body {
  font-family: sans-serif;
}
