﻿.newspage-item{
	position: relative;
	margin-bottom: 30px;
}

.newspage-item img{
	width: 210px;
	height: 145px;
	margin-right: 15px;
	border-radius: 8px;
	object-fit: cover;
}

.newspage-item h2,
.newspage-item h3{
	font-size: 17px;
    font-weight: 600;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
}

.news-detail h1{
	color: #252525;
    font-size: 23px;
    font-weight: 600;
}

.news-detail .publtime{
	color: #888;
	margin-bottom: 12px;
	font-size: 15px;
}

.news-detail h2,
.news-detail h3{
	margin-bottom: 5px;
}

.RelatedPosts .heading {
    margin: 30px 0 20px;
    padding: 10px 15px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    background-color: #2869970d;
    border-left: 3px solid #000;
    padding-left: 15px;
}

.RelatedPosts ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.RelatedPosts ul li {
    position: relative;
    list-style: none;
}

.RelatedPosts .lk_image {
    width: 110px;
    height: 75px;
    border-radius: 6px;
    overflow: hidden;
    float: left;
    margin-right: 15px;
}

.RelatedPosts .lk_image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.RelatedPosts .lk_description h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
}

.RelatedPosts .lk_meta {
    display: inline-block;
    font-size: 13px;
    margin-right: 5px;
    color: #999;
}


@media (max-width: 767.98px) {
	.newspage-item img{
		width: 125px;
	}

	.newspage-item p{
		overflow: hidden;
	    text-overflow: ellipsis;
	    white-space: normal;
	    -webkit-box-orient: vertical;
	    display: -webkit-box;
	    -webkit-line-clamp: 4;
	}
}