/************ TABLE OF CONTENTS ***************
1. Base
2. Header
3. Popup
4. Footer
5. Banner
6. Section  
7. List
8. Detail
9. Single
10. Map
11. Timeline
12. Plugin
13. Animation
----------------------------------- */

/* ***** Fonts ***** */
@import url(https://fonts.googleapis.com/earlyaccess/notosanstc.css);
@import url('https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700|Quicksand:300,400,500,700|Shadows+Into+Light+Two');

@import url('../lib/animate.css');
@import url('../lib/owl/owl.css');
@import url('../lib/fontawesome/font-awesome.min.css');

/*** 
====================================================================
1	Base
====================================================================
***/

* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
}

body {
    font-family: 'noto Sans TC',PingFangTC,微軟正黑體,Microsoft JhengHei,Arial,Roboto,sans-serif !important;
    position: relative;
    z-index: auto;
    color: #040a1f;
    font-size: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    margin: 0px;
    background: none;
    line-height: 1.4em;
}

p {
    line-height: 1.5em;
}

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    cursor: pointer;
    color: #91bcda;
    outline: none;
}

    a:hover {
        color: #26607e;
        transition: all 500ms;
    }

input:focus, button:focus {
    outline: none !important;
}

.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 20px;
    margin: 0 auto;
}

.auto-container-xs {
    position: static;
    max-width: 1080px;
    padding: 0px 20px;
    margin: 0 auto;
}

    .auto-container:before, .auto-container-xs:before {
        display: table;
        content: " ";
    }

    .auto-container:after, .auto-container-xs:after {
        display: table;
        content: " ";
        clear: both;
    }

.medium-container {
    max-width: 850px;
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
}

.min-height-100 {
    min-height: -moz-calc(100vh - 60px);
    min-height: -webkit-calc(100vh - 60px);
    min-height: -o-calc(100vh - 60px);
    min-height: calc(100vh - 60px);
}

/* ------ color ------ */
.bg-white {
    background-color: #fff;
}

.bg-blue-light {
    background-color: #dae7f3;
}

.bg-blue-normal {
    background-color: #91bcda;
}

.bg-blue-dark {
    background-color: #26607e;
}

.bg-grey-dark {
    background-color: #192446;
}

.top-shadow {
    box-shadow: inset 0 1.5px 3px 0 rgba(0, 0, 0, 0.16);
}

.bottom-shadow {
    box-shadow: 0 1.5px 3px 0 rgba(0, 0, 0, 0.16);
}

:not(.input-group-btn) > .btn {
    width: 220px;
    border-radius: 2px;
    text-align: center;
    padding: 10px 12px;
    line-height: initial;
    font-size: 14px;
}

/* ------ icon ------ */
.icon-arrow::after {
    content: '';
    background-image: url('../img/icon-arrow.svg');
    background-size: 100%;
    background-repeat: no-repeat;
    height: 19px;
    width: 19px;
    transition: transform 300ms;
    vertical-align: -3px;
    margin-left: 1px;
    display: inline-block;
}

.icon-arrow-parent:hover > a > .icon-arrow::after,
.icon-arrow-parent:hover > .icon-arrow::after {
    background-image: url('../img/icon-arrow-hover.svg');
}

.icon-arrow-parent.trans-rotate:hover > a > .icon-arrow::after {
    transform: rotate(90deg);
}

.icon-arrow-parent.left {
    transform: scaleX(-1);
}

.main-menu .dropdown .sub-menu li a .icon-arrow::after,
.footer_area .footer-menu ul a .icon-arrow::after {
    height: 18px;
    width: 18px;
}


/*btn-arrow*/
.btn-arrow {
    width: auto;
    height: 40px;
    padding: 12px 48px 0 28px;
    font-size: 15px;
    text-align: left;
    border-radius: 20px;
    border: solid 0.5px #fff;
    line-height: 1;
    color: #fff !important;
    display: inline-block;
    position: relative;
}

    .btn-arrow:hover, .btn-arrow:active {
        background: #4d9dc9;
        border-color: transparent;
    }

    .btn-arrow .icon-arrow-white::after {
        content: '';
        background-image: url('../img/icon-arrow_white.svg');
        background-size: 100%;
        background-repeat: no-repeat;
        height: 19px;
        width: 19px !important;
        transition: transform 300ms;
        position: absolute;
        right: 12px;
        top: 10px;
        display: inline-block;
    }

    .btn-arrow:hover .icon-arrow-white::after,
    .btn-arrow:active .icon-arrow-white::after {
        background-image: url('../img/icon-arrow_white-hover.svg');
    }

    /*ethics*/
    .btn-arrow.btn-ethics {
        background: #4d9dc9;
        color: #fff;
        text-decoration: none;
        padding-left: 44px;
    }

        .btn-arrow.btn-ethics:hover,
        .btn-arrow.btn-ethics:active {
            background: #fff;
            color: #26607e !important;
            border: solid 0.5px #26607e;
        }

        .btn-arrow.btn-ethics .icon-arrow-white::after {
            background-image: url('../img/icon-arrow_white-hover.svg');
        }

        .btn-arrow.btn-ethics:hover .icon-arrow-white::after,
        .btn-arrow.btn-ethics:active .icon-arrow-white::after {
            background-image: url('../img/icon-arrow.svg');
        }

        .btn-arrow.btn-ethics .icon_hammer::after {
            content: '';
            background-image: url('../img/icon_hammer_white.png');
            background-size: 100%;
            background-repeat: no-repeat;
            height: 19px;
            width: 19px !important;
            transition: transform 300ms;
            position: absolute;
            left: 14px;
            top: 12px;
            display: inline-block;
        }

        .btn-arrow.btn-ethics:hover .icon_hammer::after,
        .btn-arrow.btn-ethics:active .icon_hammer::after {
            background-image: url('../img/icon_hammer_blue.png');
        }


/*tag*/
.tag-category {
    display: inline-block;
    float: left;
    font-size: 12.5px;
    color: #fff;
    background-color: #ed713f;
    padding: 4px 7px 5px 7px;
    min-width: 58px;
    text-align: center;
    border-radius: 20px;
    line-height: 1;
}

    .tag-category.red {
        background-color: #e8442e;
    }

    .tag-category.green {
        background-color: #2e6f67;
    }

/*** 
====================================================================
2. Header 
====================================================================
***/

.main-header {
    padding: 0;
    height: 64px; /*104px;*/
    background: #fff;
}

    .main-header.fixed-top {
        height: 64px;
    }

        .main-header.fixed-top + * {
            margin-top: 64px;
        }

    .main-header.fixed-top {
        box-shadow: 0px 6px 4px rgba(108, 108, 108, 0.07);
    }

.navbar, .navbar-brand {
    padding: 0 !important;
    height: 64px;
}

.navbar-brand, .footer-logo {
    padding: 7px 0 !important;
    display: flex;
}

.main-logo {
    width: auto;
    height: 50px;
}

.navbar-brand > div, .footer-logo > div {
    color: #1a4368;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
    display: flex;
    flex-direction: column;
    padding: 2px 0;
    margin-left: 4px;
}

.footer-logo > div {
    margin-bottom: 6px;
    margin-left: 0;
    text-align: center;
}

/*---info---*/
.main-header .top-info {
    background: #dae7f3;
    display: block;
    clear: both;
    padding: 10px 0;
    height: 40px;
    text-align: center;
    transition: all 500ms;
}

.main-header.fixed-top .top-info {
    display: none !important;
}

.main-header .top-info > div {
    display: flex;
}

.main-header .top-info .info-item {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    color: #26607e;
    flex-grow: 1;
}

    .main-header .top-info .info-item:nth-child(2) {
        justify-content: center;
    }

    .main-header .top-info .info-item:last-child {
        justify-content: flex-end;
    }

    .main-header .top-info .info-item img {
        padding-right: 7px;
    }

        .main-header .top-info .info-item img.icon-location {
            height: 16px;
        }

        .main-header .top-info .info-item img.icon-mail {
            height: 14.5px;
        }

        .main-header .top-info .info-item img.icon-phone {
            height: 14.5px;
        }

/*---menu---*/
.main-header .collapse {
    justify-content: flex-end;
    margin-right: -20px;
}

.main-menu {
    position: relative;
}

    .main-menu > li, .main-menu > li > a {
        height: 64px;
        /*position: initial;*/
    }

        .main-menu > li > a {
            color: #040a1f !important;
            padding: 19px 20px !important;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
        }

            .main-menu > li > a:hover,
            .main-menu > li > a:focus,
            .main-menu > li.active > a,
            .main-menu > li:hover > a {
                background-color: transparent;
                color: #26607e !important;
            }

            .main-menu > li > a::after {
                content: none;
            }

    .main-menu .dropdown .sub-menu {
        display: none;
        position: absolute;
        left: -30px;
        top: 63px;
        width: 185px;
        z-index: 100;
        background: linear-gradient( transparent 6px,#fff 6px,#fff);
        border: none;
        border-radius: 2px;
        margin: 0;
        transition: all 500ms;
        padding: 10px 8px;
        box-shadow: 0 1.5px 3px rgba(0, 0, 0, 0.16);
    }

        .main-menu .dropdown .sub-menu li {
            /*width: 50%;
            float: left;*/
        }

            .main-menu .dropdown .sub-menu li a {
                color: #040a1f !important;
                cursor: pointer;
                display: block;
                padding: 8px;
            }

    .main-menu .dropdown:hover .sub-menu li.main-item {
        position: absolute;
        top: 23px;
        left: 40px;
        width: auto;
        font-size: 22px;
        font-weight: 600;
        display: none;
    }

        .main-menu .dropdown:hover .sub-menu li.main-item::before,
        .section_area .area-title h4::before {
            content: '';
            display: inline-block;
            width: 15px;
            height: 15px;
            margin-right: 10px;
            background: #26607e;
            border-radius: 50%;
            box-shadow: 0 1.5px 3px 0 rgba(0, 0, 0, 0.16);
        }


    .main-menu .dropdown:hover .sub-menu li:hover a {
        color: #26607e !important;
    }

/*** 
====================================================================
3. Popup 
====================================================================
***/

#LoadingMask.pre {
    display: block !important;
}

#LoadingMask {
    display: none;
    z-index: 5000;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: .5;
    background-color: #000;
    transition: opacity .15s linear;
}

.loading-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -50px;
    color: #fff;
    text-align: center;
    padding: 0;
}

/*** 
====================================================================
4. Footer 
====================================================================
***/

.footer-space, .inner-space {
    background-color: #dae7f3;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center calc(100% - 150px);
    padding-top: 6px;
}

.inner-space {
    padding-top: 3px;
}

.footer_area .footer-inner {
    display: flex;
    padding: 50px 25px 20px 25px;
    max-width: 1300px;
    margin: 0 auto;
}

.footer_area .footer-logo {
    display: inline-block;
    width: 20%;
}

    .footer_area .footer-logo img {
        width: 100%;
        margin: 0 auto;
        display: block;
    }

    .footer_area .footer-logo > div + img {
        max-width: 120px;
    }

.footer_area ul {
    list-style-type: none;
}

.footer_area .footer-menu {
    display: inline-block;
    width: 100%;
}

    .footer_area .footer-menu > li {
        display: inline-block;
        float: left;
        width: 20%;
        padding-left: 5%;
        padding-bottom: 15px;
        min-width: 200px;
    }

        .footer_area .footer-menu > li > span,
        .footer_area .footer-menu > li > a > span {
            display: inline-block;
            color: #040a1f;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
        }

    .footer_area .footer-menu ul a {
        display: block;
        padding-bottom: 8px;
        font-size: 16px;
        color: #040a1f;
    }

    .footer_area .footer-menu li > a:hover, .footer_area .footer-menu li > a:focus, .footer_area .footer-menu li.active > a {
        color: #91bcda;
    }

.footer_area .icon-arrow::after {
    vertical-align: -3px;
    margin-left: 5px;
}

.footer_area .copyright {
    display: block;
    background-color: #dae7f3;
    font-size: 12px;
    color: #26607e;
    text-align: center;
    padding: 12px 0;
}

/*** 
====================================================================
5. Banner 
====================================================================
***/

/*----------owl----------*/

/*nav*/
.owl-carousel {
    z-index: auto;
}

.owl-prev, .owl-next {
    position: absolute;
    display: inline-block;
    top: 50%;
    margin-top: -34px;
    width: 34px;
    height: 34px;
    border: none;
    text-align: center;
    transition: all 300ms;
}

.owl-prev {
    left: 1%;
}

.owl-next {
    right: 1%;
}

.owl-prev:hover, .owl-prev:focus {
    left: calc(1% - 3px);
}

.owl-next:hover, .owl-next:focus {
    right: calc(1% - 3px);
}

.owl-prev .fa, .owl-next .fa {
    color: #91bcda;
    font-size: 70px;
    font-weight: 400;
}

.owl-prev .fa {
    padding-right: 2px;
}

.owl-next .fa {
    padding-left: 2px;
}

.owl-prev:hover, .owl-prev:focus,
.owl-next:hover, .owl-next:focus {
    background-color: transparent;
}

    .owl-prev:hover .fa,
    .owl-next:hover .fa {
        color: #b2bdc9;
    }

/*--------------------*/

.bannerArea-item {
    height: 60vw;
    max-height: 550px;
    position: relative;
}

    .bannerArea-item .banner-image {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        display: inline-block;
        height: 60vw;
        max-height: 550px;
        width: 100%;
    }

    .bannerArea-item .banner-box {
        position: absolute;
        top: 12%;
        width: calc(100% - 64px);
        left: 32px;
    }

        .bannerArea-item .banner-box h1,
        .bannerArea-item .banner-box h2 {
            color: #fff;
            text-shadow: 0 1.5px 3px rgba(0, 0, 0, 0.16);
            font-size: 42px;
            font-weight: 500;
            margin-bottom: 4px;
        }

        .bannerArea-item .banner-box p {
            color: #fff;
            text-shadow: 0 1.5px 3px rgba(0, 0, 0, 0.16);
            font-size: 19px;
            padding-bottom: 30px;
            margin: 0;
        }

/*--owl-carousel--*/

.banner-carousel .nav-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    top: 50%;
}

    .banner-carousel .nav-container .nav-outter {
        position: relative;
    }

/*--------------------*/

.top-bannerArea {
    height: 40vw;
    max-height: 350px;
    position: relative;
}

    .top-bannerArea .banner-image {
        background-size: cover;
        background-position: center;
        position: relative;
        display: inline-block;
        height: 40vw;
        max-height: 350px;
        width: 100%;
    }

    .top-bannerArea .banner-box {
        position: absolute;
        top: 10%;
        right: 0;
        width: 100%;
        height: 100%;
        text-align: right;
    }

        .top-bannerArea .banner-box h1,
        .top-bannerArea .banner-box h2,
        .top-bannerArea .banner-box h3 {
            color: #fff;
            font-size: 32px;
            font-weight: 500;
            text-shadow: 0 1.5px 3px rgba(0, 0, 0, 0.16);
            margin-bottom: 0;
        }

        .top-bannerArea .banner-box h3 {
            font-size: 22px;
        }

            .top-bannerArea .banner-box h3:first-letter {
                text-transform: uppercase;
            }

        .top-bannerArea .banner-box .empty-message {
            color: #fff;
            text-shadow: 0 1.5px 3px rgba(0, 0, 0, 0.16);
            font-size: 52px;
            text-align: left;
            position: absolute;
            bottom: 20%;
            font-weight: 500;
        }

/*** 
====================================================================
6. Section  
====================================================================
***/

.section_area {
    position: relative;
    padding: 50px 0 40px 0;
}

    .section_area .area-title {
        text-align: center;
        margin-bottom: 50px;
    }

        .section_area .area-title h4 {
            width: auto;
            display: inline-flex;
            align-items: center;
            padding: 8.4px 16px;
            line-height: 1;
            border-radius: 20px;
            text-shadow: 0 1.5px 3px #fff;
            border: solid 0.5px #26607e;
            color: #192446;
            font-size: 22px;
            font-weight: 600;
            margin: 0;
        }

        .section_area .area-title span {
            padding: 8.4px 0 8.4px 10px;
            line-height: 1;
            display: inline-block;
            color: #26607e;
            font-size: 22px;
            font-weight: 500;
            text-shadow: 0 1.5px 3px #fff;
        }

/*--block--*/

.block {
    margin-bottom: -10px;
}

    .block .box {
        padding: 0 15px;
        margin-bottom: 10px;
    }

        .block .box .box-inner {
            position: relative;
            border-radius: 5px;
            transition: all 500ms;
        }

            .block .box .box-inner .image-box {
                overflow: hidden;
            }

    .block:not(.no-hover) .box .box-inner:hover img {
        /*opacity: 0.8;*/
        transform: scale(1.1);
        -webkit-transition-duration: 500ms;
        transition-duration: 500ms;
    }

    .block .box .box-inner img {
        border-radius: 3px;
        width: 100%;
    }

    .block .box .box-inner .youtube-box img {
        border-radius: 7px;
    }

    .block .box .box-inner .youtube-box i,
    .main-video .youtube-box i {
        position: absolute;
        left: calc(50% - 40px);
        top: calc(50% - 50px);
        color: #ff0a00;
        font-size: 80px;
    }

        .block .box .box-inner .youtube-box i.fa-play,
        .main-video .youtube-box i.fa-play {
            color: #fff;
            top: calc(50% - 30px);
            font-size: 60px;
        }

    .block .box .box-inner:hover .youtube-box i.fa-play,
    .main-video:hover .youtube-box i.fa-play {
        opacity: 0.7;
    }

    .block .box .box-inner:hover .youtube-box i,
    .main-video:hover .youtube-box i {
        color: #fff;
        -webkit-transition-duration: 500ms;
        transition-duration: 500ms;
    }

/*five*/
.five-block {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

    .five-block .box {
        flex-basis: 20%; /* =1/5 */
        padding: 0 15px;
    }

/*box-rectangle */
.block-shape .box .box-inner .image-box {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 0%;
}

    .block-shape .box .box-inner .image-box img {
        width: 100%;
        height: auto;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translateY(-50%) translateX(-50%);
    }

.block-shape .box .box-inner:hover .image-box img {
    transform: translate(-50%, -50%) scale(1.1);
    -webkit-transform: translateY(-50%) translateX(-50%) scale(1.1);
}

.block-shape.hover-lighter .box .box-inner:hover .image-box img {
    opacity: 0.8;
    transform: translate(-50%, -50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
}

/*technology 1x1*/
.shape-100 .box .box-inner .image-box {
    padding-bottom: 100%;
    border-radius: 7px;
    box-shadow: 0 1.5px 3px 0 rgba(0, 0, 0, 0.16);
}

    .shape-100 .box .box-inner .image-box img.height-100 {
        width: auto;
        height: 100%;
    }

/*photograph--180x320*/
.shape-56 .box .box-inner .image-box {
    padding-bottom: 56.25%;
}
/*--image 480x320*/
.shape-66 .box .box-inner .image-box {
    padding-bottom: 66.67%;
}

/*txt*/
.block .box .box-inner .block-content {
    padding: 8px 0px;
    width: 100%;
}

    .block .box .box-inner .block-content .block-title {
        font-size: 20px;
        font-weight: 600;
        color: #26607e;
        text-align: center;
        /*one line*/
        overflow: hidden;
        text-overflow: ellipsis;
        -o-text-overflow: ellipsis;
        white-space: nowrap;
    }

    .block .box .box-inner .block-content .sub-title {
        font-size: 16px;
        font-weight: 600;
        color: #555;
        padding-bottom: 8px;
        /*one line*/
        overflow: hidden;
        text-overflow: ellipsis;
        -o-text-overflow: ellipsis;
        white-space: nowrap;
    }

    .block .box .box-inner .block-content .btn {
        position: absolute;
        bottom: 15px;
        left: calc(50% - 110px);
    }

    .block .box .box-inner .block-content .block-txt {
        font-size: 16px;
        color: #26607e;
        /*two line*/
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .block .box .box-inner .block-content .block-subtxt {
        font-size: 13px;
        color: #333;
    }

    .block .box .box-inner .block-content .block-date {
        font-size: 13px;
        color: #26607e;
        text-align: right;
    }

.block .box .box-inner .tag-category {
    margin-right: 40px;
}


/*--index news 跑馬燈--*/
.section-news {
    position: relative;
}

    .section-news .block {
        position: absolute;
        right: 0;
        width: 70vw;
        min-width: 700px;
        height: 60px;
        box-shadow: 0 1.5px 3px 0 rgba(0, 0, 0, 0.16);
        margin-top: -30px;
        margin-bottom: 45px;
    }

        .section-news .block .news-carousel {
            display: inline-block;
        }

        .section-news .block .box {
            background: #192446;
            /*border-left: 1px solid #26607e;*/
            margin: 0;
        }

            .section-news .block .box:hover {
                background: #fff;
                border: none;
            }

            .section-news .block .box .box-inner {
                max-width: 80%;
            }

            .section-news .block .box a {
                display: block;
                padding: 19px 20px;
                height: 60px;
            }

        .section-news .block .block-date {
            font-size: 15px;
            font-weight: 300;
            float: left;
            width: 90px;
            color: #fff;
        }

        .section-news .block .block-title {
            font-size: 15px;
            font-weight: 300;
            color: #fff;
            margin: 0;
            /*one line*/
            overflow: hidden;
            text-overflow: ellipsis;
            -o-text-overflow: ellipsis;
            white-space: nowrap;
        }

        .section-news .block .box:hover .block-date,
        .section-news .block .box:hover .block-title {
            color: #26607e;
        }

.news-carousel .owl-stage {
    background: #192446;
}

.news-carousel .owl-nav {
    width: 80px;
    position: absolute;
    right: 0;
    top: 0;
}

.news-carousel .owl-prev {
    display: none;
}

.news-carousel .owl-prev, .news-carousel .owl-next {
    top: 17px;
    margin-top: 0;
    right: 10vw;
}

    .news-carousel .owl-prev .fa, .news-carousel .owl-next .fa {
        font-size: 26px;
    }

/*--index about--*/
.section-about .bg-white {
    border-radius: 7px;
    text-align: center;
    padding: 25px 0;
}

.section-about .title-about {
    font-size: 23px;
    color: #26607e;
    font-weight: 600;
    margin-bottom: 0.7rem;
}

.section-about .title-circle {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 1.1rem;
    padding: 7px 14px 8px 14px;
}

.section-about .sub-title {
    display: inline-block;
}

.section-about .sub-title,
.section-about p {
    font-size: 18px;
    color: #26607e;
    margin-bottom: 0.8rem;
}

.section-about a {
    color: inherit;
    text-decoration: underline;
}

    .section-about a:hover {
        color: #91bcda;
    }

.section-about .row p span.item-circle {
    color: #91bcda;
    font-size: 12px;
    line-height: 1;
    border-radius: 16px;
    display: inline-block;
    padding: 5px 6px;
    border: solid 0.5px #91bcda;
    margin-bottom: 3px;
}

.section-about .text-address {
    font-size: 14px;
}

.section-about .row {
    margin-right: -6px;
    margin-left: -6px;
}

    .section-about .row > div {
        padding-right: 6px;
        padding-left: 6px;
        padding-bottom: 12px;
    }

    .section-about .row + .row {
        margin-bottom: -12px;
    }

/*--影像--*/
.section-photograph .block {
    margin: 0 0 -10px 0;
}

    .section-photograph .block .block-content {
        padding: 13px 0px;
    }

    .section-photograph .block .box {
        padding: 0;
        margin-bottom: 12px;
    }

        .section-photograph .block .box .box-inner .block-content .block-title {
            font-weight: 500;
            font-size: 18px;
            text-align: center !important;
        }

        .section-photograph .block .box .box-inner .block-content .block-date {
            text-align: center;
            margin-top: -5px;
        }


.list_area.section-photograph .block {
    margin-bottom: -40px;
}

    .list_area.section-photograph .block .box {
        margin-bottom: 40px;
    }

/*--影片--*/
.section-video .block {
    margin-bottom: -15px;
}

    .section-video .block .block-content {
        padding: 13px 0px;
    }

    .section-video .block .box {
        padding: 0 20px;
        margin-bottom: 25px;
    }

        .section-video .block .box .box-inner .block-content .block-title {
            font-weight: 500;
            font-size: 18px;
            text-align: left;
        }

/*** 
====================================================================
7. List
====================================================================
***/

.bg-panel {
    background: #fff;
    box-shadow: 0 1.5px 3px 0 rgba(0, 0, 0, 0.16);
    padding: 20px 30px;
    border-radius: 7px;
}

/*list*/
.list_area {
    position: relative;
    padding: 40px 0;
}

    .list_area .bg-panel {
        padding: 50px 30px;
    }

    .list_area .block .box .box-inner .block-content .block-title {
        text-align: left;
    }

    .list_area .list-title {
        color: #555;
        font-size: 28px;
        font-weight: 600;
        margin-top: 30px;
    }


/*list-news*/
.list-news .block {
    margin-bottom: -20px;
}

    .list-news .block .box {
        margin-bottom: 30px;
    }

        .list-news .block .box .box-inner {
            border-radius: 7px;
            box-shadow: 0 1.5px 3px 0 rgba(0, 0, 0, 0.16);
            background-color: #fff;
        }

            .list-news .block .box .box-inner .image-box {
                border-top-left-radius: 7px;
                border-top-right-radius: 7px;
            }

            .list-news .block .box .box-inner .block-content {
                padding: 10px 10px;
            }


                .list-news .block .box .box-inner .block-content .block-title {
                    margin: 10px 0;
                }

.list-news.addcontent .block .box .box-inner .block-content {
    height: 140px;
}

.list-news .block .box .box-inner:hover {
    background-color: #4d9dc9;
}

    .list-news .block .box .box-inner:hover .block-title,
    .list-news .block .box .box-inner:hover .block-txt,
    .list-news .block .box .box-inner:hover .block-date {
        color: #fff;
    }


/*list-construction*/
.list-construction .block {
    margin-bottom: 0;
}

    .list-construction .block .box {
        padding: 0;
        margin-bottom: 12px;
    }

        .list-construction .block .box .box-inner {
            box-shadow: 0 1.5px 3px 0 rgba(0, 0, 0, 0.16);
            background-color: #fff;
            border-radius: 2px;
        }

            .list-construction .block .box .box-inner .block-content {
                padding: 20px calc(5% + 60px) 18px 5%;
            }

            .list-construction .block .box .box-inner .tag-category {
                margin-right: 8px;
            }

            .list-construction .block .box .box-inner .block-content .block-title {
                padding: 5px 0;
                width: 100%;
                text-align: left;
            }

            .list-construction .block .box .box-inner .block-content .block-date {
                text-align: left;
            }

            .list-construction .block .box .box-inner .icon-arrow::after {
                content: '';
                background-image: url('../img/icon-arrow_light.svg');
                background-size: 100%;
                background-repeat: no-repeat;
                height: 42px;
                width: 42px !important;
                position: absolute;
                right: 5%;
                top: 42px;
                transition: none;
            }

            .list-construction .block .box .box-inner:hover .icon-arrow::after {
                background-image: url(../img/icon-arrow_white-hover.svg);
            }

            .list-construction .block .box .box-inner:hover {
                background-color: #4d9dc9;
            }

                .list-construction .block .box .box-inner:hover .block-title,
                .list-construction .box .box-inner:hover .block-txt,
                .list-construction .box .box-inner:hover .block-date {
                    color: #fff;
                }

/*-----breadcrumb-----*/

.breadcrumb {
    margin: 30px 0 0 0;
    padding: 0;
    list-style: none;
    background-color: transparent;
    border-radius: .25rem;
}

    .breadcrumb.bySide {
        position: absolute;
        z-index: 1;
    }

    .breadcrumb > .active {
        font-weight: 600;
        color: #917e6e;
    }

    .breadcrumb, .breadcrumb a {
        color: #9fa0a0;
        font-size: 16px;
        font-weight: 600;
    }

        .breadcrumb a:hover {
            color: #917e6e;
        }

        .breadcrumb > li {
            color: #6b7a5b;
        }

            .breadcrumb > li + li:before {
                font-family: "FontAwesome";
                content: "\f105";
                padding: 0 10px 0 7px;
                color: #9fa0a0;
                font-size: 16px;
            }

/*-----toolbar-----*/
.section_area .toolbar {
    display: block;
    text-align: center;
    margin: 40px 0;
}

/*-----pagination-----*/
.pagination_area {
    margin: 25px 0 0 0;
    text-align: center;
}

.pagination {
    margin: 0;
    justify-content: center;
}

    .pagination > li > a, .pagination > li > span, .pagination > li > a:focus, .pagination > li > a:hover, .pagination > li > span:focus, .pagination > li > span:hover, .pagination > li:first-child > a, .pagination > li:first-child > span, .pagination > li:last-child > a, .pagination > li:last-child > span {
        color: #26607e;
        border: none;
        border-radius: 3px;
        margin: 0 4px;
        font-size: 18px;
        padding: 4px;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: block;
        line-height: 1;
        text-decoration: none;
    }

        .pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus,
        .pagination > li > a:hover, .pagination > li > a:focus {
            border: none;
            background-color: #26607e;
            color: #fff !important;
        }

        .pagination > li:first-child > a:hover, .pagination > li:first-child > a:focus,
        .pagination > li:last-child > a:hover, .pagination > li:last-child > a:focus,
        .pagination > li > a, .pagination > li > span {
            background-color: transparent;
        }

/*-----table-----*/
.css-table {
    display: table;
    border-collapse: collapse;
    width: 100%;
    max-width: 100%;
}

.css_tr {
    display: table-row;
}

.css_th, .css_td {
    display: table-cell;
    position: relative;
    vertical-align: middle;
    padding: 12px;
    font-size: 20px;
    color: #26607e;
    border: 1px solid #fff;
}

.list-report .css-table {
    border-bottom: solid 2px #26607e;
}

.list-report .css_th {
    border-bottom: solid 2px #26607e;
    background: #fff;
    color: #040a1f;
    font-weight: 500;
}

.list-report .css-table .css_tr .css_th:not(:first-child),
.list-report .css-table .css_tr .css_td:not(:first-child) {
    text-align: center;
}

.list-report .css-table .css_tr:nth-of-type(odd) {
    background-color: #dae7f3;
}

.list-report .icon-file-pdf {
    width: 18px;
}

.list-report a:hover > .icon-file-pdf {
    opacity: 0.7;
}

.list-report .icon-file-pdf + span {
    font-size: 15px;
    color: #040a1f;
    display: none;
}

/*** 
====================================================================
8. Detail
====================================================================
***/
.detail_area {
    margin-top: -15px;
    overflow: hidden;
}

    .detail_area > div:first-child {
        margin-top: 15px;
    }

    .detail_area > div {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .detail_area .bg-blue-light {
        padding: 30px 0;
    }

    .detail_area .panel-two {
        padding: 30px 0 40px 0;
    }

    .detail_area .bg-white + .bg-blue-light {
        box-shadow: 0 1.5px 3px 0 rgba(0, 0, 0, 0.16);
    }

    .detail_area h1 {
        font-size: 22px;
        color: #040a1f;
        padding: 0 8px 8px 8px;
        margin-bottom: 8px;
        font-weight: 600;
        border-bottom: solid 3px #26607e;
    }

        .detail_area h1 + .tag-category {
            margin-left: 10px;
        }

    .detail_area .tag-category {
        margin-right: 10px;
    }

    .detail_area .main-image {
        width: 100%;
        margin-bottom: 10px;
        box-shadow: 0 1.5px 3px 0 rgba(0, 0, 0, 0.16);
    }

    .detail_area .main-video {
        width: 100%;
        margin: 15px 0;
        cursor: pointer;
        position: relative;
    }

    .detail_area .article-date {
        margin-bottom: 8px;
        font-size: 13px;
        color: #26607e;
    }

    .detail_area p {
        color: #040a1f;
        position: relative;
        line-height: 1.6em;
        margin: 0 0 20px;
        font-size: 18px;
        text-align: justify;
    }

        .detail_area p:last-child {
            margin: 0;
        }

    .detail_area a {
        text-decoration: underline;
    }

    .detail_area img {
        max-width: 100%;
    }

    .detail_area figcaption {
        padding: 10px 2px;
        text-align: left;
        font-size: 15px;
        color: #26607e;
    }

    .detail_area blockquote {
        padding: 15px 0 15px 20px;
        margin: 35px 0 35px -15px;
        position: relative;
        font-size: 20px;
        color: #dae7f3;
        background: #192446;
        font-weight: 300;
        width: 80%;
    }

        .detail_area blockquote p {
            display: inline;
            color: #dae7f3;
        }

    .detail_area .detail-top + blockquote {
        margin-top: -55px;
    }

    /*.detail_area blockquote::before,
    .single_area blockquote::before {
        content: '\f10d';
        font-family: 'FontAwesome';
        top: -10px;
        left: 0;
        position: relative;
        font-size: 12px;
        font-weight: 300;
        line-height: 1;
        padding-right: 3px;
    }*/

    .detail_area blockquote::after {
        content: '';
        top: 0;
        left: -50vw;
        right: 98%;
        position: absolute;
        background: #192446;
        height: 100%;
    }

blockquote .line {
    position: absolute;
    background: #dae7f3;
    height: 2px;
    left: 100%;
    top: 15px;
    width: 150%;
}

.bg-panel blockquote .line {
    display: none;
}

.detail_area ul, .detail_area ol {
    padding-left: 20px;
    margin: 20px 0;
}

    .detail_area ul li, .detail_area ol li {
        margin-bottom: 12px;
        padding-left: 2px;
        font-size: 18px;
    }

.detail_area figure {
    margin: 0 15px;
}

/*table*/
.detail_area table {
    width: 100%;
}

    .detail_area table thead th {
        background: #fff;
        color: #040a1f;
        font-weight: 600;
        border-bottom: solid 2px #26607e;
    }

    /*.detail_area table tbody tr:nth-of-type(odd) {
        background-color: #dae7f3;
    }*/

    .detail_area table tr {
        background: #fff;
    }

        .detail_area table tr.bg-blue-light {
            background: #dae7f3;
        }

    .detail_area table td, .detail_area table th {
        padding: 6px 6px;
        font-size: 18px;
        color: #26607e;
        border: 1.5px solid #fff;
    }

        .detail_area table td a {
            color: inherit;
            text-decoration: underline;
        }

            .detail_area table td a:hover {
                opacity: 0.7;
            }
/*number_area*/
.number_area {
    padding: 50px 0;
    margin-bottom: -20px;
}

    .number_area .box .box-inner {
        background: #dae7f3;
        padding: 16px 10px;
        border-radius: 7px;
        margin-bottom: 20px;
    }

    .number_area .number-box {
        text-align: center;
        font-size: 40px;
        font-weight: 400;
        color: #192446;
        display: block;
        line-height: 1;
        margin-bottom: 15px;
    }

    .number_area .unit {
        font-size: 12px;
        font-weight: 400;
        color: #26607e;
        text-align: center;
        margin-bottom: 4px;
    }

    .number_area .title {
        font-size: 16px;
        font-weight: 400;
        color: #26607e;
        text-align: center;
    }

/*** 
====================================================================
9. Single
====================================================================
***/

.single_area {
    padding: 40px 0;
}

    .single_area > .auto-container-xs > div + div {
        margin-top: 40px;
    }

.panel-two {
    display: flex;
}

.single_area .panel-two.panel-two55 {
    align-items: center;
}

.panel-two:after {
    content: '';
    clear: both;
    display: table;
}

.panel-two > div:first-child {
    padding-right: 40px;
}

.panel-two.panel-two64 > .panel-txt {
    width: 65%;
}

.panel-two.panel-two64 > .panel-img {
    width: 35%;
}


.panel-two.panel-two55 > div:first-child {
    width: calc(50% + 20px);
}

.panel-two.panel-two55 > div:last-child {
    width: calc(50% - 20px);
}

.single_area .panel-two.panel-two55 > .panel-txt {
    min-height: 20vw;
    position: relative;
}


.panel-two .panel-txt h4, .title-circle {
    font-size: 22px;
    font-weight: 500;
    color: #dae7f3;
    background-color: #192446;
    border-radius: 18px;
    display: inline-block;
    line-height: 1;
    padding: 6.6px 14px 8px 14px;
    margin-bottom: 45px;
}

.panel-two .panel-txt p, .panel-txt p {
    font-size: 18px;
    text-align: justify;
}

.panel-two .panel-txt .note {
    font-size: 16px;
    color: #26607e;
    padding-top: 40px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.panel-two .panel-img .image-box {
    border-radius: 7px;
    box-shadow: 0 1.5px 3px 0 rgba(0, 0, 0, 0.16);
}

.panel-two .panel-img img {
    width: 100%;
}

/*image list*/
.single_area .image-block {
    display: flex;
    flex-wrap: wrap;
    margin-left: -20px !important;
    margin-right: -20px !important;
}

    .single_area .image-block .box {
        flex-basis: 20%; /* =1/5 */
        padding: 0 20px;
    }

.single_area blockquote {
    background: #192446;
    color: #dae7f3;
    font-size: 22px;
    font-weight: 300;
    padding: 25px 25px;
    margin: 0;
}


/*menu*/
.single-menu {
    position: relative;
}

    .single-menu > div {
        margin-top: -28px;
        margin-bottom: -28px;
        padding: 8px 0;
        box-shadow: 0 1.5px 3px 0 rgba(0, 0, 0, 0.16);
        display: flex;
    }

    .single-menu .col-sm-4 {
        text-align: center;
    }

    .single-menu .btn-arrow {
        min-width: 180px;
        text-align: center;
    }

    .single-menu + .single_area {
        padding-top: 60px;
    }

/*** 
====================================================================
10. Map
====================================================================
***/

.section_area .full-map {
    width: 100%;
    overflow: hidden;
}

.full-map .map-box {
    margin: 0 auto;
    width: 370px;
    position: relative;
}

    .full-map .map-box .map-base {
        width: 350px;
    }

    .full-map .map-box .map-title {
        font-size: 14px;
        color: #26607e;
        position: absolute;
        left: -100px;
        top: 220px;
    }

    .full-map .map-box .map-tower-panel {
        position: absolute;
        width: 46px; /*46*/
        height: 46px;
        left: 142px;
        top: 117px;
    }

        .full-map .map-box .map-tower-panel:before {
            content: '';
            position: absolute;
            display: block;
            border: 1px solid #fbecd1;
            border-right: none;
            border-bottom: none;
            top: 23px;
            bottom: -67px;
            right: 50px;
            left: -30px;
        }

        .full-map .map-box .map-tower-panel:after {
            content: '';
            position: absolute;
            display: block;
            border-bottom: 1px solid #fbecd1;
            top: 0;
            bottom: -67px;
            right: 76px;
            left: -65px;
        }

        .full-map .map-box .map-tower-panel > span {
            position: absolute;
            display: block;
            width: 100%;
            height: 100%;
            background-size: 46px;
            background-repeat: no-repeat;
            opacity: 0;
            transition-property: opacity,transform;
        }

        .full-map .map-box .map-tower-panel.go-move .map-tower1 {
            animation: moveTower1 0.4s linear forwards;
        }

        .full-map .map-box .map-tower-panel .map-tower2 {
            background-position-y: 100%;
            bottom: 0;
        }

        .full-map .map-box .map-tower-panel.go-move .map-tower2 {
            animation: moveTower2 0.4s linear forwards;
            animation-delay: 0.4s;
        }

        .full-map .map-box .map-tower-panel.go-move .map-tower3 {
            animation: moveTower3 0.8s linear forwards;
            animation-delay: 0.8s;
        }

        .full-map .map-box .map-tower-panel.go-move .map-tower4 {
            animation: moveTower4 0.1s linear forwards;
            animation-delay: 1.6s;
        }

@-webkit-keyframes moveTower1 {
    0% {
        opacity: 1;
        width: 0;
    }

    100% {
        opacity: 1;
        width: 100%;
    }
}

@keyframes moveTower1 {
    0% {
        opacity: 1;
        width: 0;
    }

    100% {
        opacity: 1;
        width: 100%;
    }
}

@-webkit-keyframes moveTower2 {
    0% {
        opacity: 1;
        height: 0;
    }

    100% {
        opacity: 1;
        height: 100%;
    }
}

@keyframes moveTower2 {
    0% {
        opacity: 1;
        height: 0;
    }

    100% {
        opacity: 1;
        height: 100%;
    }
}

@-webkit-keyframes moveTower3 {
    0% {
        opacity: 0;
        left: -210%;
        top: 190%;
        transform: scale(4) rotate(75deg);
        transform-origin: 100% 100%;
    }

    28% {
        opacity: 1;
        left: -145%;
        top: 80%;
        transform: scale(2) rotate(85deg);
    }

    40% {
        left: -100%;
        top: 25%;
        transform: scale(1) rotate(90deg);
        transform-origin: 100% 100%;
    }
    /*----*/
    41% {
        left: -10%;
        top: 15%;
        transform: rotate(90deg);
        transform-origin: 50% 60%;
    }

    75% {
        left: -20%;
        top: 15%;
        transform: rotate(250deg);
    }

    100% {
        opacity: 1;
        left: 0;
        top: 0;
        transform: rotate(360deg);
    }
}

@keyframes moveTower3 {
    0% {
        opacity: 0;
        left: -210%;
        top: 190%;
        transform: scale(4) rotate(75deg);
        transform-origin: 100% 100%;
    }

    28% {
        opacity: 1;
        left: -145%;
        top: 80%;
        transform: scale(2) rotate(85deg);
    }

    40% {
        left: -100%;
        top: 25%;
        transform: scale(1) rotate(90deg);
        transform-origin: 100% 100%;
    }
    /*----*/
    41% {
        left: -10%;
        top: 15%;
        transform: rotate(90deg);
        transform-origin: 50% 60%;
    }

    75% {
        left: -20%;
        top: 15%;
        transform: rotate(250deg);
    }

    100% {
        opacity: 1;
        left: 0;
        top: 0;
        transform: rotate(360deg);
    }
}

@-webkit-keyframes moveTower4 {
    100% {
        opacity: 1;
    }
}

@keyframes moveTower4 {
    100% {
        opacity: 1;
    }
}

/*** 
====================================================================
11. Timeline
====================================================================
***/

.history_area {
    padding: 40px 50px;
}

    .history_area > div {
        margin-right: 16%;
    }

.timeline {
    position: relative;
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    list-style-type: none;
}

    /*line*/
    .timeline::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: calc(40% + 1px);
        border-right: 2px solid #26607e;
    }

    .timeline::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: calc(40% - 6px);
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #26607e;
    }

    .timeline > li .title {
        position: relative;
    }

        .timeline > li .title:before,
        .timeline > li .title:after {
            content: '';
            display: block;
            width: 12px;
            height: 12px;
            right: -6px;
            top: -7px;
            border-radius: 50%;
            background-color: #26607e;
            position: absolute;
        }

        .timeline > li .title:after {
            background-color: #dae7f3;
            border: 2px solid #26607e;
            left: -6px;
            right: initial;
        }

    .timeline > li .title {
        border-top: 2px solid #26607e;
        margin-top: 8px;
        padding-top: 8px;
        margin-left: -25px;
        padding-left: 25px;
    }

    .timeline > li.top {
        position: absolute;
        top: -32px;
        left: calc(40% - 9px);
        width: auto;
        color: #26607e;
        font-size: 28px;
    }
    /*box*/
    .timeline > li {
        position: relative;
        width: calc(40% - 25px);
    }

        .timeline > li.left {
            left: 0;
        }

        .timeline > li.right {
            left: calc(40% + 25px);
            width: 60%;
        }

        .timeline > li.no-image + li {
            margin-top: 0;
        }

        .timeline > li .year {
            font-size: 19px;
            color: #dae7f3;
            font-weight: 600;
            background: #192446;
            border-radius: 20px;
            padding: 6px 14px 7px 14px;
            margin: 5px 0;
            line-height: 1;
            text-align: center;
            display: inline-block;
            margin-bottom: 10px;
        }

        .timeline > li .date {
            font-size: 17px;
            color: #26607e;
        }

        .timeline > li .title {
            font-size: 17.5px;
            color: #192446;
            font-weight: 600;
        }

        .timeline > li.left .date, .timeline > li.left .title {
            text-align: right;
        }

        .timeline > li.right .date, .timeline > li.right .title {
            text-align: left;
        }

        .timeline > li .content {
            padding: 10px 0;
            color: #26607e;
            font-size: 16px;
        }

            .timeline > li .content img {
                width: 100%;
                border-radius: 7px;
            }

            .timeline > li .content p {
                padding: 10px 0;
                text-align: justify;
            }


/*** 
====================================================================
12. Plugin
====================================================================
***/

/*fancybox*/
.fancybox-thumbs {
    top: auto;
    width: auto;
    bottom: 0;
    left: 0;
    right: 0;
    /*height: 95px;*/
    max-height: 190px;
    padding: 10px 10px 5px 10px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
    overflow: auto;
}

.fancybox-show-thumbs .fancybox-inner {
    right: 0;
    bottom: 95px;
}

.fancybox-thumbs__list {
    display: inline-block;
    width: auto;
}

    .fancybox-thumbs__list a:before {
        border: 4px solid #ff5268;
    }

/*** 
====================================================================
13.  Animation
====================================================================
***/

/*---banner box----*/
.bannerArea-item .banner-box {
    left: 30%;
    transition: left 1s ease-in-out;
}

.owl-item.active .bannerArea-item .banner-box {
    left: 32px;
}

/*---blockquote---*/

.go-init {
    opacity: 0;
    transition-property: opacity,transform;
}

.go-slideMove {
    opacity: 1;
    transform: translateX(0);
    animation: slideMove 1.2s;
}

@-webkit-keyframes slideMove {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideMove {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
