.movie-item, .book-item {
    display: flex;
    height: 200px;
    background-color: #F6F6F6;
    margin: 5px 0;
    padding: 0;
    align-items: center;
}

.movie-img, .book-img {
    height: 200px;
    width: auto;
}

.movie-info, .book-info {
    height: 200px;
    overflow-y: auto;
    flex: 1;
    padding: 10px;
}

.movie-info .movie-name,
.book-info .book-title {
    margin: 0!important;
}

.movie-info > span,
.book-info > span {
    display: block;
    margin: 0;
}

.movie-info .movie-rating .rating,
.book-info .book-rating .rating {
    display: inline-block;
}

.movie-info .movie-rating .rating .stars-outer,
.book-info .book-rating .rating .stars-outer{
    position: relative;
    display: inline-block;
    unicode-bidi: bidi-override;
    direction: ltr;
    font-size: 18px;
    line-height: 1;
    color: #ccc;
}

.movie-info .movie-rating .rating .stars-outer::before,
.movie-info .movie-rating .rating .stars-inner::before,
.book-info .book-rating .rating .stars-outer::before,
.book-info .book-rating .rating .stars-inner::before{
    content: "\2605\2605\2605\2605\2605";
}

.movie-info .movie-rating .rating .stars-outer .stars-inner,
.book-info .book-rating .rating .stars-outer .stars-inner{
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    color: #FF8800;
}

.good-list {
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.good-list.good-list-single {
    justify-content: flex-start;
}

.good-list, .good-item {
    display: flex;
    align-items: center;
}

.good-list {
    padding: 5px 0;
}

.good-item {
    min-width: 280px;
    flex: 1;
    position: relative;
    justify-content: center;
    background: #F6F6F6;
    padding: 50px 0 0;
    flex-direction: column;
    margin-top: 5px;
    margin-bottom: 5px;
}

.good-img {
    text-align: center;
}

.good-img img {
    height: 120px;
    width: auto;
    max-width: 100%;
}

.good-meta {
    font-size: 14px;
    padding-bottom: 10px;
    color: rgba(0, 0, 0, 0.8);
    margin-top: 40px;
    line-height: 1.4;
    width: 92%;
}

.good-brand {
    color: rgba(0, 0, 0, 0.55);
}

.good-name {
    display: flex;
    align-items: center;
}

.good-price {
    margin-left: auto;
    font-size: 12px;
}

@media (max-width: 800px) {
    .good-item {
        width: 48%;
        min-width: 48%;
    }
}

@media (max-width: 650px) {
    .good-item {
        width: 100%;
        min-width: 100%;
    }
}