@charset "UTF-8";

/*初始化css*/
body {
    font-family: 微软雅黑;
    color: #333;
}

*,
*:before,
*:after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
form {
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
}

input {
    margin: 0;
    padding: 0;
    outline: none;
}

li {
    list-style: none;
}

a,
ins {
    text-decoration: none;
}

*:focus {
    outline: none;
}

a {
    color: #333;
}

/*颜色根据通用信息列表的文字颜色决定*/
.more a {
    color: #999;
}

/*颜色根据通用更多的文字颜色决定*/
/* a:hover {
    color: #3163a4;
} */

/*颜色根据psd主色调决定，比如很多都是蓝色*/
.more a:hover {
    color: #3163a4;
}

/*颜色根据psd主色调决定，比如很多都是蓝色*/
.fl {
    float: left;
}

.fr {
    float: right;
}

.cf:after {
    display: block;
    content: '';
    height: 0;
    visibility: hidden;
    clear: both;
}

.cf {
    zoom: 1;
}

.hide {
    display: none;
}

.block {
    display: block;
}

textarea,
input {
    font-family: 微软雅黑;
}

textarea {
    resize: none;
}

/* 斜体样式取消 */
em,
i {
    font-style: normal;
}

/* 图片取消基线 */
img {
    vertical-align: middle;
}

/* 变成小手 */
button {
    cursor: pointer;
}

/* 双伪元素清除浮动  在需要的时候加入clearfix这个类名 */
.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

a:focus {
    outline: none;
}