/*清除自带样式*/
*{
	margin: 0;
	padding: 0;
    outline: none;
    border: 0;
    font-family: Microsoft YaHei;
}
textarea,button{
    resize: none;
}
ul,li{
    list-style: none;
}
a{
    text-decoration: none;
}
/*适配*/
@media screen and (max-width: 320px) {
    html {
        font-size: 9px;
    }
}
@media screen and (min-width: 320px) {
    html {
        font-size: 12px;
    }
}

@media screen and (min-width: 360px) {
    html {
        font-size: 12px;
    }
}

@media screen and (min-width: 400px) {
    html {
        font-size: 14px;
    }
}

@media screen and (min-width: 440px) {
    html {
        font-size: 14px;
    }
}

@media screen and (min-width: 480px) {
    html {
        font-size: 14px;
    }
}

@media screen and (min-width: 640px) {
    html {
        font-size: 15px;
    }
}