body,
div,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p,
em,
figure {
    margin: 0px;
    padding: 0px;
    font-family: "微软雅黑";
}

h1,
h2,
h3,
h5,
h4,
b,
strong {
    font-size: 100%;
    font-weight: normal;
}

article,
aside,
footer,
header,
nav,
section {
    display: block;
}

i,
em {
    font-style: normal;
}

img {
    max-width: 100%;
    border: 0px;
    vertical-align: middle;
}

ol,
ul,
dl,
dt,
dd {
    list-style: none;
}

i,
em {
    font-style: normal;
}

a,
ins {
    text-decoration: none;
    color: #000;
}

a:focus {
    outline: none;
}

a {
    blr: expression(this.onFocus=this.blur())
}


/*表单重置*/

input,
button,
textarea {
    border: 0;
    background: none;
    outline: none;
    resize: none;
    font-family: "Microsoft Yahei";
}

input,
textarea {
    -webkit-user-select: auto !important;
    user-select: auto !important;
}


/*清理掉浏览器自带填充的背景和文字样式*/

:root input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    box-shadow: 0 0 50px 50px #fffefb inset;
    /*阴影大小等于input框宽度一半 颜色与input框宽度一样 暂时无法解决input框使用背景图片问题*/
    -webkit-text-fill-color: #9d4100;
    /*颜色与input框文字颜色一致*/
}


/*360,chrome记住帐号密码，input自动填充，背景黄色*/

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px white inset;
}


/*输入框改变placeholder字体颜色*/


/*::-webkit-input-placeholder {
	color: red;
}

:-moz-placeholder {
	color: red;
}

::-moz-placeholder {
	color: red;
}

:-ms-input-placeholder {
	color: red;
}*/


/*清除浮动*/

.clearfix:after {
    content: "\0020";
    display: block;
    height: 0;
    clear: both;
}

.clearfix {
    zoom: 1;
}