.conTopImg_news.conTopImg .conTopImg_img .text_show {
  padding-top: 70px;
  color: #45547C;
}

.newsList {
    width: auto;
    background: #f5f5f5;
    padding: 62px 0;
    box-sizing: border-box;
}

.newsList_title {
    font-weight: 400;
    font-size: 36px;
    color: #363636;
}

.newsList .con {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    transform: translateY(100vh);
    opacity: 0;
    /* 动画设置：持续1秒，缓动效果，填充模式保持最后状态 */
    animation: slideUp 1.1s ease-out forwards;
    margin-top: 20px;
}

@keyframes slideUp {
    from {
        /* 起始位置：下方，透明 */
        transform: translateY(30vh);
        opacity: 0.4;
    }

    to {
        /* 结束位置：目标位置，完全显示 */
        transform: translateY(0);
        opacity: 1;
    }
}

.newsList .con .con_item {
    position: relative;
    width: 400px;
    height: 394px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.newsList .con .con_item::after {
    content: '';
    position: absolute;
    left: 0;
    /* 初始位置在中间 */
    bottom: 0;
    width: 0;
    /* 初始宽度为0 */
    height: 2px;
    background-color: #ED6A90;
    transition: all 0.8s ease;
    /* 边框动画过渡效果 */
    transform: translateX(0);
    /* 水平居中 */
}

.newsList .con .con_item:hover::after {
    width: 100%;
    /* 悬停时宽度变为100% */
    left: 0;
    /* 回到左侧起点 */
    transform: translateX(0);
    /* 取消偏移 */
}


.newsList .con .con_item a {
    display: block;
}

.newsList .con .con_item .con_img {
    width: 400px;
    height: 248px;
    overflow: hidden;
}

.newsList .con .con_item .con_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.newsList .con .con_item .con_img:hover img {
    transform: scale(1.2);
}

.newsList .con .con_item .con_b {
    font-size: 24px;
    margin: 10px 0 4px;
}

.newsList .con .con_item .con_b,
.newsList .con .con_item .con_i {
    color: #414141;
    white-space: nowrap;
    /* 禁止文字换行 */
    overflow: hidden;
    /* 超出部分隐藏 */
    text-overflow: ellipsis;
    /* 超出部分显示省略号 */
    /* 可选：设置宽度限制，确保内容有明确的溢出条件 */
    width: 400px;
    /* 根据实际需求调整宽度 */
}

.newsList .con .con_item .con_i {
    font-size: 16px;
}

.newsList .con .con_item .con_m {
    position: relative;
    margin: 24px 0 30px;
    font-size: 12px;
}

.newsList .con .con_item .con_m::after {
    content: '';
    position: absolute;
    left: 46px;
    top: 25%;
    width: 8px;
    height: 11px;
    background-image: url(../image/index_arrow.png);
    background-repeat: no-repeat;
}


/* 新闻详情页 */
.newsDetail {
    width: auto;
    background: #f5f5f5;
    padding-top: 96px;
    box-sizing: border-box;
}

.newsDetail_title {
    font-weight: 300;
    font-size: 48px;
    color: #434343;
    line-height: 66px;
}

.release {
    display: flex;
    align-items: center;
    width: auto;
    font-weight: 400;
    font-size: 16px;
    color: #888787;
    padding: 30px 0 20px;
    border-bottom: 1px solid #DADADA;
}

.release .line {
    display: inline-block;
    width: 1px;
    height: 16px;
    background: #dadada;
}

.release span {
    margin-right: 30px;
}

.release .link {
    display: flex;
}

.release .link img {
    margin-right: 20px;
}

.newsDetail_con {
    width: auto;
    padding: 44px 0 78px;
    border-bottom: 1px solid #DADADA;
    font-weight: 400;
    font-size: 16px;
    color: #363636;
    line-height: 24px;
}

.newsDetail_con img {
    width: auto;
    height: auto;
    padding-bottom: 42px;
}