.news-banner {
    position: relative;
    width: 100%;
    height: 400px;
    background-image: url('../images/news-banner.jpg');
    background-size: cover;
    background-position: center;
}

.banner-title {
    position: absolute;
    bottom: 50px;
    left: 50px;
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.news-category {
    padding: 30px 0;
    border-bottom: 1px solid #ddd;
}

.news-category .nav-link {
    color: #333;
    font-size: 1.2rem;
    padding: 10px 20px;
}

.news-category .nav-link.active {
    color: #007bff;
    border-bottom: 2px solid #007bff;
}

.news-list {
    padding: 40px 0;
}

.news-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.news-item:last-child {
    border-bottom: none;
}

.news-content {
    padding-right: 30px;
}

.news-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.news-desc {
    color: #666;
    margin-bottom: 15px;
}

.news-date {
    color: #999;
    margin-bottom: 15px;
}

.news-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* 添加Read More按钮样式 */
.news-content .btn-outline-primary {
    width: auto;
    min-width: 120px;
    display: inline-block;
}

.custom-read-more {
    background-color: #0d6efd !important;
    color: white !important;
    border: none !important;
    padding: 8px 20px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: background-color 0.3s ease !important;
    width: auto !important;
    min-width: 120px !important;
    max-width: 200px !important;
    text-align: center !important;
}

.custom-read-more:hover {
    background-color: #0b5ed7 !important;
    color: white !important;
    text-decoration: none !important;
} 