.scn-notification {
    background-color: #fff9e6;
    color: #333;
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
    font-size: 14px;
    line-height: 1.5;
    border: 1px solid #ffe6cc;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: border-color 0.3s ease;
    text-align: center; /* 文字居中 */
}

.scn-notification:hover {
    border-color: #ffcc80;
}

.scn-notification strong {
    color: #d9534f; /* 月数使用红色标注 */
    font-weight: 600;
}    