/* 清除元素默认的内外边距 */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 /* 让所以的斜体 不倾斜 */
 em, i {
    font-style: normal;
 }

/* 去除列表前面的小点 */
li{
    list-style: none;
}
/* 图片没有边框 去掉图片底层的空白间隙 */
img {
    border: 0;
    vertical-align: middle;
}
/* 让button 按钮 变成小手 */
button{
    cursor: pointer;
}
/* 取消下划线 */
a {
    color: #666;
    text-decoration: none;
}
a:hover{
    color: #e33333;
}

@media screen and (max-width: 1024px){
    html {
        font-size: 42.66px !important;
    }
}

@media screen  and (min-width: 1920px) {
    html{
        font-size: 80px !important;
    }
}