/**
 * 公司资讯页面样式
 * 文件路径: /public/css/news-page.css
 * 创建日期: 2026-04-23
 * 注意: 全部属性已做IE兼容处理
 */

/* ========== 资讯页面主体区域 ========== */
.news-section {
    padding: 60px 0 80px;
    background: #fff;
}

/* 页面标题 */
.news-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
}

.news-page-title {
    font-size: 48px;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

/* ========== 资讯列表 ========== */
.news-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -40px;
}

.news-item {
    width: calc(33.333% - 40px);
    margin-right: 40px;
    margin-bottom: 40px;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

.news-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s;
}

.news-link:hover {
    transform: translateY(-4px);
    text-decoration: none;
}

.news-link:hover .news-title {
    color: #d70000;
}

.news-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px;
    line-height: 1.5;
    transition: color 0.3s;
}

.news-summary {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0 0 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-date {
    font-size: 12px;
    color: #999;
}

/* ========== 分页 ========== */
.pagination {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e5e5e5;
}

.pagination .Single {
    display: inline-block;
    min-width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    margin: 0 5px;
    border-radius: 4px;
    transition: all 0.3s;
}

.pagination .Single:hover {
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
}

.pagination .Single.on {
    background: #d70000;
    color: #fff;
}

/* ========== 响应式适配 ========== */

/* 平板 */
@media (max-width: 992px) {
    .news-section {
        padding: 40px 0 60px;
    }
    
    .news-header {
        margin-bottom: 30px;
    }
    
    .news-page-title {
        font-size: 28px;
    }
    
    .news-list {
        margin-right: -30px;
    }
    
    .news-item {
        width: calc(50% - 30px);
        margin-right: 30px;
        margin-bottom: 30px;
        padding-top: 15px;
    }
}

/* 手机 */
@media (max-width: 767px) {
    .news-section {
        padding: 30px 0 40px;
    }
    
    .news-header {
        margin-bottom: 25px;
        padding-bottom: 15px;
    }
    
    .news-page-title {
        font-size: 24px;
    }
    
    .news-list {
        margin-right: 0;
    }
    
    .news-item {
        width: 100%;
        margin-right: 0;
        margin-bottom: 0;
        padding-top: 15px;
        padding-bottom: 15px;
        border-top: 1px solid #e5e5e5;
    }
    
    
    .news-title {
        font-size: 15px;
    }
    
    .news-summary {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }
    
    .pagination {
        margin-top: 30px;
        padding-top: 30px;
    }
    
    .page-num {
        width: 32px;
        height: 32px;
        line-height: 32px;
        font-size: 13px;
        margin: 0 3px;
    }
}

/* 小屏手机 */
@media (max-width: 480px) {
    .news-page-title {
        font-size: 22px;
    }
    
    .page-num {
        width: 28px;
        height: 28px;
        line-height: 28px;
        font-size: 12px;
        margin: 0 2px;
    }
}
