﻿
.news-detail h1{
    font-size: 30px;
    color: #000;
}

.news-detail h2{
    font-size: 22px;
    margin: 8px 0;
}

.news-detail h3{
    font-size: 18px;
    font-weight: 500;
    margin: 8px 0;
}

.news-detail .hometext{
    font-weight: 500;
    margin-bottom: 10px;
}

.news-detail .entry-divider{
    display: block;
    height: 3px;
    width: 70px;
    background-color: #f39f25;
}

.news-detail .entry-meta{
    font-size: 14px;
    text-transform: uppercase;
    margin: 10px 0;
}

.news-detail .news-share .entry-divider{
    margin: 0 auto;
}

.detail-footer{
    position: relative;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
}

.detail-footer p{
    margin: 0;
}

.detail-footer .keywords{
    flex-basis: 50%;
}

.detail-comment{
    position: relative;
    background-color: #fff7eb;
    border-radius: 8px;
    margin: 30px 0;
}

.detail-comment .comment-head h3{
    font-family: 'Playfair-regular', sans-serif;
    font-size: 22px;
}

.block-news li{
    display: flex;
    margin-bottom: 20px !important;
}

.block-news li img{
    width: 100px;
    height: 65px;
    margin-right: 10px;
    object-fit: cover;
    border-radius: 6px;
}

.detail-comment input.btn{
    background-color: #555;
    border-color: #555;
    color: #fff;
    text-transform: uppercase;
    font-size: 17px;
    padding: 10px 35px;
    border-radius: 8px;
    transition: 0.3s all;
}

.detail-comment input.btn:hover {
    background-color: #ffb447;
    border-color: #ffb447;
}

.news-groups-type2{
    position: relative;
    background-color: #f6f6f6;
    padding: 20px 10px;
    border-radius: 8px;
}

.news-groups-type2 .title{
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e9e5e5;
}

.news-groups-type2 img{
    width: 110px;
    height: 70px;
    border-radius: 8px;
    margin-right: 12px;
    -o-object-fit: cover;
    object-fit: cover;
}

.news-groups-type2 li{
    margin-bottom: 20px;
}

.news-groups-type2 li:last-child{
    margin-bottom: 0;
}

.news-groups-type2 .black{
    font-size: 16px;
    line-height: 22px;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news-groups-type2 .meta-post{
    margin-top: 5px;
    font-size: 14px;
}

.other-news .other-news-head {
    margin: 30px 0 20px;
    padding: 8px 15px;
    font-size: 18px;
    font-weight: 500;
    background-color: #2869970d;
    border-left: 3px solid #c8af57;
    padding-left: 15px;
}

.other-news ul{
    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));
}

.other-news ul h4{
    font-size: 16px;
    font-weight: 400;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.other-news ul li img{
    width: 110px;
    height: 70px;
    border-radius: 8px;
    margin-right: 12px;
    -o-object-fit: cover;
    object-fit: cover;
}

.other-news .pubtime{
    color: #555;
    margin-top: 4px;
    font-size: 14px;
}

@media (max-width: 767.98px){
    .other-news{
        margin-bottom: 20px;
    }
    .other-news ul{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}