.NeweNav {
    position: absolute;
    z-index: 9;
    right: var(--container);
    bottom: 30px;
    display: flex;
    grid-gap: 120px;
}

.NeweNav a {
    color: #FFF;
    font-size: 16px;
}

.NeweNav a.active {
    font-weight: bold;
}

/* 新闻列表 */
.NeweList {
    margin-bottom: 45px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px 25px;
}

.NewsItem {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(246, 246, 246, 0.50);
    display: flex;
    flex-direction: column;
    /* 固定卡片高度，防止联动其他卡片变形 */
    height: 420px;
    transition: all 0.3s ease;
}

.NewsItem:hover {
    background: var(--color);
}

/* 图片默认高度加大，不显得太窄 */
.NewsItem .img6 {
    width: 100%;
    height: 220px;
    flex-shrink: 0;
    transition: height 0.3s ease;
}

/* hover 只稍微收一点，不至于太窄 */
.NewsItem:hover .img6 {
    height: 160px;
}

.NewsItem .img6 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 禁止图片放大 */
    transform: none !important;
    transition: none;
}

.NewsItem .text6 {
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    transition: all 0.3s ease;
}

.NewsItem .text6 h1 {
    color: #000;
    font-family: MiSans2;
    font-size: 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    transition: color 0.3s ease;
}

.NewsItem:hover .text6 h1 {
    color: #fff;
}

.NewsItem .text6 h2 {
    color: rgba(0, 0, 0, 0.80);
    font-size: 16px;
    line-height: 1.5;
    margin: 15px 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    transition: color 0.3s ease;
}

.NewsItem:hover .text6 h2 {
    -webkit-line-clamp: 3;
    color: #fff;
}

.NewsItem .text6 h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.NewsItem .text6 p {
    display: flex;
    align-items: center;
    grid-gap: 5px;
    color: rgba(0, 0, 0, 0.50);
    font-size: 12px;
    transition: filter 0.3s ease;
}

.NewsItem:hover .text6 p {
    filter: invert(1);
}

.NewsItem .text6 h3 .More {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    color: var(--color);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.NewsItem:hover .text6 h3 .More {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1440px) {
    .NewsItem {
        height: 400px;
    }
    .NewsItem .img6 {
        height: 200px;
    }
    .NewsItem:hover .img6 {
        height: 150px;
    }
    .NewsItem .text6 {
        padding: 15px 20px;
    }
    .NewsItem .text6 h1 {
        font-size: 18px;
    }
    .NewsItem .text6 h2 {
        font-size: 14px;
        margin: 5px 0;
    }
    .NewsItem .text6 h3 .More {
        width: 40px;
        height: 40px;
    }
    .NewsItem .text6 h3 .More i {
        font-size: 16px;
    }
}

@media (max-width: 900px) {
    .NeweNav {
        grid-gap: 30px;
    }
    .NeweList {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }
    .NewsItem {
        height: 380px;
    }
    .NewsItem .img6 {
        height: 180px;
    }
}

@media (max-width: 600px) {
    .Nybanner {
        padding-bottom: 60px;
    }
    .NeweNav {
        width: 100%;
        right: auto;
        bottom: 15px;
        padding: 0 var(--container);
        justify-content: space-between;
    }
}

@media (max-width: 500px) {
    .NeweList {
        grid-template-columns: repeat(1, 1fr);
    }
    .NewsItem {
        height: auto;
    }
}

/* 详情 */
.NyContentBanner .text h1 {
    line-height: 1.5;
}

.NyContentBanner .text p {
    display: flex;
    align-items: center;
    grid-gap: 5px;
    color: rgba(255, 255, 255, 0.50);
}

.NyContentBanner .text p img {
    width: 15px;
    filter: invert(1);
}

.Ny_NewsPost .Ny_xiangqing {
    margin-bottom: 30px;
}