.new_movie-card {
    float: left;
    margin: 5px;
    width: 180px;
    height: 256px;
    overflow: hidden;
    border-radius: 4px;
}
.new_movie-card>div:nth-child(1) {
    position: relative;
}
.new_movie-card_rating {
    display: inline-block;
    width: auto;
    height: 18px;
    color: #fff;
    line-height: 1.7em;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    padding: 0px 8px;
}
.new_movie-card_view {
    position: absolute;
    width: auto;
    height:18px;
    left: 0;
    top: 0;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    line-height: 1.7em;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    padding: 0px 8px;
    margin: 4px;
    border-radius: 4px;
}
.new_movie-card_vq {
    position: absolute;
    width: auto;
    height:18px;
    right: 0;
    top: 0;
    color: #fff;
    background: #e82022;
    line-height: 1.7em;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    padding: 0px 8px;
    margin: 4px;
    border-radius: 4px;
}
.new_movie-card_rating_red {
    border-color:crimson;
}
.new_movie-card_rating_green {
    border-color:#29b474;
}
.new_movie-card_rating_yellow {
    border-color:#f9ab00;
}
.new_movie-card_play {
    display: flex;
    opacity: 0;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 100%;
    height: 100%;
    transition: opacity  0.5s ease;
}
.new_movie-card_play_outer-circle {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    width: 70px;
    height: 70px;
    color: crimson;
    border-radius: 50%;
    transition: background-color 0.5s ease;
}
.new_movie-card_play_outer-circle:hover {
    background: crimson;
}
.new_movie-card_play_inner-circle {
    margin: 7px;
    background: #fff;
    width: 56px;
    height: 56px;
    color: crimson;
    text-align: center;
    border-radius: 50%;
    line-height: 4em;
    display: flex;
    justify-content: center;
    align-items: center;
}
.new_movie-card_poster:hover .new_movie-card_play {
    opacity: 1;
}
.new_movie-card_poster:hover img {
    filter: brightness(70%);
}
.new_movie-card img {
    transition: 0.5s filter ease, 0.5s -webkit-filter ease;
}
.new_movie-card_content {
    width: 100%;
    height: 64px;
    background: #1e1d22;
}
.new_movie-card_content_a {
    width: 100%;
    height: 22px;
    background: #393c43;
    text-align: center;
    color: #c1ccde !important;
    line-height: 2.0em;
}
.new_movie-card_poster {
    width: 100%;
    height: 256px;
}
.new_movie-card_poster>img {
    width: 100%;
    height: 100%;
}
.new_movie-card_movie-name {
    position: absolute;
    bottom: 0;
    color: #fff;
    font-size: 12px;
}
.new_movie-card_movie-name-bg {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
}
.new_movie-card_title {
    padding-left: 6px;
    padding-top: 6px;
    font-weight: bold;
    font-size: 12px;
    transition: 0.4s;
    transition-property: color, background-color, border-color, opacity;
    color:#fff;
    text-decoration: none;
    width: 180px;
    height: auto;
    overflow:hidden;
    display:block;
}
.new_movie-card_title:hover {
    color:crimson;
    text-decoration: none;
}
.new_movie-card_genres {
    margin-left: 5px;
    font-size: 12px;
    transition: 0.4s;
    transition-property: color, background-color, border-color, opacity;
    color:#fff;
}
.new_movie-card_genres:hover {
    color:#fff;
    text-decoration: none;
}
.movie-card-ribbon {
    width: 100px;
    height: 91px;
    position: absolute;
    right: -10px;
    top: -10px;
    overflow: hidden;
    z-index: 10;
}
.movie-card-ribbon-inner {
    width: 145px;
    height: 20px;
    transform: rotate(45deg);
    margin-left: 4px;
    position: relative;
    left: -14px;
    top: 31px;
    box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 1);
    text-align: center;
    color: #fcfcfc;
    line-height: 1.4em;
}

.movie-card-ribbon-fullhd {
    background: #0033ff;
}
.movie-card-ribbon-normal {
    background: none;
}
.movie-card-ribbon-hd {
    background: #dc0603;
}
.movie-card-ribbon-4k {
    background: #f600ff;
}
.movie-card-ribbon-zoom {
    background: #0e9f00;
}