.bounce-enter-active {
	animation: left .5s ease-out;
}

.bounce-leave-active {
	animation: left .5s ease-out;
}
.userImg-enter-active {
	animation: userimg .5s ease-out;
}

.userImg-leave-active {
	animation: userimgnone 0s ease-out;
}
@keyframes left {
	0% {
		width: 100%;
	}
	100% {
		width: 0;
	}
}
@keyframes userimg {
	0% {
		margin-top: 30px;
		opacity: 0;
	}
	100% {
		opacity: 1;
		margin-top: 0;
	}
}
@keyframes userimgnone {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}