/* 适配媒体查询 */

/* [320-375] */
@media screen and (min-width:320px) {
    html {
        font-size: 16.66px;
    }
}

@media screen  and (min-width:425px) {
    html {
        font-size: 22.135px;
    }
}

@media screen and (min-width:768px) {
    html {
        font-size: 40px;
    }
    
}

@media screen and (min-width:1024px) {
    html {
        font-size: 53.33px;
    }
}

@media screen and (min-width:1200px) {
    html {
        font-size: 62.5px;
    }
}

@media screen and (min-width:1920px) {
    html {
        font-size: 100px;
    }
}