/*所有标签的内外边距清零*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/*em i 斜体文字不倾斜*/
em,
i {
    font-style: normal;
}
/* 清除 li 的小圆点*/
li {
    list-style: none;
}
/*取消图片底侧有空白间隙问题*/
img {
    vertical-align: middle;
}
/* 当鼠标经过 button 按钮，鼠标变成小手 */
button {
    cursor: pointer;
}
/* 链接 */
a {
    color: #5e616d;
    text-decoration: none;
}
a:hover {
    color: #b86719;
}

button,
input {
    border: 0;
    outline: none;
}