/* ============================================================
 * reset.css - 样式重置
 * ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: none; -webkit-tap-highlight-color: transparent; text-size-adjust: none; }
body {
  font-family: var(--font-family);
  font-size: var(--font-size-body);
  line-height: var(--line-height-base);
  color: var(--color-text-primary);
  background: var(--color-bg-page);
}
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; vertical-align: middle; border: 0; }
button { font-family: inherit; }
input, textarea, select { font-family: inherit; outline: none; }
table { border-collapse: collapse; }
