	section {
	padding-bottom: 60px;
}

.bg_gray {
	background: #fafafa;
}

.allTitle {
	margin: 70px 0 35px 0;
}

.allTitle h3 {
	font-size: 32px;
	color: #597a36;
}

.allTitle p {
	font-size: 14px;
	color: #999999;
	text-transform: uppercase;
	padding-top: 2px;
}

.Abtn {
	font-size: 18px;
	color: #999;
	margin-top: 20px;
	display: inline-block;
}

.Abtn:hover {
	color: #597a36;
}

.Abtn:hover span {
	margin-left: 15px;
}

.overflow {
	overflow: hidden;
}

a {
	display: inline-block;
}

.tHidden {
	word-break: keep-all;
	/* 不换行 */
	white-space: nowrap;
	/* 不换行 */
	overflow: hidden;
	/* 内容超出宽度时隐藏超出部分的内容 */
	text-overflow: ellipsis;
	/* 当对象内文本溢出时显示省略标记(...) ；需与overflow:hidden;一起使用。*/
}
.tHidden1 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}
.tHidden2 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.tHidden3 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}


/*动画*/

.animate1 img,
.animate2 {
	transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	/* IE 9 */
	-o-transition: all 0.3s ease 0s;
	/* Opera */
	-moz-transition: all 0.3s ease 0s;
	/* Firefox */
	-webkit-transition: all 0.3s ease 0s;
	/* Safari 和 Chrome */
}

.animate1 img{
	width: 100px;
	border-radius: 50%;
}

.animate3 {
	transition: all 0.6s ease 0s;
	-ms-transition: all 0.6s ease 0s;
	/* IE 9 */
	-o-transition: all 0.6s ease 0s;
	/* Opera */
	-moz-transition: all 0.6s ease 0s;
	/* Firefox */
	-webkit-transition: all 0.6s ease 0s;
	/* Safari 和 Chrome */
}

.animate1:hover img {
	transform: scale(1.3, 1.3);
	-ms-transform: all 1s scale(1.3, 1.3);
	/* IE 9 */
	-webkit-transform: scale(1.3, 1.3);
	/* Safari 和 Chrome */
	-o-transform: scale(1.3, 1.3);
	/* Opera */
	-moz-transform: scale(1.3, 1.3);
	/* Firefox */
}

@media screen and (max-width: 768px) {
	.allTitle h3 {
		font-size: 18px;
	}
	.allTitle p {
		font-size: 10px;
	}
	.allTitle {
		margin: 28px 0 20px 0;
	}
	.Abtn {
		font-size: 12px;
		margin-top: 30px;
	}
}