/*---------------------------------------------------------------------- /
巨幕設定-開始
----------------------------------------------------------------------- */

.jm {
    background: url('../../images/banner/lib.jpg') no-repeat;
    position: relative;
    background-size: cover;
    height: 600px
}


/* 巨幕響應式 */


/* 巨幕響應式-PC */

@media screen and (min-width:2000px) {
    .jm {
        background-position: bottom
    }
}

@media screen and (max-width:1680px) {
    .jm {
        height: 520px;
    }
}

@media screen and (max-width:1440px) {
    .jm {
        height: 450px
    }
}

@media screen and (max-width:1280px) {
    .jm {
        height: 400px
    }
}


/* 巨幕響應式-IPAD */

@media screen and (max-width: 1279px) {
    .jm {
        margin-top: -30px;
        height: 300px;
    }
}

@media screen and (max-width: 810px) {
    .jm {
        margin-top: 0px;
        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
}


/* 麵包屑-p文字 */

.mbx-text p {
    font-size: 15px;
    font-style: normal;
    display: inline-block;
    font-weight: 800;
    padding-top: 8px
}


/* 麵包屑》》 */

.mbx-text p::after {
    display: inline-block;
    content: '\00bb';
    margin: 0 .6em;
    color: black
}


/* 麵包屑》最後一個 */

.mbx-text p:last-child::after {
    display: none
}


/* 響應式佈局 */

@media screen and (max-width:580px) {
    .mbx-text p {
        font-size: 13px;
    }
}


/*---------------------------------------------------------------------- /
麵包屑-結束
----------------------------------------------------------------------- */


/*---------------------------------------------------------------------- /
大盒子-開始
----------------------------------------------------------------------- */


/* 大盒子 */

.outerbox {
    margin-bottom: 30px;
}


/* 內容盒子 */

.articlebox {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}


/* 內容盒子 -h1*/

.articlebox h1 {
    align-self: center;
    font-size: 20px;
    line-height: 30px;
    font-weight: 800;
    margin-top: 20px;
}


/* 內容盒子 h2*/

.articlebox h2 {
    align-self: left;
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    margin-top: 20px;
}


/* 內容盒子 -div h3*/

.articlebox h3 {
    font-size: 16px;
    line-height: 30px;
    font-weight: 600;
    margin-top: 20px;
}


/* 內容盒子 -div*/

.articlebox div {
    font-size: 14px;
    line-height: 36px;
    padding-left: 1px;
}

.articlebox p {
    font-size: 14px;
    line-height: 36px;
    padding-left: 1px;
}

.articlebox table {
    font-size: 14px;
    line-height: 36px;
    text-align: center;
}

.articlebox ul li {
    font-size: 14px;
    line-height: 36px;
    padding-left: 1px;
}


/* 返回按鈕盒子 */

.fhbox {
    width: 200px;
    display: flex;
    height: 30px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}


/* 返回按鈕盒子-按鈕-超連結 */

.fhbutton {
    color: black;
    text-decoration: none;
    font-size: 15px;
    line-height: 20px;
    font-weight: 600;
}


/* 返回按鈕盒子-按鈕-icon */

.fhbox .icon-tiaozhuan5 {
    font-size: 25px;
    line-height: 20px;
}


/*---------------------------------------------------------------------- /
表格美化-開始
----------------------------------------------------------------------- */

.articlebox .table {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    vertical-align: middle;
}

.articlebox .table thead th {
    white-space: nowrap;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
    padding: 10px 8px;
    border-bottom: 2px solid #495057;
}

.articlebox .table tbody td {
    padding: 10px 8px;
    vertical-align: middle;
    line-height: 1.6;
}

.articlebox .table tbody tr:first-child td {
    font-weight: 600;
    background-color: #e8f4f8;
}

.articlebox .table-hover tbody tr:hover {
    background-color: #f0f7fa;
    transition: background-color 0.2s ease;
}

.articlebox .table-bordered {
    border: 2px solid #dee2e6;
}

.articlebox .table-bordered th,
.articlebox .table-bordered td {
    border: 1px solid #ced4da;
}

/* 表格響應式-移動端 */

@media screen and (max-width: 768px) {
    .articlebox .table {
        font-size: 11px;
    }
    .articlebox .table thead th {
        font-size: 11px;
        padding: 6px 4px;
    }
    .articlebox .table tbody td {
        padding: 6px 4px;
    }
}


/*---------------------------------------------------------------------- /
表格美化-結束
----------------------------------------------------------------------- */


/*---------------------------------------------------------------------- /
大盒子-結束
----------------------------------------------------------------------- */