.home {
    display: flex;
    justify-content: space-around;
}
.home-heading {
    width: 100%;
    height: 44px;
    border-radius: 8px 8px 0 0;
    background: #85180f;
    padding: 7px;
    overflow: hidden;
    text-align: center;
    font-size: 22px;
}
.home-left {
    width: 200px;
    height: auto;
    margin-right: 40px;
}

.home-right {
    width: 320px;
    height: auto;
    margin-left: 30px;
}

.home-mid {
    width: calc(100vw - 620px);
    height: auto;
    min-height: 400px;
    min-width: 620px;
}

.home-category-ul {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.home-category-ul li {
    display: block;
    width: 100%;
    height: 40px;
}

.home-category-ul li a {
    display: block;
    width: 100%;
    height: 100%;
    background: #0f0f11;
    border: 2px dashed #202020;
    border-width: 2px 0 0 0;
    text-align: center;
    line-height: 2.4em;
    text-decoration: none;
    color: #fff;
}

.home-category-ul li a:hover {
    background: #000;
}

.side-card-year-ul {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    width: 200px;
    height: auto;
    margin: 0;
    padding: 0;
    justify-content: space-between;
}
.side-card-year-ul li {
    display: block;
    margin-top: 10px;

}
.side-card-year-ul a {
    display: inline-block;
    width: 60px;
    height: 40px;
    color: #f0f0ed;
    text-decoration: none;
    text-align: center;
    line-height: 3em;
    font-size: 14px;
    background: none;
    border-radius: 8px;
    border: 1px solid #222;
}
.side-card-year-ul a:hover {
    background: #1a1d20;
}

.home-movie-section {
    width: 100%;
    height: auto;
    padding: 10px 0;
    margin-top: 40px;
}

.home-movie-section-title {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
}

.home-movie-section-title strong {
    color: #fff;
    font-size: 38px;
}

.movie-section-cards-box {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    height: 532px;
    overflow: hidden;
}

.movie-section-pagination-box {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
}

.movie-section-cards-box-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 532px;
    background: rgba(0, 0, 0, .8);
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (min-width: 2561px) {
    .movie-section-cards-box {
        height: 271px;
    }
    .movie-section-cards-box-backdrop {
        height: 271px;
    }
}
.movie_ranking_number {
    position: absolute;
    color: #fff;
    font-size: 64px;
    left: 10px;
    top: 10px;
    z-index: 7;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: black;
}