p {
    margin: 0;
    line-height: inherit;
}
a:hover {
    color: #fff;
    text-decoration: none;
}
a:focus {
    outline: none;
}
a:link {
    text-decoration: none;
    /* 指正常的未被访问过的链接*/
}

a:visited {
    text-decoration: none;
    /*指已经访问过的链接*/
}

a:hover {
    color: inherit;
    text-decoration: none;
    /*指鼠标在链接*/
}

a:active {
    text-decoration: none;
    /* 指正在点的链接*/
}
ol,
ul {
    padding: 0;
    margin: 0;
}
ol,
ul,
li {
    list-style: none;
}

input:focus,textarea:focus,button:focus {
    border: 0;
    outline: 0;
}

h1,h2,h3,h4,h4,h5,h6 {
    margin: 0;
}