.sp_widget {
    padding: 30px 20px 15px 20px;
    box-shadow: 0 2px 5px 3px rgba(28, 28, 28, .1);
    background: #fff;
    max-height: 470px;
    min-width: 300px;
    overflow: auto;
}

.sp_divider-top {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 16px);
    min-width: calc(300px - 16px);
    height: 30px;
    background: #fff;
    z-index: 3;
}

.sp_divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 16px);
    min-width: calc(300px - 16px);
    height: 29px;
    background: #fff;
    z-index: 3;
}

.sp_news {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    max-height: 70px;
    margin-bottom: 15px;
}

.sp_news .thumbnail-image {
    width: 30%;
}

.sp_news .sp_news-item {
    width: 65%;
}

.sp_news .sp_news-item h3 {
    font-weight: 400;
    font-style: normal;
    color: #282828;
    font-size: 13px;
    margin-bottom: 6px;
}

.sp_news .sp_news-item p {
    font-weight: 400;
    font-style: normal;
    color: #999;
    font-size: 12px;
}

.sp_news img {
    height: 70px;
    width: 100%;
    object-fit: cover;
}

.sp_news-text p {
    width: 100%;
    height: calc(15px * 2);
    overflow: hidden;
    line-height: 15px;
}

.sp_time i {
    margin-right: 5px;
}

.sp_link:hover .sp_news .sp_news-item h3 {
    color: #92278f;
}

.thumbnail-image {
    position: relative;
}

.sp_news .thumbnail-image:after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    visibility: hidden;
    width: 100%;
    height: 100%;
    background: rgba(28, 28, 28, .7);
    content: '';
    opacity: 0;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.sp_link:hover .sp_news .thumbnail-image:after {
    visibility: visible;
    opacity: 1;
}