/* ========== CSS 重置样式 (Reset CSS) ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* 重置列表样式 */
  ul, ol {
    list-style: none;
  }
  
  /* 重置链接样式 */
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* 重置表单元素 */
  input, button, textarea, select {
    font: inherit;
    border: none;
    outline: none;
    background: none;
  }
  
  /* 重置表格 */
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  
  /* 重置图片 */
  img {
    display: block;
    max-width: 100%;
    height: auto;
    border: none;
  }
  
  /* 重置标题 */
  h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    font-size: inherit;
  }
  
  /* 重置段落 */
  p {
    line-height: 1.5;
  }
  
  /* 清除浮动 */
  .clearfix::after {
    content: "";
    display: block;
    clear: both;
  }
  