/* base.css — 基础 reset，全站样式统一放这个文件夹，禁止内联 <style> */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body, system-ui, sans-serif);
  line-height: 1.6;
  color: var(--color-text, #1a1a1a);
  background: var(--color-bg, #fff);
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul {
  list-style: none;
}
