/* == css/app/base.css · 由 css/style.css L35-52 原样拆分，规则与顺序未动 == */

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

html { -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font);
  color: var(--black);
  background: #fff;
  font-size: 14px;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }