/*
@date:2016-0725;
@author:hejf;
@二维码展示；
*/
.show_qr{
	position:fixed;
	right:5px;
	bottom:300px;
	width:114px;
	height:124px;
	background:url(../images/show_qr.png) no-repeat;
	text-align:center;
	z-index:9999;
	cursor:pointer;
}
.show_qr span{
	display:inline-block;
	margin-top:94px;
	font-family:Microsoft Yahei;
	font-size:16px;
	color:#fff;
}
.qr_code{
	display:none;
	position:fixed;
	right:150px;
	bottom:231px;
	padding:10px;
	border:solid 1px #253041;
	background:#fff;
	z-index:9999;
}
.qr_code img{
	width:170px;
	height:170px;
}
.show_qr:hover + .qr_code{
	display:block;
}
@media (max-width: 768px){
	.show_qr,.qr_code{
		display:none;
	}
} 