/* 初始化 */
body,
ul,
ol,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
p,
input,
select,
textarea,
form,
fieldset,
legend,
figure,
figcaption {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
}

dl,
ol,
ul {
    margin-bottom: 0;
}

input,
select,
textarea {
    outline: none;
    background: none;
}

body {
    font-family: "微软雅黑";
}

textarea {
    resize: none;
}

a,
u {
    text-decoration: none;
}

b,
strong {
    font-weight: normal;
}

i,
em {
    font-style: normal;
}

ul,
ol,
li {
    list-style: none;
}

img {
    border: none;
}

/* display:inline-block (不能居中时添加 margin:0 auto;) */
.clearfix:after {
    content: " ";
    display: block;
    height: 0;
    clear: both;
    overflow: hidden;
    visibility: hidden;
}


/* 去掉a的轮廓 */
a {
    outline: none;
}

/* 清除浮动 */
.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

/* 选择器 */
::selection {
    background-color: #669900;
}

::-moz-selection {
    background-color: #669900;
}

/* 允许长单词换行到下一行 */
p {
    word-wrap: break-word
}

/* 英文自动换行 直接断句 */
p {
    word-break: break-all
}

a:hover {
    color: inherit;
    text-decoration: none;
}