@charset "UTF-8";
/* 现代通用 CSS Reset，适用于 Sass/SCSS 项目 */
/* 1. 盒模型统一 */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 2. 移除列表样式 */
ul, ol {
  list-style: none;
}

/* 3. 移除链接下划线，统一颜色继承 */
a {
  text-decoration: none;
  color: inherit;
}

/* 4. 图片自适应 */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 5. 表格边框合并 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 6. 按钮、输入等表单元素基础样式 */
button, input, select, textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
}

/* 7. HTML5 新标签显示为块级 */
article, aside, details, figcaption, figure, footer, header, main, nav, section, summary {
  display: block;
}

/* 8. body 基础排版 */
body {
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  font-size: 16px;
  line-height: 1.5;
  background: #fff;
  color: #222;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/*# sourceMappingURL=reset.css.map */