/* 公共样式*/

.fl {
    float: left;
}

.fr {
    float: right;
}

.clearfix:after{/*伪元素是行内元素 正常浏览器清除浮动方法*/
    content: "";
    display: block;
    height: 0;
    clear:both;
    font-size: 0;
    visibility: hidden;
}

.clearfix{
	*zoom: 1;/*ie6清除浮动的方式 *号只有IE6-IE7执行，其他浏览器不执行*/
}
#container{
    display: flex;
    flex-direction:column;
    background: #fff; 
    width: 100%;
}
#container .setheader{
    position: fixed;
    width: 100%;
    background-color: #0e69c6;
    background-image:url(../img/higher.png);
    background-repeat: no-repeat;
    height: 150px;
    z-index: 999;
}
#container .setFoorter{
    position: fixed;
    background: #f7f7f7;
    border-top: 1px solid #b5b5b5;
    width: 100%;
    height:98px;
    color: #585858;
}
#container .headernav,#container .footernav{
    text-align: center;
    display: block;
}
#container .setheader{
    top: 0;
}
/* #container .setContain{
    flex: 1;
    overflow: scroll;
} */
#container .setFoorter{
    bottom: 0;
}