/* 新闻列表页面样式 */

/* 新闻网格布局 */
.news-list-section {
    padding: 40px 0 60px;
    background: #fff;
}

.news-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* 大图卡片样式 - 前3个 */
.news-card-large {
    width: calc(33.333% - 14px);
    background: #caecf1;
    overflow: hidden;
    position: relative;
    height: 560px;
}

.news-image-large {
    width: 100%;
    margin: 20px 0;
    overflow: hidden;
}

.news-image-large img {
    width: 465px;
    height: 275px;
    object-fit: cover;
}

.news-info-large {
    padding: 20px;
    padding-top: 0;
}

.news-title-large {
    font-size: 26px;
    color: #000;
    margin: 0 0 15px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta-large {
    display: flex;
    gap: 20px;
    font-size: 16px;
    color: #000;
    margin-bottom: 15px;
}

.news-meta-large .meta-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 3px;
    margin-top: -5px;
}

.news-desc-large {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 20px 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
}

.news-btn-large {
    display: block;
    padding: 6px 10px;
    width: 120px;
    margin: 0 auto;
    text-align: center;
    background: #931d22;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 13px;
    transition: background 0.3s ease;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.news-btn-large:hover {
    background: #7a181d;
}

/* 列表样式 - 其他 */
.news-item {
    display: flex;
    align-items: stretch;
    width: 100%;
    background: #caecf1;
    margin-bottom: 20px;
    overflow: hidden;
    height: 190px;
}

.news-item .news-image {
    width: 375px;
    height: 190px;
    flex-shrink: 0;
    background: #931d22;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-item .news-image img {
    width: 375px;
    height: 190px;
    object-fit: cover;
}

.news-content {
    flex: 1;
    padding: 20px 150px 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    gap: unset;
    opacity:unset;
    position: unset;
}

.news-title {
    font-size: 36px;
    color: #000;
    margin: 0 0 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-desc {
    font-size: 12px;
    color: #000;
    line-height: 1.6;
    margin: 0 0 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    display: flex;
    gap: 30px;
    font-size: 16px;
    color: #000;
}

.news-meta .meta-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 5px;
    margin-top: -3px;
}

.view-btn {
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    background: #931d22;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    margin: auto 30px auto 0;
    flex-shrink: 0;
}

.view-btn:hover {
    background: #7a181d;
}

/* 响应式 */
@media (max-width: 1200px) {
    .news-card-large {
        width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .news-card-large {
        width: 100%;
    }
    
    .news-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .news-item .news-image {
        width: 100%;
        height: 180px;
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* 1600px 以下适配 */
@media (max-width: 1600px) {
    body{
        min-width: 1600px;
    }

    .about-page .container {
        width: 1400px !important;
        margin: 0 auto;
    }

    .news-title{
        width: 800px;
        font-size: 28px;
    }

    /* .news-content{
        padding: 0;
    } */

    .news-image-large img {
        width: 410px;
        height: 275px;
        object-fit: cover;
    }
}

/* 1440px 以下适配 */
@media (max-width: 1440px) {
    body {
        min-width: 1440px;
    }
    .main-content{
        width: 1440px;
    }
    .about-page .container {
        width: 1280px !important;
        margin: 0 auto;
    }

    /* .news-content {
        padding: 0;
    } */

    .news-title {
        font-size: 24px;
    }

    .news-image-large img {
        width: 368px;
        height: 275px;
        object-fit: cover;
    }

    .news-image-large {
        width: 100%;
        margin: 20px 0;
        /* margin-top: 20px; */
        overflow: hidden;
    }

}
