.slide{
	position: fixed;
	top: 50%;
	transform: translateY(-40%);
	right: 30px;
	z-index: 99;
}
.slide_list{
	width: 70px;
	/* height: 353px; */
	height: 420px;
	background: #FFFFFF;
	box-shadow: 0px 3px 6px 1px rgba(30,80,174,0.16);
	border-radius: 38px 38px 38px 38px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	padding: 10px;
}
.slide_item{
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	font-weight: 400;
	color: #777777;
	padding-bottom: 6px;
	border-bottom: 1px solid #e6e6e6;
	margin-bottom: 6px;
	position: relative;
}
.slide_item span{
	font-size: 12px !important;
}
.slide_item:last-child{
	margin-bottom: 6px;
	border: none;
}
.slide_item .slide_item_img{
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: transparent;
	overflow: hidden;
}
.slide_item .slide_item_img img{
	width: 100%;
	height: 100%;
}
.go_top{
	display: inline-block;
	width: 70px;
	height: 0px;
	border-radius: 50%;
	margin-top: 12px;
	box-shadow: 0px 3px 6px 1px rgba(30,80,174,0.16);
	cursor: pointer;
}
.go_top img{
	width: 100%;
	height: 100%;
}
.show_phone_box{
	width: 150px;
	height: 124px;
	background-size: 100%;
	position: absolute;
	left: -180px;
	top: -40px;
	display: none;
}
.show_box_cur .show_phone_box,.show_box_cur .show_wx_box{
	display: block !important;
}
.show_phone_box_content{
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	padding: 14px;
	background-color: #FFFFFF;
	box-shadow: 0px 3px 6px 1px rgba(30,80,174,0.16);
	border-radius: 6px 6px 6px 6px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
}
.show_phone_box_content::after{
	content: '';
	width: 0;
	height: 0;
	border: 10px solid transparent;
	border-left-color: #FFFFFF;
	position: absolute;
	right: -20px;
	top: 50%;
	transform: translateY(-50%);
}
.show_wx_box{
	width: 150px;
	height: 150px;
	background-size: 100%;
	position: absolute;
	left: -180px;
	top: -40px;
	display: none;
}
.show_wx_box_content{
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	padding: 14px;
	background-color: #FFFFFF;
	box-shadow: 0px 3px 6px 1px rgba(30,80,174,0.16);
	border-radius: 6px 6px 6px 6px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
}
.show_wx_box_content img{
	width: 100px;
	height: 100px;
	margin-bottom: 5px;
}
.show_wx_box_content::after{
	content: '';
	width: 0;
	height: 0;
	border: 10px solid transparent;
	border-left-color: #FFFFFF;
	position: absolute;
	right: -20px;
	top: 50%;
	transform: translateY(-50%);
}
.show_wx_box_content span{
	font-weight: 400;
	font-size: 12px;
	color: #333333;
}