
.btn{
	width: 60%;
	max-width: 250px;
	height: auto;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #6654c1;
	color: #fff;
	text-decoration: none;
	padding: 1.3rem 0.35rem;
	border-radius: 10px;
	font-size: 1.25rem;
	transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	margin-bottom: 1rem;
}

.btn-sm{
	width: fit-content;
	max-width: 250px;
	height: auto;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #4a79bd;
	color: #fff;
	text-decoration: none;
	padding: .25rem 0.5rem;
	border-radius: 5px;
	font-size: .9rem;
	transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	margin-bottom: 1rem;
}

.imgBtn-sm{
	width:30px;
	height:30px;
	display: block;
	margin-left:.5rem;
}


/* 手機版 */
@media screen and (max-width:767px){
	.btn{
		width: 80%;
		max-width: 80%;
		height: auto;
	}
	
}