/*初始化CSS*/
@charset "UTF-8";
*{
    margin: 0;
    padding: 0;
    color: #6c6c6c;
    font-size: 14px;
    text-decoration: none;
    box-sizing:border-box;
    -moz-box-sizing:border-box; /* Firefox */
    -webkit-box-sizing:border-box; /* Safari、chrome */
    -ms-box-sizing:border-box; /* IE */
    -o-box-sizing:border-box; /* Opera */
     font-family: "Microsoft YaHei", Helvetica, STHeiTi, sans-serif; 
     outline: none;
     z-index: 1;
}
.clearfix:after, .clearfix:before {
     content: "\20"; 
     display: block; 
     height: 0; 
     clear: both; 
}
ul,ol{
     list-style: none; 
}
h1,h2,h3,h4,h5,h6{
    font-size: 14px;
    font-weight: normal;
}
.container{
    width: 86.875%;
    margin: auto;
}
@media (max-width:1024px){
    .container{
        width: 92%;
    }
}