@charset "utf-8";
/*foot*/
.foot{
	width:100%;
	padding: 40px 0;
	overflow: hidden;
	background: #000;
}
	.foot .index{
		width: 1180px;
		overflow: hidden;
		margin: 0 auto;
	}				
		/*text*/
		.foot .index .text{
			float: left;
		}	
			/*p*/		
			.foot .index .text p{
				color: #aeaeae;
				line-height: 25px; 
				font-size: 12px;
			}
				.foot .index .text p b{
					display: block;
					color: #fff;
					font-weight: normal;
					font-size: 16px;
					margin-bottom: 10px;
				}
		/*qrCode*/
		.foot .index .qrCode{
			float: right;
		}
@media only screen and (max-width: 640px) {
	.foot .index{
		width:92%;		
	}
		/*text*/
		.foot .index .text{
			float: none;
		}
		/*qrCode*/
		.foot .index .qrCode{
			display: none;
		}
			/*.foot .index .qrCode img{
				display: block;
				width: 100%;
			}		*/
}
/*返回顶部代码 开始*/
/*backToTop*/
.backToTop {
	width: 40px;
    height: 40px;
    display: block;
    background: url(../images/btn-group-up.png) no-repeat 0 0;
    background-size: 40px;
    position: fixed;
    right: 4%;
    bottom: 10px;
    z-index: 5;
}
@media only screen and (max-width: 640px) {
	.backToTop{
		display: none;	
	}
}