.movie {
    position: relative;
    width: 25%;
    float: left;
    box-sizing: border-box;
    padding: 4px
}

.movie-box {
    position: relative;
    width: auto;
    height: 20vw;
    background: #242424;
    color: #005baa;
    font-size: 11px;
    font-weight: 400;
    text-align: center;
    margin: 0;
    padding: 4px;
    border: 1px solid #444;
    border-radius: 4px 4px 0 0;
    overflow: hidden;
    max-height: 220px;
}

.movie-box:hover {
    border-color: #f88b00;
    transition: all .3s linear
}

.movie-box .movie-image {
    width: auto;
}

.movie-box .movie-image img {
    width: 100%;
    height: 100%;
    border-radius: 4px
}

.movie-box .movie-title {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, .7);
    padding: 4px;
    box-sizing: border-box;
    margin-left: -4px
}

.movie-box .movie-title>a {
    word-wrap: break-word;
    color: #ffcb00;
    font-size: 13px;
    text-decoration: none;
}

.movie-imdb {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 10px;
    background: rgba(0, 0, 0, .9);
    margin: 4px;
    padding: 2px 6px;
    color: rgba(255, 255, 255, .9);
    border-radius: 0 0 2px 0
}

.movie-imdb b {
    background: url(images/icon-star.png) no-repeat 0;
    background-size: 11px 11px
}

.movie-imdb b span {
    margin-left: 14px
}

.movie-corner {
    width: 80px;
    position: absolute;
    text-align: center;
    line-height: 20px;
    letter-spacing: 1px;
    color: #f0f0f0;
    top: 10px;
    right: -20px;
    left: auto;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    font-weight: 700;
    box-shadow: 0 0 3px rgba(0, 0, 0, .3);
    text-shadow: 1px 1px 1px #222
}

.movie-HD {
    background: #dc0603
}

.movie-SD {
    background: #dc5419
}

.movie-ZM {
    background: #0e9f00
}

.movie-footer {
    float: left;
    width: 100%;
    padding: 4px;
    color: #ccc;
    font-size: x-small;
    text-align: center;
    background: #444;
    border-radius: 0 0 4px 4px;
    box-sizing: border-box
}

.movie-footer a {
    color: #fff
}