/* 通用链接样式 */
a {
    color: #ff6b6b;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #ff8787;
    text-decoration: underline;
}

/* 内容区链接样式 */
main a {
    font-weight: 500;
}

main a:hover {
    color: #ff4757;
}

/* 页脚链接样式已在index.css中定义 */ 