/*---------------------------------------------------------------------- /
巨幕-开始
----------------------------------------------------------------------- */
.jm {
    background: url('../images/banner/lib.jpg') no-repeat;
    position: relative;
    background-size: cover;
    height: 600px;
}

/* 巨幕响应式-电脑端响应式 */
@media screen and (max-width:1680px) {
    .jm {
        height: 525px;
    }
}

@media screen and (max-width:1440px) {
    .jm {
        height: 450px;
    }
}

@media screen and (max-width:1280px) {
    .jm {
        height: 400px;
    }
}

@media screen and (max-width:1080px) {
    .jm {
        height: 300px;
    }
}

@media screen and (max-width:820px) {
    .jm {
        height: 260px;
    }
}

@media screen and (max-width:580px) {
    .jm {
        background-size: contain;
        background: url('../images/banner/h5/lib-iphone.jpg') no-repeat;
        background-position: left;
        height: 200px;
        display: block;
    }
}

/*---------------------------------------------------------------------- /
巨幕-结束
----------------------------------------------------------------------- */

/*---------------------------------------------------------------------- /
面包屑-开始
----------------------------------------------------------------------- */
.mbx-row {
    height: 100px;
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

/* 文字配置 */
.mbx-text p {
    font-size: 15px;
    font-style: normal;
    display: inline-block;
    font-weight: 800;
    padding-top: 10px;
    letter-spacing: 1px;
}

/* 左边距 */

/* 下划线 */
.mbx-text p::after {
    /* this is the separator between items */
    display: inline-block;
    content: '\00bb';
    margin: 0 .6em;
    color: black;
}

/* 取消最后一个 》符号 */
.mbx-text p:last-child::after {
    /* this is the separator between items */
    display: none;
}

@media screen and (max-width: 1080px) {
    .mbx-text p:first-child {
        padding-left: 0px;
    }
}


/*---------------------------------------------------------------------- /
面包屑-结束
----------------------------------------------------------------------- */

/*---------------------------------------------------------------------- /
主页-开始
----------------------------------------------------------------------- */

/*---------------------------------------------------------------------- /
lib-pc主页面
----------------------------------------------------------------------- */
/* 右边距-距离 */
.mr-60 {
    margin-right: 60px;
}

/* lib行间距 */
.lib-row {
    color: black;
    margin-bottom: 20px;
}

/* 盒子lib */
.box-lib {
    height: 120px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    border: 2px solid #e9e9e9;
}


.box-lib:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.48), 0 7px 15px rgba(0, 0, 0, 0.30);
}

/* lib盒子标签 */
.box-lib .icon {
    flex: 2;
    height: 100px;
    margin-top: 20px;
}

/* lib-icon标签 */
.box-lib .icon .lib-icon {
    font-size: 50px;
    padding-left: 30px;
    padding-top: 30px;
}

/* lib盒子文字 */
.box-lib .word-1 {
    flex: 12;
    height: 120px;
    padding-top: 30px;
    padding-left: 10px;
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    letter-spacing: 2px;
}

/* lib盒子跳转 */
.box-lib .word-1 a {
    color: black;
    text-decoration: none;
}

/* lib盒子 二级文字 */
.box-lib .word-2 {
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    padding-top: 8px;
    color: #663366;
}

/* lib盒子下载ICON */
.icon-download {
    padding-top: 30px;
    font-size: 30px !important;
}

/* lib盒子下载icon大小 */
.lib-icon-download {
    font-size: 30px !important;
    color: #35AD54;
}

.lib-icon-download:hover {
    cursor: pointer;
}

/* lib 主页面-PC 响应式 */
@media screen and (max-width:1680px) {

    /* lib盒子文字 */
    .box-lib .word-1 {
        padding-top: 28px;
        font-size: 15px;
    }
}

@media screen and (max-width:1480px) {

    /* lib盒子标签 */
    .box-lib .icon .lib-icon {
        margin-left: 10px;
    }

    /* lib盒子小标签 */
    .box-lib .word-2 {
        font-size: 11px;
    }
}

@media screen and (max-width:1380px) {

    /* lib盒子大标签 */
    .box-lib .word-1 {
        padding-top: 24px;
        font-size: 12px;
    }

    /* icon 标识 */
    .box-lib .icon .lib-icon {
        padding-left: 15px;
    }
}

@media screen and (max-width:1080px) {

    /* lib盒子大标签 */
    .box-lib .word-1 {
        font-size: 13px;
    }

    /* lib盒子icon */
    .box-lib .icon .lib-icon {
        font-size: 50px;
        padding-left: 10px;
    }
}

/*---------------------------------------------------------------------- /
分页-PC
----------------------------------------------------------------------- */
/* 分页FLEX布局 */
.fy {
    margin-bottom: 30px;
}

.fy-row {
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    width: 150px;
}

/* 分页盒子 */
.fy-row>div {
    font-size: 18px;
    text-align: center;
    padding-top: 10px;
    line-height: 30px;
    width: 50px;
    min-width: 50px;
    font-weight: 600;
    border: 1px solid #e9e9e9;
}

/* 分页间隔 */
.fy-row>div:nth-child(1) {
    margin-left: 2px;
    margin-right: 20px;
}

.fy-row>div.zjt:nth-child(1) {
   text-decoration: underline;
   cursor: pointer;
}

.fy-row>div.yjt:nth-child(2) {
    text-decoration: underline;
    cursor: pointer;
 }

/* 分页a标准 */
.fy-row>div a {
    color: black;
    text-decoration: none;
}

/* 分页 pc h5 */

/*---------------------------------------------------------------------- /
移动端配置
----------------------------------------------------------------------- */
.sjd {
    display: none;
}

/* lib盒子-移动端 */
.jswx-box {
    letter-spacing: 1px;
}

/* FLEX布局 */
.jswx-box-line {
    /* 高度 */
    height: 80px;
    border-bottom: 1px solid #e9e9e9;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

/* 盒子n》2 */
.jswx-box .jswx-box-line:nth-child(n+2) {
    margin-top: 15px !important;
}

/* 最后一个bottom */
.jswx-box .jswx-box-line:last-child {
    margin-bottom: 10px !important;
}

/* 文字部分 */
.jswx-box-word {
    flex: 7;
}

/* 手机端 标题H5 */
.jswx-box-word h5 {
    font-weight: 600;
    cursor: pointer;
    padding-top: 1px;
}

/* 手机端 标题H5 超链接*/
.jswx-box-word h5 a {
    color: black;
    font-size: 12px !important;
    line-height: 25px;
    text-decoration: none;
}

/* 下载按钮 */
.jswx-box-word h5 .lib-icon-download-h5 {
    font-size: 22px !important;
    color: black;
    padding-right: 10px;
}

/* 手机端 p文字 */
.jswx-box-word p {
    font-size: 12px;
    line-height: 14px;
    font-weight: 600;
}

/* 下载按钮 */
.jswx-box-span {
    flex: 1;
    position: relative;
    height: 40px;
}

/* 右侧 */
.jswx-box-span::before {
    position: absolute;
    content: "";
    left: 0px;
    top: -10px;
    border: 1px solid #e9e9e9;
    height: 100%;
}

/* 下载按钮h5 */
.jswx-box-span .lib-icon-h5 {
    font-size: 40px;
    position: absolute;
    left: 23px;
    top: -10px;
    line-height: 40px;
}

/* 手机端IPAD页面响应式 */
@media screen and (max-width:810px) {

    /* 高度 */
    .jswx-box-line {
        height: 55px;
    }

    /* 手机端 标题H5 */
    .jswx-box-word h5 {
        font-size: 12px;
        line-height: 15px;
    }

    /* 文字P */
    .jswx-box-word p {
        font-size: 10px;
        line-height: 12px;
        font-weight: 600;
        padding-top: 3px;
    }

    .jswx-box-span {
        margin-top: 5px;
    }

    .jswx-box .jswx-box-line:last-child {
        margin-bottom: 0px;
    }
}

@media screen and (max-width:580px) {

    /* ICON */
    .jswx-box-span .lib-icon-h5 {
        font-size: 35px;
        padding-left: 5px;
        margin-top: -5px;
    }

    .jswx-box-span {
        flex: 2;
        position: relative;
        height: 40px;
    }
}


/*---------------------------------------------------------------------- /
分页-H5
----------------------------------------------------------------------- */
/* 左右箭头间隔 */
.h5-arrow-box {
    margin-top: 20px;
    margin-bottom: 60px;
}

/* 左右箭头高度 */
.h5-arrow-box-line {
    height: 30px;
    width: 200px;
    display: flex !important;
    justify-content: center;
}

/* H5盒子间隔 */
.h5-arrow-box-line>div {
    width: 30px;
    height: 100%;
    cursor: pointer;
}

/* 左右箭头-标签 */
.h5-arrow-box-line>div:nth-child(1) {
    margin-right: 10px;
}

/* icon */
.h5-arrow-box-line>div>.icon-bzgf {
    font-size: 35px;
}

/* PC-H5切换 */
@media screen and (max-width: 1080px) {

    /* 取消PC端 */
    .jm-lib-1, .fy-row {
        display: none;
    }

    /* 启用手机端 */
    .sjd {
        display: block;
    }
}

/* 小屏幕端 */
@media screen and (max-width: 380px) {
    .jswx li a {
        font-size: 13px;
    }
}

/*---------------------------------------------------------------------- /
主页-结束
----------------------------------------------------------------------- */