

.mmlist li {
    float: left;
    margin: 0 0 40px 33px;
    width: 350px;
    border-radius: 8px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .1);
}

.mmlist .img {
    display: block;
    position: relative;
    width: 100%;
    height: 388px;
    border-radius: 8px;
    overflow: hidden;
}

.mmlist .img-box {
    width: 100%;
    height: 80%;
}

.mmlist .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.mmlist .info-box {

    left: 0;
    bottom: 0;
    width: 95%;
    height: 62px;

    padding: 0px 10px;

    border-radius: 0 0 8px 8px;
}

.mmlist .info-box p.title {
    margin-top: 12px;
    height: 24px;
    line-height: 24px;
    font-size: 14px;
    color: #000000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mmlist .info-box p.anchor {
    margin-top: 10px;
    position: relative;
}

.mmlist .info-box p.anchor {
    position: relative;
}

.mmlist .info-box p.anchor .play, .mmlist .info-box p.anchor .zan {
    position: absolute;
    right: 0;
    top: 0;
    color: #000000;
}

.mmlist .info-box p.anchor .alias {
    display: inline-block;
    width: 160px;
    color: #000000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mmlist .info-box p.anchor img {
    margin-right: 7px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    vertical-align: middle;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.mmlist .info-box p.anchor .play i {
    width: 20px;
    height: 16px;
    background: url(/skin/images/bf.png);
    vertical-align: middle;
}

.mmlist li:hover {
    -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    -webkit-transform: translate3d(0, -2px, 0);
    -webkit-transform: translate3d(0, -2px, 0);
    -moz-transform: translate3d(0, -2px, 0);
    -ms-transform: translate3d(0, -2px, 0);
    transform: translate3d(0, -2px, 0);
}


.mmlist .icon-time {
    position: absolute;
    right: 10px;
    top: 10px;
    color: #fff;
}

.mmlist .icon-play {
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -26px 0 0 -26px;
    width: 52px;
    height: 52px;
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
}

.mmlist .img:hover .icon-play {
    -webkit-background-position: -100px 0;
    background-position: -100px 0;
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

