/* 设置网站整体默认的字体和颜色 */
body{
    font:14px/1 微软雅黑;
    color:#333;
    background-color: #fff;
}

/* 设置网站a标签的默认效果 */
a{
    font:14px/1 微软雅黑;
    color:#333;
    text-decoration: none;

}

a:hover{
    font:14px/1 微软雅黑;
    color:#006600;
    text-decoration: none;
}

/* 设置网站的PC版宽度，居中 */
.w{
    width:1200px;
    margin:0 auto;
}

.w100{
    width:100px;
}

.h100{
    height:100px;
}

.w1920{
    width:1920px;
    margin:0 auto;
}

/* 清除高度塌陷 */
.clearfix::before,
.clearfix::after{
    content:'';
    display: table;
    clear: both;
}

/* 清除高度塌陷，兼容IE6 */
.clearfix{
    zoom:1;
}

