.list .item {
	margin-bottom: .3rem;
	position: relative;
	border-radius: 0.1rem;
	overflow: hidden;
}
.list .item:last-child {
	margin-bottom: 0;
}
.list .item .content a {
	color: #fff;
	height: 1.8rem;
	display: flex;
	align-items: center;
	position: relative;
}
.list .item:nth-child(odd) .content {
	background-color: #5b677c;
}
.list .item:nth-child(even) .content {
	background-color: #df9130;
}
.list .item .content .left {
	width: 1.9rem;
	height: 1.8rem;
}
.list .item .content .text {
	flex: 1;
	padding: 0 1rem 0 0;
	overflow: hidden;
}
.list .item .content .text h3 {
	font-size: .34rem;
	margin-bottom: .1rem;
	line-height: 1.4;
}
.list .item .content .text h3 a {
	color: #fff;
}
.list .item .content .text p {
	font-size: .26rem;
	line-height: 1.4;
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.list .item .content .jump {
	position: absolute;
	right: .4rem;
	top: 50%;
	width: .5rem;
	height: .5rem;
	background: url(../../images/icon-jump.png) no-repeat;
	background-size: .5rem auto;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}