.list {
	margin-bottom: 1.7708vw;
}

.list .item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 0.5208vw 0 2.0833vw;
	margin-bottom: 1.0416vw;
}

@media screen and (max-width: 750px) {
	.list .item {
		padding: 4vw 0;
		margin-bottom: 0;
	}
}

.list .item::after {
	position: absolute;
	content: "";
	top: 2.2916vw;
	right: 1.875vw;
	width: 2.1875vw;
	height: 0.7812vw;
	background: url("../img/suggest-arr.png") no-repeat;
	background-size: 100% 100%;
	opacity: 0;
	transition: 0.2s all ease-in;
}

.list .item::before {
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	width: 100%;
	height: 0.052vw;
	background: #cdcdcd;
	transition: 0.2s all ease-in;
}

@media screen and (min-width: 751px) {
	.list .item:hover::after {
		opacity: 1;
	}

	.list .item:hover::before {
		background: #0e0e0e;
	}
}

.list .item:last-child {
	margin-bottom: 0;
}

.list .item .pic {
	position: relative;
	width: 22.3958vw;
	height: 11.4583vw;
	margin-right: 3.125vw;
	border-radius: 0.3125vw;
	flex-shrink: 0;
	border-radius: 0.3125vw;
	overflow: hidden;
}

@media screen and (max-width: 750px) {
	.list .item .pic {
		width: 44vw;
		height: 22vw;
		border-radius: 1.0666vw;
	}
}

.list .item .pic img {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 100%;
}

.list .item .content {
	width: 0;
	padding-right: 5.2083vw;
	flex: 1;
}

.list .item .content .title {
	font-size: 1.0416vw;
	line-height: 1.2;
	color: #262728;
	margin-bottom: 0.5208vw;
	font-weight: bold;
	height: 2.6vw;
}

@media screen and (max-width: 750px) {
	.list .item .content .title {
		font-size: 3.7333vw;
		margin-bottom: 2.6666vw;
	}
}

@media screen and (max-width: 750px) {
	.list .item .content .title {
		height: 8.95992vw;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		/* 显示的行数 */
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
	}
}

.list .item .content .date {
	font-size: 0.8333vw;
	line-height: 1.5;
	color: #808080;
	margin-bottom: 1.3541vw;
	font-weight: bold;
}

@media screen and (max-width: 750px) {
	.list .item .content .date {
		font-size: 3.2vw;
		line-height: 1.5;
		margin-bottom: 0;
	}
}

.list .item .content .int {
	font-size: 0.7291vw;
	line-height: 1.5;
	color: #848585;
	margin-bottom: 0;
	font-weight: normal;
	height: 3.28095vw;
}

@media screen and (max-width: 750px) {
	.list .item .content .int {
		font-size: 3.2vw;
	}
}

@media screen and (max-width: 750px) {
	.list .item .content .int {
		height: 14.4vw;
		display: none;
	}
}