/* 自定义：Pandoc提示框样式 */
.note {
    padding: 1rem 1.5rem;
    margin: 1.5em 0;
    border-left: 4px solid;
    border-radius: 4px;
    background-color: #f8f9fa;
    overflow: hidden;
}
.note p {
    margin: 0.5em 0;
}
.note.IMPORTANT {
    border-left-color: #e74c3c; /* 红色 */
    background-color: #ffeaea;
}
.note.TIP {
    border-left-color: #3498db; /* 蓝色 */
    background-color: #e3f2fd;
}
.note.WARNING {
    border-left-color: #f39c12; /* 橙色 */
    background-color: #fff3cd;
}