/* 放大 */
.amplification img {
	transition: 2s;
}

.amplification:hover img {
	transform: scale(1.1);
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
	transition: 2s;
}

/* 按钮高光 */
/* @keyframes sheen {
	0% {
		transform: skewY(-45deg) translateX(0);
	}

	100% {
		transform: skewY(-45deg) translateX(12.5em);
	}
}
 */


.light_button {
	/* padding: 0.75em 2em; */
	text-align: center;
	text-decoration: none;
	color: #2194E0;
	/* border: 2px solid #2194E0; */
	/* font-size: 24px; */
	display: inline-block;
	/* border-radius: 0.3em; */
	transition: all 0.2s ease-in-out;
	position: relative;
	overflow: hidden;
	line-height: 2rem;
}

.light_button:before {
	content: "";
	background-color: rgba(255, 255, 255, 0.5);
	height: 100%;
	width: 3em;
	display: block;
	position: absolute;
	top: 0;
	left: -4.5em;
	transform: skewX(-45deg) translateX(0);
	transition: none;
}

.light_button:hover {
	/* background-color: #2194E0; */
	color: #fff;
	border-bottom: 4px solid darken(#2194E0, 10%);
}

.light_button:hover:before {
	transform: skewX(-45deg) translateX(13.5em);
	transition: all 0.5s ease-in-out;
}
