/* 仅保留news.html内容区相关样式，极简专用 */

.bannerImg {
    width: 100%;
    /* height: 300px; */
    overflow: hidden;
    /* margin-bottom: 40px; */
}
.bannerImg img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
}

.news-page-list {
    background-color: #fff;
    padding: 80px 0;
}
.news-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 80%;
}
.news-tabs {
    background: #fff;
    padding: 20px 0 0 0;
    border-bottom: 1px solid #eee;
	display: none;
}
.tab-nav {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.tab-btn {
    padding: 10px 20px;
    background: #f5f5f5;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    transition: all 0.3s ease;
}
.tab-btn:hover {
    background: #eee;
    color: #333;
}
.tab-btn.active {
    background: #54cccc;
    color: #fff;
}

.news-page-list-grid {
    display: grid;
    grid-template-columns: 1fr; /* 每行一个新闻项 */
    gap: 2rem;
}
.news-page-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    margin-bottom: 24px;
    display: flex;
    align-items: stretch;
}
.news-page-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.news-item-link {
    display: flex;
    text-decoration: none;
    color: inherit;
    flex-direction: row; /* 默认水平排列 */
}
.news-page-image {
    flex: 0 0 220px;
    height: 150px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    overflow: hidden;
    margin: 18px 0 18px 18px;
    box-shadow: 0 2px 8px rgba(35,140,255,0.08);
    background: #f4f8fc;
}
.news-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.news-page-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.news-page-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.news-page-title a {
    color: inherit;
    text-decoration: none;
}
.news-page-title a:hover {
    color: #666;
}
.news-page-desc {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}
.news-page-meta {
    font-size: 0.9rem;
    color: #999;
}
.news-page-meta span + span {
    margin-left: 1rem;
}
.news-page-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    gap: 0.5rem;
}
.news-page-pagination a {
    color: #333;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}
.news-page-pagination a:hover {
    background-color: #f0f0f0;
}
.news-page-pagination a.active {
    background-color: #54cccc;
    color: #fff;
    border-color: #54cccc;
}
.news-page-pagination a.disabled {
    color: #ccc;
    pointer-events: none;
    background-color: #f8f8f8;
}
@media (max-width: 768px) {
    .news-item-link {
        flex-direction: column;
    }
    .news-page-image {
        width: 100%;
        flex-basis: auto;
        height: 180px;
        border-radius: 8px 8px 0 0;
        margin: 0;
    }
    .news-page-image img {
        border-radius: 8px 8px 0 0;
    }
    .news-page-item {
        flex-direction: column;
    }
    .news-page-content {
        padding: 1rem;
    }
    .news-page-title {
        font-size: 1.25rem;
    }
}

.news-section {
    background: #f7fafd;
    padding-top: 48px;
    /* 其它样式保持不变 */
}
