@media screen and (max-width: 1366px){
html{
font-size: 7px;
}
body{
font-size: 7px;
}
}
@media (min-width: 1366px) and (max-width:1600px ){
html{
font-size: 8px;
}
body{
font-size: 8px;
}
}
@media screen and (min-width:1600px ){
html{
font-size: 10px;
}
body{
font-size: 10px;
}
}
/***************************************以上代码代表的是******************************************/
在1366的屏幕下
1rem = 7px;
在1366px-至1600px的屏幕下
1rem = 8px;
在1600以上的屏幕下
1rem = 10px;
/********************************************************************************************************/