
/* 每周一书 */
.book_wrap .active{
    display: block;
}
.books_list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
}
.books_item{
    width: 50%;
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}
.books_item .left{
    width: 149px;
    height: 193px;
    border: 1px solid #cccccc;
    background-color: #fff;
    margin-right: 15px;
    padding: 8px;
    box-sizing: border-box;
    overflow: hidden;
}
.books_item img{
    width: 100%;
    height: 100%;
}
.right{
    width: 224px;
    font-size: 14px;
}
.book_name{
    font-size: 18px;
    color: #165396;
}
.right div{
    margin-bottom: 12px;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.look{
    color: #165396;
    cursor: pointer;
}

