td:nth-child(1) {
    width: 18%;
}
td:nth-child(2) {
    width: 48%;
}
td:nth-child(3) {
    width: 13%;
}
td:nth-child(4) {
    width: 13%;
}
td:nth-child(5) {
    width: 6%;
}

/* 修正标题层级 h1~h7：字号/粗细逐级递减，每级有明显差异，全部比正文粗 */
/* 主题默认: h1=1.6rem/w300, h2=1.25rem/w300, h3=1rem/w400, h4=无字号→0.8rem, */
/*           h5/h6=0.64rem(比正文小), h7=h6 无法区分                             */
.md-content h1 {
    font-size: 2.15rem;
    font-weight: 770;
}
.md-content h2 {
    font-size: 1.75rem;
    font-weight: 770;
}
.md-content h3 {
    font-size: 1.45rem;
    font-weight: 750;
}
.md-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
}
.md-content h5 {
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: none;
}
.md-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
}
/* 第7级标题（RST ###）：比第6级(***)小一号，用 aria-level 区分 */
.md-content h6[aria-level="7"] {
    font-size: 0.9rem;
    font-weight: 500;
}
