
/* ===== 字体大小和粗细 ===== */

/* 正文字体 */
p, ul, li {
    font-size: 18px;   /* 正文字大小 */
    font-weight: 400;  /* 正文粗细 */
}

/* 标题字体 */
h2 {
    font-size: 26px;   /* H2 大小 */
    font-weight: 600;  /* H2 粗细 */
}

h3 {
    font-size: 24px;   /* H3 大小 */
    font-weight: 600;  /* H3 粗细 */
}

/* 强调文本加粗 */
strong {
    font-weight: 600;
}
