function refreshRem() {
var width = docEl.getBoundingClientRect().width;
if (width / dpr > 540) {
width = 540 * dpr;
}
var rem = width / 10;
docEl.style.fontSize = rem + "px";
flexible.rem = win.rem = rem;
}
when looking at the source code of flexible, there is such a paragraph. I would like to ask why width is set to 540 * dpr when width / dpr > 540s.