.owl-carousel {
	padding: 0 35px;
}
.post-slide{
    margin: 0 10px;
}
.post-slide .post-img{
    overflow: hidden;
}
.post-slide .post-img img{
	/*object-fit: cover;*/
    width: 100%;
    height: auto;
  /*height: 245px;*/
    transform: scale(1);
    transition: all 1s ease-in-out 0s;
}
.post-slide:hover .post-img img{
    transform: scale(1.08);
}
.post-slide .post-content{
	width: 100%;
    background: #d61c31;
    padding: 10px 0;
  /* height: 50px;*/
}

.post-slide .post-content span {
	text-align: center;
	display: block;
	width: 95%;
	overflow: hidden;
	padding-left: 10px;
}
.post-slide .post-title {
    font-size: 17px;
    margin-top: 0;
    /*text-transform: capitalize;*/
}
.post-slide .post-title a {
	text-decoration: none;
  /*  display: inline-block;*/
    color: #ffedbf;
    transition: all 0.3s ease 0s;
    overflow: hidden;
/*  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;*/
}
/*.post-slide .post-title a:hover{
   
   text-decoration:  underline;
}*/
.post-slide .post-description{
    font-size: 15px;
    color: #676767;
    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;
}
/**左右箭头**/
.owl-buttons {
	/*position: relative;*/
}
.owl-prev .zuo {
	position: absolute;
	left: 0;
	top: 47%;
}
.owl-next .you {
	position: absolute;
	right: 0;
	top: 47%;
}
