#special_c {
    max-width: 900px;
    margin: 2rem auto;
    border: 1px solid #e60012;
    padding: 15px 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
#movie {
    max-width: 900px;
    margin: 2rem auto;
}
#movie .c_title {
    text-align: center;
}

.banners {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.banners .banner_l {
    width: 48%;
    margin-bottom: 20px;
}

.others {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-top: 3rem;
}
#newslist {
    width: 60%;
}
.u_unit-right {
    width: 30%;
}
.u_unit-right a {
    border: 1px solid #252525;
    padding: 0.6em 0.3em;
    margin-bottom: 1em;
    display: block;
    text-align: center;
    font-size: 1.28571em;
}
#movie_sc {
    margin: 6rem auto;
}
#movie_sc ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#movie_sc .c_title {
    text-align: center;
    margin-bottom: .6em;
}

@media screen and (max-width: 640px) {
    #special_c,
    #movie,
    .banners,
    .others {
        flex-direction: column;
        gap: 2rem;
        margin: 2rem 20px;
    }
    #special_c {
        display: flex;
        flex-direction: column;
        margin: 0 1.2rem 2em;
    }
    #newslist {
        width: 100%;
    }
    .u_unit-right {
        width: 100%;
    }
    .banners .banner_l {
        width: 100%;
    }
}