/* 重置元素的所有填充和边距，以及将 box-sizing 设置为 border-box */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 重置常见的 HTML 元素到一致的基础样式 */
html {
    font-size: 16px;
    line-height: 1.5;
    font-family: "PingFang SC", "Lantinghei SC", "Microsoft YaHei", "HanHei SC", "Helvetica Neue", "Roboto", "Open Sans", Arial, "Hiragino Sans GB", 微软雅黑, STHeiti, "WenQuanYi Micro Hei", SimSun, sans-serif, HYWenHei-GEW;
}

body {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 1rem;
    font-weight: normal;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
    font-size: 1rem;
}

/* 隐藏滚动条 */
::-webkit-scrollbar {
    display: none;
}

::-moz-scrollbar {
    display: none;
}

::-ms-scrollbar {
    display: none;
}