.like-count {
	font-size: 14px;
}

.icons {

	margin-right: 8px;
}

.icons.activev {
	color: red;
}

.number {
	color: #344a62;
 /* 初始颜色 */
	cursor: pointer;
	transition: color 0.3s ease;
 /* 平滑过渡效果 */
}

.number.clicked {
	color: red;
 /* 点击后的颜色 */
}