.resources-box {}
.resources-box ul {}
.resources-box ul li {
	float: left;
    width: 24%;
    margin: 0.5%;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.resources-box ul li img {
	transition:all 0.5s;
}
.resources-box ul li .word {
	position: absolute;
    left: 0;
	bottom: 0;
    width: 100%;
    height: 50%;
   	background-image: linear-gradient(to top,rgba(0,0,0,0.8) 0,rgba(0,0,0,0) 100%);
    padding: 20% 10% 10% 10%;
	transition:height 0.5s;
}
.resources-box ul li .word h3 {
	font-size: 24px;
    color: #fff;
    font-weight: bold;
    margin: 5% 0 8% 0;
}
.resources-box ul li .word p {
	font-size: 14px;
    color: #fff;
    line-height: 1.8;
    padding-bottom: 2%;
}
/*hover*/
.resources-box ul li:hover img {
	transition: all 0.6s ease;
    filter: grayscale(0%);
	transform: scale(1.02);
}
.resources-box ul li:hover .word {
    height: 55%;
   	background-image: linear-gradient(to top,rgba(0,0,0,0.8) 0,rgba(0,0,0,0) 100%);
}
@media screen and (max-width:1024px){
.resources-box {}
.resources-box ul {}
.resources-box ul li {
    width: 48%;
    margin: 1%;
}
.resources-box ul li img {}
.resources-box ul li .word {
    width: 100%;
    height: 100%;
   	background-image: linear-gradient(to top,rgba(0,0,0,0.8) 0,rgba(0,0,0,0) 100%);
    padding: 35% 10% 10% 10%;
}
.resources-box ul li .word h3 {
	font-size: 18px;
    margin: 5% 0 8% 0;
}
.resources-box ul li .word p {
	font-size: 14px;
    line-height: 1.6;
    padding-bottom: 2%;
}
.resources-box ul li:hover .word {
    height: 100%;
}
}