.item {
	display: flex;
	justify-content: space-evenly;
	margin: 140px auto;
}

.item li {
	width: 365px;
	box-sizing: border-box;
	padding: 80px 70px 70px;
	background: url(../images/itemsBj.png) center no-repeat;
	background-size: 100% 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.item li:nth-child(2){
	animation-delay:0.5s;
}

.item h3 {
	width: 100%;
	font-family: 'JiangChengLvDongSong';
	font-size: 34px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 2px;
	color: #393b3a;
}

.item h5 {
	width: 100%;
	font-family: 'SourceHanSerifTC-Bold';
	font-size: 18px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 30px;
	letter-spacing: 0px;
	color: #393b3a;
	margin: 30px 0 15px;
}

.item p {
	width: 100%;
	font-family: 'SourceHanSerifTC-Bold';
	font-size: 12px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 26px;
	letter-spacing: 0px;
	color: #666666;
	margin-bottom: 40px;
}

.item a {
	display: block;
	width: 100px;
	height: 30px;
	background-color: #dc1e10;
	border-radius: 15px;
	font-family: 'SourceHanSerifCN-Regular';
	font-size: 16px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 30px;
	letter-spacing: 0px;
	color: #ffffff;
	text-align: center;
}


@media screen and (max-width:767px) {
	
	.item{
		flex-wrap: wrap;
		    margin: 0px auto 100px;
	}
	
	.item li{
		width: 100%;
	}
	
}