body,
ol,
ul,
h1,
h2,
h3,
h4,
h5,
h6,
p,
th,
td,
dl,
dd,
form,
fieldset,
legend,
input,
textarea,
select {
    margin: 0;
    padding: 0;
}

body {
    font: 14px Verdana, Microsoft YaHei, Simsun;
    background: #fff;
    /* 安卓和iphone在横屏模式的时候，默认会放大文字。
    -webkit-text-size-adjust: 100%|none;  关闭字体大小自动调整功能*/
    -webkit-text-size-adjust: 100%;
    overflow-y: overlay;
}

a {
    color: #000;
    text-decoration: none;
}

em {
    font-style: normal;
}

li {
    list-style: none;
}

img {
    border: 0;
    vertical-align: middle;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

p {
    /* 允许长单词或数字进行这行显示 */
    word-wrap: break-word;
}

/* 清除浮动 */
.clearfix::after {
    content: '';
    display: block;
    height: 0;
    visibility: hidden;
    clear: both;
}

.clearfix {
    /* 兼容ie6 7浏览器 */
    *zoom: 1;
}