<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.player-container {
    position: relative;
    width: 1024px;
    height: 576px;
    background: #151515;
    margin: 0 auto;
}

.player-container&gt;img {
    width: 1024px;
    height: 576px;
    opacity: 0.5;
}

.player-container iframe {
    width: 1024px;
    height: 576px;
}

.player-container .loading-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.movie-name-container {
    margin: 26px auto;
    width: 1024px;
    height: auto;
    padding: 0 10px;
}

.movie-name-container h1 {
    font-size: 24px;
    color: #fff;
}

.series-ep-nav {
    width: 1024px;
    height: 48px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 10px;
}

h2 {
    color: #fff;
}

.cards-container-2rows {
    width: calc(100vw - 20px);
    height: 489px;
    display: flex;
    flex-wrap: wrap;
    overflow-y: hidden;
}

.cards-container-4rows {
    width: calc(100vw - 20px);
    height: 965px;
    display: flex;
    flex-wrap: wrap;
    overflow-y: hidden;
}

@media only screen and (max-width: 1150px) {
    .cards-container-2rows {
        height: auto;
    }
    .cards-container-4rows {
        height: auto;
    }
}

@media only screen and (max-width: 1024px) {
    .player-container {
        width: calc(100vw - 20px);
        height: calc((100vw - 20px) * 0.5625);
    }
    .player-container iframe {
        width: 100vw;
        height: calc((100vw - 20px) * 0.5625);
    }
    .player-container&gt;img {
        width: 100vw;
        height: calc((100vw - 20px) * 0.5625);
    }
    .movie-name-container {
        width: calc(100vw - 20px);
    }
    .series-ep-nav {
        width: calc(100vw - 20px);
    }
}</pre></body></html>