*{
  margin: 0;
  padding: 0;
}
  html {
  font-size: 100%;
}

body {
  background-color: #fff; /* 背景色 */
  color: #333; /* 默认文字颜色 */
  font-size: 14px;
}

ol, ul {
  list-style: none; /* 去掉默认的列表符号 */
}
ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
}
a {
  text-decoration: none; /* 去掉链接下划线 */
  color: inherit; /* 继承父元素的颜色 */
}

img {
  max-width: 100%; /* 防止图片溢出 */
  height: auto; /* 保持图片比例 */
}

table {
  border-collapse: collapse; /* 去除表格的间隔 */
  width: 100%; /* 使表格宽度为100% */
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

hr {
  border: 0;
  border-top: 1px solid #ccc; /* 创建水平线 */
}