﻿.newspage-item{
    position: relative;
    display: inline-block;
    width: 100%;
    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: 3px;
}

.newspage-item ul{
    margin-bottom: 2px;
}

.news-detail{
    font-size: 16px;
}

.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;
}

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

.news_cat li img{
    width: 200px;
    height: 125px;
    margin-right: 15px;
}


.news_cat .black{
    font-size: 17px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 2px;
    display: block;
}

@media (max-width: 767.98px) {

    .news_cat{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .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;
    }
}

@media (max-width: 499.98px) {
    .newspage-item img{
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
}