	/* 设置根元素字体大小 */
	html {
		font-size: calc(100vw / 19.2);
		/* 1920/100=19.2 */
	}
	
	/* 限制最大宽度 */
	@media (min-width: 1920px) {
		html {
			font-size: 100px;
		}
	}
	
	@font-face {
		font-family: 'Noto Sans SC';
		src: url('https://xnddapp.oss-cn-beijing.aliyuncs.com/digitalPerson/fonts/SourceHanSansCN-VF.otf') format('opentype');
		font-weight: normal;
		font-style: normal;
		font-display: swap;
		/* 优化字体加载体验 */
	}
	
	body {
		/* min-width: 1920px; */
		margin: 0 auto;
		font-size: 0.16rem;
		overflow-x: hidden;
		font-family: 'Noto Sans SC', sans-serif;
		/* 相当于16px */
	}