.dyfc{}

.showsList{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.showsItem{
    flex-shrink: 0;
    display: block;
    width: 32%;
    margin-right: 2%;
    margin-bottom: 2%;
    position: relative;
    overflow: hidden;
}

.showsItem:nth-child(3n){
    margin-right: 0;
}

.showsItem .cover{
    width: 100%;
    height: 308px;
    background-size: cover !important;
    background-position: center center !important;
}

.showsItem .desc{
    width: 100%;
    height: 55px;
    background: rgba(228,0,0,0.8);
    text-align: center;
    line-height: 55px;
    position: absolute;
    bottom: -55px;
    transition: all .3s;
}

.showsItem .desc p{
    font-size: 18px;
    color: white;
    -webkit-line-clamp: 1;
}

.showsItem:hover .desc{
    bottom: 0;
}

@media screen and (max-width: 768px){
    .showsItem{
        width: 49%;
    }

    .showsItem:nth-child(3n){
        margin-right: 2%;
    }

    .showsItem:nth-child(2n){
        margin-right: 0;
    }

    .showsItem .cover{
        height: 240px;
    }
}

@media screen and (max-width: 540px){
    .showsItem{
        box-shadow: 0px 0px 5px #dfdede;
    }

    .showsItem .cover{
        height: 126px;
    }

    .showsItem .desc{
        height: auto;
        line-height: 20px;
        padding: 10px;
        position: static;
        background: #F7F8FA;
    }

    .showsItem .desc p{
        font-size: 12px;
        color: #333333;
        -webkit-line-clamp: 2;
    }

    .showsItem:hover .desc{
        background: rgba(228,0,0,0.8);
    }

    .showsItem:hover .desc p{
        color: white;
    }
}