/*————————————————————————样式重置————————————————————————*/

/* 去除常见标签默认的margin 和 padding 边距 */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* 设置网页统一的字体大小、行高、字体风格系列相关属性 */
body {
    font: 16px/1.5 "Helvetica Neue", Helvetica, Arial, "Microsoft Yahei", "Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei", sans-serif;
    color: #333;
}

/* 去除无序列表默认样式 */
ul,
li {
    list-style: none;
}

/* 去除默认的倾斜效果 */
em,
i {
    font-style: normal;
}

/* 去除a标签默认下划线，并且设置默认文字颜色 */
a {
    text-decoration: none;
    color: #333;
}

/* 设置img的垂直对齐方式为居中对齐，去除img默认下间隙 */
img{
    vertical-align: middle;
}

/* 去除input默认样式 */
input{
    border: none;
    outline: none;
    color: #333;
}

/* 双伪元素清楚浮动 */
.clearfix::before,.clearfix::after{
    content: "";
    display: table;
}

.clearfix::after{
    clear: both;
}