/* douban item post-preview --------*/

.post-preview {
    max-width: 780px;
    margin: 1em auto;
    position: relative;
    display: flex;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .25), 0 0 1px rgba(0, 0, 0, .25);
}

.post-preview--meta {
    width: 75%;
    padding: 25px;
}

.post-preview--middle {
    line-height: 28px;
}

.post-preview--title {
    font-size: 18px;
    margin: 0;
	font-weight: bold;
}

.post-preview--title a {
    text-decoration: none;
}

.post-preview--date {
    font-size: 14px;
    color: #999;
}

.post-preview--excerpt {
    font-size: 14px;
    line-height: 1.825;
}

.post-preview--excerpt p {
    margin-bottom: 0;
}

.post-preview--image {
    width: 28%;
    float: right;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

@media (max-width:550px) {
    .post-preview {
        width: 95%;
    }
    .post-preview--image {
        width: 40%;
    }
    .post-preview--meta {
        width: 60%;
    }
    .post-preview--excerpt {
        display: none;
    }
}

.rating {
    display: block;
    line-height: 15px;
}

.rating-star {
    display: inline-block;
    width: 75px;
    height: 15px;
    background-repeat: no-repeat;
    background-image: url(/wp-content/themes/begin/template/db_api/include/db_star.png);
    overflow: hidden;
}

.allstar10 {
    background-position: 0px 0px;
}

.allstar9 {
    background-position: 0px -15px;
}

.allstar8 {
    background-position: 0px -30px;
}

.allstar7 {
    background-position: 0px -45px;
}

.allstar6 {
    background-position: 0px -60px;
}

.allstar5 {
    background-position: 0px -75px;
}

.allstar4 {
    background-position: 0px -90px;
}

.allstar3 {
    background-position: 0px -105px;
}

.allstar2 {
    background-position: 0px -120px;
}

.allstar1 {
    background-position: 0px -135px;
}

.allstar0 {
    background-position: 0px -150px;
}

.rating-average {
    color: #777;
    display: inline-block;
    font-size: 13px;
    margin-left: 10px;
}