.box{
    text-align: center;
    overflow: hidden;
    box-shadow: 0 0 3px rgba(0,0,0,0.3);
    position: relative;
	 margin-bottom: 20px; 
	
}
.box img{
    width: 100%;
    height: auto;
	
	
}
.box .box-content{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: all 0.3s ease 0s;
}
.box:before,
.box:after,
.box .box-content:before,
.box .box-content:after{
    content: "";
    height: 25%;
    background: rgba(0,0,0,0.7);
    margin: 0 auto;
    opacity: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transition: all 0.3s steps(4);
}
.box:before{
    width: 75%;
    bottom: 0;
    transition-delay: 0s;
}
.box:after{
    width: 50%;
    bottom: 25%;
    transition-delay: 0.1s;
}
.box .box-content:before{
    width: 25%;
    bottom: 50%;
    z-index: -1;
    transition-delay: 0.2s;
}
.box .box-content:after{
    width: 0;
    bottom: 75%;
    z-index: -1;
    transition-delay: 0.3s;
}
.box:hover:before,
.box:hover:after,
.box:hover .box-content:before,
.box:hover .box-content:after{
    width: 100%;
    opacity: 1;
}
.box .content-inner{
    width: 100%;
    margin: 0 auto;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: all 0.3s ease 0.2s;
}
.box:hover .content-inner{ opacity: 1; }
.box .title{
    font-size: 25px;
    font-weight: 700;
    color: #AF7044;
    letter-spacing: 1px;
    margin: 100px 0 10px 0;
    transition: all 0.3s ease 0s;
	background-color:#FFFFFF;
	opacity:.8;
}
.box .post{
    display: inline-block;
    font-size: 16px;
    font-style: italic;
    color: #fff;
    margin: 0 0 15px 0;
}
.box .icon{
    padding: 0;
    margin: 0;
    list-style: none;
}
.box .icon li{
    display: inline-block;
    margin-right: 5px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.3s ease 0s;
}
.box:hover .icon li{
    opacity: 1;
    transform: translateY(0);
}
.box:hover .icon li:nth-child(2){ transition-delay: 0.1s; }
.box .icon li a{
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #fff;
    border-radius: 10px 20px 20px 10px;
    font-size: 18px;
    color: #000;
    overflow: hidden;
    z-index: 1;
    position: relative;
}
.box .icon li a:hover{
    color: #fff;
    box-shadow: 0 0 5px #AF7044;
}
.box .icon li a:after{
    content: "";
    width: 100%;
    height: 100%;
    background: #AF7044;
    position: absolute;
    top: 0;
    left: -50px;
    z-index: -1;
    transition: all 0.3s ease 0s;
}
.icon li a:hover:after{ left: 0; }
@media only screen and (max-width:990px){
    .box{ margin-bottom: 10px; }
	.box .icon li a{
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
}
.box .title{
    margin: 0px 0 10px 0;
}
