.nav_right .newsul {
    display: flex;
    gap: 2%;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 20px;
    padding:15px
}

.nav_right .newslist .newsul li {
    width: 32%;
    height: auto;
    border: none;
}

.nav_right .newslist .newsul li a {
    margin: 0;
    background: #f3f3f3;
    position: relative;
    transition: ease-in-out 0.4s all;
    display: block;
}

.nav_right .newsul li a .news_img {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
    background: #eee;
    width: 100%
}

.nav_right .newsul li a .news_img img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.nav_right .newsul li .news_title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px;
    transition: ease-in-out 0.4s all;
    background: rgb(124 26 99 / 70%);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 61px;
    color: #fff;
    font-size: 17px;
    line-height: 23px;

}

.nav_right .newsul li .news_wz {
    padding: 10px 20px;
}

.nav_right .newsul li .news_wz .news_text {
    color: #333;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 16px;
    line-height: 30px;
}



.nav_right .newsul li.news_wz .news_text {
    color: #fff;
    width: 100%;
    word-break: break-all;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 48px;
}



.nav_right .newsul li a:hover .news_wz .news_text{color:#7c1a63}