:root {
  font-size: calc(100vw / 1920);
}

@media screen and (max-width: 1024px) {
  :root {
    font-size: calc(100vw / 750);
  }
}

/* 最小宽度限制 */
@media screen and (max-width: 320px) {
  :root {
    font-size: calc(320px / 750);
  }
}