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