.main{
    padding-top: 50px;
    background-color: #fff;
}

/* 面包屑导航样式 */
.breadcrumb-content{
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    background-color: #fff;
}
.breadcrumb-content p{
    color: #131313;
    font-size: 16px;
}
.breadcrumb-content-right-btn{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.breadcrumb-content-right-btn .icon-up,.breadcrumb-content-right-btn .icon-down{
    font-size: 8px;
    cursor: pointer;
    color: #acacac;
    transition: color 0.3s ease;
}
.breadcrumb-content-right-btn .icon-up.active,.breadcrumb-content-right-btn .icon-down.active{
    color: #131313;
}
.breadcrumb-content-right-text{
    font-size: 16px;
	color: #131313;
    margin-left: 12px;
}

/* 新闻页面主要样式 */
.news {
    background: #fff;
    padding: 60px 0;
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-title {
    font-size: 18px;
    color: #131313;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.news-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: #131313;
}

/* 新闻类型菜单样式 */
.news-category-menu {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
}

.news-category-item {
    padding: 12px 24px;
    background: #f6f6f6;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    border-right: 1px solid #e0e0e0;
    font-size: 14px;
    white-space: nowrap;
}

.news-category-item:last-child {
    border-right: none;
}

.news-category-item:hover {
    background: #f8f9fa;
    color: #131313;
}

.news-category-item.active {
    background: #131313;
    color: #fff;
}

/* 新闻网格布局 */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin-bottom: 40px;
}

.news-item {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.news-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.news-item-img {
    height: 200px;
}

/* .image-news 基础样式已抽取到 css/news-shared.css */

.news-item:hover .image-news {
    transform: scale(1.05);
}

/* 悬停时新闻标题变为下载模块同款蓝色 */
/* 标题悬停颜色已在 css/news-shared.css 统一 */

.news-item-content {
    padding: 20px;
    background-color: #f6f6f6;
    flex: 1;
}

.news-item-title {
    font-size: 16px;
    color: #131313;
    margin-bottom: 8px;
    font-weight: 600;
    /* 单行省略与颜色过渡已抽取到 css/news-shared.css */
}

.news-item-time {
    font-size: 12px;
    color: #999;
    margin-bottom: 12px;
}

/* 摘要两行省略的基础样式已抽取到 css/news-shared.css */

.news-more {
    gap: 8px;
    font-size: 14px;
    color: #131313;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

/* 更多链接 hover 效果已抽取到 css/news-shared.css */

.image-news-more {
    width: 12px;
    height: auto;
    transition: transform 0.3s ease;
}

.news-more:hover .image-news-more {
    transform: translateX(2px);
}

.news-flag {
    gap: 6px;
    flex-wrap: wrap;
    margin-top: auto; /* 将标签区固定在卡片底部，保证等高对齐 */
}

.news-flag-item {
    color: #666;
    padding: 4px 8px;
    font-size: 11px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    background: #fff;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* 标签 hover 效果已抽取到 css/news-shared.css */

/* 分页组件样式 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination-btn {
    padding: 8px 16px;
    background: #fff;
    color: #666;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.pagination-btn:hover:not(.disabled) {
    background: #f8f9fa;
    color: #131313;
    border-color: #131313;
}

.pagination-btn.disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.pagination-numbers {
    display: flex;
    gap: 4px;
}

.pagination-number {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #666;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.pagination-number:hover {
    background: #f8f9fa;
    color: #131313;
    border-color: #131313;
}

.pagination-number.active {
    background: #131313;
    color: #fff;
    border-color: #131313;
}

.pagination-ellipsis {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .news-category-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .news-category-item {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .news-container {
        padding: 0 16px;
    }
    
    .news-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .news-category-menu {
        gap: 8px;
        margin-bottom: 30px;
    }
    
    .news-category-item {
        padding: 8px 16px;
        font-size: 12px;
        border-radius: 4px;
        border: 1px solid #e0e0e0;
        border-right: 1px solid #e0e0e0;
    }
    
    .news-item-img {
        height: 160px;
    }
    
    .news-item-content {
        padding: 16px;
    }
    
    .pagination {
        flex-wrap: wrap;
        gap: 4px;
    }
    
    .pagination-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .pagination-number {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .news {
        padding: 40px 0;
    }
    
    .news-title {
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .news-category-menu {
        margin-bottom: 24px;
    }
    
    .news-grid {
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .news-item-img {
        height: 140px;
    }
    
    .news-item-content {
        padding: 12px;
    }
    
    .news-item-title {
        font-size: 14px;
    }
    
    .news-item-explain {
        font-size: 12px;
    }
}