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

.icons {
	color:#ffffff;
	margin-right: 8px;
}

.icons.activev {
	color: red;
}

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

.number.clicked {
	color: red;
 /* 点击后的颜色 */
}
.message {
        display: none; /* 初始隐藏 */
        background-color:#d01e1e;
        padding: 10px;
        margin-top: 10px;
        border-radius: 5px;
        color: #fff;
        
    }
.show {
        display: block; /* 显示元素 */
    }