/* 下方内容区域 */
.tag-news-content-section {
    width: 100%;
    margin: -4% auto 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

.tag-news-content-section h2 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 30px;
}

.news-news-content-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.news-content-tab {
    padding: 10px 60px;
    border: 1px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    background-color: #ffffff;
}

.news-content-tab.active {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

.news-tab-content {
    display: none;
}

.news-tab-content.active {
    display: block;
}

.news-news-tab-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.news-tab-card {
    flex: 1 1 calc(50% - 10px);
    min-width: 300px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.news-tab-card img {
    width: 100%;
    height: auto;
}

.news-tab-card .news-card-content {
    padding: 20px;
}

.news-tab-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.news-tab-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.news-card-footer {
    font-size: 12px;
    color: #999;
}



/* 新闻列表样式 */
.news-show-list-box {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}
.news-card {
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.news-card .date {
    font-size: 12px;
    color: #999;
    padding: 10px;
}
.news-card h3 {
    font-size: 16px;
    padding: 0 10px 0px;
    overflow: hidden;
    min-height: 10vh;
}
.news-card .img-placeholder {
    width: 100%;
    background-color: #ddd;
}
.news-card .desc {
    font-size: 14px;
    color: #666;
    padding: 10px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-card .news-footer {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    font-size: 12px;
    color: #999;
    border-top: 1px solid #eee;
}
.news-card .news-footer .news-footer-active{
    color: #0D46EE;
}
.news-card .news-footer .news-footer-review{
    float: right;
}
.news-card .news-footer img{
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.news-show-list-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.news-show-list-item:last-child {
    border-bottom: none;
}
.news-show-list-item h3 {
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-show-list-item .desc {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-show-list-item .btn {
    padding: 6px 15px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}