/* 样式重置 + 基础配置（适配黄色系主题） */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth; /* 保留平滑滚动 */
}

body {
  font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  /* 统一字体大小基准，避免样式冲突 */
  font-size: 16px;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  /* 继承定制样式的 hover 效果，不强制覆盖 */
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  /* 移除默认边框和轮廓，避免干扰定制样式 */
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  background: none;
}

/* 统一容器样式，和 style.css 中的 container 保持一致 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  width: 90%;
}

/* 移除硬编码的 section-title 样式！交给 style.css 统一控制 */
/* （关键：避免覆盖黄色系标题样式） */
