/* 1. 根字体响应式设置（核心：1920屏根字体=16px） */
html {
  font-size: 12px; /* 移动端<768px：1rem=12px */
}
/* 平板/小屏电脑：768px~1199px */
@media (min-width: 768px) {
  html {
    font-size: 14px; /* 1rem=14px */
  }
}
/* 桌面端（≥1200px，含1920×1080） */
@media (min-width: 1200px) {
  html {
    font-size: 16px !important; /* 强制1rem=16px，精准匹配设计稿 */
  }
}
/* 2. 正文样式：1920屏精准16px（1rem） */
body {
  font-size: 1rem; /* 桌面端=16px，平板=14px，移动端=12px */
  font-family: "Microsoft Yahei", sans-serif; /* 匹配设计稿字体族 */
  margin: 0;
  padding: 0;
	
}

.pointer{
	cursor: pointer;
}
