/* 新闻列表页样式 */
.news-banner {
    width: 100%;
    height: 300px;
    background: url(../images/banner_news.jpg) center center no-repeat;
    background-size: cover;
}

.top-news-section {
    margin-bottom: 40px;
}

.top-news-section .section-title {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0DA891;
}
.text-muted{
    text-align: right;
}
.top-news-section .section-title h2 {
    margin: 0;
    padding: 0;
    font-size: 24px;
    color: #333;
}

.top-news-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.top-news-item {
    flex: 1;
    min-width: 300px;
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.top-news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.top-news-thumb {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.top-news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.top-news-item:hover .top-news-thumb img {
    transform: scale(1.05);
}

.top-news-content {
    padding: 15px;
}

.top-news-content h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    line-height: 1.4;
}

.top-news-content h3 a {
    color: #333;
    text-decoration: none;
}

.top-news-content h3 a:hover {
    color: #0DA891 !important;
}

.top-news-content p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.top-news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #999;
}

.news-card {
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.news-card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-list-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
}
.news-list-item a{
    color: #333;    font-size: 16px;
}
.news-list-item:hover {
    background-color: #f8f9fa;
}

.pagination-wrapper {
    text-align: center;
    margin-top: 30px;
}

@media (max-width: 992px) {
    .news-banner {
        height: 250px;
    }
    
    .top-news-item {
        min-width: 250px;
    }
    
    .top-news-thumb {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .news-banner {
        height: 200px;
    }
    
    .top-news-section .section-title h2 {
        font-size: 20px;
    }
    
    .top-news-list {
        gap: 15px;
    }
    
    .top-news-item {
        min-width: 100%;
    }
    
    .top-news-thumb {
        height: 150px;
    }
    
    .top-news-content h3 {
        font-size: 16px;
    }
    
    .news-card-img-top {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .news-banner {
        height: 150px;
    }
    
    .top-news-section {
        margin-bottom: 30px;
    }
    
    .top-news-section .section-title h2 {
        font-size: 18px;
    }
    
    .top-news-thumb {
        height: 120px;
    }
    
    .top-news-content {
        padding: 10px;
    }
    
    .top-news-content h3 {
        font-size: 15px;
    }
    
    .top-news-meta {
        font-size: 11px;
    }
}