@charset "UTF-8";

:root {
    --ob: #001F45;
    --hor: #B41821;
    --og: #C59C60;
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&display=swap');

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
span {
    font-family: '微軟正黑體';
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: bold;
}

a {
    -o-transition: all .4s ease;
    transition: all .4s ease;
    -moz-transition: all .4s ease;
    -webkit-transition: all .4s ease;
    text-decoration: none;
    cursor: pointer;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    list-style-type: none;
}

p {
    font-size: 1rem;
}

img {
    width: 100%;
}

.line-height-normal {
    line-height: normal;
}

.text-orange {
    color: #FF8249;
}

.text-blue {
    color: #005e98;
}

.text-green {
    color: #429400;
}

.text-red {
    color: #ff0011;
}

.text-gray {
    color: #777;
}

.text-purple {
    color: #8c2da3;
}

.text-bold {
    font-weight: bold;
}

.w-100 {
    width: 100% !important;
}


.h-100 {
    height: 100% !important;
}

.over-text {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.over-2 {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.over-3 {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    height: 80px;
}

.over-4 {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    height: 96px;
}

.over-5 {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    height: 110px;
}

.over-6 {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

.number-items {
    counter-reset: num;
}

.number-items .number-list>li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.number-items .number-list>li:before {
    counter-increment: num;
    content: counter(num) ".";
    font-size: 20px;
    font-style: italic;
    color: #dd5500;
    font-weight: bolder;
    position: absolute;
    top: -4px;
    left: 0;
}

ul.circle {
    padding-left: 20px;
}

ul.circle>li {
    list-style-type: circle;
    margin-bottom: 10px;
}

ul.decimal {
    padding-left: 20px;
}

ul.decimal>li {
    list-style-type: decimal;
    margin-bottom: 10px;
}

ul.disc {
    padding-left: 20px;
}

ul.disc>li {
    list-style-type: disc;
    margin-bottom: 10px;
}

ul.disc>li a {
    display: block;
}

ul.disc>li a:hover {
    color: #dd5500;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
}

ul.cjk {
    padding-left: 20px;
}

ul.cjk>li {
    list-style-type: cjk-ideographic;
    margin-bottom: 10px;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .btn-sm-flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (min-width: 1200px) {
    .w-md-100 {
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    .w-sm-100 {
        width: 100% !important;
    }
}

.just-sb {
    justify-content: space-between !important;
}

.ml-0 {
    margin-left: 0px !important;
}

.ml-10 {
    margin-left: 10px !important;
}

.ml-15 {
    margin-left: 15px !important;
}

.ml-20 {
    margin-left: 20px !important;
}

.ml-30 {
    margin-left: 30px !important;
}

.ml-40 {
    margin-left: 40px !important;
}

.ml-48 {
    margin-left: 48px !important;
}

.ml-50 {
    margin-left: 50px !important;
}

.ml-60 {
    margin-left: 60px !important;
}

.ml-70 {
    margin-left: 70px !important;
}

.ml-80 {
    margin-left: 80px !important;
}

.ml-90 {
    margin-left: 90px !important;
}

.ml-100 {
    margin-left: 100px !important;
}

/*------Margin right-------*/
.mr-0 {
    margin-right: 0px !important;
}

.mr-10 {
    margin-right: 10px !important;
}

.mr-15 {
    margin-right: 15px !important;
}

.mr-20 {
    margin-right: 20px !important;
}

.mr-30 {
    margin-right: 30px !important;
}

.mr-40 {
    margin-right: 40px !important;
}

.mr-50 {
    margin-right: 50px !important;
}

.mr-60 {
    margin-right: 60px !important;
}

.mr-70 {
    margin-right: 70px !important;
}

.mr-80 {
    margin-right: 80px !important;
}

.mr-90 {
    margin-right: 90px !important;
}

.mr-100 {
    margin-right: 100px !important;
}

/*------Margin Top-------*/
.mt-0 {
    margin-top: 0px !important;
}

.mt-7 {
    margin-top: 7px !important;
}

.mt-10 {
    margin-top: 10px !important;
}

.mt-15 {
    margin-top: 15px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-35 {
    margin-top: 35px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.mt-45 {
    margin-top: 45px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.mt-52 {
    margin-top: 52px !important;
}

.mt-60 {
    margin-top: 60px !important;
}

.mt-70 {
    margin-top: 70px !important;
}

.mt-80 {
    margin-top: 80px !important;
}

.mt-90 {
    margin-top: 90px !important;
}

.mt-100 {
    margin-top: 100px !important;
}

.mt-110 {
    margin-top: 110px !important;
}

.mt-180 {
    margin-top: 180px !important;
}

/*------Margin Bottom-------*/
.mb-0 {
    margin-bottom: 0px !important;
}

.mb-5 {
    margin-bottom: 5px !important;
}

.mb-7-5 {
    margin-bottom: 7.5px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-25 {
    margin-bottom: 25px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-35 {
    margin-bottom: 35px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-58 {
    margin-bottom: 58px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mb-70 {
    margin-bottom: 70px !important;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.mb-83 {
    margin-bottom: 83px !important;
}

.mb-85 {
    margin-bottom: 85px !important;
}

.mb-90 {
    margin-bottom: 90px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.mtb-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}

/*------Padding all-------*/
.p-60 {
    padding: 60px !important;
}

/*------Padding left-------*/
.pl-0 {
    padding-left: 0px !important;
}

.pl-10 {
    padding-left: 10px !important;
}

.pl-15 {
    padding-left: 15px !important;
}

.pl-20 {
    padding-left: 20px !important;
}

.pl-30 {
    padding-left: 30px !important;
}

.pl-40 {
    padding-left: 40px !important;
}

.pl-50 {
    padding-left: 50px !important;
}

.pl-60 {
    padding-left: 60px !important;
}

.pl-70 {
    padding-left: 70px !important;
}

.pl-80 {
    padding-left: 80px !important;
}

.pl-90 {
    padding-left: 90px !important;
}

.pl-100 {
    padding-left: 100px !important;
}

/*------Padding right-------*/
.pr-0 {
    padding-right: 0px !important;
}

.pr-10 {
    padding-right: 10px !important;
}

.pr-15 {
    padding-right: 15px !important;
}

.pr-20 {
    padding-right: 20px !important;
}

.pr-30 {
    padding-right: 30px !important;
}

.pr-40 {
    padding-right: 40px !important;
}

.pr-50 {
    padding-right: 50px !important;
}

.pr-60 {
    padding-right: 60px !important;
}

.pr-70 {
    padding-right: 70px !important;
}

.pr-80 {
    padding-right: 80px !important;
}

.pr-90 {
    padding-right: 90px !important;
}

.pr-100 {
    padding-right: 100px !important;
}

/*------Padding Left Right-------*/
.plr-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.plr-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.plr-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
}

.plr-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
}

.plr-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
}

.plr-45 {
    padding-left: 45px !important;
    padding-right: 45px !important;
}

.plr-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
}

.plr-80 {
    padding-left: 80px !important;
    padding-right: 80px !important;
}

.plr-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
}

/*------Padding Top-------*/
.pt-0 {
    padding-top: 0px !important;
}

.pt-10 {
    padding-top: 10px !important;
}

.pt-15 {
    padding-top: 15px !important;
}

.pt-20 {
    padding-top: 20px !important;
}

.pt-25 {
    padding-top: 25px !important;
}

.pt-30 {
    padding-top: 30px !important;
}

.pt-40 {
    padding-top: 40px !important;
}

.pt-45 {
    padding-top: 45px !important;
}

.pt-50 {
    padding-top: 50px !important;
}

.pt-60 {
    padding-top: 60px !important;
}

.pt-70 {
    padding-top: 70px !important;
}

.pt-75 {
    padding-top: 75px !important;
}

.pt-80 {
    padding-top: 80px !important;
}

.pt-90 {
    padding-top: 90px !important;
}

.pt-94 {
    padding-top: 94px !important;
}

.pt-95 {
    padding-top: 95px !important;
}

.pt-100 {
    padding-top: 100px !important;
}

.pt-110 {
    padding-top: 110px !important;
}

.pt-140 {
    padding-top: 140px !important;
}

/*------Padding-------*/
.p-15 {
    padding: 15px !important;
}

.p-50 {
    padding: 50px !important;
}

.p-48 {
    padding: 48px !important;
}

.p-40 {
    padding: 40px !important;
}

.p-38 {
    padding: 38px !important;
}

.p-30 {
    padding: 30px !important;
}

/*------Padding Bottom-------*/
.pb-0 {
    padding-bottom: 0px !important;
}

.pb-10 {
    padding-bottom: 10px !important;
}

.pb-15 {
    padding-bottom: 15px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.pb-25 {
    padding-bottom: 25px !important;
}

.pb-30 {
    padding-bottom: 30px !important;
}

.pb-40 {
    padding-bottom: 40px !important;
}

.pb-45 {
    padding-bottom: 45px !important;
}

.pb-50 {
    padding-bottom: 50px !important;
}

.pb-55 {
    padding-bottom: 55px !important;
}

.pb-58 {
    padding-bottom: 58px !important;
}

.pb-60 {
    padding-bottom: 60px !important;
}

.pb-65 {
    padding-bottom: 65px !important;
}

.pb-70 {
    padding-bottom: 70px !important;
}

.pb-75 {
    padding-bottom: 75px !important;
}

.pb-80 {
    padding-bottom: 80px !important;
}

.pb-90 {
    padding-bottom: 90px !important;
}

.pb-95 {
    padding-bottom: 95px !important;
}

.pb-100 {
    padding-bottom: 100px !important;
}

.pb-110 {
    padding-bottom: 110px !important;
}

.pb-120 {
    padding-bottom: 120px !important;
}

.pb-130 {
    padding-bottom: 130px !important;
}

.pb-140 {
    padding-bottom: 140px !important;
}

/*------Padding  Top Bottom-------*/
.ptb-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.ptb-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

.ptb-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.ptb-11 {
    padding-top: 11px !important;
    padding-bottom: 11px !important;
}

.ptb-12 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}

.ptb-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

.ptb-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.ptb-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
}

.ptb-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.ptb-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

.ptb-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
}

.ptb-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}

.ptb-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
}

.ptb-58 {
    padding-top: 58px !important;
    padding-bottom: 58px !important;
}

.ptb-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

.ptb-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
}

.ptb-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.ptb-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
}

.ptb-92 {
    padding-top: 92px !important;
    padding-bottom: 92px !important;
}

.ptb-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

.ptb-110 {
    padding-top: 110px !important;
    padding-bottom: 110px !important;
}

.ptb-118 {
    padding-top: 118px !important;
    padding-bottom: 118px !important;
}

.ptb-120 {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
}

.ptb-130 {
    padding-top: 130px !important;
    padding-bottom: 130px !important;
}

.ptb-132 {
    padding-top: 132px !important;
    padding-bottom: 132px !important;
}

.ptb-140 {
    padding-top: 140px !important;
    padding-bottom: 140px !important;
}

.ptb-150 {
    padding-top: 150px !important;
    padding-bottom: 150px !important;
}

.ptb-160 {
    padding-top: 160px !important;
    padding-bottom: 160px !important;
}

.ptb-180 {
    padding-top: 180px !important;
    padding-bottom: 180px !important;
}

.ptb-200 {
    padding-top: 200px !important;
    padding-bottom: 200px !important;
}

.ptb-240 {
    padding-top: 240px !important;
    padding-bottom: 240px !important;
}

@media (min-width: 768px) {
    .pl-md-0 {
        padding-left: 0 !important;
    }

    .pr-md-0 {
        padding-right: 0 !important;
    }

    .pl-md-30 {
        padding-left: 30px !important;
    }

    .mb-lg-100 {
        margin-bottom: 100px !important;
    }
}

@media (max-width: 768px) {
    .mb-sm-30 {
        margin-bottom: 30px;
    }
}

.img-wrap .img-item {
    position: relative;
    overflow: hidden;
    padding-top: 75%;
}

.img-wrap .img-item:before {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    content: '';
    top: 0;
    left: 0;
    z-index: 2;
    transition: .4s;
}

.img-wrap .img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-c {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-c iframe,
.video-c object,
.video-c embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

a .hovers {
    display: none;
}

a:hover .hovers {
    display: unset;
}

a:hover .hovern {
    display: none;
}


@media (min-width: 992px) {
    .mb-s {
        display: none;
    }
}

@media (max-width: 991px) {
    .pc-s {
        display: none;
    }
}

/*常用css---------------------*/
body {
    overflow-x: hidden;
}

@media (min-width: 992px) {
    .kv_slider_mo {
        display: none;
    }
}

@media (max-width: 991px) {
    .kv_slider {
        display: none;
    }

    img {
        max-width: 100% !important;
    }

    body {
        padding-top: 60px;
    }
}



.header .pc-header .top-menu .logo {
    display: none;
}

@media (max-width: 991px) {
    .header .pc-header .top-menu .logo {
        display: block;
        height: 60px;
    }

    .header .pc-header .top-menu .logo img {
        width: 200px;
        padding: 10px 0 0 10px;
    }
}

@media (min-width: 1600px) {
    .header .pc-header .top-menu .collapse {
        padding-left: 80px;
        padding-right: 80px;
    }
}

@media (min-width: 991px) {

    .header .pc-header {
        background-color: var(--ob);
    }

    .header .pc-header .top-menu .collapse {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        width: 100%;
        position: relative;
        padding-left: 15px;
        padding-right: 15px;
        z-index: 99999;

    }

    .header .pc-header .top-menu .header-c {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header .pc-header .top-menu .header-c .header-w {
        padding-top: 25px;
    }

    .header-btn .nav-iconul {
        flex: 0 0 50%;
        justify-content: center;
        margin-bottom: 10px;
    }

    .nav-iconul li {
        padding-left: 8px;
        padding-right: 8px;
    }

    .search-btn i {
        color: #C59C60;
    }

    .search-btn:hover i,
    .search-btn.active i {
        color: var(--hor);
    }

    .header-ser {
        display: none;
        position: absolute;
        right: 0px;
        bottom: -38px;
        width: auto;
    }

    .header-ser.active {
        display: flex;
        -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInUp;
        animation: 500ms ease-in-out 0s normal none 1 running fadeInUp;
    }

    .header-ser .btn {
        background-color: var(--ob);
        color: #fff;
        font-size: 16px;
    }

    .header-ser .btn:hover {
        background-color: var(--hor);
    }

    .header-ser .btn:focus {
        background-color: var(--dog);
        box-shadow: unset;
    }

    .header-ser input {
        min-width: 10em;
        font-size: 16px;
    }

    .header .pc-header .top-menu .collapse .nav-items {
        position: relative;
    }

    .header .pc-header .top-menu .collapse .nav-items .nav-link {
        color: #fff;
        font-size: 16px;
        display: block;
        position: relative;
        line-height: 1.5em;
        letter-spacing: 0px;
        padding:25px 15px;
    }

    .header .pc-header .top-menu .collapse .nav-items .nav-link:hover,
    .header .pc-header .top-menu .collapse .nav-items .nav-link.active {
        color: var(--hor);
    }

    .header .pc-header .top-menu .collapse .nav-items .nav_mb_ul {
        position: absolute;
        width: 200px;
        background: var(--og);
        top: 74px;
        left: 0;
        z-index: 1;
        display: none;
        -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color=#A6A6A6)";/*IE 8*/
        -moz-box-shadow: 1px 1px 3px 1px rgba(166,166,166,0.7);/*FF 3.5+*/
        -webkit-box-shadow: 1px 1px 3px 1px rgba(166,166,166,0.7);/*Saf3-4, Chrome, iOS 4.0.2-4.2, Android 2.3+*/
        box-shadow: 1px 1px 3px 1px rgba(166,166,166,0.7);/* FF3.5+, Opera 9+, Saf1+, Chrome, IE10 */
        filter: progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color=#A6A6A6); /*IE 5.5-7*/
    }

    .header .pc-header .top-menu .collapse .nav-items .nav_mb_ul ul {
        width: 100%;
    }

    .header .pc-header .top-menu .collapse .nav-items .nav_mb_ul ul li {
        padding: 0;
    }
}

@media (min-width: 991px) and (max-width: 990px) {
    .header .pc-header .top-menu .collapse .nav-items .nav_mb_ul ul li {
        width: 100%;
    }
}

@media (min-width: 991px) {
    .header .pc-header .top-menu .collapse .nav-items .nav_mb_ul ul li a {
        color: #fff;
        font-size: 16px;
        padding: 10px 15px;
        display: block;
    }

    .header .pc-header .top-menu .collapse .nav-items .nav_mb_ul ul li a:hover {
        background-color: #9D7131;
    }
}

@media (min-width: 991px) and (max-width: 990px) {
    .header .pc-header .top-menu .collapse .nav-items .nav_mb_ul {
        position: relative;
        padding-top: 0px;
        margin-bottom: 0;
        list-style: none;
        width: 100%;
        float: none;
        top: initial;
        left: initial;
        z-index: 1;
        display: block;
    }
}

@media (min-width: 991px) {
    .header .pc-header .top-menu .collapse .nav-items:hover .nav_mb_ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .header .pc-header .top-menu .collapse .top-icon-list .top-icon-link a {
        position: relative;
        display: block;
        padding: 15px;
        font-size: 18px;
    }

     a .bag-number {
        position: absolute;
        min-width: 20px;
        height: 20px;
        background: red;
        color: #fff;
        left: 15px;
        bottom: -7px;
        border-radius: 20px;
        font-size: 12px;
        padding: 2px;
        text-align: center;
        line-height: 16px;
        transform: scale(.8);
    }
}

@media (min-width: 1024px) {
    .header .pc-header .top-menu .has-hover {
        position: relative;
    }

    .header .pc-header .top-menu .has-hover:before {
        bottom: -6px;
        left: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-bottom-color: rgba(0, 54, 134, 0.9);
        border-width: 10px;
        margin-left: -10px;
        display: none;
        opacity: 0;
    }

    .header .pc-header .top-menu .has-hover .hover-wrap {
        position: absolute;
        width: 100vw;
        top: 33px;
        left: 60%;
        -webkit-transform: translate(-50%, 0%);
        -ms-transform: translate(-50%, 0%);
        transform: translate(-50%, 0%);
        background: rgba(0, 54, 134, 0.9);
        z-index: 9;
        display: none;
        opacity: 0;
    }
}

@media (min-width: 1024px) and (min-width: 1200px) {
    .header .pc-header .top-menu .has-hover .hover-wrap {
        left: -95%;
    }
}

@media (min-width: 1024px) {
    .header .pc-header .top-menu .has-hover .hover-wrap .hover-list {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 25px 0;
        border-bottom: 1px solid #fff;
    }

    .header .pc-header .top-menu .has-hover .hover-wrap .hover-list:last-child {
        border: none;
    }

    .header .pc-header .top-menu .has-hover .hover-wrap .hover-list .hover-list-title {
        padding-left: 15px;
        width: 15%;
        text-align: left;
    }

    .header .pc-header .top-menu .has-hover .hover-wrap .hover-list .hover-list-title h4 {
        color: #fff;
    }

    .header .pc-header .top-menu .has-hover .hover-wrap .hover-list .hover-list-title h5 {
        color: #529dff;
        font-weight: bolder;
    }

    .header .pc-header .top-menu .has-hover .hover-wrap .hover-list .hover-list-meun {
        width: 85%;
    }

    .header .pc-header .top-menu .has-hover .hover-wrap .hover-list .hover-list-meun ul li {
        width: 20%;
        margin: 0;
    }

    .header .pc-header .top-menu .has-hover .hover-wrap .hover-list .hover-list-meun ul li a {
        display: block;
        padding: 0 25px;
        border: none;
    }

    .header .pc-header .top-menu .has-hover .hover-wrap .hover-list .hover-list-meun ul li a .img-wrap {
        margin-bottom: 15px;
    }

    .header .pc-header .top-menu .has-hover .hover-wrap .hover-list .hover-list-meun ul li a .img-wrap .img-item {
        padding-top: 60%;
    }

    .header .pc-header .top-menu .has-hover .hover-wrap .hover-list .hover-list-meun ul li a h4 {
        color: #fff;
        margin-bottom: 0;
        text-align: left;
    }

    .header .pc-header .top-menu .has-hover .hover-wrap .hover-list .hover-list-meun ul li a:hover .img-item {
        -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=5, Direction=0, Color=#FFFFFF)";
        /*IE 8*/
        -moz-box-shadow: 0 0 5px 5px rgba(255, 255, 255, 0.7);
        /*FF 3.5+*/
        -webkit-box-shadow: 0 0 5px 5px rgba(255, 255, 255, 0.7);
        /*Saf3-4, Chrome, iOS 4.0.2-4.2, Android 2.3+*/
        box-shadow: 0 0 5px 5px rgba(255, 255, 255, 0.7);
        /* FF3.5+, Opera 9+, Saf1+, Chrome, IE10 */
        filter: progid:DXImageTransform.Microsoft.Shadow(Strength=5, Direction=135, Color=#FFFFFF);
        /*IE 5.5-7*/
    }

    .header .pc-header .top-menu .has-hover:hover .hover-wrap,
    .header .pc-header .top-menu .has-hover:hover:before {
        display: block;
        opacity: 1;
    }
}

@media (max-width: 991px) {
    .pc-header {
        display: none;
    }
}


.header .mo-header .top-menu .logo {
    display: none;
}

@media (max-width: 991px) {
    .header .mo-header .top-menu .logo {
        display: block;
        height: 60px;
        padding: 5px;
    }

    .header .mo-header .top-menu .logo img {
        height: 100%;
        width: auto;
    }
}

@media (min-width: 991px) {
    .mo-header {
        display: none;
    }
}

.header .top-title {
    background-color: #005eac;
    height: 45px;
}

.header .top-title ul.marquee {
    display: block;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    position: relative;
    overflow: hidden;
    height: 45px;
    width: 100%;
}

.header .top-title ul.marquee li {
    position: absolute;
    top: -999em;
    display: block;
    white-space: nowrap;
    color: #fff;
    font-size: 20px;
    line-height: 45px;
    text-align: center;
    left: 0;
}

.header .stick {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1039;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=0, Color=#000000)";
    /*IE 8*/
}

@media (max-width: 991px) {
    .header .mo-header {
        position: fixed;
        width: 100%;
        height: 60px;
        z-index: 9999;
        background: var(--ob);
        top: 0;
        left: 0;
    }

    .header .mo-header .top-menu .search-input2 {
        position: absolute;
        right: 70px;
        top: 20px;
        z-index: 5;
    }

    .header .mo-header .top-menu .search-input2 i {
        color: #d2d2d2;
        font-size: 24px;
    }

    .header .mo-header .top-menu #search-input2 {
        position: absolute;
        width: 250px;
        top: 80px;
        right: 20px;
        z-index: 5;
    }

    .header .mo-header .top-menu #search-input2 .form-control {
        border-radius: 5rem;
        padding: .375rem 1rem;
    }

    .header .mo-header .top-menu .navbar-toggler {
        background-color: #fff;
        z-index: 9999;
        top: 12px;
        right: 12px;
    }

    .header .mo-header .top-menu .navbar-toggler .icon-bar {
        background-color: var(--ob);
    }

    .header .mo-header .top-menu .navbar-toggler.yes .icon-bar {
        background: 0 0;
    }

    .header .mo-header .top-menu .navbar-toggler.yes .icon-bar:first-child,
    .header .mo-header .top-menu .navbar-toggler.yes .icon-bar:last-child {
        background-color: #d2d2d2;
    }

    .header .mo-header .top-menu .navbar-collapse .nav li {
        margin-right: 0px;
    }

    .header .mo-header .top-menu .navbar-collapse .nav li a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        color: #fff;
        padding: 10px 15px;
        border-bottom: 1px solid #fff;
    }

    .header .mo-header .top-menu .navbar-collapse .nav li a.collapsed .fa-chevron-up:before {
        content: "\f078";
    }

    .header .mo-header .top-menu nav .navbar-collapse {
        overflow: auto;
        bottom: 0;
        position: fixed;
        top: 98px;
        overflow-y: auto;
        left: 0;
        right: 0;
        background: var(--ob);
        text-align: center;
        padding: 0;
        opacity: 0;
        -webkit-transform: translateX(-150%);
        -moz-transform: translateX(-150%);
        -ms-transform: translateX(-150%);
        -o-transform: translateX(-150%);
        transform: translateX(-150%);
        -webkit-transition: top 0s .35s, left 0s .35s, right 0s .35s, opacity 0s .35s, -webkit-transform .35s 0s;
        -o-transition: top 0s .35s, left 0s .35s, right 0s .35s, opacity 0s .35s, -o-transform .35s 0s;
        -moz-transition: top 0s .35s, left 0s .35s, right 0s .35s, opacity 0s .35s, transform .35s 0s, -moz-transform .35s 0s;
        transition: top 0s .35s, left 0s .35s, right 0s .35s, opacity 0s .35s, -webkit-transform .35s 0s;
        -o-transition: top 0s .35s, left 0s .35s, right 0s .35s, opacity 0s .35s, transform .35s 0s;
        transition: top 0s .35s, left 0s .35s, right 0s .35s, opacity 0s .35s, transform .35s 0s;
        transition: top 0s .35s, left 0s .35s, right 0s .35s, opacity 0s .35s, transform .35s 0s, -webkit-transform .35s 0s;
        transition: top 0s .35s, left 0s .35s, right 0s .35s, opacity 0s .35s, transform .35s 0s, -webkit-transform .35s 0s, -moz-transform .35s 0s, -o-transform .35s 0s;
        z-index: 888;
    }

    .header .mo-header .top-menu nav .navbar-collapse.show {
        top: 60px;
        right: 0;
        opacity: 1;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
        padding-bottom: 30px;
        -webkit-transition: top 0s, left 0s, right 0s, opacity 0.35s cubic-bezier(0, 1.2, 0.8, 1.01), -webkit-transform 0.35s cubic-bezier(0, 1.2, 0.8, 1.01);
        -o-transition: top 0s, left 0s, right 0s, opacity 0.35s cubic-bezier(0, 1.2, 0.8, 1.01), -o-transform 0.35s cubic-bezier(0, 1.2, 0.8, 1.01);
        -moz-transition: top 0s, left 0s, right 0s, opacity 0.35s cubic-bezier(0, 1.2, 0.8, 1.01), transform 0.35s cubic-bezier(0, 1.2, 0.8, 1.01), -moz-transform 0.35s cubic-bezier(0, 1.2, 0.8, 1.01);
        transition: top 0s, left 0s, right 0s, opacity 0.35s cubic-bezier(0, 1.2, 0.8, 1.01), -webkit-transform 0.35s cubic-bezier(0, 1.2, 0.8, 1.01);
        -o-transition: top 0s, left 0s, right 0s, opacity 0.35s cubic-bezier(0, 1.2, 0.8, 1.01), transform 0.35s cubic-bezier(0, 1.2, 0.8, 1.01);
        transition: top 0s, left 0s, right 0s, opacity 0.35s cubic-bezier(0, 1.2, 0.8, 1.01), transform 0.35s cubic-bezier(0, 1.2, 0.8, 1.01);
        transition: top 0s, left 0s, right 0s, opacity 0.35s cubic-bezier(0, 1.2, 0.8, 1.01), transform 0.35s cubic-bezier(0, 1.2, 0.8, 1.01), -webkit-transform 0.35s cubic-bezier(0, 1.2, 0.8, 1.01);
        transition: top 0s, left 0s, right 0s, opacity 0.35s cubic-bezier(0, 1.2, 0.8, 1.01), transform 0.35s cubic-bezier(0, 1.2, 0.8, 1.01), -webkit-transform 0.35s cubic-bezier(0, 1.2, 0.8, 1.01), -moz-transform 0.35s cubic-bezier(0, 1.2, 0.8, 1.01), -o-transform 0.35s cubic-bezier(0, 1.2, 0.8, 1.01);
    }

    .has-hover {
        display: none;
    }
}

.nav-btnla {
    padding: 8px 35px;
    position: relative;
    background-color: var(--og);
    color: #fff;
    border-radius: 5px;
    transition: .4s;
    display: block;
}

.nav-btnla:hover {
    background-color: var(--hor);
    color: #fff;
}

/*.nav-btnla:before{
      position: absolute;
      width: 33px;
      height: 40px;
      background-image: url(../images/CI.png);
      background-size: contain;
      bottom: 10px;
      left: 9px;
      content: "";
      background-repeat: no-repeat;

    }header按鈕裝飾*/

@media (max-width: 991px) {
    .nav-btnla {
        display: none;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 320px;

    }
}

.footer {
    background: var(--ob);
    padding: 40px;
}

.footer-body {
    text-align: center;
}

@media (min-width: 1600px) {
    .footer .footer-con {
        padding-left: 80px;
        padding-right: 80px;

    }
}

.footer-con .footer-r {
    justify-content: space-between;

}

.footer-con .footer-logo {
    flex: 0 0 14.5%;
    margin-right: 30px;
    max-width: 14.5%;
}

.footer-con .footer-logo img {
    width: 100%;
}

.footer-con .footer-info {
    flex: 0 0 35%;
    max-width: 35%;

}

.footer-con .footer-info p {
    font-size: 16px;
    line-height: 1.8em;
    color: #fff;
    margin-bottom: 0px;
    text-align: left;
}

.footer-con .footer-info p.footer-company {
    color: #C59C60;
}

.footer-con .col-ul {
    flex: 0 0 6.5%;
    text-align: left;
    max-width: 6.5%;
}

.footer-con .col-ul.col-ul2 {
    flex: 0 0 8%;
    text-align: left;
    max-width: 8%;
}

.footer-ul li a {
    color: #fff;
    font-size: 16px;
    padding: 5px 0px;
    white-space: nowrap;
}

.footer-ul li a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-item span {
    font-size: 16px;
    color: #64779A;
    vertical-align: middle;
}


@media (max-width: 768px) {
    .footer {
        padding: 15px 0 75px 0;
    }

    .footer-item span {
        font-size: 14px;
    }

    .footer-ul li a {
        font-size: 14px;
    }

}

.footer-con .footer-sns {
    flex: 0 0 30%;

}

.footer-con .footer-sns .sns-p p {
    color: #fff;
    font-size: 16px;
}

.footer-con .footer-sns .sns-p p span {
    font-family: "Times New Roman";
    font-size: 36px;
    line-height: 47px;
    color: #9D7131;
    margin-right: 15px;

}

@media (max-width: 1400px) {
    .footer-con .footer-logo {
        flex: 0 0 16%;
        margin-right: 0px;
        max-width: 16%;
    }
}

@media(max-width: 991px) {

    .footer-con .footer-sns,
    .footer-con .footer-logo,
    .footer-con .footer-info {
        flex: 0 0 100%;
        max-width: 100%;

    }

    .footer-con .col-ul,
    .footer-con .col-ul.col-ul2 {
        flex: 0 0 50%;
        text-align: center;
        margin-top: 30px;
        max-width: 50%;

    }

    .footer-logo {
        padding-left: 20%;
        padding-right: 20%;
    }
}

.pages-content {
    padding-bottom: 50px;
}



.kv_slider .img-wrap .img-item {
    padding-top: 500px;
}

.kv_slider .img-wrap .kv-word {
    text-align: center;
    background-color: #E1E1E1;
    padding-top: 30px;
    padding-bottom: 30px;

}

.kv_slider .img-wrap .kv-word h3 {
    color: #000;
    letter-spacing: 3px;
    font-size: 32px;
    margin-bottom: 0px;
    font-family: 'Noto Serif TC', serif;
    font-weight: 600;
    text-shadow: 0px 3px 6px #00000029;
}

.kv_slider .slick-dots {
    bottom: 110px;
}

.kv_slider .slick-dots li button:before {
    box-shadow: unset;
    background-color: #A39A95;
    border: unset;
    border-radius: 50%;
    height: 10px;
    width: 10px;
}

.kv_slider .slick-dots li.slick-active {
    width: 30px;
}

.kv_slider .slick-dots li.slick-active button {
    border-radius: 90px;
    background-color: #fff;
    width: 30px;
}

.kv_slider .slick-dots li.slick-active button:before {
    background-color: #fff;
}

@media (max-width: 991px) {
    .content {
        padding-top: 0px;
    }
}

.kv_slider_mo .img-wrap .img-item {
    position: relative;
    padding-top: 100%;
}

.kv_slider_mo .img-item .kv-word {
    text-align: center;
    top: 50%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: none;
}

.kv_slider_mo .img-item .kv-word h3 {
    color: #000;
    letter-spacing: 3px;
    font-size: 24px;
    margin-bottom: 0px;
    font-family: 'Noto Serif TC', serif;
    font-weight: 600;
    text-shadow: 0px 0px 3px #ffffff;
}

.idsb {
    background-color: #E1E1E1;
    padding-bottom: 50px;
}

.sear-bar h4 {
    font-size: 20px;
    line-height: 30px;
}

.searb-gou {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropgou {
    background-color: #fff;
    border-radius: 5px;
    padding: 12px 20px;
}

.dropgou label {
    font-size: 16px;
    margin-bottom: 0px;
    padding: 0px 10px;
}

.dropgou .nice-select {
    font-size: 16px;
    border: 0px;
    border-left: 1px solid #B0B2BE;
    padding: 0px 10px;
    border-radius: 0px;
    height: unset;
    line-height: unset;
    float: right;
    min-width: 150px;
}

.dropgou .nice-select:after {
    content: '\f0d7';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    transform: translateY(-50%);
    border: unset;
    right: 8px;
    height: unset;
    margin-top: 0px;


}

.dropgou .nice-select span {
    font-size: 16px;
}

.dropgou .nice-select .option {
    font-size: 16px;
    padding-right: 15px;
    padding-left: 15px;
}

.sear-bar .ser-date {
    text-align: center;
    border: 0px;
    border-radius: 5px;
    padding: 12px 20px;
    font-size: 16px;
    width: 180px;
}

.sear-bar .sear-btn {
    background-color: var(--og);
    font-size: 16px;
    border-radius: 5px;
    padding: 12px 45px;
    color: #fff;
    text-align: center;
}

.sear-bar .sear-btn:hover {
    background-color: var(--hor);
}

@media (max-width: 991px) {
    .idsb {
        padding-top: 20px;
    }

    .searb-gou {
        justify-content: center;
        flex-wrap: wrap;
    }

    .dropgou {
        margin-right: 5px;
        margin-left: 5px;
        padding-left: 0px;
        padding-right: 0px;
    }

    .dropgou label {
        display: none;
    }

    .dropgou .nice-select {
        border-left: 0px;
        float: none;
        min-width: unset;
        padding-right: 15px;
        width: 160px;
    }

    .sear-bar {
        max-width: 380px;
        margin: 0 auto;
    }

    .sear-bar .col-lg-6 {
        padding-left: 7px;
        padding-right: 7px;
    }

    .searb-gou .sear- {
        margin-right: 2px;
        margin-left: 2px;
    }

    .sear-bar .ser-date {
        width: 160px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .sear-bar .sear-btn {
        flex: 0 0 100%;
        max-width: 330px;
    }
}

.ids1 {
    margin-top: 20px;
}

.sec-ti {
    font-size: 36px;
    color: var(--og);
    text-align: center;
    position: relative;
    padding: 15px;
    width: 100%;
}

.sec-ti:before {
    position: absolute;
    content: '';
    bottom: 0px;
    width: 100vw;
    height: 1px;
    background-color: var(--og);
    left: 50%;
    transform: translateX(-50%);

}

.ids1-r {
    margin-top: 20px;
}

.ids1-c {
    padding: 10px 15px;
    margin-bottom: 15px;
}

.ids1-c:hover {
    background-color: var(--og);
}

.ids1-c .img-wrap .img-item {
    padding-top: 75%;
}

.ids1-c .word-item {
    margin-top: 15px;
    position: relative;
    padding-bottom: 30px;
}

.ids1-c .word-item h3 {
    color: var(--og);
    font-size: 20px;
    margin-bottom: 10px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: .4s;
}

.ids1-c .word-item p {
    font-size: 16px;
    color: #000;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    height: 6em;
    transition: .4s;
}

.ids1-c:hover .word-item h3,
.ids1-c:hover .word-item p {
    color: #fff;
}

.ids1-c .word-item .im {
    position: absolute;
    max-width: 80px;
    bottom: 15px;
    right: 0px;

}

.ids1-c .word-item .im.imh {
    display: none;
}

.ids1-c:hover .word-item .im.imh {
    display: block;
}

.ids1-c:hover .word-item .im.imn {
    display: none;
}

@media (max-width: 991px) {
    .ids1-c .word-item .im {
        width: 80px;
    }
}

.ids2 .row .col-lg-6:first-child {
    padding-left: 0px;
}

.ids2 .row .col-lg-6:last-child {
    padding-right: 0px;
}

@media (max-width: 991px) {

    .ids2 .row .col-lg-6:last-child,
    .ids2 .row .col-lg-6:first-child {
        padding-right: 0px;
        padding-left: 0px;
    }

    .ids2-c {
        margin-bottom: 20px;
    }
}

.ids2-c {
    position: relative;
    display: block;
}

.ids2-c img {
    width: 100%;
    display: block;
}

.ids2-c h3 {
    width: 100%;
    background-color: #00000080;
    color: #fff;
    font-size: 24px;
    font-weight: normal;
    padding: 15px 40px;
    position: absolute;
    bottom: 0px;
    margin-bottom: 0px;
    letter-spacing: 3px;
}

@media (max-width: 991px) {
    .ids2-c h3 {
        font-size: 20px;
        padding: 10px 20px;
        letter-spacing: 2px;
    }
}

.ids3 {
    width: 100%;
    background-image: url(../images/class-10.jpg);
    min-height: 400px;
    margin-top: 60px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
}

.ids3-c {
    background-color: #ffffff80;
    display: flex;
    align-items: center;
    min-height: 400px;
    max-width: 33.3333%;
    padding: 100px 80px;
}

.ids3-c div {
    position: relative;
}

.ids3-c h3 {
    font-size: 24px;
    position: relative;
    margin-bottom: 20px;
    color: var(--ob);
    letter-spacing: 3px;
}

.ids3-c h3:before {
    position: absolute;
    width: 23px;
    height: 28px;
    background-image: url(../images/CI.png);
    background-size: contain;
    top: 50%;
    transform: translateY(-50%);
    left: -33px;
    content: "";
    background-repeat: no-repeat;
}

.ids3-c p {
    font-size: 16px;
    color: var(--ob);
    font-weight: bold;
    margin-bottom: 50px;
    letter-spacing: 3px;
}

.amore {
    transition: .4s;
    border-radius: 999px;
    padding: 7px 30px;
    background-color: #EB4848;
    color: #fff;
}

.amore:hover {
    background-color: var(--ob);
    color: #fff;
}

.ids3-c .amore {
    position: absolute;
    bottom: 0px;
}

@media (max-width: 991px) {
    .ids3 {
        padding: 15px;
    }

    .ids3-c {
        max-width: unset;
        padding: 30px;

    }
}

.ids4 {
    margin-top: 60px;
}

.ids4-c {
    display: flex;
    align-items: center;
    min-height: 500px;
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 60px;
    padding-bottom: 60px;
}

@media (max-width: 991px) {
    .ids4-c {
        min-height: unset;
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

.s4c1 {
    background-color: var(--ob);
}

.s4c2 {
    background-color: var(--hor);
}

.s4c3 {
    background-color: var(--og);
}

.ids4-c img {
    margin-bottom: 20px;
    max-width: 120px;
    width: auto;
}

@media (max-width: 991px) {
    .ids4-c img {
        width: 120px;
    }
}

.ids4-c h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 3px;
    display: block;
    width: 100%;
}

.ids4-c p {

    color: #fff;
    font-size: 16px;
    letter-spacing: 3px;
}

.ids5 {
    margin-top: 60px;
}

.ids5 .container-fluid {
    padding-left: 100px;
    padding-right: 100px;
}

.ids5 h2 {
    font-size: 32px;
    color: var(--og);
    text-align: center;
    margin-bottom: 40px;
}

.ids5-slider .slick-prev {
    left: -50px;
    width: unset;
    background-color: unset;
    height: unset;
}

.ids5-slider .slick-prev:before {
    content: "〈";
    color: #707070;
    font-size: 50px;
}

.ids5-slider .slick-next {
    right: -50px;
    width: unset;
    background-color: unset;
    height: unset;
}

.ids5-slider .slick-next:before {
    content: "〉";
    color: #707070;
    font-size: 50px;
}

.ids5-c {
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
}

.ids5-c .img-wrap {
    border: 1px solid #666;
}

.ids5-c h3 {
    font-size: 20px;
    margin-top: 20px;
    color: #000;
    letter-spacing: 2.4px;
    margin-bottom: 8px;
}

.ids5-c h4 {
    font-size: 16px;
    color: #003698;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.ids5-c p {
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 1.6px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 60px;
    color: #000;

}

@media (max-width: 991px) {
    .ids5 .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }

    .ids5-c {
        margin-left: 20px;
        margin-right: 20px;
    }

    .ids5-slider .slick-next {
        right: -15px;
    }

    .ids5-slider .slick-prev {
        left: -15px;
    }
}

.ids6 {
    margin-top: 30px;
    padding-top: 30px;
    background-color: #E1E1E1;
    padding-bottom: 50px;
}

.ids6 h2 {
    color: var(--ob);
}

.ids6 .ids5-c .img-wrap {
    border: 0px;
}

.ids7 {
    position: relative;
}

.ids7 img {
    max-width: 60%;

}

.ids7 .s7word {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10vw;
    text-align: center;
}

.ids7 .s7word h3 {
    color: #35384D;
    font-size: 42px;
    letter-spacing: 3px;
    line-height: 69px;
    font-family: 'Noto Serif TC', serif;
    font-weight: 600;
    position: relative;
    margin-bottom: 40px;

}

.ids7 .s7word h3:before {
    content: ',,';
    font-family: '新細明體';
    font-weight: bold;
    letter-spacing: -3px;
    color: #B0B2BE;
    font-size: 1.8em;
    position: absolute;
    left: -35px;
    top: -35px;
}

.ids7 .s7word h3:after {
    content: ',,';
    font-family: '新細明體';
    font-weight: bold;
    letter-spacing: -3px;
    color: #B0B2BE;
    font-size: 1.8em;
    position: absolute;
    right: -30px;
    top: -35px;
}

.ids7 .s7word h4 {
    font-size: 28px;
    color: var(--hob);
    letter-spacing: 3.3px;
}

@media (max-width: 991px) {
    .ids7 .s7word {
        position: relative;
        top: unset;
        right: unset;
        transform: unset;
    }

    .ids7 .s7word h3 {
        font-size: 26px;
        line-height: 1.2em;
        margin-bottom: 20px;
    }

    .ids7 .s7word h3:before {
        content: ',,';
        font-family: '新細明體';
        font-weight: bold;
        letter-spacing: -3px;
        color: #B0B2BE;
        font-size: 1.8em;
        position: absolute;
        left: 5px;
        top: 5px;
    }

    .ids7 .s7word h3:after {
        content: ',,';
        font-family: '新細明體';
        font-weight: bold;
        letter-spacing: -3px;
        color: #B0B2BE;
        font-size: 1.8em;
        position: absolute;
        right: 5px;
        top: 5px;
    }

    .ids7 .s7word h4 {
        font-size: 24px;
    }
}

.ids8 {
    margin-top: 40px;
    margin-bottom: 40px;
}

.ids8 h2 {
    color: var(--og);
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.s8-sli a {
    transition: .4s;
    opacity: .7;
    margin-right: 10px;
    margin-left: 10px;
}

.s8-sli a:hover {
    opacity: 1;
}




.fix-r-btn {
    position: fixed;
    right: 20px;
    bottom: calc(50% + 50px);
    width: 60px;
    height: 60px;
    background-image: url(../images/tel.png);
    background-size: contain;
    transition: .4s;
    background-repeat: no-repeat;

}

.fix-r-btn:hover {
    background-image: url(../images/tel-h.png);
}

.fix-r-btn2 {
    background-image: url(../images/line.png);
    bottom: calc(50% - 25px);
}

.fix-r-btn2:hover {
    background-image: url(../images/line-h.png);
}

.fix-r-btn3 {
    background-image: url(../images/mes.png);
    bottom: calc(50% - 100px);
}

.fix-r-btn3:hover {
    background-image: url(../images/mes-h.png);
}


@media (max-width: 991px) {
    .fix-r-btn {
        width: 40px;
        height: 40px;
        bottom: calc(60% + 50px);
    }

    .fix-r-btn2 {
        bottom: calc(60% - 0px);
    }

    .fix-r-btn3 {
        bottom: calc(60% - 50px);
    }
}

@media (min-width: 992px) {
    .mb-fix-btn {
        display: none !important;
    }

}

.mb-fix-btn {
    position: fixed;
    bottom: 0px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    border-top: 1px solid #ddd;
    z-index: 66666;
}

.mb-fix-btn a {
    padding: 15px 5px;
    font-size: 22px;
    color: #fff;
    width: 33.33333%;
    text-align: center;
    letter-spacing: 2px;
}

.mb-fix-btn .mb-btn {
    background-color: #78C8C9;
}

.mb-fix-btn .mb-btn2 {
    background-color: #B41821;
}

.mb-fix-btn .mb-btn3 {
    background-color: #C59C60;
}

.mb-fix-btn a i {
    margin-right: 5px;
}

.content {
    padding-bottom: 30px;
}


.breadcrumb {
    background-color: unset;
    padding-left: 0px;
}

.breadcrumb .nav {
    float: left;
}

.breadcrumb .nav li {
    position: relative;
    padding: 0px 10px;
}

.breadcrumb .nav li a {
    color: #B0B2BE;

    font-size: 12px;
}

.breadcrumb .nav li a:hover {
    color: var(--og);
}

.breadcrumb li:before {
    content: '>';
    position: absolute;
    display: block;
    right: -5px;
    color: #B0B2BE !important;
    font-size: 10px;
    top: 3px;
}

.breadcrumb .nav li:first-child {
    padding-left: 0px;
}

.breadcrumb li:last-child:before {
    display: none;
}

.breadcrumb .nav li:last-child a {
    color: var(--og);
}


.pages-cat .pages-cat-ul {
    display: flex;
    flex-wrap: wrap;
}

.pages-cat .pages-cat-ul li {
    transition: .4s;
}

.pages-cat .pages-cat-ul li+li {
    margin-left: 30px;
}

@media (max-width: 991px) {
    .pages-cat .pages-cat-ul {
        display: none;
    }

    .pages-cat .pages-cat-ul.show {
        display: block;
    }

    .pages-cat .pages-cat-ul li+li {
        margin-left: unset;
    }
}


.pages-cat .pages-cat-ul li.active a,
.pages-cat .pages-cat-ul li:hover a {
    color: var(--og);
}

.pages-cat .pages-cat-ul li a {
    color: #35384D;
    font-size: 20px;
}

@media (max-width: 991px) {
    .pages-cat {
        text-align: center;
    }

    .pages-cat button {
        border: 1px solid var(--og);
        color: var(--og);
        font-size: 18px;
        width: 100%;
    }

    .pages-cat button.btn:hover,
    .pages-cat button.btn:focus {
        color: var(--og);

    }

    .pages-cat .pages-cat-ul {
        width: 100%;
    }

    .pages-cat .pages-cat-ul li.active {
        background-color: var(--hor);
    }

    .pages-cat .pages-cat-ul li.active a {
        color: #fff;
    }
}



.main-tb {
    border-radius: 10px;
    overflow: hidden;
}

.main-tb .main-tb-ti {
    background-color: #e8e8e8;
    padding-top: 25px;
    padding-bottom: 25px;
}

@media (max-width: 991px) {
    .main-tb .main-tb-ti {
        display: none;
    }
}


.main-tb .main-tb-ti .row [class^=col] {
    color: #000;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 3px;
    text-align: center;
}

.main-tb-body {
    background-color: #f1f1f1;
    counter-reset: num;
    padding-bottom: 50px;
}

.main-tb-body a {
    position: relative;
    padding-top: 15px;
    padding-bottom: 15px;
    transition: .4s;
}

.main-tb-body a:before {
    bottom: 0px;
    position: absolute;
    width: calc(100% - 90px);
    left: 50%;
    transform: translateX(-50%);
    background-color: #dcdcdc;
    height: 1px;
    content: '';

}

.main-tb-body a:hover {
    background-color: var(--hor);
}

.main-tb-body a:last-child:before,
.main-tb-body a:hover:before {
    content: unset;
}

.main-tb-body a [class^=col] {
    font-size: 16px;
    color: #000;
    text-align: center;

}

.main-tb-body a:hover [class^=col] {
    color: #fff;

}

.main-tb-body a [class^=col]:first-child:after {
    counter-increment: num;
    content: counter(num, decimal-leading-zero);
}

.main-tb-body a .tb-con-ti {
    text-align: left;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;

}

@media (max-width: 991px) {
    .main-tb-body a {
        display: block;
    }

    .main-tb-body a [class^=col] {
        color: #000;
        text-align: left;
        padding-left: 30px;
        padding-right: 30px;

    }

    .main-tb-body a [class^=col]:first-child {
        display: none;
    }

    .main-tb-body a .tb-con-ti {
        overflow: hidden;
        white-space: unset;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;

    }

    .main-tb-body a [class^=col]:last-child {
        margin-top: 10px;
        font-size: 14px;
        color: #333;
    }
}

.sns-btn {
    display: flex;
    justify-content: center;
    width: 100%;
}

.sns-btn a {
    margin-left: 10px;
    margin-bottom: 10px;
    max-width: 60px;
    transition: .4s;
}

.sns-btn a img {
    width: 100%;
    transition: .4s;

}

.pages-ti {
    background-image: url(../images/news-kv.jpg);
    height: 30vw;
    background-size: cover;
    position: relative;
    background-position: center;
    margin-bottom: 50px;
}

.pages-ti .ti-word {
    position: absolute;
    left: 11%;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    color: #000;

}

.pages-ti .ti-word.ti-right {
    left: unset;
    right: 11%;
}

.pages-ti .ti-word h2 {
    font-size: 72px;
    margin-bottom: 0px;
    border-bottom: 1px solid #fff;
    font-family: 'Noto Serif TC';
    margin-bottom: 20px;
    padding-bottom: 15px;
}

.pages-ti .ti-word h1 {
    font-size: 32px;
    margin-bottom: 0px;
    font-family: 'Noto Serif TC';
}

.pages-ti .ti-word h3 {
    font-size: 16px;
    margin-bottom: 0px;
    font-family: 'Noto Serif TC';
}

@media (max-width: 991px) {
    .pages-ti {
        height: 100vw;
        margin-bottom: 30px;
    }

    .pages-ti .ti-word h2 {
        font-size: 48px;
    }

    .pages-ti .ti-word,
    .pages-ti .ti-word.ti-right {
        left: 50%;
        transform: translate(-50%, -50%);
        right: unset;
    }
}

#ab-con .pages-ti .ti-word h2,
#ab-con .pages-ti .ti-word h1,
#ab-con .pages-ti .ti-word h3 {
    color: #fff;
}

.pages-r {
    margin-top: 20px;
}

.pages-c {
    margin-bottom: 20px;
    transition: .4s;
    padding-top: 10px;
}

.pages-c:hover {
    box-shadow: 0px 0px 3px 0px #aaa;


}


.word-item {
    padding-top: 15px;
}

.word-item .cat-lab {
    font-size: 14px;
    color: var(--og);
    margin-bottom: 10px;
}

.word-item .word-date {
    color: #64779A;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 10px;

}

.word-item h4 {
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1.5px;
    color: #14151D;
    line-height: 1.5em;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    height: 4.5em;
    transition: .4s;


}

@media (max-width: 991px) {
    .pages-r {
        margin-right: -5px;
        margin-left: -5px;
    }

    .pages-c {
        padding-left: 5px;
        padding-right: 5px;
    }

    .word-item {
        padding-top: 5px;
    }

    .word-item h4 {
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        height: 3em;
        font-size: 18px;
        letter-spacing: 0px;
    }

    .word-item .word-date span {
        display: none;
    }

    .word-item .cat-lab {
        margin-bottom: 0px;
        font-size: 12px;
    }

    .word-item .word-date {
        margin-bottom: 5px;
        font-size: 12px;
    }

}

.pages-c:hover .word-item h4 {
    color: var(--hor);
}

.pag-nav {
    width: 100%;
    justify-content: center;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
}

.pagination .page-item.active .page-link {
    background-color: unset;
    color: #35384D;
    border-color: var(--og);
}

.pagination .page-item:hover .page-link {
    color: var(--og);
    background-color: unset;
}

.pagination li a.page-link {
    color: #35384D;
    font-size: 14px;
    border-radius: 50%;
    border: 1px #ffffff00 solid;
    width: 20px;
    height: 20px;
    padding: unset;
    text-align: center;
    line-height: 20px;
}


.page-hot {
    display: flex;
    margin-top: 50px;
    position: relative;
    bottom: 0px;
    justify-content: space-between;
}

.page-hot .page-hot-c {
    flex: 0 0 47%;

}

@media (max-width: 991px) {
    .page-hot {
        flex-wrap: wrap;
    }

    .page-hot .page-hot-c {
        flex: 0 0 100%;

    }
}

.page-hot .page-hot-c h5 {
    font-size: 28px;
    color: var(--og);
    line-height: 1.5em;
    border-bottom: 1px solid var(--og);
    position: relative;
    margin-bottom: 20px;
}

.page-hot .page-hot-c h5:before {
    content: "";
    position: absolute;
    height: 3px;
    bottom: -2px;
    width: 35%;
    background-color: var(--og);
}

.page-hot .page-hot-c .page-hot-label {
    margin-left: -5px;
    display: flex;
    flex-wrap: wrap;
}

.page-hot .page-hot-c .page-hot-label a {
    display: block;
    padding: 6px 20px;
    color: #707070;
    border: 1px solid #707070;
    font-size: 14px;
    margin: 5px;
    transition: .4s;
    white-space: nowrap;
}

.page-hot .page-hot-c .page-hot-label a:hover {
    background-color: #707070;
    color: #fff;
}

.side-serch {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

@media (max-width: 991px) {
    .page-side {
        margin-top: 30px;
    }

    .side-serch {
        display: none;
    }
}


.side-serch input {
    height: 40px;
    font-size: 16px;
    border: 1px #B0B2BE solid;
    border-radius: 5px;
    width: calc(100% - 50px);
    margin-right: 5px;
    padding-left: 10px;
}

.side-serach input::placeholder {
    color: #B0B2BE;
}

.side-serch button {
    background-color: var(--og);
    color: #fff;
    height: 40px;
    width: 40px;
    font-size: 14px;
    border: 0px;
    border-radius: 6px;
}

.side-serch button:hover {
    background-color: var(--hor);
}

.side-ti {
    font-size: 20px;
    position: relative;
    color: var(--og);
    margin-top: 35px;
    margin-bottom: 25px;
}

.side-ti:before {
    content: "";
    height: 1px;
    width: calc(100% - 4.5em);
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--og);
}

.side-c .img-wrap .img-item {
    padding-top: 75%;
}

.side-c .word-item h4 {
    font-size: 18px;
    color: #14151D;
    letter-spacing: 1px;
    line-height: 1.5em;
    transition: .4s;
}

.side-a:hover .side-c .word-item h4 {
    color: var(--hor);
}

.consl-c .img-wrap . {
    padding-top: 100%;
    border-radius: 50%;
}





#event-content .sear-bar {
    margin-top: 20px;
}

#event-content .sear-bar .dropgou,
#event-content .sear-bar input {
    border: 1px solid #B0B2BE;
}

#event-content .sear-bar .dropgou .nice-select {
    border: 0px;
}


.video-con .word-item h4 {
    font-size: 18px;
    -webkit-line-clamp: 2;
    height: 3em;

}

.video-con .word-item .word-date {
    font-size: 14px;
    margin-bottom: 7px;
}

#video-content .pages-c:hover {
    box-shadow: unset;

}

.news-c .img-wrap .img-item {
    padding-top: 75%;
}

.alb-r1 {
    display: flex;

}

.alb-r1 .alb-r1-c {
    flex: 0 0 66.5%;
}

.alb-r1 .alb-r1-c2 {
    flex: 0 0 33.5%;
    padding-left: 2px;
}

@media (max-width: 991px) {

    .alb-r1 .alb-r1-c {
        flex: 0 0 100%;
    }

    .alb-r1 .alb-r1-c2 {
        display: none;
    }
}

.alb-r1 .alb-r1-a {
    position: relative;
    display: block;
}

.alb-r1 .alb-r1-c2 .alb-r1-a+.alb-r1-a {
    margin-top: 2px;
}

.alb-r1 .alb-r1-a h4 {
    color: #fff;
    background-color: #01010188;
    font-size: 24px;
    letter-spacing: 2px;
    padding: 10px 0px 10px 30px;
    position: absolute;
    bottom: 0px;
    width: 100%;
    margin-bottom: 0px;
}

#album-content .pages-c .word-item h4 {
    font-size: 20px;
    -webkit-line-clamp: 2;
    height: 3em;
    letter-spacing: 1px;

}

.activity-page .activity-section03 {
    position: relative;
    padding-bottom: 30px;
}

.activity-page .activity-section03 .act-cat {

    display: none;
}

.activity-page .activity-section03 .act-cat.show {
    display: block;
}

.in-ti-a {
    color: var(--og);
    border-radius: 50%;
    height: 40px;
    width: 40px;
    font-size: 30px;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    border: 2px solid var(--og);
    transition: 0.5s;
    text-align: center;

}

.in-ti-a i {
    font-size: 30px;
    color: var(--og);
    position: relative;
    top: -3px;
}

.in-ti-a.up {
    transform: rotate(180deg) translateX(50%);
    top: unset;
    bottom: 0px;

}


.word-item .act-pladate {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.class-c .word-item h4 {
    -webkit-line-clamp: 2;
    height: 3em;
    margin-bottom: 10px;

}

.word-item .act-pladate .word-item i {
    color: var(--og);
}

.class-c .img-wrap .img-item {
    padding-top: 75%;
}

.activity-cart-detail h2 {
    font-size: 36px;
}

.activity-cart-detail i.fa,
.activity-cart-detail i.fas {
    color: var(--og);
}

.btn-custom-activity {
    background-color: var(--og);
    opacity: 1;
    transition: .4s;
}

.btn-custom-activity:hover {
    background-color: var(--hor);
}

.day.active-cart {
    padding: 3px 0px;
    border-radius: 50%;
    text-align: center;
    color: #ddd;
}

.day.active-cart.disabled-date {
    text-decoration: line-through;
}

.day.active-cart.active:not(.disabled) {
    color: #fff;
    background-color: #fa4647;
}

.activity-page .activity-section02 .activity-cart-detail-small h3.act-cart-price {
    color: #001F45;
}


.details-cat {
    color: var(--og);
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 40px;
    font-weight: normal;
}

.details-ti {
    font-size: 32px;
    letter-spacing: 2px;
    line-height: 1.5em;
    color: #14151D;
}

.details-author {
    font-size: 14px;
    color: #64779A;
    line-height: 1.5em;
}


.details-content {
    padding-bottom: 50px;
    border-bottom: 1px solid #707070;
}

.details-share {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 20px;
}

.details-tag {
    flex: 0 0 50%;
    max-width: 50%;
    flex-wrap: wrap;
    display: flex;
}

.details-tag a {
    display: block;
    color: #707070;
    border: 1px solid #707070;
    padding: 6px 20px;
    transition: .4s;
    font-size: 16px;
    margin: 5px;
}

.details-tag a:hover {
    color: #fff;
    background-color: #707070;
}

.details-soc {
    display: flex;
    align-items: center;
}

.details-soc p {
    font-size: 16px;
    color: #707070;
    margin-bottom: 0px;
}

.details-soc p,
.details-soc a {
    margin-left: 10px;
}

.details-soc a img {
    max-width: 60px;
}

@media (max-width: 991px) {

    .details-tag,
    .details-soc {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.detail-extend h2 {
    color: var(--og);
    font-size: 28px;
    border-bottom: 1px solid var(--og);
    line-height: 1.4em;
    margin-bottom: 30px;
}


.detail-ext-c {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.detail-ext-c .detail-ext-a {
    flex: 0 0 45%;
    max-width: 45%;
}

.detail-ext-a:hover .side-c .word-item h4 {
    color: var(--hor);
}

@media (max-width: 991px) {
    .detail-ext-c .detail-ext-a {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


.ab-c1 {
    padding-right: 40px;

}

@media (max-width: 991px) {
    .ab-c1 {
        padding-right: 15px;
        margin-bottom: 20px;
    }
}

.ab-c1 .ab-c1-h5 {
    color: #14151D;
    font-size: 20px;
    line-height: 1.5em;
    font-weight: bold;
}

.ab-c1 .ab-c1-p {
    font-size: 20px;
    color: ##000000;
}


.ab-c2-c {
    padding-left: 70px;
}

.ab-c2-c h3 {
    position: relative;
    color: var(--og);
    padding-bottom: 15px;
    font-size: 20px;
    font-weight: normal;
    border-bottom: 1px solid var(--og);
}

.ab-c2-c h3:before {
    width: 200px;
    position: absolute;
    left: -70px;
    bottom: -1px;
    height: 3px;
    content: "";
    background-color: var(--og);


}

.ab-c2-c h3:after {
    position: absolute;
    left: -70px;
    bottom: 7px;
    font-size: 40px;
    color: var(--og);
    font-weight: normal;
    content: "道";
}

.ab-c2-c h3.ab-c2-h32:after {
    content: "術";
}

.ab-c2-c h3.ab-c2-h33:after {
    content: "勢";
}

.ab-c2-c p {
    font-size: 14px;
    color: #000;
    margin-bottom: 40px;
    line-height: 2em;
}

.ab-r2 {
    flex-direction: row-reverse;
    margin-top: 70px;
}

@media (max-width: 991px) {
    .ab-r2 {
        margin-top: 20px;
    }
}

.ab-r2-c1 p {
    font-size: 16px;
    color: #707070;
}

.ab-r2-c2 h3 {
    font-size: 40px;
    color: var(--og);
    font-weight: normal;
    position: relative;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--og);

}


.ab-r2-c2 h3:before {
    width: 450px;
    position: absolute;
    left: 0px;
    bottom: -1px;
    height: 3px;
    content: "";
    background-color: var(--og);
}



.ab-r2-c2 h4 {
    font-size: 26px;
    color: #000;
    margin-bottom: 20px;
}

.ab-r2-c2 p {
    font-size: 16px;
    line-height: 2em;
}

@media (max-width: 991px) {
    .ab-r2-c2 h3 {
        font-size: 32px;
    }

    .ab-r2-c2 h3:before {
        width: 8em;
    }

    .ab-r2-c2 h4 {
        font-size: 22px;
    }
}


.ab-s4 h3 {
    font-size: 40px;
    color: var(--og);
    font-weight: normal;
    position: relative;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--og);
}


.ab-s4 h3:before {
    width: 4em;
    position: absolute;
    left: 0px;
    bottom: -1px;
    height: 3px;
    content: "";
    background-color: var(--og);
}

@media (max-width: 991px) {
    .ab-s4 h3 {
        font-size: 32px;
    }
}

.ab-r4 {
    padding-left: 80px;
    padding-right: 80px;
}

@media (max-width: 991px) {
    .ab-r4 {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.abr4-editor p {
    font-size: 18px;
    color: #000;
    font-weight: bold;
}


.abr4-year {
    color: var(--og);
    font-size: 50px;
    font-family: 'Noto Serif TC';
}

@media (max-width: 991px) {
    .abr4-year {
        font-size: 32px;
        line-height: 1em;
        margin-top: 30px;
    }

}

.ab-s5 {
    padding-left: 5vw;
    padding-right: 5vw;
    margin-top: 40px;
}

@media (max-width: 991px) {
    .ab-s5 {
        display: none;
    }
}


.ab-s6 {
    margin-top: 30px;
}

.ab-s6 h3 {
    font-size: 40px;
    color: var(--og);
    font-weight: normal;
    position: relative;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--og);
}

.ab-s6 h3:before {
    width: 7em;
    position: absolute;
    left: 0px;
    bottom: -1px;
    height: 3px;
    content: "";
    background-color: var(--og);
}

.ab-s6 h4 {
    font-size: 26px;
    color: #000;
    margin-bottom: 20px;
}

.ab-s6 p {
    font-size: 16px;
    line-height: 2em;
}

@media (max-width: 991px) {
    .ab-s6 h3 {
        font-size: 32px;
    }

    .ab-s6 h4 {
        font-size: 22px;
    }
}

.ab-s6 p.ab-team-name {
    font-size: 24px;
    font-family: 'Noto Serif TC';
    font-weight: 700;
    color: #14151D;
    text-align: center;
    line-height: 1em;
    margin-top: 20px;
}

.ab-s6 p.ab-team-des {
    font-size: 16px;
    text-align: center;
    line-height: 1em;

}

.ab-s6-r img {
    max-width: 230px;
}

.ab-s6-r .col-6 {
    text-align: center;
}

@media (max-width: 991px) {
    .ab-s6 p.ab-team-des {
        font-size: 14px;
    }
}

.col-c {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    margin-bottom: 15px;
}

.col-c .img-wrap {
    flex: 0 0 35%;
    max-width: 35%;
    opacity: 1;
    transition: .4s;
}

.col-c .img-wrap:hover {
    opacity: 0.8;
}

.col-c .img-wrap .img-item {
    padding-top: 75%;
}

.col-c .word-item {
    position: relative;
    flex: 0 0 60%;
    max-width: 60%;
    padding-top: 10px;
}

@media (max-width: 991px) {
    .col-c {
        flex-wrap: wrap;
    }

    .col-c .img-wrap {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .col-c .word-item {
        flex: 0 0 100%;
        max-width: 100%;
        padding-bottom: 40px;
    }
}

.col-c .word-item .details-author {
    position: absolute;
    bottom: 0px;
    margin-bottom: 0px;
}

.col-c .word-item .details-author a {
    font-size: 14px;
    color: #64779A;
    line-height: 1.5em;
}

.col-c .word-item .details-author a:hover {
    color: #0056b3;
}


.col-c .word-item h4 a {
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1.5px;
    color: #14151D;
    line-height: 1.5em;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    height: 4.5em;
    transition: .4s;
}



.col-c .word-item h4 a:hover {
    color: var(--hor);
}

@media (max-width: 991px) {
    .col-c .word-item h4 {
        height: 4.5em;
    }

    .col-c .word-item h4 a {
        font-size: 18px;
    }
}

.col-c .word-item .col-arr {
    position: absolute;
    bottom: 0px;
    right: 20px;
    max-width: 80px;
    height: 20px;
}

.col-author {
    display: flex;
    justify-content: space-between;
    padding: 35px 50px;
    background-color: #F5F5F5;
}

.col-author .col-img {
    flex: 0 0 27%;
    max-width: 27%;
}

.col-author .col-author-info {
    flex: 0 0 68%;
    max-width: 68%;
}

.col-author-info h3 {
    color: #14151D;
    font-size: 28px;
    font-family: 'Noto Serif TC';
    margin-bottom: 25px;


}

.col-author-info h4 {
    color: #14151D;
    font-size: 20px;
    margin-bottom: 30px;
}

.col-author-info p {
    font-size: 16px;
}

.cons-tib {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    margin-top: 30px;
}

.cons-ti {
    font-size: 22px;
    font-weight: bold;
    font-family: 'Noto Serif TC';
    line-height: 1.5em;
    position: relative;
    text-align: center;
    color: #000;
    width: fit-content;
    margin: 0 auto;

}

.cons-ti.cons-po:before,
.cons-ti.cons-po:after {
    position: absolute;
    content: ",,";
    color: var(--og);
    top: -30px;
}

.cons-ti.cons-po:after {
    right: -10px;
}

.cons-ti.cons-po:before {
    left: -10px;
    -moz-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
}

p.cons-p {
    font-size: 14px;
    line-height: 2em;
    margin-bottom: 30px;
}

.cons-c {
    position: relative;
    margin-bottom: 30px;


}

.cons-c .img-wrap .img-item {
    padding-top: 75%;
}


.cons-c h4 {
    background-color: #001F45cc;
    color: #fff;
    font-weight: normal;
    text-align: center;
    position: absolute;
    bottom: 0px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 0px;
    width: calc(100% - 30px);
    font-size: 16px;
    letter-spacing: 2px;
}


.cons-c:hover {
    opacity: 0.85;
}


@media (max-width: 991px) {
    .cons-r {
        margin-left: -5px;
        margin-right: -5px;
    }

    .cons-c {
        padding-left: 5px;
        padding-right: 5px;
        margin-bottom: 10px;

    }

    .cons-c h4 {
        width: calc(100% - 10px);
    }
}


.cons-h2 {
    color: var(--og);
    font-size: 40px;
    padding-bottom: 15px;
    margin-top: 80px;
    font-family: 'Noto Serif TC';
    border-bottom: 1px solid var(--og);
    position: relative;
    text-align: center;
    margin-bottom: 40px;
}

.cons-h2:before {
    content: "";
    width: 33%;
    height: 3px;
    background-color: var(--og);
    bottom: -1px;
    position: absolute;
    left: 0px;
}

.cons-s2-r {
    display: flex;
    justify-content: space-between;
    padding-left: 7vw;
    padding-right: 7vw;
    align-items: center;
}

.cons-s2-c {
    margin-bottom: 15px;
    text-align: center;
}

.cons-s2-c p {
    font-size: 14px;
    line-height: 2em;
}

.cons-arr {
    height: 40px;
    width: 40px;
    border: 1px solid #707070;
    border-bottom: 0px;
    border-left: 0px;
    transform: rotate(45deg);
}

@media (max-width: 991px) {
    .cons-s2-r {
        flex-wrap: wrap;
    }

    .cons-s2-c {
        flex: 0 0 100%;
    }

    .cons-s2-c img {
        padding-left: 60px;
        padding-right: 60px;
    }

    .cons-arr {
        display: none;
    }
}

.cons-s2 {
    text-align: center;
    margin-bottom: 30px;
}

.cons-s2-btn {
    width: 100%;
    text-align: center;
}

.cons-s2-btn a.cons-s2-a {
    display: block;
    color: #fff;
    background-color: #F11616bf;
    transition: .4s;
    border-radius: 50px;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 10px 2em;
    margin: 0 auto;
    width: fit-content;
}

.cons-s2 a.cons-s2-a:hover {
    opacity: 0.8;
}


.cons-s3-r {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-left: 4vw;
    padding-right: 4vw;
}

.cons-s3-r .cons-s3-c .cons-s3-cnum {
    background-color: #fff;
    border: 1px solid var(--og);
    color: var(--og);
    border-radius: 50%;
    height: 90px;
    width: 90px;
    text-align: center;
    font-size: 40px;
    line-height: 90px;
    margin-left: 12px;
    font-family: 'Noto Serif TC';
}



.cons-s3-r .cons-s3-c .cons-s3-ti {
    display: flex;
    align-items: center;
    margin-top: 20px;

}

.cons-s3-r .cons-s3-c .cons-s3-ti img {
    width: 24px;
}

.cons-s3-r .cons-s3-c .cons-s3-ti h4 {
    font-size: 24px;
    color: var(--og);
    margin-left: 6px;
    margin-bottom: 0px;
}


.cons-s3-r .cons-s3-c p {
    font-size: 14px;
    line-height: 18px;
    padding-left: 30px;
    margin-top: 20px;
}

.cons-s3-hr {
    position: absolute;
    top: 30px;
    width: calc(100% - 11vw);
    border-top: #DCDCDC 3px dotted;
    left: 5vw;
    z-index: -1;
}

@media (max-width: 991px) {
    .cons-s3-r {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cons-s3-r .cons-s3-c {
        flex: 0 0 50%;
    }

    .cons-s3-hr {
        display: none;
    }

    .cons-s3-r .cons-s3-c .cons-s3-cnum {
        margin-left: auto;
        margin-right: auto;
    }

    .cons-s3-r .cons-s3-c .cons-s3-ti {
        justify-content: center;
    }
}

.cons-s4 .cons-h2,
.ser-s1-2 .cons-h2,
.ser-s3 .cons-h2 {
    margin-bottom: 15px;
    border-bottom: 0px;
}

.cons-s4 .cons-h2:before,
.ser-s1-2 .cons-h2:before,
.ser-s3 .cons-h2:before,
.consl-s1 .cons-h2:before {
    content: unset;
}

.cons-s4 .cons-ti,
.ser-s1-2 .cons-ti,
.consl-s1 .cons-ti {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--og);
    margin-bottom: 40px;
    width: 100%;
}

.cons-s4 .cons-ti:before,
.ser-s1-2 .cons-ti:before,
.consl-s1 .cons-ti:before {
    content: "";
    width: 33%;
    height: 3px;
    background-color: var(--og);
    bottom: -1px;
    position: absolute;
    left: 0px;
}

.cons-s4-des {
    text-align: center;
    font-size: 14px;
    line-height: 2em;

}

.cons-s4-rr {
    flex-direction: row-reverse;
}



.cons-s4 .cons-word .cons-ti1 {
    font-size: 22px;
    font-weight: bold;
    font-family: 'Noto Serif TC';
    line-height: 1.5em;
    position: relative;
    color: #000;

}

.cons-s4 .row {
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    #consd #activity-item03 {
        margin-top: 30px;
    }
}



.consd-info {
    padding-top: 70px;
    padding-bottom: 70px;
    background-color: #F5F5F5;
    margin-bottom: 35px;
}

.consd-r {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.consd-r .consd-img {
    flex: 0 0 40%;
    max-width: 40%;
}

.consd-r .consd-in-word {
    flex: 0 0 55%;
    max-width: 55%;
    padding-top: 30px;
}


.consd-r .consd-in-word h1 {
    color: var(--og);
    font-size: 26px;
    line-height: 1.2em;
    margin-bottom: 20px;
    font-family: 'Noto Serif TC';
    font-weight: bold;
}


.consd-r .consd-in-word .name-en {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 0px;
    color: #000;
    font-family: 'Noto Serif TC';
    font-weight: normal;

}

.consd-r .consd-in-word .consd-ti {
    font-size: 14px;
    line-height: 20px;
    font-family: 'Noto Serif TC';
    font-weight: normal;

}

.consd-r .consd-in-word .consd-des {
    margin-top: 30px;
    font-size: 22px;
    line-height: 1.5em;
    font-family: 'Noto Serif TC';
    font-weight: bold;

}

@media (max-width: 991px) {
    .consd-r {
        flex-wrap: wrap;
    }

    .consd-r .consd-img {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .consd-r .consd-in-word {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.activity-page .activity-section02 .activity-cart-detail-small #datepicker table .dow,
.activity-page .activity-section02 .activity-cart-detail-small #datepicker table .day {
    width: 32px;
    text-align: center;
    height: 32px;
}

.btn-custom01 {
    background-color: var(--og);
}

.act-date-t {
    color: #fc4645;
}

.datepicker .day:hover {
    background-color: #fc4645;
}

.consd-deatil {
    margin-bottom: 15px;
    padding-bottom: 15px;
    padding-right: 30px;
}

.consd-deatil-h2 {
    font-size: 28px;
    line-height: 1.2em;
    font-family: 'Noto Serif TC';
    font-weight: bold;
    margin-bottom: 1.5em;
}

.consd-deatil h3 {
    font-size: 14px;
    line-height: 2em;
    margin-bottom: 0px;


}

.consd-deatil h3+p {
    font-size: 14px;
    line-height: 2em;
    margin-bottom: 30px;
}

.sers1-2-cimg {
    padding-left: 35%;
    padding-right: 35%;
    margin-bottom: 20px;

}

.ser-s1-2-r {
    display: flex;
    justify-content: space-between;
}

.ser-s1-2-r .ser-s1-2-c {
    flex: 0 0 30%;
    max-width: 30%;

}


.sers1-2-cword h4 {
    font-size: 22px;
    font-weight: bold;
    font-family: 'Noto Serif TC';
    line-height: 1.5em;
    position: relative;
    color: #000;
    margin-bottom: 30px;
}

.sers1-2-cword p {
    font-size: 14px;
    line-height: 2em;
    margin-bottom: 0px;

}

.sers1-2-cword ul li {
    color: var(--og);
    list-style-type: disc;
    list-style-position: inside;
    font-size: 14px;
    line-height: 2em;
}

@media (max-width: 991px) {
    .ser-s1-2-r {
        flex-wrap: wrap;
    }

    .ser-s1-2-r .ser-s1-2-c {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
}

.ser-s2 {
    background-image: url(../images/ser-s2bg.png);
    padding-top: 50px;
    padding-bottom: 50px;
    background-size: cover;
    background-position: center;
    margin-top: 40px;
}

.ser-s2-r {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}

.ser-s2-c {
    text-align: center;
    flex: 0 0 17%;
}

.ser-s2-c-img {
    width: 48px;
    margin: 0 auto 30px;
}

.ser-s2-word,
.ser-s2-word span {
    font-size: 40px;
    line-height: 1.2em;
    color: #B70B0B;
}

.ser-s2-p {
    font-size: 14px;
    line-height: 2em;
    margin-top: 60px;
}


@media (max-width: 991px) {
    .ser-s2 {
        background-image: unset;
        background-color: #EEEEF0;
    }

    .ser-s2-r {
        flex-wrap: wrap;
    }

    .ser-s2-c {
        flex: 0 0 80%;
    }

    .ser-s2-c-img {
        margin-bottom: 15px;
    }

    .ser-s2-p {
        margin-top: 20px;
        margin-bottom: 40px;
    }

}

.ser-s3-r {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}


.ser-s3-r .ser-s3-c {
    flex: 0 0 30%;
    position: relative;
    padding-bottom: 60px;
    margin-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;


}

@media (max-width: 991px) {
    .ser-s3-r .ser-s3-c {
        flex: 0 0 100%;
    }
}

.ser-s3-r .ser-s3-c h4 {
    font-size: 22px;
    font-weight: bold;
    font-family: 'Noto Serif TC';
    line-height: 1.5em;
    position: relative;
    color: #000;
    margin-bottom: 20px;
    margin-top: 15px;
}

.ser-s3-btn {
    position: absolute;
    bottom: 0px;
    display: flex;
    justify-content: space-between;
    width: calc(100% - 30px);
}

.ser-s3-btn .ss3-btn {
    color: #fff;
    flex: 0 0 45%;
    font-size: 14px;
    background-color: var(--og);
    transition: .4s;
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 50px;
    text-align: center;
}

.ser-s3-btn .ss3-btn:hover {
    opacity: 0.8;
}

.ser-s3-btn .ss3-btn:before {
    content: "〉";
    position: absolute;
    right: 5px;
}

.ser-s3-btn .ss3-btn.s3-video {
    background-color: #6298FF;
}

.consl-s1 .cons-ti {
    margin-bottom: 20px;
}

.consl-s1 .side-serch {
    display: unset;
}

.consl-s1 .side-serch input {
    width: 250px;
}

.consl-s1 .consl-r {
    margin-top: 40px;
}


.consl-r .consl-c {
    flex: 0 0 20%;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 20px;
    transition: 0.4s;
}



.consl-r .consl-c:hover {
    box-shadow: 0px 0px 3px 0px #aaa;
}

@media (max-width: 991px) {
    .consl-r {
        justify-content: center;
    }

    .consl-r .consl-c {
        flex: 0 0 50%;
    }
}

.consl-r .consl-c .img-wrap .img-item {
    padding-top: 100%;
    border-radius: 50%;
}

.consl-r .consl-c .consl-name {
    font-size: 24px;
    font-family: 'Noto Serif TC';
    font-weight: 700;
    color: #14151D;
    text-align: center;
    line-height: 1em;
    margin-top: 20px;
}

.consl-r .consl-c .consl-des {
    font-size: 16px;
    text-align: center;
    line-height: 1em;
}

.consl-r .consl-c .consl-des2 {
    font-size: 14px;
    text-align: center;
    line-height: 1em;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    height: 4em;
}

.consl-s2 .cons-h2 {
    border-bottom: 0px;
    margin-bottom: 15px;
    padding-bottom: 0px;
    margin-top: 40px;
}

.consl-s2 .cons-h2:before {
    content: unset;
}

.consl-s2 .cons-ti {
    margin-bottom: 40px;
}

.consl-s2 .cons-tib .cons-p {
    text-align: center;
}

@media (max-width: 991px) {
    .consl-s2 .cons-tib .cons-p {
        line-height: 1.5em;
    }

}

.con-ti {
    font-size: 22px;
    line-height: 1.5em;
    color: #000;
    margin-bottom: 15px;
    text-align: center;
}

.con-ti+p {
    text-align: center;
}

.con-ti-box {
    padding-bottom: 40px;
    border-bottom: 1px solid #aaa;
    margin-bottom: 40px;
}

.newcodeimg {
    max-height: 40px;
    width: auto;
}

.form-group .con-btn {
    width: 200px;
    color: #fff;
    background-color: var(--og);
    border-radius: 90px;
    padding-top: 5px;
    padding-bottom: 5px;
    transition: .4s;
}

.form-group .con-btn:hover {
    background-color: var(--hor);
}

.con-info {
    margin-bottom: 40px;
}


.con-info .con-info-ti {
    font-size: 40px;
    color: var(--og);
    font-weight: normal;
    position: relative;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--og);
}

.con-info .con-info-ti:before {
    width: 4em;
    position: absolute;
    left: 0px;
    bottom: -1px;
    height: 3px;
    content: "";
    background-color: var(--og);
}

@media (max-width: 991px) {
    .con-info .con-info-ti {
        font-size: 32px;
    }
}

.con-info-c h3 {
    font-size: 22px;
    font-weight: bold;
    font-family: 'Noto Serif TC';
    line-height: 1.5em;
    position: relative;
    color: #000;
    margin-bottom: 20px;

}

.con-info-c p {
    color: #000000;
    font-size: 14px;
    line-height: 2em;
    margin-bottom: 0px;
    position: relative;
}

.con-info-c p i {
    color: #B0B2BE;
    margin-right: 15px;
}

@media (max-width: 991px) {
    .con-info-c {
        margin-bottom: 40px;
    }

    .con-info-c p {
        padding-left: 30px;
    }

    .con-info-c p.nopl {
        padding-left: 0px;
    }

    .con-info-c p i {
        margin-right: 0px;
        position: absolute;
        left: 0px;
        top: 7px;
    }
}

.con-soc {
    margin-top: 60px;
}

.con-soc h3 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 35px;
}