@charset "utf-8";

#climb {
	width: 56px;
	height: 227px;
	position: fixed;
	z-index: 9;
	right: -56px;
	top: 50%;
	margin-top: -120px;
	transition: right .3s ease;
}

#climb>a {
	display: block;
	width: 100%;
	height: 56px;
	line-height: 56px;
	background: rgba(0, 0, 0, .46);
	margin-bottom: 1px;
	color: #fff;
	text-align: center;
	transition: all .2s;
}

#climb>a>i {
	font-size: 24px;
}

#climb>a:hover {
	background: rgba(18, 104, 154, .8);
}

#climb.active {
	right: 1px;
}

#climb .tel {
	position: relative;
	transform: translateX(0);
	transition: all .4s ease;
}

#climb .tel>p {
	position: absolute;
	width: 150px;
	height: 56px;
	background: #007cc3;
	color: #fff;
	left: 57px;
	top: 0;
	font-size: 14px;
}

#climb .tel:hover {
	transform: translateX(-150px);
}

#climb .qr {
	position: relative;
}

#climb .qr>p {
	position: absolute;
	width: 0;
	height: 0;
	display: block;
	left: -1px;
	top: 0;
	background: #fff;
	padding: 0px;
	box-sizing: border-box;
	transition: all .3s;
	overflow: hidden;
}

#climb .qr:hover>p {
	
	width: 170px;
	height: 170px;
	padding: 20px;
	left: -171px;
	top: -56px;
}
#climb .qr>p img{
	width: auto;
}
@media (max-width:1080px) {
	#climb {
		display: none;
	}
}
