#topMVC {
    height: 81.42vh;
    transform: translateY(-28.63vh);
    margin-bottom: -28.63vh;
    overflow: hidden;
    background: #EEE;
}

#topMVC:before {
    content: "";
    display: block;
    position: absolute;
    left: 45px;
    right: 45px;
    top: 20px;
    height: 1px;
    background: #FFF;
    z-index: 2;
}

#topMVC:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../img/movieCoverDot.png) repeat center center;
    background-size: 4px 4px;
    z-index: 1;
}

#topMVC ul,
#topMVC ul li{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

#topMVC ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#topMVC ul li {
    transform: scale(1.07);
    opacity: 0;
    transition: opacity 3000ms linear, transform 7000ms linear;
}

#topMVC ul li._show1 {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

#topMVC ul li._show2 {
    opacity: 1;
    transform: scale(1);
    z-index: 3;
}

#topMVC ul li._show3 {
    opacity: 1;
    transform: scale(1);
    z-index: 4;
}

#topMVC ul li._showInit {
    opacity: 1;
}

@media screen and (max-width:1099px) {
    #topMVC {
        background: #CCC;
        height: 67.93vh;
        transform: translateY(-48.87vh);
        margin-bottom: -28.63vh;
    }
    #topMVC::before {
        left: 20px;
        right: 20px;
        top: 29px;
    }
}