@charset "utf-8";
/*!
 * @名称：base.css
 * @功能：1、重设浏览器默认样式 2、设置通用原子类
 */

/* 内外边距通常让各个浏览器样式的表现位置不同 */

body {
  font-size: 16px;
}
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,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 去掉列表前的标识，li 会继承 */
ol,
ul {
  list-style: none;
}

/* a标签取消下划线和字体颜色 */
a {
  text-decoration: none;
  color: inherit;
}
