html body {
	width: 100%;
	margin: 0;
	padding: 0;
}

.app {
	width: 100%;
	margin: 0;
	padding: 0;
	background-color: #E3F1FF;
  	padding-top: 80px;
  	position: relative;
}

.trends-tabs {
	width: 400px;
	padding: 0 20px;
	height: 50px;
	margin: 20px auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #C6E2FF;
	border-radius: 5px;
}

.trends-tabs .trends-item {
	padding: 5px 20px;
	color: #666;
	text-align: center;
	border-radius: 5px;
	cursor: pointer;

}

.trends-tabs .trends-item a{
	text-decoration: none;
  	color: #333;
}

.trends-active {
	padding: 5px 20px;
	color: #274AFF;
	text-align: center;
	border-radius: 5px;
	background-color: #fff;
	font-weight: bold;
}

.trends {
	padding: 0 50px;
	display: grid;
	grid-template-columns: 31% 31% 31%;
	justify-items: center;
	align-items: center;
	justify-content: space-around;
	align-content: space-around;
	grid-row-gap: 20px;
	padding-bottom: 30px;
}

.trends .trends-item {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	background-color: #fff;
	border-radius: 15px;
	overflow: hidden;
}

.trends .trends-item img {
	width: 100%;
}

.trends-item .trends-title {
	padding: 0 10px;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	/* 显示的行数 */
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 16px;
	color: #000;
	font-weight: bold;
	margin: 10px 0 5px 0;
}

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

.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-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-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-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-item .trends-text {
	width: 100%;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	/* 显示的行数 */
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 12px;
	color: #666;
	margin: 5px 10px 5px 10px;
}

.trends-item .trends-time {
	font-size: 12px;
	color: #666;
	padding: 10px 10px 20px 10px;
}