/* reset.css - 重置浏览器默认样式 */

/* 重置所有元素的盒模型 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 特别确保html和body没有边距 */
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

/* 重置列表样式 */
ul,
ol {
    list-style: none;
}

/* 重置链接样式 */
a {
    text-decoration: none;
    color: inherit;
}

/* 重置标题样式 */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    font-size: 100%;
}

/* 重置表单元素样式 */
button,
input,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    border: none;
    outline: none;
    background: none;
}

/* 重置图片样式 */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 设置基础字体 */
body {
    font-family: 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.5;
    color: #333333;
    background-color: #ffffff;
}

/* 清除浮动 */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}