/*右侧悬浮菜单*/
		.piaofu{
			width: 50px;
			position: fixed;
			top: 50%;
			margin-top: -126px;
			background: #CD3E38;
			right: 0;
			border-radius: 5px 0 0 5px;
			z-index: 999;
			padding: 20px 0;
		}
		.piaofu ul{
			list-style: none;
			padding-left: 0;
		}
		.piaofu .icon li{
			width: 49px;
			height: 50px;
			background: url(../image/icon.png) no-repeat;
		}
		.piaofu .icon .up{
			background-position:-330px -120px ;
		}
		.piaofu .icon li.qq{
			background-position:-385px -73px ;
		}
		.piaofu .icon li.tel{
			background-position:-385px -160px ;
		}
		.piaofu .icon li.wx{
			background-position:-385px -120px ;
		}
		.piaofu .icon li.down{
			background-position:-330px -160px ;
		}
		.piaofu .info{
			top: 50%;
			height: 155px;
			position: absolute;
			right: 100%;
			background: #CD3E38;
			width: 0px;
			overflow: hidden;
			margin-top: -73.5px;
			transition:0.5s;
			border-radius:4px 0 0 4px ;
		}
		.piaofu .info.hover{
			width: 155px;
			
		}
		.piaofu .info li{
			width: 155px;
			color: #fff;
			text-align: center;
		}
		.piaofu .info li p{
			font-size: 1.1em;
			line-height: 2em;
			padding: 15px;
			text-align: left;
		}
		.piaofu .info li.qq p a{
			display: block;
			margin-top: 12px;
			width: 100px;
			height: 32px;
			line-height: 32px;
			color: #fff;
			font-size: 16px;   
			text-align: center;
			text-decoration: none;
			border: 1px solid #fff;
			border-radius: 5px;
		}
		.piaofu .info li.qq p a:hover{
			color: #FFFFFF;
			border: none;
			background: #00E0DB;
		}
		.piaofu .info li div.img{
			height: 100%;
			background: #DEFFF9;
			margin: 15px;
		}
		.piaofu .info li div.img img{
			width: 100%;
			height: 100%;
		}
		/*控制菜单的按钮*/
		.index_cy{
			width: 30px;
			height: 30px;
			background: url(../image/index_cy.png);
			position: fixed;
			right: 0;
			top: 50%;
			margin-top:120px;
			background-position: 62px 0;
			cursor: pointer;
		}
		.index_cy2{
			width: 30px;
			height: 30px;
			background: url(../image/index_cy.png);
			position: fixed;
			right: 0;
			top: 50%;
			margin-top: 140px;
			background-position: 30px 0;
			cursor: pointer;
		}
		
		/*自适应 当屏小于1050时隐藏*/
		@media screen and (max-width: 1050px) {
			.piaofu{
				display: none;
			}
			#btn{
				display: none;
			}
			
		}