.video{
    margin: 60px 0 40px;
}

.video .video-items{
    margin-bottom: 30px;
}

.video .video-img{
    position: relative;
}

.video .player::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0.5);
    content: '';
    z-index: 1;
    opacity: 0;
    transition: all 0.3s;
}

.video .player i{
    position: absolute;
    top: 30%;
    width: 66px;
    height: 66px;
    background-image: url(../img/icon_31.png);
    content: '';
    left: 50%;
    transform: translate(-50%,0);
    z-index: 10;
    opacity: 0;
    transition: all 0.5s;
}

.video .video-items p{
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    text-align: center;
    text-overflow: ellipsis;
    color: #BC2121;
    line-height: 60px;
    height: 60px;
    background-color: rgba(188, 33, 33, 0.05);
}

.video .video-items:hover .player::after{
    width: 100%;
    height: 100%;
    opacity: 1;
}

.video .video-items:hover i{
    top: 50%;
    transform: translate(-50%,-50%);
    opacity: 1;
}

@media (max-width: 992px) {
    .video{
        margin: 0 0 5rem;
    }
    
    .video .video-items{
        margin: 3rem 0 0;
    }
}