.share {
	margin-bottom: 0;
}
.share li {
	padding: 0 20px;
	font-size: 20px;
	line-height: 50px;
	color: #707070;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.share li .left {
	width: 80%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
/* 手机端 */
@media screen and (min-width:350px) and (max-width:768px) {
	.share li {
		padding: 0 0;
		font-size: 4vw;
		line-height: 15vw;
	}
	
	.share li .left {
		width: 60%;
	}
}