.pro{
	margin-bottom: 35px;
	display: block;
	overflow: hidden;
	border: 1px solid #ccc;
	border-radius: 15px;
	-moz-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    -webkit-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
}
.pro p{
	color: #999;
	position: relative;
	z-index: 5;
	padding: 10px 0;
	text-align: center;
	font-size: 16px;
	border-top: 1px solid #ccc;
	-moz-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    -webkit-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
}
.pro img{
	-moz-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    -webkit-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
}
.pro:hover{
	border: 1px solid #F0AD4E;
}
.pro:hover p{
	color: #333;
	border-top: 1px solid #F0AD4E;
}
.pro:hover img{
	transform: scale(1.1,1.1);
	-webkit-transform: scale(1.1,1.1);
	-moz-transform: scale(1.1,1.1);
	-moz-transform: scale(1.1,1.1);
}
