.active-list {
  margin: 28px 0 0 30px;
	height: 224px;
	overflow: hidden;
	opacity: 0;
}

.active-list li {
	width: 237px;
	float: left;
}
.active-list li:nth-child(1),
.active-list li:nth-child(2){
	margin: 0 17px 0 0;
}
.active-list li a {
	width: 100%;
	display: block;
	position: relative;

}

.active-list li a span {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	position: absolute;
	top: 0;
	left: 0;
	font-size: 14px;
	width: 83px;
	height: 20px;
	color: #ffffff;
	background: #000000;
	line-height: 20px;
	padding-left: 8px;
	box-sizing: border-box;
}

.active-list li a span i:nth-child(1) {
	width: 4px;
	height: 4px;
	background: #ff0000;
	margin-right: 6px;
}

.active-list li.end a span i:nth-child(1) {
	background: #79c211;
}

.active-list li a p {
	width: 100%;
	font-size: 14px;
	color: #373737;
	white-space: normal;
	line-height: 20px;
	margin-top: 6px;
	margin-bottom: 4px;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	/* 几行后显示不开省略 */
	-webkit-line-clamp: 2;
	height: 40px;
}

.active-list li a:hover p {
	color: #f10000;
}

.active-list li .txt {
	width: 100%;
	display: flex;
	height: 28px;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

.active-list li .time {
	font-size: 12px;
	color: #666666;
}

.active-list li .act-btn {
	font-size: 14px;
	color: #ffffff;
	width: 70px;
	height: 28px;
	background: #ec2e53;
	border-radius: 28px;
	line-height: 28px;
	text-align: center;
	cursor: pointer;
	position: absolute;
	right: 0;
	bottom: 0;
}


.active-list li img {
	width: 100%;
}

.active-list li.end .act-btn {
	background: #a1a1a1;
	transition: all 0.5s;
}

.active-list li:hover .act-btn {
	background: #c81135;
	transition: all 0.5s;
}
.active-list li.end:hover .act-btn {
	background: #a1a1a1;
	transition: all 0.5s;
}