﻿@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,700;1,300&family=Noto+Serif+TC:wght@300;400;700;900&display=swap");
@import 'root.css';

body, html {
    font-family: "Noto Serif TC", "儷黑 Pro", "LiHei Pro", "Microsoft JhengHei", sans-serif, serif;
    letter-spacing: 1px;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
    font-family: "Cormorant Garamond", "Noto Serif TC", "儷黑 Pro", "LiHei Pro", "Microsoft JhengHei", sans-serif, serif;
}

a:hover {
    color: var(--third-color);
}

.page-content {
    overflow: hidden;
}

body.op-web:not(.home) .page-content:before {
    display: none;
}

.btn.more {
    position: relative;
    margin-left: 50px;
    background: transparent;
    color: var(--main-color);
    padding: 2px 3px 2px;
    white-space: nowrap;
}

    .btn.more > span {
        white-space: nowrap;
    }

    .btn.more:hover {
        color: var(--bs-white);
    }

        .btn.more:hover:after {
            border-width: 10px;
        }

    .btn.more.cover.bottom:before {
        height: 2px;
    }

    .btn.more.cover.bottom:hover {
        color: var(--main-color);
    }

        .btn.more.cover.bottom:hover:before {
            width: 0;
        }

    .btn.more:after {
        content: "";
        display: block;
        position: absolute;
        width: 40px;
        height: 40px;
        right: calc(100% + 10px);
        top: 50%;
        background: #fff;
        border: 17px solid var(--main-color);
        border-radius: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        -webkit-transition: all ease 0.5s;
        transition: all ease 0.5s;
    }

.btn.btn-default {
    border-radius: 0;
    background: #fff;
    padding: 0.6em 0.5em;
    color: var(--main-color);
    min-width: 10em;
    text-align: left;
    font-size: 1.125rem;
    overflow-y: clip;
}

    .btn.btn-default:before {
        left: 0;
        top: 0;
        border-color: var(--main-color);
        border-radius: 0;
        border-left-width: 0;
        border-right-width: 0;
        z-index: -1;
        overflow: hidden;
    }

    .btn.btn-default:after {
        content: "";
        position: absolute;
        left: 100%;
        top: 50%;
        -webkit-transform: translateX(-45%);
        transform: translateX(-45%);
        width: 1.625rem;
        height: 1px;
        background: var(--second-color);
        -webkit-transition: all ease 0.5s;
        transition: all ease 0.5s;
    }

    .btn.btn-default:hover {
        /*background: var(--default-color);*/
        color: var(--bs-white);
    }

        .btn.btn-default:hover:before {
            border-top-width: 1.5em;
            border-bottom-width: 1.5em;
            border-color: var(--forth-color);
        }

        .btn.btn-default:hover:after {
            -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
            opacity: 0;
        }

.btn.btn-light, .btn.btn-dark {
    padding: 8px 25px 8px;
}

.object-cover, .object-contain {
    -o-object-position: center;
    object-position: center;
    width: 100%;
    height: 100%;
}

.object-cover {
    -o-object-fit: cover;
    object-fit: cover;
}

.object-contain {
    -o-object-fit: contain;
    object-fit: contain;
}

/*----------------------------------------- 選單  --------------------------------------*/
.header > .navbar {
    border-bottom: none;
}
.header .navbar {
    background: linear-gradient(to top, var(--main-color) 10%,var(--forth-color));
}
body.home .header .navbar {
    background: transparent;
}

    .header .navbar > .container-fluid {
        max-width: 1800px;
    }

    .header .navbar .navbar-brand {
        display: block;
        /*background-image: url(../images/all/logo.png);
        background-size: contain !important;*/
        width: 58px;
        height: 50px;
        margin: 5px 0;
    }

        .header .navbar .navbar-brand img {
            width: 100% !important;
            height: auto !important;
        }

.header .navbar-collapse > .navbar-nav > .nav-item > .nav-link {
    padding: 15px 20px;
    color: var(--bs-white);
    position: relative;
    font-size: 0.975rem;
}

    .header .navbar-collapse > .navbar-nav > .nav-item > .nav-link:after {
        content: "";
        display: block;
        width: 1px;
        height: 1px;
        position: absolute;
        top: calc(100% - 10px);
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        background: #fff;
        opacity: 0;
        -webkit-transition: all ease 0.5s;
        transition: all ease 0.5s;
    }

    .header .navbar-collapse > .navbar-nav > .nav-item > .nav-link .title-main, .header .navbar-collapse > .navbar-nav > .nav-item > .nav-link .title-sub {
        display: block;
        text-align: center;
    }

    .header .navbar-collapse > .navbar-nav > .nav-item > .nav-link .title-sub {
        font-weight: 300;
        font-size: 0.8em;
    }

    .header .navbar-collapse > .navbar-nav > .nav-item > .nav-link .caret {
        display: none;
        position: absolute;
        right: 5px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .header .navbar-collapse > .navbar-nav > .nav-item > .nav-link:hover:after {
        width: 2em;
        opacity: 1;
    }

.header .navbar-collapse > .navbar-nav > .nav-item:hover > .nav-link {
    color: var(--bs-white);
}

    .header .navbar-collapse > .navbar-nav > .nav-item:hover > .nav-link:after {
        width: 2em;
        opacity: 1;
    }

.header .navbar-nav .nav-link {
    padding: 10px 15px;
}

.header .nav-item.dropdown > .navbar-nav {
    /*border-top: 3px solid var(--default-color);*/
    -webkit-box-shadow: 0px 3px 5px #b0b0b0;
    box-shadow: 0px 3px 5px #b0b0b0;
    width: auto;
    min-width: 140px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

    .header .nav-item.dropdown > .navbar-nav .nav-item .nav-link {
        text-align: center;
        white-space: nowrap;
        color: var(--main-color);
        padding: 10px 10px;
        display: block;
 
    }

        .header .nav-item.dropdown > .navbar-nav .nav-item .nav-link:hover {
            color: var(--second-color);
        }

.header .nav-item.dropdown .navbar-nav .nav-item .nav-link.trigger:before {
    top: 50%;
    transform: translateY(-50%);
}

.header .small-btn-box {
    margin-left: 25px;
}

    .header .small-btn-box .lang {
        display: block;
        /*&:after {
      content: 'language';
      display: block;
      width: 100%;
      font-size: 0.875rem;
      height: 1.4em;
      opacity: 1;
      transition: all ease .3s;
  }*/
    }

        .header .small-btn-box .lang > button,
        .header .small-btn-box .lang .dropdown-toggle {
            display: block;
            border-radius: 50%;
            height: 45px;
            width: 45px;
            text-indent: -99999px;
            margin: 0 auto;
        }

            .header .small-btn-box .lang > button:before,
            .header .small-btn-box .lang .dropdown-toggle:before {
                content: "\f0ac";
                font-family: "Font Awesome 5 Free";
                font-weight: 700;
                font-size: 22px;
                line-height: 1em;
                position: absolute;
                top: 50%;
                left: 50%;
                text-indent: 0;
                -webkit-transform: translate(-50%, -49%);
                transform: translate(-50%, -49%);
            }

            .header .small-btn-box .lang > button:after,
            .header .small-btn-box .lang .dropdown-toggle:after {
                display: none;
            }

        .header .small-btn-box .lang .dropdown-menu {
            left: 50%;
            -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
            text-align: center;
        }

.header .btn-group.lang .dropdown-item {
    color: var(--main-color) !important;
}

    .header .btn-group.lang .dropdown-item:hover, .header .btn-group.lang .dropdown-item:focus, .header .btn-group.lang .dropdown-item:active {
        color: var(--bs-white) !important;
        background: var(--second-color);
    }

body:not(.home) .header .navbar {
    top: 0;
}

.bsnav .navbar-nav .nav-item.active > .nav-link,
.bsnav .navbar-nav .nav-item:active:focus > .nav-link,
.bsnav .navbar-nav .nav-item:active > .nav-link,
.bsnav .navbar-nav .nav-item:focus > .nav-link,
.navbar-nav .nav-item.active > .nav-link,
.navbar-nav .nav-item:active:focus > .nav-link,
.navbar-nav .nav-item:active > .nav-link,
.navbar-nav .nav-item:focus > .nav-link,
.navbar-nav .nav-item:hover > .nav-link {
    color: var(--third-color);
}

.bsnav-mobile.in {
    z-index: 50;
}

.bsnav-mobile .navbar .navbar-mobile-wrapper {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.bsnav-mobile .navbar .lang {
    display: block;
}

    .bsnav-mobile .navbar .lang > button,
    .bsnav-mobile .navbar .lang .dropdown-toggle {
        display: block;
        border-radius: 50%;
        height: 45px;
        width: 45px;
        text-indent: -99999px;
        margin: 0 auto;
    }

        .bsnav-mobile .navbar .lang > button:before,
        .bsnav-mobile .navbar .lang .dropdown-toggle:before {
            content: "\f0ac";
            font-family: "Font Awesome 5 Free";
            font-weight: 700;
            font-size: 24px;
            line-height: 1em;
            position: absolute;
            top: 50%;
            left: 50%;
            text-indent: 0;
            -webkit-transform: translate(-50%, -49%);
            transform: translate(-50%, -49%);
        }

        .bsnav-mobile .navbar .lang > button:after,
        .bsnav-mobile .navbar .lang .dropdown-toggle:after {
            display: none;
        }

    .bsnav-mobile .navbar .lang .dropdown-menu {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        text-align: center;
    }

.bsnav-mobile .navbar .list-inline {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    display: block;
    text-align: left;
    margin-top: 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding: 0 8%;
}

    .bsnav-mobile .navbar .list-inline > li {
        display: inline-block;
    }

        .bsnav-mobile .navbar .list-inline > li:not(:last-child) {
            margin-right: 15px;
        }

.bsnav-mobile .navbar .tat_x {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    display: block;
    text-align: left;
    margin-top: 10px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding: 0 8%;
    color: var(--bs-white);
}

    .bsnav-mobile .navbar .tat_x li + li {
        margin-top: 8px;
    }

    .bsnav-mobile .navbar .tat_x label {
        color: var(--bs-white);
        font-size: 0.875rem;
    }

    .bsnav-mobile .navbar .tat_x a {
        color: var(--bs-white);
        font-size: 0.875rem;
    }

.is_scroll .header .navbar {
    background: rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.is_scroll .header .small-btn-box .lang:after {
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

/*----------------------------------------- banner --------------------------------------*/
.banner  .slick-dots {
    bottom: 10px;
}
body.home .banner {
    padding-top: 0;
}
.banner{
    padding-top:120px;
}
.banner {
    position: relative;
    /*overflow: hidden;*/
    z-index: 1;
}

    .banner .banner-pic {
        /*height: 100vh;*/
    }

        .banner .banner-pic picture {
            /*display: block;
            height: 100%;*/
        }

            .banner .banner-pic picture source, .banner .banner-pic picture img {
                /*width: 100% !important;
                height: 100% !important;
                -o-object-fit: cover;
                object-fit: cover;
                -o-object-position: center;
                object-position: center;*/
            }

    .banner .bann_tit {
        position: absolute;
        top: 27.5%;
        left: 20.7%;
        z-index: 1;
        width: 30vw;
        max-width: 430px;
    }

        .banner .bann_tit > .rellax {
            border-left: 1px solid #fff;
            padding-top: 18px;
            padding-left: 22px;
        }

        .banner .bann_tit img {
            margin-left: 0;
        }

        .banner .bann_tit .bann_text {
            font-size: 1.125rem;
            letter-spacing: 0.4em;
            /*margin-top: 42px;*/
        }

body:not(.home) .banner .banner-pic {
    /*height: 60vh;*/
}

body:not(.home) .banner .bann_tit {
    max-width: 400px;
}

@-webkit-keyframes infinite_wave {
    0% {
        background-position-x: 0;
    }

    100% {
        background-position-x: 300%;
    }
}

@keyframes infinite_wave {
    0% {
        background-position-x: 0;
    }

    100% {
        background-position-x: 300%;
    }
}

.gotop a:hover {
    color: var(--bs-white);
    background: var(--default-color);
}

/*----------------------------------------- footer --------------------------------------*/
.footer {
    position: relative;
    z-index: 1;
    background: var(--main-color);
    padding-top: 40px;
    padding-bottom: 40px;
}

.footer_mid {
    position: relative;
}

    .footer_mid > .container-fluid {
        max-width: 1800px;
    }

    .footer_mid .footer-seo {
        padding: 6% 4%;
        position: relative;
    }

        .footer_mid .footer-seo .h4 {
            color: var(--bs-white);
        }

        .footer_mid .footer-seo .desc {
            color: var(--bs-white);
            line-height: 36px;
            font-size: 18px;
        }

    .footer_mid .footer-info {
        position: relative;
    }

        .footer_mid .footer-info.bsnav {
            background: transparent;
            z-index: 1;
        }

        .footer_mid .footer-info .sitemap > ul {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            max-height: 230px;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        }

            .footer_mid .footer-info .sitemap > ul > li {
                -webkit-box-flex: 1;
                -ms-flex: 1 1 50%;
                flex: 1 1 50%;
                width: 50%;
            }

        .footer_mid .footer-info .sitemap ul li {
            position: relative;
        }

            .footer_mid .footer-info .sitemap ul li a {
                font-size: 0.9375rem;
                color: var(--bs-white);
                padding: 0;
                font-weight: 700;
            }

                .footer_mid .footer-info .sitemap ul li a .txt-en {
                    display: none;
                }

                .footer_mid .footer-info .sitemap ul li a:hover {
                    color: var(--second-color);
                }

            .footer_mid .footer-info .sitemap ul li ul li {
                margin-bottom: 5px;
                line-height: 1.4em;
                padding-left: 15px;
            }

                .footer_mid .footer-info .sitemap ul li ul li:before {
                    content: "";
                    display: block;
                    position: absolute;
                    width: 6px;
                    height: 6px;
                    border-radius: 50%;
                    background: var(--main-color);
                    top: 0.7em;
                    left: 2px;
                }

                .footer_mid .footer-info .sitemap ul li ul li a {
                    font-size: 0.75rem;
                    font-weight: 300;
                }

        .footer_mid .footer-info .footer_logo {
            margin-bottom: 10px;
            width: 100%;
            max-width: 290px;
        }

        .footer_mid .footer-info ul.tat_x {
            display: inline-block;
            margin-right: 10px;
            color: var(--bs-white);
        }

            .footer_mid .footer-info ul.tat_x li {
                display: inline-block;
                padding-right: 0;
                margin-bottom: 0;
            }

                .footer_mid .footer-info ul.tat_x li:not(:last-child) {
                    margin-right: 1rem;
                }

                .footer_mid .footer-info ul.tat_x li a {
                    font-size: 0.875rem;
                    font-weight: 300;
                    color: var(--bs-white);
                }

                    .footer_mid .footer-info ul.tat_x li a:hover {
                        color: var(--second-color);
                    }

                .footer_mid .footer-info ul.tat_x li label {
                    margin-right: 0;
                    font-size: 0.875rem;
                    color: var(--bs-white);
                }

                    .footer_mid .footer-info ul.tat_x li label:after {
                        content: ":";
                        display: inline;
                    }

    .footer_mid .social-box {
        display: inline-block;
        vertical-align: middle;
    }

        .footer_mid .social-box ul li {
            margin: 0;
        }

            .footer_mid .social-box ul li:not(:last-child) {
                margin-right: 5px;
            }

            .footer_mid .social-box ul li a {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                width: 2em;
                height: 2em;
                background: var(--forth-color);
                color: var(--bs-white);
                border-radius: 50%;
                font-size: 19px;
            }

                .footer_mid .social-box ul li a:hover, .footer_mid .social-box ul li a:focus, .footer_mid .social-box ul li a:active {
                    background: var(--second-color);
                }

            .footer_mid .social-box ul li.icon_f a {
                background-color: #3d62ae;
            }

            .footer_mid .social-box ul li.icon_i a {
                background-color: #dd2a7b;
            }

            .footer_mid .social-box ul li.icon_l a {
                background-color: #2eb02e;
            }

            .footer_mid .social-box ul li.icon_t a {
                background-color: #24a5d6;
            }

            .footer_mid .social-box ul li.icon_y a {
                background-color: #FF0000;
            }

            .footer_mid .social-box ul li.icon_p a {
                background-color: #E60023;
            }

    .footer_mid .copyrights, .footer_mid .powered {
        display: inline-block;
    }

    .footer_mid .copyrights {
        color: var(--bs-white);
        font-size: 0.875rem;
    }

    .footer_mid .powered a {
        color: var(--bs-white);
        font-size: 0.875rem;
    }

.footer-info .foot-info-box {
    flex-direction: row-reverse;
    flex-wrap: wrap;
}

.footer_mid .footer-info > div {
    flex-wrap: wrap;
}

.side .h3 {
    display: none;
}

.side .filter-title .collapsed-btn:hover,
.side .filter-title .collapsed-btn:focus,
.side .filter-title .collapsed-btn:active,
.side .filter-sidebar.multiple-collapse .collapsed-btn:hover,
.side .filter-sidebar.multiple-collapse .collapsed-btn:focus,
.side .filter-sidebar.multiple-collapse .collapsed-btn:active {
    background: var(--main-color);
    color: var(--bs-white);
}

.side .wid-quickLink .h3 {
    display: block;
}

.breadcrumb {
    background: transparent;
    padding-left: 25px;
}

    .breadcrumb .txt-en {
        display: none;
    }

.tag {
    font-size: 0.875rem;
    background: var(--second-color);
    padding: 4px 8px;
    margin-right: 10px;
    color: var(--bs-white);
}

    .tag:hover {
        background: var(--main-color);
        color: var(--bs-white);
    }

.kind-tag-area .tag {
    margin-bottom: 0;
}

.kind-info .h2 {
    border-bottom: 0;
    position: relative;
    padding-left: 30px;
}

    .kind-info .h2:before {
        content: "";
        display: block;
        width: 1px;
        height: 206px;
        background: #d0d0d0;
        position: absolute;
        left: 0;
        bottom: 0;
        mix-blend-mode: multiply;
        opacity: 0.5;
    }

    .kind-info .h2 .txt-en {
        display: block;
        font-size: .75em;
        font-weight: 400;
        color: #aaa;
        margin-bottom: 5px;
    }

.subject-sec ~ .ezshare-box {
    padding-left: 0;
}


.editor {
    line-height: 1.8em;
}

.ezshare-box {
    padding-left: 30px;
}

    .ezshare-box a {
        border-radius: 50%;
        width: 34px;
        height: 34px;
        line-height: 1.7;
    }

        .ezshare-box a:hover {
            color: var(--bs-white);
        }

    .ezshare-box ul li.facebook a:before {
        background-color: #3d62ae;
    }

    .ezshare-box ul li.line a:before {
        background-color: #2eb02e;
    }

    .ezshare-box ul li.twitter a:before {
        background-color: #24a5d6;
    }

    .ezshare-box ul li.mail a:before {
        background-color: #c02b1d;
    }

    .ezshare-box ul li.linkedin a:before {
        background-color: #0977b2;
    }

    .ezshare-box .line a,
    .ezshare-box .facebook a,
    .ezshare-box .twitter a,
    .ezshare-box .mail a,
    .ezshare-box .linkedin a {
        background: var(--default-color) !important;
    }

.container .ezshare-box {
    margin: -5px 0 30px 0;
}

.slick .slick-arrow {
    width: 40px;
    height: 12px;
    background: url(../images/all/arrow.svg) no-repeat;
    background-size: contain;
}

.slick .slick-next {
    -webkit-transform: translate(0, -50%) scaleX(-1);
    transform: translate(0, -50%) scaleX(-1);
}

.gallery-list .item {
    margin-bottom: 20px !important;
}

    .gallery-list .item .info {
        margin-top: 5px !important;
        padding: 0;
    }

    .gallery-list .item .title {
        text-align: center;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        margin: 1rem 0 1rem 0;
    }

.article-list .item {
    padding-top: 30px;
    padding-bottom: 30px;
}

    .article-list .item + .item {
        border-top: solid 1px #dfdfdf;
        margin-top: 0;
        padding-top: 30px;
    }

    .article-list .item .d-flex {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .article-list .item .time {
        font-size: 0.875rem;
        padding: 0.125rem 0.75rem 0;
        margin-right: 3em;
        color: #3a3a3a;
        font-weight: 700;
    }

    .article-list .item .title a {
        color: #3a3a3a;
    }

.article-grid .item .info .kind a {
    color: var(--bs-white);
}

.article-horizontal-grid .item {
    overflow: hidden;
}

    .article-horizontal-grid article .pic a, .article-horizontal-grid .item .pic a {
        border-radius: 8px;
        overflow: hidden;
    }

    .article-horizontal-grid article .info, .article-horizontal-grid .item .info {
        padding-bottom: 5px;
    }

        .article-horizontal-grid article .info .kind, .article-horizontal-grid .item .info .kind {
            position: absolute;
            left: 0;
            top: 10px;
            opacity: 0;
            -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
            -webkit-transition: all ease 0.5s;
            transition: all ease 0.5s;
            pointer-events: none;
        }

            .article-horizontal-grid article .info .kind a, .article-horizontal-grid .item .info .kind a {
                background: var(--second-color);
                color: var(--bs-white);
            }

        .article-horizontal-grid article .info .title a, .article-horizontal-grid .item .info .title a {
            font-size: 1rem;
            font-weight: 700;
        }

    .article-horizontal-grid article .more-area, .article-horizontal-grid .item .more-area {
        display: none;
    }

    .article-horizontal-grid article:hover .kind, .article-horizontal-grid .item:hover .kind {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
        pointer-events: auto;
    }


/*----------------------------------------- 經營理念 about --------------------------------------*/
.about .bpd_flex .pic img {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    object-fit: cover;
    object-position: center center;
}
.about .bpd_flex .tit p{
    width:100%;
}
.about .bpd_flex .tit {
    width: 50%;
    background-color: #fff;
    padding: 5%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.about .bpd_flex .pic {
    width: 50%;
}
.about .bpd_flex h1 {
    text-align: left;
}
.about .bpd_flex.bpd_flex_wep {
    flex-direction:row-reverse;
}
.about .bpd_flex {
    display: flex;
 
  
}
.about .ab_phils {
    padding: 5% 0;
}
/*----------------------------------------- 關於我們 about --------------------------------------*/
.about .cont_flex {
    display: flex;
    justify-content: center;
}
.about .ab_contact ul li h4 {
    font-weight: bold;
    background-color: #3d62aede;
    color: #fff;
    display: table;
    padding: 7px 15px;
}
.about .ab_contact ul li label {
    padding-right: 10px;
    font-weight: bold;
}
.about .ab_contact ul li.ed_cd {
    display: flex;
}
    .about .ab_contact ul li.ed_cd a:nth-child(2){
        padding-left:10px;
    }
.about .ab_contact ul li a:hover {
    color: #bed3ff;
}
.about .ab_contact ul li a {
    font-size: 18px;
    padding: 5px 0;
    display: block;
    color: #fff;
  
}
.about .ab_contact ul {
    flex-direction: column;
    padding:0 5%;
   
}
.about .ab_contact h1{
    color:#fff;
}
.about .ab_contact {
    padding: 5% 0;
    background: url(../images/about/cont_bg.jpg)no-repeat;
    color: #fff;
}
.about .ab_map a:hover {
    color: #bed3ff;
}
.about .ab_map a {
    color: #fff;
    font-size: 24px;
    display: block;
    margin-bottom:10px;
}
.about .ab_map .map_left h1 {
    color: #fff;
    text-align: left;
    border-bottom: 1px solid #ffffff85;
    padding-bottom: 30px;
}
.about .ab_map .map_left {
    width: 60%;
}
.about .ab_map .map {
    width: 40%;
}
.about .ab_map {
    padding:5% 15% 0;
    border-top: 1px dashed #ffffff82;
    display: flex;
    background: linear-gradient(to top, #0e4c81d6 10%,var(--forth-color));
}
.about .ab_coop h3 {
    text-align: center;
    font-weight: bold;
    color:#000;
}
.about .ab_coop .tit p {
    color: #000;
   
}
.about .ab_coop .tit {
    color: #fff;
  
}
.about .ab_coop {
    padding: 5% 0;
    background: url(../images/about/ab_coop_bg.jpg)no-repeat center;
    background-size: cover;
  
}
.about .kdo_midx {
    background: url(../images/about/kdo_midx.jpg)no-repeat left;
    padding: 5% 0;
    background-size: cover;
}
.about .bvu_items   .servi_box{
    flex-wrap:wrap;
}
.about .bvu_items .servi_1 {
    width: 33%;
}
.about .bvu_items {
    padding: 5% 0;
    background: url(../images/about/bvu_items_bg.jpg)no-repeat left;
    background-size: cover;
    background-attachment: fixed;
}
.bvu_items p{
    color:#fff;
}
.bvu_items h1.h3 {
    text-align: center;
    color: #fff;
}
.about .ab_flex {
    display: flex;
    align-items: flex-end;
}
.about .ab_box h1.h3 .sub {
    display: block;
    font-size: 0.4em;
    letter-spacing: 0.25em;
    font-weight: 700;
    margin-top: 5px;

}
.about .ab_box h1.h3 {
    font-size: 3.125rem;
    font-weight: 700;
    line-height: 40px;
}
.about .ab_flex .ab_ler {
    width: 70%;
    margin-right: 5%;
}
    .about .ab_flex .tit h4{
        padding-top:20px;
    }
.about .ab_flex .tit {
    padding: 5%;
    background-color: #ffffffeb;
    border: 10px solid var(--third-color);
   
}

.about  .ab_box h4{
    font-weight:bold;
}
.about .ab_box   p{
    font-size:18px;
    line-height:36px;
}
.about .ab_box {
    margin-top: -20px;
}
.about .ezshare-box {
    display: none;
}
.about.kind_32 .side2,
.about.kind_32 .side1,
.about.kind_32 .breadcrumb-section,
.about.kind_3 .side2,
.about.kind_3 .side1,
.about.kind_3 .breadcrumb-section {
    display: none;
}
.about.kind_32 .main .content,
.about.kind_3 .main .content {
    padding-left: 0;
    padding-right: 0;
}
.about.kind_32,
.about.kind_3 {
    background: url(../images/about/ab_bg0.jpg)no-repeat;
    background-size: cover;
}
    .about.kind_32 .kind-info .h2,
    .about.kind_3 .kind-info .h2 {
        display: none;
    }
    .about.kind_32 .main > .container,
    .about.kind_3 .main > .container {
        max-width: 100%;
    }
/*----------------------------------------- 首頁 home --------------------------------------*/
.servi_box .servi_1 p {
    text-align: center;
    color: #fff;
    padding-top: 10px;
    margin-bottom: 0;
    text-align: center;
}
.servi_box .servi_1 .pic img,
.servi_box .servi_1 .pic {
    border-radius: 50%;
    transition: 0.5s;
}
    .servi_box .servi_1 .pic{
        position:relative;
        overflow:hidden;
    }
    .servi_box .servi_1:hover .pic img {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 0.7;
    }
.servi_box .servi_1 {
    padding: 2%;
    display: block;
}

.servi_box {
    display: flex;
}
body.home  .link{
    padding:5% 0;
}
body.home .main {
    display: none;
}

body.home section .h3 {
    font-size: 3.125rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-align: left;
    padding-bottom: 20px;
    margin-bottom: 20px;
    position: relative;
}

    body.home section .h3 .sub {
        display: block;
        font-size: 0.4em;
        letter-spacing: 0.25em;
        font-weight: 700;
        margin-top: 5px;
    }

    body.home section .h3:empty {
        display: none;
    }

body.home section .wid-page_unit > .title {
    display: none;
}

body.home section.link {
    background: linear-gradient(to top, var(--main-color) 10%,var(--forth-color));
    overflow: hidden;
    position: relative;
}

    body.home section.link:before, body.home section.link:after {
        content: "";
        display: block;
        position: absolute;
        background-image: url(../images/home/skyline.svg);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center bottom;
        bottom: 0;
        mix-blend-mode: soft-light;
        opacity: .6;
    }

    body.home section.link:before {
        left: 0;
        transform: translateX(-40%);
        width: 60vw;
        height: 14.34vw;
    }

    body.home section.link:after {
        right: 0;
        transform: translateX(30%);
        width: 45vw;
        height: 13.01vw;
    }

    body.home section.link .h3 {
        text-align: center;
        color: var(--bs-white);
    }

    body.home section.link .gallery-list .item {
        position: relative;
        margin-bottom: 10px !important;
    }

        body.home section.link .gallery-list .item .title span {
            display: block;
            font-size: 0.875rem;
            font-weight: 400;
        }

        body.home section.link .gallery-list .item .title a {
            color: var(--bs-white);
        }

    body.home section.link .gallery-list.hov-bord .item > a {
        border-radius: 50%;
        overflow: hidden;
    }

        body.home section.link .gallery-list.hov-bord .item > a:before, body.home section.link .gallery-list.hov-bord .item > a:after {
            border-width: 2px;
            border-radius: 50%;
        }

        body.home section.link .gallery-list.hov-bord .item > a .pic img {
            border-radius: 50%;
            overflow: hidden;
            opacity: 1;
        }

body.home section.about {
    padding-top: 50px;
    padding-bottom: 50px;
}

body.home section.inner-banner {
    padding: 0 !important;
}

    body.home section.inner-banner .conbanner-slick .bn-txt {
        display: none;
    }

    body.home section.inner-banner .conbanner-slick .pic {
        height: 40vh;
    }

        body.home section.inner-banner .conbanner-slick .pic picture > *,
        body.home section.inner-banner .conbanner-slick .pic > * {
            width: 100% !important;
            height: 100% !important;
            -o-object-fit: cover;
            object-fit: cover;
            -o-object-position: center bottom;
            object-position: center bottom;
        }

body.home section.news .container > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: 280px;
}

body.home section.news .container .h3 {
    display: block;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    text-align: left;
    margin-bottom: 5px;
}

    body.home section.news .container .h3 .sub {
        display: block;
    }

body.home section.news .container .article-list {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin-top: 25px;
}

    body.home section.news .container .article-list div:empty {
        display: none;
    }

    body.home section.news .container .article-list .item .info {
        width: 100%;
    }

    body.home section.news .container .article-list .item .icon {
        display: none;
    }

body.home section.news .container .more-btn-area {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    padding-left: 40px;
}

body.home section.about .h3, body.home section.news .h3 {
    margin-top: 10px;
    padding-left: 40px;
    margin-bottom: 40px;
}

    body.home section.about .h3:before, body.home section.news .h3:before {
        content: "";
        display: block;
        width: 1px;
        height: 206px;
        background: #d0d0d0;
        position: absolute;
        left: 0;
        bottom: 0;
        mix-blend-mode: multiply;
        opacity: 0.5;
    }

body.home section.quick {
    padding: 45px 0;
}

    body.home section.quick .container-fluid {
        padding-left: 0;
        padding-right: 0;
        max-width: 1800px;
        width: 95vw;
    }

body.home section.product {
    position: relative;
    margin-top: 45px;
    margin-bottom: 45px;
}

    body.home section.product:before {
        content: "";
        display: block;
        max-width: 1800px;
        width: 95vw;
        height: 340px;
        position: absolute;
        top: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        background: url(../images/home/bg-product.jpg) no-repeat;
        background-size: cover;
        background-position: center;
    }

    body.home section.product .h3 {
        margin-bottom: 80px;
    }

    body.home section.product .gallery-list .item .item-detail, body.home section.product .gallery-list .item .item-wrap {
        margin-left: 15px;
        margin-right: 15px;
    }

body.home .txt-box {
    height: 100%;
    padding: 25px;
    border: 25px solid var(--third-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
}

    body.home .txt-box .h4 {
        color: var(--second-color);
        font-size: 2rem;
    }

    body.home .txt-box p {
        font-size: 0.975rem;
    }

        body.home .txt-box p + .btn {
            margin-top: 30px;
        }

body.home .quick-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

    body.home .quick-box .quick-item {
        display: block;
        position: relative;
        -webkit-box-flex: 1;
        -ms-flex: 1 1.2 100%;
        flex: 1 1.2 100%;
        -webkit-transition: all ease 0.5s;
        transition: all ease 0.5s;
        overflow: hidden;
    }

        body.home .quick-box .quick-item .pic {
            height: 420px;
        }

        body.home .quick-box .quick-item .info {
            padding: 25px;
            position: absolute;
            top: 40%;
            bottom: 0;
            left: 0;
            right: 0;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-box-pack: end;
            -ms-flex-pack: end;
            justify-content: flex-end;
            background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.75)), to(transparent));
            background-image: linear-gradient(0, rgba(0, 0, 0, 0.75), transparent);
            opacity: 0;
            pointer-events: none;
            -webkit-transition: all ease 0.5s;
            transition: all ease 0.5s;
            -webkit-transform: translateY(10%);
            transform: translateY(10%);
        }

            body.home .quick-box .quick-item .info .title {
                color: var(--bs-white);
                position: relative;
                font-size: 1.125rem;
                font-weight: 700;
            }

                body.home .quick-box .quick-item .info .title:before {
                    content: "";
                    display: block;
                    position: absolute;
                    background: var(--second-color);
                    width: 2em;
                    height: 1px;
                    top: -15px;
                    left: 0;
                }

            body.home .quick-box .quick-item .info .desc {
                color: var(--bs-gray-300);
                margin-bottom: 0;
                font-size: 0.9375rem;
                opacity: 0.8;
                width: 100%;
                overflow: hidden;
                white-space: nowrap;
                text-overflow: ellipsis;
            }

        body.home .quick-box .quick-item:hover {
            -webkit-box-flex: 1;
            -ms-flex: 1 1 100%;
            flex: 1 1 100%;
        }

            body.home .quick-box .quick-item:hover .info {
                opacity: 1;
                pointer-events: auto;
                -webkit-transform: translateY(0);
                transform: translateY(0);
            }
			
	body.news  .article-grid .item .info .kind a {
    padding: 1px 7px;
	    margin-bottom: 5px;

}
			
			body.news	 .article-grid.ar-img .item .info{
				height:158px;
				}	
			
	body.news	  .item	  .info  p.title  a{
		   overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
			font-size:16px;
			
		}
			

/*----------------------------------------- 單元 about --------------------------------------*/
body.about .function-bar {
    display: none !important;
}

/*----------------------------------------- 商品 product --------------------------------------*/
body.product .container .ezshare-box {
    padding-left: 0;
}

