/* @charset 'utf-8'; */

/*这些元素都建议重新初始化*/

html,
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
tr,
td,
th,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
br,
img,
table,
input,
form,
a,
p,
textarea {
    padding: 0;
    margin: 0;
    font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

/*去掉列表默认排列*/

ul,
ol,
li {
    list-style: none;
}

/*去掉底部横线*/

/*把a元素更改设置成块级元素，这个根据实际情况决定要不要*/


a {
    text-decoration: none;
    /* 去下划线 */
    color: inherit;
    /* 继承父级颜色 */
}

a:hover,
a:active,
a:visited {
    color: inherit;
    text-decoration: none;
}

/*img标签要清除border。*/

/*display设为block设置为块级元素，默认为display:inline;
存在下边线多出4px状况,所以一般设为block， vertical-align对齐也可*/

img {
    border: 0;
    /* display: block; */
}

/*清除浮动破坏带来的塌陷问题*/

/*清除浮动的兼容IE*/

.clearfix {
    zoom: 1;
}

.clearfix:after {
    display: block;
    clear: both;
    content: "";
    visibility: hidden;
    height: 0;
}

/* Mircosoft Edge 清除input密码输入框，眼睛 */
input::-ms-clear,
input::-ms-reveal {
    display: none;
}