.allBookBox .banner{
    max-height: 262px;
    overflow: hidden;
}
.allBookBox .banner img{
    width: 100%;
    height: auto;
}

.bookViewBox{
    background-color: #F4F4F4;
    padding: 20px 0;
    overflow: hidden;
}
.bookViewInner{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0 10px;
}
.bookViewBox .bookList{
    padding: 0 0 50px 0;
    box-sizing: border-box;
    position: relative;
    align-self: stretch;
    flex-grow: 1;
}
.bookViewBox .bookList .bookListInner{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}
.bookViewBox .bookList .noDataMsg + .bookListPage{
    padding-top: 10px;
}
.bookViewBox .bookList .noDataMsg + .bookListPage .layui-laypage{
    margin-bottom: 0;
}
.bookViewBox .bookList .bookCard{
    width: 189px;
    box-shadow: unset;
}
.bookViewBox .bookList .bookCard:hover{
    box-shadow: 0 0 10px #c1c1c1;
}
.bookViewBox .bookList .bookCard .box-img{
    height: 172px;
}
.bookViewBox .bookList .bookListPage{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    clear: both;
    text-align: center;
    padding: 10px 0 0;
}
.bookViewBox .bookList .bookListPage .layui-laypage{
    margin-bottom: 0;
}
.bookViewBox .bookList .bookListPage .layui-laypage a,
.bookViewBox .bookList .bookListPage .layui-laypage span{
    margin-bottom: 0;
}

@media screen and (max-width: 1066px) {
    .bookViewInner{
        flex-direction: column;
        gap: 20px 0;
        justify-content: flex-start;
    }
    .bookViewBox .bookList .bookListInner{
        gap: 10px 14px;
    }
}

@media screen and (max-width: 768px){
    .bookViewBox .bookList{
        padding: 0 10px 50px;
    }
    .bookViewBox .bookList .bookListInner{
        gap: 15px 0;
    }
    .bookViewBox .bookList .bookCard{
        width: 100%;
        box-shadow: 0 0 10px #e5e5e5;
    }
    .bookViewBox .bookList .bookCard .box-img{
        height: 68px;
    }
}