/* 优先加载体积小的英文/常用字符集 (假设 font2 是 subset) */
@font-face {
    font-family: CustomFont;
    src: url('../fonts/font2.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* 备用加载完整中文字体 (假设 font1 是完整版) */
@font-face {
    font-family: CustomFont;
    src: url('../fonts/font1.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* 修改 cover 图片格式 */
.post_cover.left, .post_cover.right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.post_cover.left a, .post_cover.right a {
    display: inline-block;
    height: 80%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Lato, Roboto, 'PingFang SC', sans-serif;
}