@charset "utf-8";
/* CSS Document */
.container{
	width:100%;
    height:100%;
    min-width:1280px;  
	 /*以下新增*/
    position:absolute;
    top:0;
    z-index: 1000;
}

.content{
	width:89%;
    min-height: calc(100vh - 0px);
    margin:0 auto;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction:column;
    -moz-flex-direction: column;
    -ms-flex-direction:column;
    height:100% !important;
	position: relative;/*新增样式！！！*/
}
.footer{
    width:100%;
    font-size: 14px;
    color:#000;
    margin:25px auto;
    height:20px;
	/*以下新增*/
    position:absolute;
    bottom:0;
}
.footer .right{
    width:790px;
    display: inline-block;
}
.footer .manger{
    margin-right:45px;
}
/*新增轮播css！！！原有的去掉*/
.swiper-container{
    height:calc(100% - 150px);
    width:100%;
}
@-moz-document url-prefix() {
    .swiper-container {width: 99%;}/*兼容火狐浏览器*/
}
.swiper-slide img{
    width:100%;
    height:100%;
}
/*结束*/
/*以下为滑动按钮的css如不需要可不加*/
.pagination {
    position: absolute;
    z-index: 10000;
    bottom: 10px;
    width: 100%;
    text-align: center;
}
.swiper-pagination-switch {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background: #555;
    margin: 0 5px;
    opacity: 0.8;
    border: 1px solid #fff;
}
.swiper-active-switch {
    background: #fff;
}
/*滑动按钮样式结束*/
