@charset "UTF-8";

.pcMain {
    background-color: #FFF5F5;
}
    /* 顶部栏 */
    .pcMain .topBar {
        width: 1020px;
        margin: 0 auto;
        position: relative;
    }

        .pcMain .topBar .layui-tab {
            margin: 0;
            padding: 0 0 22px 0;
        }

            .pcMain .topBar .layui-tab .layui-tab-title {
                height: 60px;
            }

                .pcMain .topBar .layui-tab .layui-tab-title li {
                    height: 60px;
                    line-height: 60px;
                }

        .pcMain .topBar .layui-tab-title .layui-this:after {
            height: 61px;
        }

    .pcMain .totalBookNum {
        position: absolute;
        top: 45%;
        transform: translateY(-50%);
        right: 0;
    }

        .pcMain .totalBookNum i {
            font-style: normal;
            color: #FF3955;
        }
    /* 主体内容 */
    .pcMain .contentBar {
        width: 1020px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
    }
    /* 主列表 */
    .pcMain .mainList {
        width: 750px;
        background: #FFFFFF;
        border-radius: 6px;
        padding: 20px;
    }

        .pcMain .mainList li {
            display: flex;
            justify-content: space-between;
            padding: 22px 0;
            border-top: 1px solid #E9E9E9;
        }

            .pcMain .mainList li:first-child {
                border-top: 0;
                padding-top: 0;
            }

        .pcMain .mainList .bookItemInfo {
            width: calc(100% - 127px);
            display: flex;
            justify-content: flex-start;
        }

        .pcMain .mainList .bookItemImg {
            width: 102px;
            height: 136px;
            margin-right: 22px;
            border: 1px solid #E9E9E9;
            overflow: hidden;
            box-shadow: 0px 2px 4px rgba(0,0,0,0.1);
        }

            .pcMain .mainList .bookItemImg img {
                width: 102px;
                height: 136px;
                transition: transform .3s ease-out;
            }

                .pcMain .mainList .bookItemImg img:hover {
                    transform: scale(1.05);
                }

        .pcMain .mainList .bookItemDetail {
            width: calc(100% - 124px);
        }

    .pcMain .bookItemDetail h4 {
        margin-bottom: 5px;
    }

        .pcMain .bookItemDetail h4 a {
            width: 100%;
            display: inline-block;
            font-size: 18px;
            line-height: 20px;
            font-weight: bold;
            transition: 0.3s;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            color: #1a1a1a;
        }

    .pcMain .bookItemDetail a:hover {
        color: #FF3955;
    }

    .pcMain .bookItemDetail .bookItemAuthor {
        font-size: 12px;
        color: #a6a6a6;
        margin-bottom: 13px;
    }

    .pcMain .bookItemDetail .bookItemDesc {
        font-size: 12px;
        color: #808080;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        word-break: break-all;
        -webkit-box-orient: vertical;
        height: 36px;
        line-height: 1.5;
        margin-bottom: 23px;
    }

    .pcMain .bookItemDetail .bookItemChapter a {
        font-size: 12px;
        color: #0B76D4;
    }

        .pcMain .bookItemDetail .bookItemChapter a:hover {
            text-decoration: underline;
        }

    .pcMain .mainList .bookBtnBox {
        width: 101px;
        display: flex;
        justify-content: flex-start;
        align-items: end;
        flex-direction: column;
        margin-top: 36px;
    }

        .pcMain .mainList .bookBtnBox .layui-btn-primary {
            border-color: #FF3955;
            background: 0 0;
            color: #FF3955;
        }

        .pcMain .mainList .bookBtnBox .layui-btn {
            width: 101px;
            height: 34px;
            line-height: 34px;
            border-radius: 17px;
            margin-bottom: 12px;
        }

        .pcMain .mainList .bookBtnBox .layui-btn-disabled, .pcMain .mainList .bookBtnBox .layui-btn-disabled:active, .pcMain .mainList .bookBtnBox .layui-btn-disabled:hover {
            border-color: #a6a6a6 !important;
            background-color: #ffffff !important;
            color: #a6a6a6 !important;
        }

        .pcMain .mainList .bookBtnBox .layui-btn a, .pcMain .mainList .bookBtnBox .layui-btn a:hover {
            color: #fff;
        }

    /* 侧边列表 */
    .pcMain .sliderList {
        width: 250px;
        background: #FFFFFF;
        border-radius: 6px;
        padding: 20px 16px;
    }

        .pcMain .sliderList h3 {
            font-size: 18px;
            line-height: 24px;
            color: #272727;
            font-weight: bold;
        }

        .pcMain .sliderList li {
            padding: 16px 0;
            border-top: 1px solid #e9e9e9;
        }

            .pcMain .sliderList li:first-child {
                border-top: 0;
            }

        .pcMain .sliderList a {
            display: flex;
            justify-content: flex-start;
        }

    .pcMain .sliderItemImg {
        width: 64px;
        height: 86px;
        min-width: 64px;
        box-shadow: 0px 2px 4px rgba(0,0,0,0.1);
        margin-right: 10px;
        overflow: hidden;
        border: 1px solid #DEDEDE;
    }

        .pcMain .sliderItemImg img {
            width: 100%;
            height: 100%;
            transition: transform .3s ease-out;
        }

            .pcMain .sliderItemImg img:hover {
                transform: scale(1.05);
            }

    .pcMain .sliderItemDetail {
        width: calc(100% - 64px - 10px);
    }

        .pcMain .sliderItemDetail h4 {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            font-size: 14px;
            color: #272727;
        }

        .pcMain .sliderItemDetail .bookItemAuthor {
            margin-top: 9px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            color: #1a1a1a;
            font-size: 12px;
            color: #a6a6a6;
        }

        .pcMain .sliderItemDetail .bookItemDesc {
            margin-top: 8px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            word-break: break-all;
            font-size: 12px;
            color: #808080;
            line-height: 16px;
            height: 32px;
        }


    .pcMain .dataNull {
        width: 100%;
        text-align: center;
    }

        .pcMain .dataNull img {
            width: 250px;
            margin-top: 169px;
        }

    .pcMain .data_null_text {
        font-size: 14px;
        color: #A5A5A5;
        margin-top: 20px;
    }
