
.hrefcss a {
text-decoration: none;
color:#000;
}
.hrefcss a:hover {
    text-decoration: none;
    color:#red;
}
.hrefcss a{
color:#514e4e; /*未访问链接颜色*/
text-decoration:none; /*去掉下划线*/
}
.hrefcss a:visited{
color:#514e4e; /*已访问链接颜色*/
}
.hrefcss a:hover{
color:#514e4e; /*鼠标放在链接上的颜色*/
}
.hrefcss a:active{
color:#514e4e; /*鼠标点击链接的颜色*/
}