/* 全局样式重置：消除默认边距、统一盒模型 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}