.section-item,.online-enroll{
	float: left;
	width: 380px;
	height: 310px;
	margin: 0 10px 30px;
	margin-bottom: 30px;
	background-color: #fff;
	border-radius: 5px;
	overflow: hidden;
	-webkit-transition: box-shadow .3s linear;
    -moz-transition: box-shadow .3s linear;
    -o-transition: box-shadow .3s linear;
    transition: box-shadow .3s linear;
}
.nd-section-item{
	box-shadow: 0 0 0 1px rgba(0,0,0,.1);
}
.product{
	width: 100%;
	height: 200px;
	overflow: hidden;
}
.product img{
	display: block;
	width: 100%;
	height: 100%;
	-webkit-transition: transform .3s linear;
    -moz-transition: transform .3s linear;
    -o-transition: transform .3s linear;
    transition: transform .3s linear;
}
.product-base-introduce{
	padding: 10px 25px 15px;
}
.product-title{
	height: 25px;
	line-height: 25px;
	font-size: 16px;
	color: #222;
	font-weight: normal;
	position: relative;
	-webkit-transition: color .3s linear;
    -moz-transition: color .3s linear;
    -o-transition: color .3s linear;
    transition: color .3s linear;
}
.product-title:after{
	display: block;
	content: "";
	width: 14px;
	height: 2px;
	background-color: #474747;
	position: absolute;
	top: 33px;
	left: 0;
	-webkit-transition: background-color .3s linear;
    -moz-transition: background-color .3s linear;
    -o-transition: background-color .3s linear;
    transition: background-color .3s linear;
}
.product-main-idea{
	font-size: 14px;
	color: #474747;
	margin-top: 20px;
	height: 40px;
	line-height: 20px;
	-webkit-transition: color .3s linear;
    -moz-transition: color .3s linear;
    -o-transition: color .3s linear;
    transition: color .3s linear;
}
.section-item:hover{
	box-shadow: 0 0 15px 2px rgba(0,0,0,.1);
}
.section-item:hover img{
	transform: scale(1.1,1.1);
}
.section-item:hover .product-title{
	color: #cb0000;
}
.section-item:hover .product-title:after{
	background-color: #222;
}
.section-item:hover .product-main-idea{
	color: #222;
}