
	.partner{
		margin: 0 -10px;
	}
	.partner .item{
		float: left;
		width: 20%;
		padding: 0 10px;
		margin-bottom: 20px;
	}
	.partner .item .img{
		border: 1px solid #ddd;
		margin-bottom: 12px;
		text-align: center;
		position: relative;
	}
	.partner .item .img:after{
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
		bottom: 0;
		background: rgba(255, 0, 0, .5);
		opacity: 0;
		pointer-events: none;
		-webkit-transition: all .4s;
		-o-transition: all .4s;
		transition: all .4s;
	}
	.partner .item:hover .img:after{
		opacity: 1;
	}
	.partner .item .i-title h3 a{
		display: block;
		text-align: center;
	}



	@media screen and (max-width: 767px){
		.partner .item{
			width: 33.33%;
		}
	}
	@media screen and (max-width: 480px){
		.partner .item{
			width: 50%;
		}
	}