 

.demo{
    background: linear-gradient(to right,#ffcccc,#d3d3d3);
}
.post-slide{
   margin-right: 20px;
	background: #fff;
	height: 450px;
    margin-top:5px;
}

.post-slide:hover{
cursor:pointer;
 transform:translate(0,-5px);
 box-shadow:0px 0px 30px 0px rgba(0, 0, 0, 0.1);
 transition:transform 0.3s;
 }

.post-slide .post-img{
    overflow: hidden;
	text-align: center;
	height: 260px;
}
.post-slide .post-img img{
    width: 387px;
    height: 260px;
    transform: scale(1);
    transition: all 1s ease-in-out 0s;
	border-radius: 0;
	overflow: hidden;
}
.post-slide:hover .post-img img{
    transform: scale(1.1);
}
    .post-slide .post-content {
        background: #fff;
        padding: 10px 20px;
        height: 170px;
        overflow-y: scroll;
    }
    ::-webkit-scrollbar {width:7px; height:10px; background-color:transparent;} 
/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
*::-webkit-scrollbar-track {background-color:transparent; } 
/*定义滚动条轨道 内阴影+圆角*/
*::-webkit-scrollbar-thumb {background-color:#dddddd; border-radius:6px;} 
/*定义滑块 内阴影+圆角*/
/* .scrollbarHide::-webkit-scrollbar{display: none} */
/* .scrollbarShow::-webkit-scrollbar{display: block} */

.post-slide .post-content ul{ padding: 0; font-size: 14px; color: #999; padding-top: 8px;}
.post-slide .post-content ul li{ line-height: 20px; padding-bottom: 5px; list-style:inside;}
.post-slide .post-content ul li p{ display: inline;}

.post-slide .post-title{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: capitalize;
    text-align:center;
}

.post-slide .post-title .js_zc{ font-size: 14px; color: #666; font-weight: 100; padding-left: 20px;}
.post-slide .post-title a{
    display: inline-block;
    color: #000;
    transition: all 0.3s ease 0s;
 position: relative;
 padding-left: 15px;
}
.teacher-item-name-line{
    width: 6px;
    height: 20px;
    background: #3c7cfc;
    border-radius: 3px;
    position: absolute;
    left: 0;
    top: 3px;
}
.post-slide .post-title a:hover{
    color: #3d3030;
    text-decoration: none;
}


.post-slide .post-description{
    font-size: 14px;
    color: #666;
    line-height: 24px;
    margin-bottom: 14px;
}
.post-slide .post-bar{
    padding: 0;
    margin-bottom: 15px;
    list-style: none;
}
.post-slide .post-bar li{
    color: #676767;
    padding: 2px 0;
}
.post-slide .post-bar li i{
    margin-right: 5px;
}
.post-slide .post-bar li a{
    display: inline-block;
    font-size: 12px;
    color: #808080;
    transition: all 0.3s ease 0s;
}
.post-slide .post-bar li a:after{
    content: ",";
}
.post-slide .post-bar li a:last-child:after{
    content: "";
}
.post-slide .post-bar li a:hover{
    color: #3d3030;
    text-decoration: none;
}
.post-slide .read-more{
    display: inline-block;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background: #e7989a;
    border-bottom-right-radius: 10px;
    text-transform: capitalize;
    transition: all 0.30s linear;
}
.post-slide .read-more:hover{
    background: #333;
    text-decoration: none;
}