.banner {
	width: 65%;
	padding: 30px 15%;
	height: auto;
	margin: auto;
}

.b-box {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;

}



.b-inner-box {
	display: block;
	width: 31%;
	height: auto;
	margin-bottom: 20px;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	position: relative;
	transition: all linear 0.2s;
	background-color: transparent;
	border-radius: 4px;
	overflow: hidden;
}


.b-inner-box img {
	width: 100%;
	height: 200px;
	display: block;
	transition: all linear 0.2s;
	border-radius: 5px 5px 0 0;
}

.b-inner-box2 img {
	height: 180px;
}


.b-inner-box:hover img {
	transform: scale(1.02);
}



.bi-text {
	width: 94%;
	padding: 8px 3%;
	font-size: 18px;
	line-height: 1.9;
	text-align: center;
	color: #985E45;
	font-weight: 600;
	/* background: rgba(49, 58, 62, .75); */
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	border-radius: 0 0 5px 5px;
	/* position: absolute;
	bottom: 0px; */

}

@media (max-width:750px) {
	.banner {
		width: 95%;
		padding: 20px 0;
		margin: auto;
	}

	.b-inner-box {
		width: 47%;
	}


	.b-inner-box img {
		height: 100px;
	}

	.b-inner-box2 img {
		height: 100px;
	}

	.bi-text {
		width: 96%;
		font-size: 15px;
		padding: 2px 2%;
	}

}