/* 新闻页面样式 */
.news-page {
    padding: 60px 0;
    background-color: #fff;
}

.news-list {
    max-width: 1600px !important;
    margin: 0 auto 50px;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.news-item {
    display: flex;
    flex-direction: row-reverse;
    background: #fff;
    margin-bottom: 40px;
    position: relative;
    border-bottom: 1px solid #eee;
    padding-bottom: 40px;
    cursor: pointer;
}

.news-content {
    flex: 1;
    padding: 0 30px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.news-image {
    flex: 0 0 520px;  /* 从580px减少到520px */
    height: 460px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);  /* 添加淡淡的边框 */
    border-radius: 4px;  /* 添加圆角使边框看起来更柔和 */
}

.news-content {
    flex: 1;
    padding: 0 50px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* 从contain改为cover，使图片铺满容器 */
    transition: transform 0.3s ease;
}

.news-item:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    flex: 1;
    padding: 0 0 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-meta {
    margin-bottom: 15px;
    font-size: 16px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 20px;
}

.news-meta i {
    color: #ff6b00;
    margin-right: 6px;
}

.news-content h3 {
    margin: 0 0 20px;
    font-size: 24px;
    color: #333;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-content p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* 删除以下样式块
.read-more {
    display: inline-flex;
    align-items: center;
    margin-top: 25px;
    color: #ff6b00;
    font-size: 15px;
    text-decoration: none;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.read-more i {
    margin-left: 8px;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.news-item:hover .read-more {
    opacity: 1;
    transform: translateX(0);
}

.news-item:hover .read-more i {
    transform: translateX(3px);
}
*/

.news-item:hover h3 {
    color: #ff6b00;
}

/* 分页样式 */
.pagination {
    text-align: center;
    margin-top: 50px;
    border-top: 1px solid #eee;
    padding-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    margin: 0;
    border: 1px solid #ddd;
    color: #666;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pagination .current {
    background: #ff6b00;
    color: #fff;
    border-color: #ff6b00;
}

.pagination a:hover {
    border-color: #ff6b00;
    color: #ff6b00;
    background-color: rgba(255, 107, 0, 0.05);
}

.pagination i {
    font-size: 14px;
}

@media (max-width: 768px) {
    .pagination {
        margin-top: 30px;
        padding-top: 30px;
    }
    
    .pagination a,
    .pagination span {
        min-width: 36px;
        height: 36px;
        padding: 0 12px;
    }
}

@media (max-width: 768px) {
    .news-list {
        padding: 0 15px;
    }

    .news-item {
        flex-direction: column;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    
    .news-image {
        height: 260px;
    }
    
    .news-content {
        padding: 25px 0 0 0;
    }

    .news-content h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    /* 删除这部分
    .read-more {
        opacity: 1;
        transform: none;
        margin-top: 20px;
    }
    */
}

@media (max-width: 1680px) {
    .news-list {
        max-width: 1400px !important;
    }
}

@media (max-width: 1440px) {
    .news-list {
        max-width: 1180px !important;
    }
}

@media (max-width: 1200px) {
    .news-list {
        max-width: 960px !important;
    }
    
    .news-image {
        flex: 0 0 440px;  /* 从480px减少到440px */
    }
}

@media (max-width: 992px) {
    .news-list {
        max-width: 720px !important;
    }
}

@media (max-width: 768px) {
    .news-list {
        max-width: 100% !important;
        padding: 0 15px;
    }
    flex-direction: column;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    
    .news-image {
        height: 320px;  /* 从260px调整到320px */
    }
    
    .news-content {
        padding: 25px 0 0 0;
    }

    .news-content h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    /* 删除这部分
    .read-more {
        opacity: 1;
        transform: none;
        margin-top: 20px;
    }
    */
}