@charset "UTF-8";
/* 初始化化样式  */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

input, textarea, button {
  font-family: inherit;
}

/* 去除列表默认样式 */
ul,
ol {
  list-style: none;
}

/*让button 按钮 变成小手*/
button {
  cursor: pointer;
}

/* 让所有斜体不倾斜 */
em,
i {
  font-style: normal;
}

/* 去除a标签默认下划线，并设置默认文字颜色 */
a {
  text-decoration: none;
  color: #333;
}

/* 设置img的垂直对齐方式为居中对齐，去除img默认下间隙 */
img {
  vertical-align: middle;
}

/* 去除input默认样式 */
input,
button {
  cursor: pointer;
  border: none;
  outline: none;
  color: #333;
}

/* 双伪元素清除法 */
.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

body {
  color: #333;
  font-size: 14px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}/*# sourceMappingURL=base.css.map */