/*.banner{margin-top: 42px;}*/
/*.m-banner{margin-top: 38px;}*/

.movieTitle{
    font-size: 30px;
    font-weight: bolder;
    color: #df0000;
}
.soshm{
    float: right;
    margin-top: 24px;
}
.movie{
    margin-top: 30px;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.movie video{
    width: 100%;
    height: 600px;
    object-fit: fill;
    -o-object-fit: fill;
}

.turn-page{
    margin-top: 30px;
}

.turn-page p{
    font-size: 14px;
    height: 40px;
    line-height: 40px;
}

.turn-page a{
    color: #000000;
    margin-left: 10px;
}

.more{
    margin-top: 40px;
}

.more>p{
    font-size: 20px;
    margin-bottom: 20px;
}

.more-list{
    width: calc(100% + 40px);
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
}

.more-list .item{
    display: block;
    width: 33.33%;
    padding: 0  40px 20px 0;
    box-sizing: border-box;
    zoom: 1;
}

.more-list .item .movie-title{
    padding: 10px 0;
    font-size: 14px;
    color: #000000;
}

.more-list .item:hover .movie-title{
    color: #df0000;
}

.more-list .item .movie-img{
    position: relative;
}
.more-list .item .movie-img img{
    display: block;
}

.more-list .item:hover .movie-img::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    border: 6px solid #df0000;
    box-sizing: border-box;
}

.more-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;
}
@media screen and (max-width: 1280px){
    .soshm{
        display: none;
    }
}
@media screen and (max-width: 750px){
    .movie{
        height: 425px;
    }
    .movie video{
        height: 425px;
    }
    .menulist .item:nth-of-type(1){
        order: 1;
    }
}
@media screen and (max-width: 460px) {
    .more-list{
        width: 100%;
        justify-content: space-between;
    }
    .more-list .item{
        width: 47%;
        padding:  0 0 20px 0;
    }
    .movie{
        height: 300px;
    }
    .movie video{
        height: 300px;
    }
}