.trends {
	width: 100%;
	background: linear-gradient(to bottom, #D8ECFF, #EBF5FF);
	padding-bottom: 20px;
}

.trends .trends-title {
	width: 100%;
	font-size: 36px;
	font-weight: bold;
	text-align: center;
	padding: 30px 0;
}


.trends .trends-content {
	width: 100%;
	display: flex;
	justify-content: center;
}

.trends .trends-content .trends-item {
	width: 25%;
	display: flex;
	flex-wrap: wrap;
	border-radius: 10px;
	overflow: hidden;
	background-color: #fff;
	margin: 0 10px;

	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
	position: relative;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform;
	transition-property: transform;

	&::before {
		pointer-events: none;
		position: absolute;
		z-index: -1;
		content: "";
		top: 100%;
		left: 5%;
		height: 10px;
		width: 90%;
		opacity: 0;
		background: -webkit-radial-gradient(center,
				ellipse,
				rgba(0, 0, 0, 0.35) 0%,
				rgba(0, 0, 0, 0) 80%);
		background: radial-gradient(ellipse at center,
				rgba(0, 0, 0, 0.35) 0%,
				rgba(0, 0, 0, 0) 80%);
		/* W3C */
		-webkit-transition-duration: 0.3s;
		transition-duration: 0.3s;
		-webkit-transition-property: transform, opacity;
		transition-property: transform, opacity;
	}
}



.trends .trends-content .trends-item:hover,
.trends .trends-content .trends-item:focus,
.trends .trends-content .trends-item:active {
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);

	&::before {
		opacity: 1;
		-webkit-transform: translateY(10px);
		transform: translateY(10px);
	}
}




.trends .trends-content .trends-item img {
	width: 100%;
  	height: 200px;
}

.trends .trends-content .trends-item  .trends-box{
	display: flex;
  	width: 100%
}

.trends .trends-content .trends-item .trends-icon-one {
	background-color: #E5E9FF;
	color: #274AFF;
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 12px;
	margin-left: 10px;
  	text-align: center;
}

.trends .trends-content .trends-item .trends-icon-two {
	background-color: #FFF3E0;
	color: #FD9900;
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 12px;
	margin-left: 10px;
  	text-align: center;
}

.trends .trends-content .trends-item .trends-icon-three {
	background-color: #E0F8F1;
	color: #26CE99;
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 12px;
	margin-left: 10px;
  	text-align: center;
}

.trends .trends-content .trends-item .trends-icon-four {
	background-color: #EAE5FF;
	color: #533AFF;
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 12px;
	margin-left: 10px;
  	text-align: center;
}

.trends .trends-content .trends-item .trends-item-title {
	width: 100%;
	color: #000;
	font-size: 14px;
	font-weight: bold;
	padding: 10px;
}

.trends .trends-content .trends-item .trends-item-text {
	width: 100%;
	color: #888;
	font-size: 14px;
	padding: 0 10px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	/* 显示的行数 */
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.trends .trends-content .trends-item .trends-item-time {
	width: 100%;
	color: #888;
	font-size: 12px;
	padding: 10px 10px 20px 10px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	/* 显示的行数 */
	-webkit-box-orient: vertical;
	overflow: hidden;
}