/* 重置不同浏览器的文本大小调整 */
html {
    -webkit-text-size-adjust: 100%; /* Chrome, Safari, Opera */
    -ms-text-size-adjust: 100%; /* IE */
    -webkit-tap-highlight-color: transparent; /* 移除触摸设备上的点击高亮色 */
  }
  
  /* 移除常见元素的默认外边距和内边距 */
  blockquote,
  body,
  button,
  caption,
  dd,
  div,
  dl,
  dt,
  fieldset,
  figure,
  form,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  hr,
  html,
  input,
  legend,
  li,
  menu,
  ol,
  p,
  pre,
  table,
  td,
  textarea,
  th,
  ul {
    margin: 0;
    padding: 0;
  }
  
  /* 确保这些元素显示为块级元素 */
  address,
  article,
  aside,
  details,
  figcaption,
  figure,
  footer,
  header,
  hgroup,
  menu,
  nav,
  section {
    display: block;
  }
  
  /* 移除部分元素的边框 */
  abbr,
  body,
  fieldset,
  html,
  iframe,
  img {
    border: 0;
  }
  
  /* 移除列表项的默认样式 */
  li {
    list-style: none;
  }
  
  /* 设置标题和小字的字体大小为100% */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  small {
    font-size: 104%;
  }
  
  /* 为可点击的元素设置鼠标指针 */
  a,
  button {
    cursor: pointer;
  }
  
  /* 设置加粗的字体样式 */
  b,
  em,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  strong {
    font-weight: 700; /* 加粗字体 */
  }
  
  /* 移除链接和其他文本元素的文本装饰（如下划线、删除线等） */
  a,
  a:hover,
  del,
  ins,
  s,
  u {
    text-decoration: none;
  }
  
  /* 设置主体和表单元素的字体和颜色 */
  body,
  button,
  input,
  keygen,
  legend,
  select,
  textarea {
    font: 16px/1.5 PingFangSC, 'helvetica neue', 'hiragino sans gb', 'Segoe UI', Calibri, 'microsoft yahei ui', 'microsoft yahei', simsun, sans-serif; /* 字体栈 */
    color: #333; /* 文字颜色 */
    outline: 0; /* 移除焦点时的外框（注：这可能影响可访问性，需谨慎使用） */
    -webkit-font-smoothing: antialiased; /* 提升 Webkit 浏览器中的文本渲染效果 */
    -moz-osx-font-smoothing: grayscale; /* 提升 Firefox 中的文本渲染效果 */
  }
  