/* 基础样式重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 列表样式重置 */
ul, ol {
  list-style: none;
}

/* 表格样式重置 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 表单元素重置 */
input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
}

/* 链接样式重置 */
a {
  text-decoration: none !important;
  color: inherit;
}

/* 图片样式重置 */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: none;
}

/* 标题样式重置 */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

/* 段落样式重置 */
p {
  margin: 0;
}

/* 清除浮动 */
.clearfix::after {
  content: '';
  display: block;
  clear: both;
  visibility: hidden;
  height: 0;
}

.clearfix {
  zoom: 1;
}