/* 页面banner */
.page-banner {
    height: 300px;
    background: url('../images/banner-news.png') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.banner-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.banner-content h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.breadcrumb {
    background: none;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.breadcrumb-item a {
    color: #fff;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.8);
}

/* 新闻内容区域 */
.news-content {
    padding: 60px 0;
    background: #f5f5f5;
}

/* 新闻列表 */
.news-list {
    margin-bottom: 40px;
}

.news-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-image {
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item:hover .news-image img {
    transform: scale(1.05);
}

.news-info {
    padding: 25px;
}

.news-title {
    margin: 0 0 15px;
}

.news-title a {
    color: #333;
    font-size: 22px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: #FF0000;
}

.news-meta {
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
}

.news-meta span {
    margin-right: 20px;
}

.news-meta i {
    margin-right: 5px;
}

.news-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-more {
    display: inline-block;
    padding: 8px 20px;
    background: #FF0000;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-more:hover {
    background: #cc0000;
    color: #fff;
    text-decoration: none;
}

/* 侧边栏 */
.sidebar-widget {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.sidebar-widget h3 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FF0000;
}

/* 搜索框 */
.search-box .input-group {
    position: relative;
}

.search-box .form-control {
    padding-right: 50px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.search-box .btn-search {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background: none;
    border: none;
    color: #666;
    padding: 0 15px;
    z-index: 3;
}

.search-box .btn-search:hover {
    color: #FF0000;
}

/* 最新新闻 */
.recent-news ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-news li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.recent-news li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-news a {
    text-decoration: none;
    color: #333;
}

.recent-news .news-title {
    font-size: 16px;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.recent-news a:hover .news-title {
    color: #FF0000;
}

.recent-news .news-date {
    color: #666;
    font-size: 14px;
}

/* 联系方式 */
.contact-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-box li {
    margin-bottom: 15px;
    color: #666;
}

.contact-box li:last-child {
    margin-bottom: 0;
}

.contact-box i {
    width: 20px;
    margin-right: 10px;
    color: #FF0000;
}

/* 分页 */
.pagination-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.pagination {
    margin: 0;
}

.page-link {
    color: #333;
    border: none;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.page-item.active .page-link {
    background: #FF0000;
    border-color: #FF0000;
}

.page-item.disabled .page-link {
    color: #999;
}

.page-link:hover {
    background: #FF0000;
    color: #fff;
}

/* 响应式设计 */
@media (max-width: 991px) {
    .news-image img {
        height: 200px;
    }
    
    .news-title a {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .page-banner {
        height: 200px;
    }
    
    .banner-content h1 {
        font-size: 28px;
    }
    
    .news-image img {
        height: 180px;
    }
    
    .news-info {
        padding: 20px;
    }
    
    .news-title a {
        font-size: 18px;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
} 