/* 去掉边距和填充 */  
* {  
    margin: 0;  
    padding: 0;  
    box-sizing: border-box; /* 使得padding和border包含在width和height内 */  
}  
  
/* 去掉列表项目符号 */  
ul, ol {  
    list-style: none;  
}  
  
/* 去掉边框 */  
*, *::before, *::after {  
    border: none;  
    outline: none; /* 去掉焦点框 */  
}  
  
/* 去掉其他可能的默认样式，如字体大小和行高 */  
body, html {  
    font-size: 16px;  
    line-height: 1.5;  
    font-family: "Arial", sans-serif; /* 设置一个基本的字体族 */  
    color: #333; /* 设置一个基本的文本颜色 */  
}  
  
/* 去掉表格边框和间距 */  
table {  
    border-collapse: collapse;  
    border-spacing: 0;  
}  
  
/* 去除a标签的下划线 */  
a {  
    text-decoration: none;  
    color: inherit; /* 继承父元素的文本颜色 */  
}  
  
/* 根据需要添加其他默认样式的重置 */