/*.banner{margin-top: 42px;}*/
/*.m-banner{margin-top: 38px;}*/

.movie-list{
    width: calc(100% + 40px);
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
}

.movie-list .item{
    width: 33%;
    padding: 0 40px 20px 0;
    box-sizing: border-box;
    zoom: 1;
    cursor: pointer;
}

.movie-list .item .movie-img{
    position: relative;
}
.movie-list .item .movie-img img{
    display: block;
    border-radius: 5px;
}

.movie-list .item .movie-img .icon-play{
    position: absolute;
    display: block;
    width: 42px;
    height: 42px;
    top: calc(50% - 21px);
    left: calc(50% - 21px);
    z-index: 1;
    background: url("../images/icon-play.png") no-repeat;
    background-size: 42px 42px;
}

.movie-list .item:hover .movie-img::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    border: 6px solid #df0000;
    box-sizing: border-box;
}

.movie-list .item .movie-title{
    font-size: 18px;
    padding: 15px 0;
    color: #000000;
    font-weight: bolder;
}

.movie-list .item:hover .movie-title{
    color: #df0000;
}

@media screen and (max-width: 750px) {
    .menulist .item:nth-of-type(1){
        order: 1;
    }
}

@media screen and (max-width: 460px) {
    .movie-list{
        width: 100%;
        justify-content: space-between;
    }
    .movie-list .item{
        width: 47%;
        padding: 0 0 20px 0;
    }
    .movie-list{
        width: 100%;
    }
    .movie-list .item{
        width: 48%;
    }
    .movie-list .item .movie-title{
        text-align: center;
    }

}


