/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-base);
  font-size: var(--text-base);
  color: var(--text-primary);
  background: var(--bg);
  line-height: 1.5;
  overscroll-behavior-y: none;
  -webkit-overflow-scrolling: touch;
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
  outline: none;
}

input, textarea {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
}

img {
  max-width: 100%;
  display: block;
}

ul, ol {
  list-style: none;
}

/* 隐藏滚动条 */
::-webkit-scrollbar {
  display: none;
}

/* 选中文字颜色 */
::selection {
  background: var(--primary);
  color: white;
}
