
/* ===== 字体大小和粗细 ===== */

/* 正文字体 */
p, ul, li {
    font-size: 16px;   /* 正文字大小 */
    font-weight: 400;  /* 正文字粗细 */
}

/* 标题字体 */
h1 {
    font-size: 32px;   /* H1 大小 */
    font-weight: 700;  /* H1 加粗 */
}

h2 {
    font-size: 28px;   /* H2 大小 */
    font-weight: 600;  /* H2 稍加粗 */
}

h3 {
    font-size: 24px;   /* H3 大小 */
    font-weight: 500;  /* H3 中等粗细 */
}
