.swiperStycon {
    height: 400px;
}
/* =========================================
   新闻页样式 (还原设计图)
   ========================================= */

/* 页面主容器 */
.newCon {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Tab 切换栏 */
.newTab {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #E5E5E5;
    margin-bottom: 60px;
}

.newTabItem {
    font-size: 18px;
    color: #666;
    padding: 15px 40px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.newTabItem.active {
    color: #003B8E; /* 翰霖蓝 */
    font-weight: bold;
}

/* 选中状态下的底部蓝条 */
.newTabItem.active::after {
    content: '';
    position: absolute;
    bottom: -1px; /* 盖住底边框 */
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #003B8E;
}

/* --- 新闻列表 (Grid 布局) --- */
.newList {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 强制三列 */
    gap: 30px; /* 卡片间距 */
    width: 100%;
}

/* 新闻卡片 */
.news-card {
    background: #fff;
    border: 1px solid #EAEAEA;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none; /* 去掉a标签下划线 */
    overflow: hidden; /* 防止图片溢出 */
}

.news-card:hover {
    box-shadow: 0 10px 20px rgba(0, 59, 142, 0.1);
    transform: translateY(-5px);
    border-color: #003B8E;
}

/* 图片区域 */
.news-img-box {
    width: 100%;
    height: 240px; /* 固定高度，保持整齐 */
    overflow: hidden;
}

.news-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-img-box img {
    transform: scale(1.05); /* 悬停图片微放大 */
}

/* 内容区域 */
.news-content {
    padding: 25px;
    flex: 1; /* 撑开剩余空间 */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #F8F9FB; /* 浅灰底色 */
}

/* 标题 */
.news-title {
    font-family: "Alibaba PuHuiTi 3.0", sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.5;
    
    /* 两行溢出省略 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 54px; /* 18px * 1.5 * 2 固定高度防止抖动 */
}

/* 简介 */
.news-brief {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
    margin-bottom: 15px;
    
    /* 两行溢出省略 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 42px; /* 约等于 14 * 1.6 * 2*/
}

/* 底部信息栏 (日期 + 阅读原文) */
.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.05); /* 极淡的分隔线 */
    padding-top: 15px;
}

.news-date {
    font-size: 14px;
    color: #666;
    font-family: Arial, sans-serif;
}

.read-more {
    font-size: 14px;
    color: #003B8E;
    font-weight: 500;
}


@media screen and (max-width: 1000px) {
    .newList {
        grid-template-columns: repeat(2, 1fr); /* 平板两列 */
    }
}

@media screen and (max-width: 600px) {
    .newList {
        grid-template-columns: 1fr; /* 手机单列 */
    }
    .newTabItem {
        padding: 15px 20px;
        font-size: 16px;
    }
}