@charset "UTF-8";


.abox {
	position: relative;
}

.abox dl {
	position: absolute;
	top: 0;
	margin: 0;
	margin-left: 20px;
	padding: 16px 24px;
	box-sizing: border-box;
	color: #fff;
	background: rgba(205,92,92,.9);
}

.abox {
	overflow: hidden;
}

.abox dl {
	opacity: 0;
	transform: translateY(100%);
	transition: opacity .6s, transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.abox:hover dl {
	opacity: 1;
	transform: none;
}

