/*
 * 隐藏微擎底部
 */
.col{
	padding-left:0;
}
.col:last-child{
	padding-right:0;
}
/*
 * 底部导航
 */
#footer.jumbotron{
	margin-bottom:0;
}

.top ul.loginbar {
    margin: 0;
    padding: 0;
    z-index: 9999;
    position: relative;
}
#contacts{
	padding:5px 0;
}
	
#contacts a:hover{
	cursor: pointer;
	text-decoration: none;
}
@media (min-width:992px ) {
	#contacts .container{
		margin-top:50px;
		margin-bottom:50px;
	}
}
@media (max-width:991px ) {
	#contacts .container{
		margin-top:10px;
		margin-bottom:10px;
	}
}

#contact01 .col-md-2.col-xs-6>a>img{
	width:100%;
}


.container h2 span {
	margin:20px 0;
    display: block;     /*设置为块级元素会独占一行形成上下居中的效果*/
    color: #999;
    position: relative;   /*定位横线（当横线的父元素）*/
    font-size: initial;
}
.container h2 span:before, .container h2 span:after {
	content: '';                 /*CSS伪类用法*/
    position: absolute;         /*定位背景横线的位置*/
    top: 52%;
    background: #999;       /*宽和高做出来的背景横线*/
    width: 9%;
    height: 1px;
}
.container h2 span:before{
	left: 30%;        /*调整背景横线的左右距离*/
}
.container h2 span:after {
	right: 30%;
}