.video-list {
    margin-top: 20px;
}
.video-list .item {
    border-radius: 20px;
    overflow: hidden;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
.video-list .item .img {
    background-color: #F0F0F0;
    width: 100%;
    height: 378px;
    overflow: hidden;
    position: relative;
}
.video-list .item .img .iconfont {
    position: absolute;
    background-color: rgba(255, 255, 255, .3);
    width: 66px;
    height: 66px;
    left: 50%;
    top: 50%;
    margin-top: -33px;
    margin-left: -33px;
    border-radius: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
}
.video-list .item .img .mask {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    top: 0px;
    background-color: rgba(3, 20, 41, .6);
    z-index: 2;
    -webkit-transition: all .35s;
    transition: all .35s;
}
.video-list .item .img img {
    width: 100%;
    height: 100%;
    -webkit-transition: all .35s;
    transition: all .35s;
    position: absolute;
    z-index: 1;
}
.video-list .item:hover .img img{
    transform: scale(1.1);
}
.video-list .item:hover .img .mask {
    background-color: rgba(3, 20, 41, .3);
}
.video-list .item .info {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between
}
.video-list .item .info .title{
    font-size: 16px;
    font-weight: bold;
}
.video-list .item .info .iconfont {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background-color: #F7FAFE;
    color: var(--color-secondary);
    margin-left: 10px;
}

.video-list a {
    color:#000C17;
}
@media screen and (max-width: 768px) {
    .video-list .item .img {
        height: 250px;
    }
    .video-list .item .info {
        padding: 10px;
    }
}