/*跳顶部*/

.top {
	float:right;
	position:fixed;
	bottom:20px;
	right:20px;
	z-index:999;
}
.top h2 {
	width:50px;
	height:50px;
	border-radius:50px;
	background:#00acef;
	float:right;
	position:relative;
	overflow:hidden;
	cursor:pointer;
	display:none;
}
.top h2:hover {
	background:#316bc7;
}
.top h2 b {
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	float:left;
	height:50px;
	background:url(../../images/j.png) center no-repeat;
	transition: all 0.3s ease-out 0s;
}

.top h2 i {
	position:absolute;
	left:0px;
	bottom:-50px;
	width:100%;
	float:left;
	height:50px;
	background:url(../../images/j.png) center no-repeat;
	transition: all 0.3s ease-out 0s;
}

.top h2:hover i {
	bottom:0px;
}

.top h2:hover b {
	top:-50px;
}

.gotop{
	width:46px;
	height:46px;
	background:url(../../images/gotop.png) center center no-repeat #f58220;
	position:fixed;
	bottom:0px;
	right:0px; 
	cursor:pointer;
}

/*qq*/

.right-pendant {
	position: fixed;
	top: calc(50% + 45px);
	transform: translateY(-50%);
	right:0px;
	z-index: 20;
}

.right-pendant ul {
	background-color: #fff;
	border-radius: 4px;
	 box-shadow: 0px 0px 29px 0px rgba(67, 112, 254, 0.57); 
}

.right-pendant ul li:first-child {
	border-radius: 4px 4px 0 0;
}

.right-pendant ul li:last-child {
	border-radius: 0 0 4px 4px;
}

.right-pendant ul li {
	position: relative;
	width: 83px;
	height: 70px;
	background-color: #2c6b76;
	color: #fff;
	text-align: center;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1px;
}

.right-pendant ul li:hover {
	background-color: #2c6b76;
}

.right-pendant ul li a {
	color: #fff;
}

.right-pendant ul li span.iconfont {
	font-size: 26px;
}

.right-pendant .inner {
	position: absolute;
	top: 50%;
	background-color: #2c6b76;
	right: 103px;
	transform: translateY(-50%)translateX(103px);
	transition: all 0.6s;
	z-index: -1;
	opacity: 0;
	box-shadow: 0px 11px 43px 0px rgba(0, 153, 231, 0.43);
}
.right-pendant .telMessage {
	border-radius: 6px 0 0 6px;
	width: 230px;
	height: 70px;
	line-height: 70px;
	font-size: 18px;
}

.right-pendant .telMessage .icon.iconfont {
	font-size: 26px;
	vertical-align: middle;
	padding-left: 18px;
}

.right-pendant .wechat {
	width: 166px;
	height: 182px;
	background-color: #2c6b76;
	padding: 15px;
	box-sizing: border-box;
	font-size: 16px;
	line-height: 1;
}

.right-pendant .wechat img {
	max-width: 100%;
	margin-bottom: 14px;
	height: 120px;
}

.right-pendant ul li:hover .inner {
	display: block;
	transform: translateX(0)translateY(-50%);
	opacity: 1;
}

