.article__table{
	display: flex;
	flex-wrap: wrap;
	margin:  -12px;
}

.post__item {
	width: calc( 33.333% - 24px );
	margin: 12px;
	box-shadow: 0 2px 7px rgba(0, 0, 0, .2);
	border-radius: 8px;
	overflow: hidden;
	transition: linear all .3s;
}

.post__item:hover{
	box-shadow: 0 2px 7px rgba(0, 0, 0, .5);
}

.post__thumb{
	height: 165px;
	overflow: hidden;
	display: block;
	position: relative;
}
.post__thumb img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.post__thumb img.default{
object-fit: contain;
padding: 15px;
}

.post__time{
	padding: 12px 12px 2px;
	display: flex;
	flex-direction: row;
	font-size: 12px;
	line-height: 14px;
	color: #767676;
}
.article__table .post__time{
	padding: 12px 12px 2px;
}

.post__heading{
	padding: 2px 12px 12px;
}

.post__heading a{
	font-weight: bold;
	font-size: 16px;
	line-height: 22px;
	color: #000;
	text-decoration: none;
	display: block;
}
.post__heading a:hover{
	color:  #FF7A00;
}

.post__thumb::before{
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.post__thumb:hover::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

@media (max-width: 768px) {
	.article__table {
		margin: 0;
		clear: both;
		padding: 10px 0;
	}
	.article__table .post__item{
		width: 100%;
		margin: 0 0 12px;
	}

	.article__table .post__thumb{
		float: left;
		width: 96px;
		height: 100%;
		margin: 0 12px 0 0;
	}
	.article__table .post__time{
		padding-left: 0
	}
	.article__table .post__heading a {
		font-weight: bold;
		font-size: 14px;
		line-height: 18px;
		display: flex;
	}
}


.pagination{
	list-style: none;
	margin: 36px 0;
	padding: 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.pagination li{
	margin: 0 6px;
	font-size: 16px;
}
.pagination a{
	text-decoration: none;
	color:  #000;
	font-size: 16px;
}
.pagination a:hover,
.pagination .active {
	color: #FF7A00;
}

.last-news .post__item{
	width: calc(100% - 48px);
	margin: 0 24px;
	    box-shadow: none;
    border-radius: 0;
}

.last-news .post__thumb{
	width: 100px;
	height: 68px;
	float: left;
}

.last-news .post__heading{
	width: calc(100% - 100px);
	float: right;
	padding-bottom: 0;
}

.last-news .post__heading a {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
}
.last-news .post__time{
	padding-top: 0
}

.last-news .post__item + .post__item{
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid #E5E5EA;
}

.empty {
	margin: 12px;
	font-size: 16px;
}

.pagination ~ #share {
	margin-top: 0;
}


