﻿.main-tab ul.nav{
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: scroll;
    white-space: nowrap;
    gap: 10px;
    padding-bottom: 30px;
}

.main-tab ul.nav li a{
    position: relative;
    padding: 10px 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #c8c8c8;
    color: #222;
    transition: 0.3s all;
}

.main-tab ul.nav li.active a{
    background-color: #4a7d4a;
    color: #fff;
}

.main-tab ul.nav li:hover a{
    background-color: #eac77d;
    color: #222;
}

.viewcat-header h1{
    font-family: 'Prata', serif;
    font-size: 24px;
    margin-bottom: 20px;
}

.news-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.news-grid .news-post-item{
    position: relative;
    border-radius: 12px;
    background-color: #f8f8f8;
    border: 1px solid #f1f1f1;
    overflow: hidden;
}

.news-grid .news-post-item img{
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.news-grid .news-post-item .hitstotal{
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #f8f8f85c;
    font-size: 14px;
    padding: 2px 6px;
    border-radius: 6px;
}

.news-grid .news-post-item .news-post-content{
    padding: 18px 15px;
}

.news-grid .news-post-item h2{
    font-family: 'Prata', serif;
    font-size: 20px;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-grid .news-post-item .meta{
    font-size: 15px;
    margin: 5px 0;
    color: #555;
}

.news-grid .news-post-item .meta i{
    font-size: 14px;
}

.news-grid .news-post-item p{
    margin: 0;
}

.news-detail h1.title{
    font-family: 'Prata', serif;
    font-size: 26px;
    color: #222;
}

.news-detail .publtime{
    color: #808080;
    border-top: 1px solid #e2e2e2;
    border-bottom: 1px solid #e2e2e2;
    padding: 10px 10px 6px;
    font-size: 14px;
    background: #f9f9f9;
}

.news-detail .publtime a{
    color: #808080;
}

.news-others .heading{
    background-color: #eee;
    margin-bottom: 15px;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: 600;
    border-left: 4px solid #4a7d4a;
    border-radius: 10px;
}

.news-others-list{
    gap: 15px;
}

.others-item{
    width: calc(50% - 8px);
}

.others-item img{
    width: 120px;
    height: 80px;
    margin-right: 10px;
    border-radius: 8px;
    object-fit: cover;
}

.others-item span{
    display: block;
    margin-top: 3px;
    font-size: 13px;
}

.block-news-groups{
    margin-bottom: 30px;
}

.block-news-groups .news-groups-item{
    position: relative;
    border-radius: 12px;
    background-color: #f8f8f8;
    border: 1px solid #f1f1f1;
    overflow: hidden;
}

.block-news-groups .news-groups-item img{
    height: 220px;
    object-fit: cover;
}

.block-news-groups .news-groups-content{
    padding: 10px;
}

.block-news-groups .news-groups-content .news-cat{
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 3px;
}