/*---------------------------------------------------------------------- /
通用配置-start
----------------------------------------------------------------------- */
/* 设置字体 */
body {
    font-family: '微软雅黑';
}

/* 初始化 */
* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;;
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
}

/* 清楚li 默认样式 */
ul>li {
    list-style: none;
    padding-top: 3px;
}

/* 清除浮动 */
.clearfix:before, .clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

/*---------------------------------------------------------------------- /
通用配置-结束
----------------------------------------------------------------------- */