.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.multi-line-ellipsis {
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.wrap {
    box-sizing: border-box;
    padding: 0px 10px;
    display: flex;
    width: 968px;
    /* height: 254px; */
    border-radius: 6px;
    background: #fff;
}

.wrap>.imgs-wrap {
    position: relative;
    margin-right: 9px;
    width: 466px;
    height: 260px;
    background-color: #FFFFFF;
    overflow: hidden;
}


.swiper-wrapper{
	width: 100%;
	height: 100%;
}


.swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.swiper-item{
	width: 100%;
	height: 100%;
}

.bannerView {
    width: 466px;
    height: 234px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    background: #e0e7ff;
}

.bannerImg {
    width: 100%;
    height: 100%;
}

.bannerText {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 3px;
    width: 446px;
    max-height: 44px;
    min-height: 22px;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 22px;
    text-align: left;
    font-style: normal;
}


.wrap>.imgs-wrap>img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
}

.wrap>.imgs-wrap>.img-txt {
    box-sizing: border-box;
    position: absolute;
    padding: 0 10px;
    left: 0;
    bottom: 0;
    line-height: 37px;
    width: 100%;
    color: #fff;
    background: rgb(92, 92, 92, 0.17);
    border-radius: 0px 0px 10px 10px;
}

.wrap>.news-list {
    width: calc(100% - 466px - 10px);
    height: 234px;
}

.wrap>.news-list>.news-item {
    cursor: pointer;
}

.wrap>.news-list>.news-item>.title {
    width: 100%;
    height: 28px;
    font-weight: 600;
    font-size: 20px;
    color: #000000;
    line-height: 28px;
}

.wrap>.news-list>.news-item>.desc {
    margin-top: 10px;
    height: 40px;
    font-weight: 400;
    font-size: 14px;
    color: #959595;
    line-height: 20px;
    opacity: 1;
    transition: opacity 2s ease;
}

.wrap>.news-list>.news-item>.bottom-line {
    position: relative;
    margin-top: 10px;
    margin-bottom: 10px;
    height: 1px;
    border: 1px solid #ededed;
    opacity: 1;
    background: #ededed;
    transition: opacity 2s ease, display 2s ease;
}

.wrap>.news-list>.news-item>.bottom-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 80px;
    height: 3px;
    background: linear-gradient( 270deg, #035FF5 0%, #00A8F9 100%);
    border-radius: 2px;
    transform: translateY(-50%);
    opacity: 1;
    transition: opacity 2s ease-in-out;
}

.wrap>.news-list>.news-item.short-item>.desc {
    opacity: 0;
    height: 0;
    margin: 0;
}

.wrap>.news-list>.news-item.short-item>.bottom-line {
    opacity: 0;
    height: 0;
    margin: 0;
}

.wrap>.news-list>.news-item.short-item>.bottom-line::after {
    opacity: 0;
    height: 0;
}

.wrap>.news-list>.short-item {
    margin-bottom: 8px;
}

.wrap>.news-list>.short-item>.title {
    position: relative;
    padding-left: 14px;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
    line-height: 20px;
}

.wrap>.news-list>.short-item>.title::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #e4e4e4;
    transform: translateY(-50%);
}