/**
 * CityPulse - 样式重置
 * 基于 modern-normalize 思路精简，仅保留项目所需
 */

/* 盒模型重置 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 文字渲染优化 */
html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* body 基础 */
body {
  min-height: 100vh;
  line-height: 1.6;
}

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

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

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

/* 图片与媒体 */
img, picture, svg, video {
  display: block;
  max-width: 100%;
}

/* 表单元素继承字体 */
button, input, textarea, select {
  font: inherit;
  color: inherit;
}

/* 按钮重置 */
button {
  background: none;
  border: none;
  cursor: pointer;
}

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