/* 重置所有元素的内外边距 */
* {
    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;
}

/* 重置图片样式 */
img {
    max-width: 100%;
    height: auto;
}
html {
  /* font-size: 10px; */
  font-size: 8.333px;
}