/*自定义字体*/
/* 定义字体 */
        @font-face {
            font-family: 'MyCustomFont';
            src: url('../font/heiti.woff2') format('truetype');
            font-weight: normal;
            font-style: normal;
            font-display: swap; /* 确保文本在字体加载期间可见 */
        }
        
        /* 应用字体 */
        body {
            font-family: 'MyCustomFont', sans-serif;
        }
/*自定义字体结束*/