.soluBox .li {
	width: calc(50% - 10px);
	margin-right: 20px;
	margin-bottom: 20px;
}

.soluBox .li:nth-child(2n) {
	margin-right: 0;
}

.soluCon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all .3s;
}

.soluBox .li:hover .soluCon {
	animation: drowDawn .6s;
}

@keyframes drowDawn {
	0% {
		top: 50%
	}

	50% {
		top: 40%
	}

	100% {
		top: 50%
	}
}

.soluBox .li:hover .soluHide {
	display: block !important
}

.mBtn {
	width: 120px;
	height: 36px;
	line-height: 36px;
	background: #DA2735;
	margin: auto;
	border-radius: 3px;
}

.mLh25{
	line-height: 25px;
}