/* 主题变量（颜色、圆角、阴影）— 修改外观请编辑 theme.css */
@import url('theme.css');

/* ===== 全局重置 ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "HarmonyOS Sans SC", "PingFang SC", "Noto Sans CJK SC", "Source Han Sans SC", "Microsoft YaHei UI", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  background: var(--bg-app);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

/* ===== 通用工具类 ===== */
.hidden {
  display: none !important;
}
