a:link {
    color: blue;
    text-decoration: none;
}

a:visited {
    color: purple;
}

a:hover {
    color: blue;
    text-decoration: underline; /* 悬停时添加下划线 */
}

a:active {
    color: green;
}