﻿@charset "utf-8";
/* CSS Document */
:root {
    --main-color: #ed6d00;
    --second-color: #f6ad4a;
    --third-color: #c9cb5e;
    --forth-color: #25291c;
    --fifth-color: #502419;
    --sixth-color: #fff199;
    --bg_color: #252525;
    --main-rgbcolor: 30,132,204;
    --forth-rgbcolor: 209,227,221;
}

::-webkit-scrollbar {
    width: 0.5em;
    height: 0.5em;
}

::-webkit-scrollbar-track {
    /* -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.25); */
    background: #eee;
}

::-webkit-scrollbar-thumb {
    background-color: #636363;
}

body {
    font-size: 16px;
    color: #000;
    font-family: "Poppins", "微軟正黑體", "Microsoft JhengHei", Arial, sans-serif;
}

p {
    line-height: 1.8;
    margin-bottom: 0;
}

    p + p {
        margin-top: 30px;
    }

.wrapfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

a {
    color: #000;
    transition: all .5s;
}

    a:hover {
        color: var(--main-color);
    }

.btn-primary {
    background: var(--main-color);
    color: #fff;
    text-align: center;
    border: none;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
}

    .btn-primary:hover,
    .btn-primary:focus,
    .btn-primary:active,
    .btn-primary.active,
    .open > .dropdown-toggle.btn-primary {
        background: var(--second-color);
    }

.btn-default {
    border: 1px solid #DFDFDF;
    color: #888;
}

    .btn-default:hover,
    .btn-default:focus,
    .btn-default:active,
    .btn-default.active {
        background-color: var(--main-color);
        color: #fff;
    }

.mt-1 {
    margin-top: 10px;
}

.mt-2 {
    margin-top: 20px;
}

.mb-1 {
    margin-bottom: 10px;
}

.mb-2 {
    margin-bottom: 20px;
}

.mt-3 {
    margin-top: 30px;
}

.mb-3 {
    margin-bottom: 30px;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.my-3 {
    margin-top: 30px;
    margin-bottom: 30px;
}

.me-05 {
    margin-right: 5px;
}

/** loading **/
.loadingbar {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .loadingbar div {
        box-sizing: border-box;
        display: block;
        position: absolute;
        width: 64px;
        height: 64px;
        margin: 8px;
        border: 8px solid var(--main-color);
        border-radius: 50%;
        animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
        border-color: var(--main-color) transparent transparent transparent;
    }

        .loadingbar div:nth-child(1) {
            animation-delay: -0.45s;
        }

        .loadingbar div:nth-child(2) {
            animation-delay: -0.3s;
        }

        .loadingbar div:nth-child(3) {
            animation-delay: -0.15s;
        }

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.modal {
    z-index: 1050;
}

.modal-style .modal-body {
    padding: 0;
}


.modal-style .modal-content {
    background: #fff;
    text-align: left;
    padding: 30px;
    border-radius: 0;
    border: none;
    border-radius: 10px;
}

.modal-style .modal-header {
    border: none;
    padding: 0;
    min-height: 0;
}

.modal-style.in {
    -webkit-animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.modal-style .sec-pro {
    margin-right: 30px;
    margin-bottom: 0;
}

.modal-style .close {
    width: 44px;
    height: 44px;
    cursor: pointer;
    position: absolute;
    background: var(--forth-color);
    opacity: 1;
    top: -10px;
    right: -10px;
    margin: 0;
    transition: all .5s ease;
    border-radius: 50%;
}

    .modal-style .close:hover {
        background: var(--main-color);
    }

    .modal-style .close:before {
        content: "";
        transform: translate(-50%, -50%) rotate( 45deg );
        display: block;
        height: 2px;
        background: #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        right: 0;
        bottom: 0;
        width: 16px;
    }

    .modal-style .close:after {
        content: "";
        transform: translate(-50%, -50%) rotate( -45deg );
        display: block;
        height: 2px;
        background: #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        right: 0;
        bottom: 0;
        width: 16px;
    }

    .modal-style .close span {
        display: none;
    }

.modal-style .btn-box {
    margin: 30px -30px -30px;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}

    .modal-style .btn-box a {
        background: var(--main-color);
        color: #fff;
        width: 100%;
        padding: 15px 10px;
        text-align: center;
        display: block;
        border-radius: 0;
    }

@-webkit-keyframes slide-in-top {
    0% {
        -webkit-transform: translateY(-1000px);
        transform: translateY(-1000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slide-in-top {
    0% {
        -webkit-transform: translateY(-1000px);
        transform: translateY(-1000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

.flex-input input {
    flex-grow: 1;
}

.flex-input a {
    background: var(--main-color);
    color: #fff;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .flex-input a:hover {
        background: var(--second-color);
    }

.form-control {
    height: auto;
    box-shadow: none;
    background: #eee;
    border: none;
    border-radius: 5px;
}

h2.tt {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: bold;
    color: #000;
    position: relative;
    padding-left: 15px;
}

    h2.tt:before {
        content: "";
        width: 6px;
        display: inline-block;
        background: var(--main-color);
        border-radius: 5px;
        position: absolute;
        top: 5px;
        bottom: 5px;
        left: 0;
    }

.btn-style {
    background: var(--main-color);
    color: #fff;
    display: block;
    padding: 15px 30px;
    text-align: center;
    position: relative;
    z-index: 5;
    border-radius: 5px;
    overflow: hidden;
    font-weight: bold;
}

    .btn-style.styleB {
        background: var(--main-color);
    }

    .btn-style:before {
        content: "";
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--second-color);
        transition: all .5s;
        z-index: -1;
    }

    .btn-style.styleB:before {
        background: var(--third-color);
    }

.btn-inquiry {
    padding:10px 15px;
}

.btn-style:hover {
    color: #fff !important;
}

    .btn-style:hover:before {
        top: 0;
    }

.btn-light {
    background: #bfa38a !important;
}

    .btn-light:hover {
        background: var(--main-color) !important;
    }
/* 防止float溢出 */
.content .txt:after,
.content .list-box .txt-list li:after,
body.news .content > .h3:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

#floating, #floating.fixed {
    position: fixed;
    right: 5px;
    top: auto;
    bottom: 5%;
    margin: 0;
}

    #floating.ani_floating {
        opacity: 0;
        pointer-events: none;
    }

    #floating .btn-floating {
        background-color: var(--main-color);
        display: block;
        width: 28px;
        height: 58px;
        position: absolute;
        left: -30px;
        margin: 1px;
        padding: 10px 3px;
        display: none;
    }

        #floating .btn-floating .icon-arrow {
            background: url(../images/all/arrow.png) no-repeat;
            display: block;
            width: 32px;
            height: 40px;
        }

    #floating.open .btn-floating .icon-arrow {
        background-position: 0 -40px;
    }

    #floating ul.member-list {
        background: var(--main-color);
        margin-top: 5px;
        padding: 10px;
        border-radius: 60px;
        border: 3px solid #fff;
        overflow: hidden;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 5px 8px 0px;
    }

        #floating ul.member-list li a {
            color: #fff;
        }

        #floating ul.member-list li:nth-child(1) a, #floating ul.member-list li:nth-child(2) a {
            -webkit-writing-mode: vertical-rl;
            -moz-writing-mode: vertical-rl;
            -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
        }




    #floating ul li {
        padding: 0;
    }

        #floating ul li + li {
            margin-top: 5px;
        }

        #floating ul li a {
            position: relative;
            font-size: 14px;
        }

        #floating ul li:not(.gotop) a .icon {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--main-color);
            color: #fff;
            font-size: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 5px;
        }

        #floating ul li a:hover {
            color: #333;
        }

        #floating ul li.gotop {
            background: var(--main-color);
            margin: 10px -10px -10px;
            padding-top: 10px;
        }

    #floating li.gotop a {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        color: #fff;
        font-weight: bold;
        padding: 0 10px 10px;
    }

        #floating li.gotop a .icon {
            margin-bottom: -5px;
        }




    #floating ul li a .num, .navbar ul li .num {
        width: 20px;
        height: 20px;
        background-color: #EB0F0F;
        font-size: 12px;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 16px;
        position: absolute;
        right: -5px;
        top: -5px;
        -webkit-writing-mode: unset;
        -moz-writing-mode: unset;
        -ms-writing-mode: unset;
        writing-mode: initial;
    }

    #floating .member-list li .icon-font {
        width: 33px;
        height: 33px;
        border-radius: 50%;
        display: flex;
        vertical-align: middle;
        background: #fff;
        color: var(--main-color);
        align-items: center;
        justify-content: center;
        font-size: 20px;
        margin-bottom: 5px;
    }

    #floating .member-list li + li {
        margin-top: 10px;
    }

    #floating .member-list li a {
        display: flex;
        align-items: center;
        font-size: 14px;
    }

    #floating ul li.gotop {
        background: #b95500;
    }

    #floating ul li a .txt-en {
        display: none;
    }

    #floating .social-list li a {
        width: 59px;
        height: 59px;
        border: 3px solid #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #fff;
        font-size: 20px;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 5px 8px 0px;
    }

    #floating ul.social-list li.btn-link a {
        background: url(../images/all/icon_floating.jpg) no-repeat center center;
        background-size: contain;
    }

    #floating ul.social-list li.fb a {
        background: #1974ec;
    }



    #floating ul.social-list li.line a {
        background: #06c052;
    }

    #floating ul.social-list li.ig a {
        background: #f09433;
        background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
        background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
    }

.jcarousel-wrapper {
    position: relative;
}

body:not(.album) .jcarousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.jcarousel ul {
    width: 20000em;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

.jcarousel li {
    width: 200px;
    float: left;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5px;
}

    .jcarousel li a {
        display: block;
    }

.img-responsive, .thumbnail > img, .thumbnail a > img, .carousel-inner > .item > img, .carousel-inner > .item > a > img {
    width: auto;
}

.pic a {
    display: block;
}

.d-flex {
    display: flex;
}

    .d-flex.align-items-center {
        align-items: center;
    }

    .d-flex.justify-content-between {
        justify-content: space-between;
    }

    .d-flex.flex-column {
        flex-direction: column;
    }

.flex-shrink0 {
    flex-shrink: 0;
}

.flex-grow-1 {
    flex-grow: 1;
}

.slick-style .slick-dots {
    position: relative;
    bottom: auto;
    margin: 20px auto;
}

    .slick-style .slick-dots li {
        width: auto;
        height: auto;
    }

        .slick-style .slick-dots li button:before {
            display: none;
        }

    .slick-style .slick-dots .slick-active button {
        opacity: 1;
    }

    .slick-style .slick-dots button {
        opacity: .3;
        background: var(--fifth-color);
    }


.slick-style .slick-arrow, .slick-btn .slick-arrow {
    z-index: 20;
    width: 44px;
    height: 44px;
    background: none;
    text-indent: 0;
    border-radius: 10px;
    font-size: 30px;
}

    .slick-style .slick-arrow:before {
        font-size: 30px;
    }

    .slick-style .slick-arrow:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--second-color);
        z-index: -1;
        border-radius: 50%;
        transition: all .5s;
    }

    .slick-style .slick-arrow.slick-next:after {
    }

.slick-btn .slick-arrow {
    position: relative;
    display: inline-block;
    top: auto;
    left: auto;
    right: auto;
    transform: translate(0, 0);
}



.slick-style .slick-arrow:hover:after {
    background: var(--main-color);
}

.slick-style .slick-arrow.slick-disabled {
    display: none !important;
}


.slick-style .slick-prev {
    left: -7px;
}

.slick-style .slick-next {
    right: -7px;
}


.slick-style .slick-prev:before, .slick-btn .slick-prev:before {
    content: " keyboard_arrow_left";
    font-family: 'Material Symbols Outlined';
    font-weight: bold;
    font-style: normal;
    font-size: 30px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    opacity: 1;
}



.slick-style .slick-next:before, .slick-btn .slick-next:before {
    content: " keyboard_arrow_right";
    font-family: 'Material Symbols Outlined';
    font-weight: bold;
    font-style: normal;
    font-size: 30px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    opacity: 1;
}

.slick-style .list-item {
    margin: 0 20px 20px;
    background: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 5px 8px 0px;
    border-radius: 10px;
    overflow: hidden;
}

.pro-list .list-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

    .pro-list .list-item .info, .list-style .list-item .info {
        padding: 15px;
        display: block;
    }

        .pro-list .list-item .info .no {
            color: var(--main-color);
        }

        .pro-list .list-item .info .tt, .list-style .list-item .info .tt {
            font-size: 20px;
            font-weight: bold;
        }

.price {
    color: #ff0000;
    font-weight: bold;
}

    .price small {
        font-size: 16px;
        color: #000;
    }

.pro-list .list-item .price {
    font-size: 22px;
    font-weight: bold;
    color: #ff0000;
}

.pro-list .list-item .g-txt {
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ccc;
    margin: 20px -15px 0 -15px;
    padding: 5px 15px;
}

    .pro-list .list-item .g-txt .icon {
        color: var(--main-color);
    }

.btn-more {
    background: var(--main-color);
    color: #fff;
    position: relative;
    display: table;
    padding: 15px 30px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 30px;
    min-width: 200px;
    text-align: center;
}

    .btn-more.mx-auto {
        margin: 40px auto 0;
    }

    .btn-more:hover {
        background: var(--second-color);
        color: #fff;
    }

    .btn-more:after {
        content: "\F133";
        display: inline-block;
        font-family: bootstrap-icons !important;
        font-style: normal;
        font-weight: 400 !important;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        vertical-align: -.125em;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        margin-left: 10px;
        transition: all .5s;
    }

    .btn-more:hover:after {
        margin-left: 5px;
    }

.pt-0 {
    padding-top: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.list-style .list-item .desc {
    color: #888;
}

.list-style .list-item .pic {
    overflow: hidden;
    display: block;
}

    .list-style .list-item .pic img {
        transform: scale(1);
        transition: all .5s;
    }

.list-style .list-item:hover .pic img {
    transform: scale(1.1);
}

.list-style .list-item .tt {
    font-size: 18px;
    font-weight: bold;
}

.form-style .form-control {
    height: auto;
    box-shadow: none;
    border: none;
    background: #f5f5f5;
    border-radius: 5px;
    padding: 10px;
    line-height: normal;
}

.form-style .form-group .d-flex > * + * {
    margin-left: 10px;
}

.form-style .btn-style {
    padding: 0 15px;
    align-content: center;
}

.txtlink-list a {
    margin-right: 5px;
}
/********************* Header *********************/
.header {
}

    .header .navbar {
        border-radius: 0;
        z-index: 20;
        background: #fff;
    }

        .header .navbar .navbar-brand {
            background: url(../images/all/logo.svg) no-repeat;
            display: block;
            height: 105px;
            padding: 0;
            text-indent: -9999px;
            width: 277px;
            margin: 20px 0;
            background-size: contain;
        }

body:not(.home) .header .navbar .navbar-brand {
    height: 69px;
    width: 192px;
    background-size: contain;
}

.header .navbar .navbar-brand:hover {
    opacity: 0.7;
}

.header .navbar .navbar-nav {
    float: none;
}

    .header .navbar .navbar-nav li a {
        color: #000;
        background-color: inherit;
        -webkit-transition: 0.3s all ease;
        -moz-transition: 0.3s all ease;
        -o-transition: 0.3s all ease;
        transition: 0.3s all ease;
        font-size: 18px;
    }
    .header .navbar .navbar-nav> li> a:before{
        width: 40px;
        height:40px;
        content:"";
        display: block;
        margin:0 auto ;
        position: relative;
        transform: translateY(3px);
        transition: all .5s;
    }
    .header .navbar .navbar-nav> li> a:hover:before{

        transform: translateY(-3px);

    }
    .header .navbar .navbar-nav> li:nth-child(1)> a:before{
        background: url(../images/all/icon_nav.svg) no-repeat;
        background-size: contain;

    }
    .header .navbar .navbar-nav> li:nth-child(2)> a:before{
        background: url(../images/all/icon_nav2.svg) no-repeat;
        background-size: contain;

    }
    .header .navbar .navbar-nav> li:nth-child(3)> a:before{
        background: url(../images/all/icon_nav3.svg) no-repeat;
        background-size: contain;

    }
    .header .navbar .navbar-nav> li:nth-child(4)> a:before{
        background: url(../images/all/icon_nav4.svg) no-repeat;
        background-size: contain;

    }

        .header .navbar .navbar-nav li a:hover,
        .header .navbar .navbar-nav li.b > a {
            color: var(--main-color);
            background: none;
        }

    .header .navbar .navbar-nav li + li a {
        /*border-left: 1px solid #eee;*/
    }

    .header .navbar .navbar-nav li a .txt-en {
        margin-left: 5px;
        color: #ccc;
        font-weight: normal;
        float: right;
    }

    .header .navbar .navbar-nav li a:focus {
        background-color: transparent;
    }

    .header .navbar .navbar-nav li a:hover .txt-en,
    body.about .header .navbar .navbar-nav li.b1 a .txt-en,
    body.product .header .navbar .navbar-nav li.b2 a .txt-en,
    body.news .header .navbar .navbar-nav li.b3 a .txt-en,
    body.contact .header .navbar .navbar-nav li.b4 a .txt-ens {
        color: #999;
    }

.header .navbar .sub-nav {
    /*position: absolute;
    right: 15px;
    top: 20px;*/
    display: none;
}

    .header .navbar .sub-nav li {
        padding: 0;
    }

        .header .navbar .sub-nav li a {
            background-color: var(--main-color);
            background-position: center center;
            background-repeat: no-repeat;
            width: 32px;
            height: 32px;
            text-indent: -9999px;
        }


        .header .navbar .sub-nav li.icon_f a {
            background-image: url(../images/all/icon_f.png);
        }

        .header .navbar .sub-nav li.icon_i a {
            background-image: url(../images/all/icon_i.png);
        }

        .header .navbar .sub-nav li.icon_t a {
            background-image: url(../images/all/icon_t.png);
        }

        .header .navbar .sub-nav li.icon_y a {
            background-image: url(../images/all/icon_y.png);
        }

        .header .navbar .sub-nav li.icon_p a {
            background-image: url(../images/all/icon_p.png);
        }

        .header .navbar .sub-nav li.icon_l a {
            background-image: url(../images/all/icon_l.png);
        }

        .header .navbar .sub-nav li a:hover {
            position: relative;
            top: 2px;
        }

        .header .navbar .sub-nav li.b1 {
            display: none;
        }

        .header .navbar .sub-nav li.b2 a {
            background-position: 0 0;
        }


.header .navbar .btn-default {
    background: var(--main-color);
    color: #fff;
    border: none;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 7px;
}

.header .navbar .lang {
    margin-right: 10px;
    /*position: absolute;
    right: 54px;
    top: 20px;*/
}

    .header .navbar .lang .dropdown-menu {
        background: var(--main-color);
        color: #fff;
        border: none;
        min-width: 110px;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
        border-radius: 0;
    }

        .header .navbar .lang .dropdown-menu a {
            color: #fff;
        }

            .header .navbar .lang .dropdown-menu a:hover {
                background: none;
                color: #FCE617;
            }







.header .navbar > .container {
    width: 100%;
}

.header .g-menu {
    align-items: center;
}

    .header .g-menu li {
        position: relative;
    }

.header .g-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav_btn_group > ul {
    display: flex;
    align-items: center;
    margin: 0;
}

.nav_btn_group li .icon {
    font-size: 20px;
}

.nav_btn_group li.member .icon {
    font-size: 25px;
}




.header .search-list {
    margin-bottom: 0;
    display: flex;
}

    .header .search-list .g-search, .side .g-search {
        background: #fff;
        border-radius: 5px;
        display: flex;
        padding: 5px;
        height: 100%;
        align-items: center;
    }

.side .g-search {
    background: #eee;
    margin-bottom: 20px;
}

    .header .search-list .g-search a, .side .g-search a {
        background: var(--main-color);
        color: #fff;
        border-radius: 5px;
        width: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        height: 32px;
    }

    .header .search-list .g-search input, .side .g-search input {
        background: none;
        border: none;
        box-shadow: none;
        height: auto;
        min-width: 250px;
        padding: 5px;
    }

    .side .g-search input {
        min-width: 0;
    }

.header .search-list a {
    border-radius: 5px;
    background: var(--main-color);
    color: #fff;
    padding: 10px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*----------------------- Banner -----------------------*/
/* .home .banner .slick-track, .home .banner .slick-list {
    height: 100%;
} */
.banner .container-fluid {
    padding: 0;
}

.banner .bannerImgBox {
    width: 100%;
}

.home .banner .bannerImgBox {
    width: calc(100% - 230px);
    visibility: hidden;
    position: relative;
    /* height: 810px; */
}

.banner .bannerImgBox.slick-initialized,
.banner .bannerImgBox.oneMode {
    visibility: visible;
}

html.no-js .banner .bxslider,
html.no-js .banner .bxslider img {
    display: none;
}

html.js .home .banner .bxslider {
    display: flex;
}


.banner {
    position: relative;
}



    .banner .loadingbar {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }

body.VIDEOLOADED .banner .loadingbar {
    display: none;
}

.banner .container {
    padding: 0;
}

.banner .video_banner {
    width: 100%;
}

.banner .bxslider .bannerImgBox:not(.banner_mob_bg) .item {
    width: 100%;
    background: none !important;
}

.banner .bxslider .bannerImgBox.banner_mob_bg .item {
    height: 250px;
    background-repeat: no-repeat;
    background-position: center center;
}

body.home .banner .bxslider .bannerImgBox.banner_mob_bg .item {
    /* height: 500px; */
}

body.home .banner .bxslider .bannerImgBox .item, body.home .banner .bxslider .bannerImgBox .item a {
    /* height: 100%; */
    display: block;
    position: relative;
}

    body.home .banner .bxslider .bannerImgBox .item a img {
        /* object-fit: cover;
        height: 100%;
        object-position: right;
        width: 100%; */
        border-radius: 0 30px 30px 0;
    }

.banner .video_sec {
    width: 100%;
}

.banner .bxslider .item img {
    width: 100%;
    display: none;
}

.home .banner .editor {
    position: absolute;
    top: 10%;
    left: 5%;
    font-family: 'Noto Sans TC', sans-serif;
    font-size: min(max(3.5vw, 18px), 33px);
    font-weight: bold;
    color: #000;
}

    .home .banner .editor h5 {
        font-size: min(max(3.5vw, 25px), 53px);
        color: var(--main-color);
    }

.banner .bxslider .bannerImgBox:not(.banner_mob_bg) .item img.img_small {
    display: none;
}

.banner .bxslider .bannerImgBox:not(.banner_mob_bg) .item img.img_big {
    display: block;
}

.banner .slick-prev:before, .banner .slick-next:before {
    color: #1eb5be;
}

.banner .bx-wrapper {
    margin-bottom: 0;
}

    .banner .bx-wrapper .bx-viewport {
        left: 0;
        background: none;
        border: none;
        box-shadow: none;
    }

    .banner .bx-wrapper .bx-pager.bx-default-pager {
        bottom: 2px;
        text-align: right;
        padding: 0 15px;
    }

        .banner .bx-wrapper .bx-pager.bx-default-pager a {
            text-align: left;
            background: #404040;
        }

            .banner .bx-wrapper .bx-pager.bx-default-pager a.active {
                background: #1EB5BE;
            }

    .banner .bx-wrapper .bx-controls-direction {
        display: none;
    }

body.full .banner .container {
    margin: 0;
    max-width: 100%;
    width: 100%;
}

body.full .banner .bx-wrapper .bx-controls-direction a.bx-prev {
    left: 0;
}

body.full .banner .bx-wrapper .bx-controls-direction a.bx-next {
    right: 0;
}

.banner .slick-dots li button:before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    width: auto;
    height: auto;
    background: #dadada;
    border-radius: 50%;
    opacity: 1;
    transition: all .5s ease;
}

.banner .slick-dots li {
    width: auto;
    height: auto;
    margin: 5px 0;
}

.banner .slick-dots {
    position: absolute;
    margin: 0;
    top: 0;
    right: -40px;
    bottom: auto;
    display: flex;
    width: auto;
    flex-direction: column;
    z-index: 5;
}

    .banner .slick-dots li button {
        width: 15px;
        height: 15px;
        background: transparent;
        border-radius: 50%;
    }

    .banner .slick-dots li.slick-active button {
    }

        .banner .slick-dots li.slick-active button:before {
            background: var(--third-color);
        }

body:not(.home) .banner .g-slogan {
    display: none;
}

.banner .g-slogan .txt-slogan {
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    letter-spacing: 1px;
    font-size: 22px;
    font-weight: bold;
    opacity: .7;
}

.banner .g-slogan {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 230px;
    padding-right: 85px;
}

.banner .pic-slogan {
    margin: 30px 0 30px -20vw;
}

    .banner .pic-slogan img {
        width: 100%;
    }

.banner .btn-reserve {
    font-family: 'Noto Sans TC', sans-serif;
    font-size: min(max(3.5vw, 30px), 44px);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--main-color);
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

    .banner .btn-reserve:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--third-color);
        z-index: -1;
        transform: scale(0);
        transition: all .5s;
        border-radius: 50%;
    }

    .banner .btn-reserve:hover:before {
        transform: scale(1.1);
    }

.banner .g-slogan .g-div {
    position: relative;
    right: 50%;
    margin-bottom: -80px;
}

.header_ex {
}


/********************* Footer *********************/
.footer {
    background: var(--main-color);
    padding: 50px 0;
    color: #fff;
}


.footer_top ul li {
    padding: 0;
}

    .footer_top ul li:nth-child(2n) {
        display: none;
    }

    .footer_top ul li,
    .footer_top ul li a {
        color: #888;
        padding: 10px;
    }

        .footer_top ul li a:hover {
            color: var(--main-color);
        }

        .footer_top ul li a .txt-en {
            display: none;
        }


.footer .copyright b {
    color: #fff;
    font-weight: normal;
}



.footer .siteinfo ul {
    display: inline-block;
}

    .footer .siteinfo ul > li {
        padding: 0;
    }

        .footer .siteinfo ul > li + li:before {
            content: "/ ";
            padding: 0 5px;
            color: #9c9c9c;
        }


        .footer .siteinfo ul > li label {
            margin: 0 5px 0 0;
            color: #888;
        }

.footer .siteinfo .sitemap-link {
    display: inline-block;
    width: 32px;
    height: 32px;
    text-indent: -9999px;
    vertical-align: text-bottom;
    margin-right: 20px;
}

    .footer .siteinfo .sitemap-link:hover {
        position: relative;
        top: 2px;
    }

.footer .powered,
.footer .powered a {
    color: #fff;
}

.footer .nav li a {
    display: inline-block;
    background: none;
    padding: 0;
}

.footer .siteinfo.nav li a {
    display: flex;
}

.footer a {
    color: #fff;
}

    .footer a:hover {
        color: var(--sixth-color);
    }

.footer .pic-logo {
    margin-right: 20px;
}

    .footer .pic-logo img {
        height: 100%;
        object-fit: fill;
    }

.footer .g-logo .g-txt > * {
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}

.footer .g-logo .g-txt b, .footer .g-logo .g-txt small {
    font-family: 'Noto Serif TC', serif;
    font-weight: bold;
}

.footer .g-logo .g-txt b {
    font-size: 25px;
    display: block;
}

.footer .g-logo .g-txt small {
    font-size: 15px;
    opacity: .8;
}

.footer .social-list a .icon {
    opacity: .5;
    font-size: 25px;
    transition: all .5s;
}

.footer .social-list a:hover .icon {
    opacity: 1;
}

.footer h4.tt {
    color: var(--hover-color);
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

    .footer h4.tt i {
        opacity: .5;
        color: #fff;
        margin-right: 5px;
    }

.footer .add-list .list-item + .list-item {
    margin-top: 30px;
}

.footer .add-list ul li:nth-child(1), .footer .add-list ul li:last-child {
    display: block;
}

.footer .sitemap ul {
}

.footer .g-flex {
    display: flex;
    justify-content: space-between;
}

    .footer .g-flex.a .r-info {
        display: flex;
        align-items: center;
    }

    .footer .g-flex.a {
    }

.footer .company-list {
    border-top: 1px solid rgba(255, 255, 255, 0.30);
    border-bottom: 1px solid rgba(255, 255, 255, 0.30);
    padding: 40px 0;
    margin: 40px 0;
}

    .footer .company-list .list-item h4 {
        font-size: 22px;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .footer .company-list .list-item ul li {
        display: flex;
    }

        .footer .company-list .list-item ul li .icon-font {
            opacity: .3;
            margin-right: 10px;
            text-align: center;
            width: 20px;
        }

.footer .g-footer .sec1 ul.nav > li + li {
    margin-top: 5px;
}

.footer .footer-end {
    text-align: center;
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.31);
    margin-top: 50px;
}

.footer address {
    margin-bottom: 0;
}

.footer .nav li a.btn-credit {
    display: block;
    border: 1px solid #fff;
    padding: 10px 20px;
    text-align: center;
    border-radius: 5px;
}

    .footer .nav li a.btn-credit i {
        margin-right: 5px;
    }

.footer .sitemap li {
    padding: 0 3px;
}

    .footer .sitemap li a {
        font-size: 18px;
        font-weight: bold;
    }

.footer ul.social-list {
    display: flex;
    align-items: center;
    margin-right: -5px;
    margin-left: 20px;
}

    .footer ul.social-list li {
        margin-right: 5px;
    }

        .footer ul.social-list li:hover a {
            color: #fff;
        }

        .footer ul.social-list li.fb:hover a {
            background: #1974ec;
        }

        .footer ul.social-list li.yt:hover a {
            background: #f00;
        }

        .footer ul.social-list li.line:hover a {
            background: #06c052;
        }

        .footer ul.social-list li.ig:hover a {
            background: #f09433;
            background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
            background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
        }

.footer .nav li {
    margin-bottom: 10px;
}

.footer .social-list a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    color: var(--fifth-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
/********************* cookie *********************/
body.cookie_agree .footer_content {
    padding-bottom: 80px;
}

.cookie {
    font-size: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    background: rgb(54, 185, 192);
    z-index: 100;
    border-top: 1px solid rgb(215, 215, 215);
    color: #fff;
    text-align: left;
}

    .cookie .txt {
    }

        .cookie .txt a {
            text-decoration: underline;
            color: #3c3c3c;
            font-size: 14px;
        }

    .cookie .agree-btn {
        padding: 5px 15px;
        display: inline-block;
        background: #fff;
        color: #333;
        margin-top: 3px;
        transition: all .3s ease;
    }

        .cookie .agree-btn:hover {
            background: #ccc;
        }

/********************* Main *********************/
.main {
    z-index: 20;
}

.side .h3 {
    color: #23989f;
    font-size: 15px;
    text-align: center;
    line-height: 28px;
}

    .side .h3 .txt-en,
    .side .h3 .txt-tw {
        display: block;
    }



/*.side .nav > li {
    margin: 15px;
}

    .side .nav > li a {
        display: block;
        padding: 8px 20px;
        color: #333;
        -webkit-transition: 0.3s all ease;
        -moz-transition: 0.3s all ease;
        -o-transition: 0.3s all ease;
        transition: 0.3s all ease;
        border-radius: 30px;
        background: var(--forth-color);
        box-shadow: 0 0 0 5px rgba(var(--forth-rgbcolor), 0.5);
        position: relative;
        z-index: 5;
    }

        .side .nav > li a:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 30px;
            background: var(--main-color);
            box-shadow: 0 0 0 5px rgba(var(--main-rgbcolor), 0.5);
            z-index: -1;
            transform: scale(0);
            transition: all .5s;
        }

        .side .nav > li a:hover:before {
            transform: scale(1);
        }

.side.col-md-12 .nav > li a:hover,
.side.col-md-12 .nav > li a:focus,
.side.col-md-12 .nav > li.active a {
    background: var(--main-color);
    color: #fff;
}*/

.side .nav > li > ul {
    padding-left: 20px;
    list-style-type: none;
}

    .side .nav > li > ul > li {
    }

        .side .nav > li > ul > li > a,
        .side .nav > li > ul > li > a:hover {
            background: url(../images/all/list_icon2.png) no-repeat 0 6px;
            padding: 6px 10px 6px 20px;
        }

        .side .nav > li > ul > li > ul {
            margin-left: 18px;
            list-style-type: none;
        }

            .side .nav > li > ul > li > ul > li {
            }

                .side .nav > li > ul > li > ul > li > a,
                .side .nav > li > ul > li > ul > li > a:hover {
                    background: url(../images/all/list_icon3.png) no-repeat 0 6px;
                    padding: 6px 10px 6px 20px;
                }






/*----------------------- Content -----------------------*/
.main_content {
    min-height: 300px;
    padding: 30px 0;
}

body:not(.home) .main_content {
    padding-bottom: 50px;
    padding-top: 0;
}

body.home .main_content {
    min-height: 0;
    padding: 0;
}

.breadcrumb {
    background: none;
    margin: 0;
    border-bottom: 1px solid #ccc;
    padding: 10px 15px;
    border-radius: 0;
}

    .breadcrumb > li + li:before {
        content: "＞";
    }

.content .breadcrumb .txt-en {
    display: none;
}

.content > .h2,
body.about .content > .h1,
body.order .content .h2.t04 {
    color: var(--main-color);
    font-size: 30px;
    border-bottom: 1px solid #ABCFDB;
    padding: 5px 10px 15px;
    margin-bottom: 20px;
}

    .content > .h2 .txt-tw {
        color: #979797;
        font-size: 18px;
        margin-left: 10px;
    }


.content .content-banner {
    margin-bottom: 20px;
}


.content .btn-normal {
    background: none;
    color: #23989f;
    border: 1px solid #ACE7EB;
}

    .content .btn-normal:hover {
        color: #888;
        border-color: #aaa;
    }

.content .list-box .txt-list {
    margin-bottom: 60px;
}

    .content .list-box .txt-list li {
        padding-left: 30px;
        border-bottom: 1px dotted #ccc;
        background: url(../images/all/icon_list.png) no-repeat 8px 12px;
    }

        .content .list-box .txt-list li:nth-child(2n+1) {
            background-color: rgba(240,240,240,0.3);
        }

        .content .list-box .txt-list li .h4 {
            font-size: 15px;
            margin: 0;
        }

        .content .list-box .txt-list li a {
            position: relative;
            display: block;
            line-height: 28px;
            padding: 10px 110px 10px 0;
        }


            .content .list-box .txt-list li a:hover,
            .content .list-box .txt-list li a:focus {
                color: var(--main-color);
            }

        .content .list-box .txt-list li span {
            position: absolute;
            right: 0;
            top: 10px;
            line-height: 20px;
            padding: 3px 20px;
            display: inline-block;
            color: #aaa;
            font-size: 13px;
        }

            .content .list-box .txt-list li span.news-title {
                float: left;
                color: #848275;
                width: 78%;
            }

        .content .list-box .txt-list li.list-header {
            background: none;
            padding-left: 40px;
            padding-right: 15px;
            border-bottom: 1px solid #ACE7EB;
        }

            .content .list-box .txt-list li.list-header a,
            .content .list-box .txt-list li.list-header a span {
                color: var(--main-color);
                font-size: 18px;
            }

                .content .list-box .txt-list li.list-header a span {
                    padding-right: 24px;
                }

.content .works-box .pic-carousel li a {
    border: 1px solid #ACE7EB;
    padding: 2px;
    display: block;
}

    .content .works-box .pic-carousel li a:hover {
        border-color: var(--main-color);
    }

.content .works-box .bx-wrapper .bx-controls-direction a {
    width: 24px;
    height: 40px;
    background: url(../images/home/arrow.png) no-repeat;
}

    .content .works-box .bx-wrapper .bx-controls-direction a.bx-prev {
        left: -24px;
    }

    .content .works-box .bx-wrapper .bx-controls-direction a.bx-next {
        right: -24px;
        background-position: 0 -40px;
    }

.content .works-box .slick .list_item {
    padding: 0 5px;
}

    .content .works-box .slick .list_item .pic {
        border: 1px solid #ACE7EB;
        padding: 2px;
        display: block;
    }

    .content .works-box .slick .list_item:hover .pic {
        border-color: var(--main-color);
    }

    .content .works-box .slick .list_item .info {
        text-align: center;
        display: none;
    }

        .content .works-box .slick .list_item .info p {
            margin: 0;
        }

.content .works-box .slick .slick-arrow {
    width: 24px;
    height: 40px;
    background: url(../images/home/arrow.png) no-repeat;
    border: none;
    outline: none;
    text-indent: -9999px;
    position: absolute;
    z-index: 1;
    top: calc(50% - 40px/2);
}

.content .works-box .slick .slick-prev {
    background-position: 0 0;
    left: -24px;
}

.content .works-box .slick .slick-next {
    background-position: 0 -40px;
    right: -24px;
}

.content .works-box .slick .slick-dots {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin-top: 20px;
}

    .content .works-box .slick .slick-dots li {
        display: inline-block;
    }

    .content .works-box .slick .slick-dots button {
        width: 10px;
        height: 10px;
        background: #c7c7c7;
        border-radius: 50%;
        border: none;
        outline: none;
        text-indent: -9999px;
        margin: 0 3px;
    }

    .content .works-box .slick .slick-dots .slick-active button {
        background: #37bac0;
    }

.content .contact-box ul li {
    color: #717171;
    padding-left: 20px;
    font-size: 12px;
    line-height: 1.8;
}

    .content .contact-box ul li.tel {
        font-size: 22px;
        color: #333;
        font-weight: bold;
    }

.btn-box {
    margin: 50px 0 0;
}

    .btn-box.btn-flex {
        display: flex !important;
        margin-left: -5px;
        margin-right: -5px;
    }

        .btn-box.btn-flex a {
            flex-grow: 1;
            margin: 0 5px;
        }

    .btn-box a.gray {
        background: #888;
        color: #fff;
    }



    .btn-box.show a {
        display: table;
        margin-left: auto;
        margin-right: auto;
        min-width: 200px;
    }

    .btn-box:after {
        content: " ";
        visibility: hidden;
        display: block;
        height: 0;
        clear: both;
    }

/*.content .btn-box .pager {
    text-align: left;
    display: inline-block;
    margin: 0 0 20px;
    float: left;
}

.content .btn-box .pager li {
    margin: 0 5px;
}

.content .btn-box .pager li > a {
    background: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #DFDFDF;
    color: #888;
    padding: 5px 20px;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
}

.content .btn-box .pager li > a:hover {
    background-color: var(--main-color);
    color: #fff;
}

.content .btn-box .pager li > a .icon {
    display: none;
}

body.product.p02 .content .btn-box {
    border: none;
}

body.news.show .content .btn-box,
body.faq.ask .content .btn-box,
body.product.show .content .btn-box,
body.member .content .btn-box,
body.album.show .content .btn-box {
    text-align: center;
}

body.news.show .content .btn-box .pager,
body.faq.ask .content .btn-box .pager,
body.product.show .content .btn-box .pager,
body.member .content .btn-box .pager,
body.album.show .content .btn-box .pager {
    float: none;
}

.content .btn-box a .icon {
    background: url(../images/all/pager_icon.png) no-repeat;
    display: inline-block;
    vertical-align: text-bottom;
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

.content .btn-box a .icon-first {
    background-position: -6px -1px;
}

.content .btn-box a .icon-prev {
    background-position: -6px -29px;
}

.content .btn-box a .icon-next {
    background-position: -6px -58px;
}

.content .btn-box a .icon-last {
    background-position: -6px -87px;
}

.content .btn-box a .icon-back {
    background-position: -6px -112px;
}

.content .btn-box .page-info {
    float: right;
    margin: 0 5px;
    text-align: center;
    color: #888;
}

.content .btn-box .page-info select {
    border: 1px solid #DFDFDF;
    min-width: 60px;
    margin-right: 10px;
}


.content .btn-box a span {
    margin-right: 5px;
}*/

.content .table.table-stack {
    margin-bottom: 0;
}

    .content .table.table-stack > thead > tr > th {
        border-bottom: 1px solid #ACE7EB;
        color: #333;
        text-align: center;
    }

    .content .table.table-stack > tbody > tr > td {
        vertical-align: middle;
        border-top: 1px dotted #ccc;
        text-align: center;
    }

        .content .table.table-stack > tbody > tr > td a {
            color: var(--main-color);
        }

            .content .table.table-stack > tbody > tr > td a:hover {
                text-decoration: underline;
            }

        .content .table.table-stack > tbody > tr > td.pic img {
            max-width: 100px;
        }

            .content .table.table-stack > tbody > tr > td.pic img:hover {
                opacity: 0.7;
            }

        .content .table.table-stack > tbody > tr > td.qty .input-group .form-control {
            padding: 6px;
            text-align: center;
            border-color: #DFDFDF;
        }

        .content .table.table-stack > tbody > tr > td .input-group {
            width: 100px;
            margin: 0 auto;
        }

        .content .table.table-stack > tbody > tr > td .btn {
            margin: 0;
            color: #888;
        }

            .content .table.table-stack > tbody > tr > td .btn:hover,
            .content .table.table-stack > tbody > tr > td .btn:focus,
            .content .table.table-stack > tbody > tr > td .btn:active {
                color: #fff;
                text-decoration: none;
            }

        .content .table.table-stack > tbody > tr > td .tn {
            display: none;
        }

    .content .table.table-stack.no-border th,
    .content .table.table-stack.no-border td {
        border: none;
    }

    .content .table.table-stack.no-border tr {
        border-bottom: 1px dotted #ccc;
    }

    .content .table.table-stack.no-border th {
        text-align: right;
        width: 120px;
    }

    .content .table.table-stack.no-border td {
        text-align: left;
        vertical-align: top;
    }

.content .form-horizontal .control-label {
    font-size: 14px;
}

.form-horizontal .row .form-inline {
    padding-bottom: 15px;
}

    .form-horizontal .row .form-inline .zip-code {
        width: 20%;
        min-width: 72px;
    }


/*----------------------------------------- 首頁 home --------------------------------------*/
.home .main_content > .container {
    width: 100%;
    padding: 0;
}

.home-sb a img {
    width: 100%;
}

.sec-home {
    padding-top: 70px;
    padding-bottom: 70px;
}

    .sec-home:not(.home-about) .h2:before {
        content: "";
        display: block;
        margin: 0 auto 10px;
        background: url(../images/all/icon_T.png) no-repeat;
        width: 77px;
        height: 55px;
    }

    .sec-home .h2 {
        font-size: 35px;
        color: var(--forth-color);
        font-weight: bold;
        margin-top: 0;
        margin-bottom: 30px;
    }

        .sec-home .h2 .txt-en {
            display: block;
            font-size: 20px;
            color: #888;
        }

        .sec-home .h2 .txt-tw {
            display: block;
        }

.slick-styleB .slick-arrow {
    z-index: 10;
    width: auto;
    height: auto;
}

.slick-styleB .slick-next {
    right: 10px;
}

.slick-styleB .slick-prev {
    left: 10px;
}

.slick-styleB .slick-arrow:before {
    content: "arrow_forward_ios";
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 40px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

.slick-styleB .slick-arrow.slick-prev:before {
    transform: scaleX(-1);
}

.slick-styleB .slick-dots {
    bottom: 30px;
}

    .slick-styleB .slick-dots li button {
        width: 12px;
        height: 12px;
        background: none;
        border-radius: 50%;
        border: 1px solid #fff;
    }

    .slick-styleB .slick-dots li.slick-active button {
        background: #fff;
    }

    .slick-styleB .slick-dots li button:before {
        display: none;
    }

div[class*="slick-style"] .slick-track {
    display: flex;
    margin: auto;
}

.sec-home.home-about {
    padding-top: 150px;
    position: relative;
    overflow: hidden;
}

.home-about .g-about {
    position: relative;
    z-index: 5;
}

.home-about:before {
    content: "";
    background: url(../images/all/img_aboutH3.png) no-repeat;
    background-size: 100% auto;
    width: 40%;
    position: absolute;
    top: -150px;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.home-about .g-about .l-info {
    width: 55%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .home-about .g-about .l-info > * {
        padding-left: 85px;
    }

    .home-about .g-about .l-info .idea-list {
        position: relative;
        margin-top: 50px;
        display: flex;
        flex-wrap: wrap;
        padding-top: 40px;
        padding-bottom: 40px;
    }

        .home-about .g-about .l-info .idea-list .info {
            padding: 10px 0;
        }

        .home-about .g-about .l-info .idea-list .list-item {
            width: calc(100% / 3);
            display: flex;
        }

            .home-about .g-about .l-info .idea-list .list-item .icon {
                width: 80px;
                flex-shrink: 0;
            }

            .home-about .g-about .l-info .idea-list .list-item .no {
                color: #b7ad6e;
                font-size: 20px;
                font-weight: bold;
                margin-bottom: 5px;
                line-height: 1;
            }

            .home-about .g-about .l-info .idea-list .list-item .tt {
                color: var(--main-color);
                font-size: 22px;
                font-weight: bold;
            }

            .home-about .g-about .l-info .idea-list .list-item .icon img {
                margin-right: 15px;
                width: 100%;
            }

        .home-about .g-about .l-info .idea-list:before {
            content: "";
            position: absolute;
            left: 0;
            right: -20%;
            bottom: 0;
            top: 0;
            background: var(--sixth-color);
            border-radius: 0 30px 30px 0;
            z-index: -1;
        }

.home-about .g-about .r-info {
    position: relative;
    width: 45%;
    display: flex;
    /* min-height: 680px; */
    padding-top: 100px;
}

    .home-about .g-about .r-info .bg {
        position: absolute;
        top: 0;
        left: 15%;
        right: 0;
        bottom: 50px;
        overflow: hidden;
        border-radius: 30px 0 0 30px;
    }

        .home-about .g-about .r-info .bg img {
            object-fit: cover;
            height: 100%;
            width: 100%;
            filter: blur(2px);
            object-position: bottom;
        }

    .home-about .g-about .r-info .pic {
        position: relative;
    }

        .home-about .g-about .r-info .pic img {
            object-fit: contain;
            height: 100%;
            width: 100%;
            object-position: bottom;
        }

.home-about .btn-more {
    margin: 40px 0 40px auto;
}

.home-about .g-service {
    position: relative;
}

    .home-about .g-service:before {
        content: "";
        position: absolute;
        top: -50px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--third-color);
        z-index: -1;
    }

    .home-about .g-service:before {
    }

    .home-about .g-service .l-info {
        position: relative;
    }

        .home-about .g-service .l-info:before {
            content: "";
            position: absolute;
            top: -50px;
            left: 0;
            right: calc(10% + 85px);
            bottom: 0;
            background: url(../images/all/img_serviceH.jpg) no-repeat;
            background-size: cover;
            overflow: hidden;
            z-index: -1;
            transform: translateX(-100%);
            transition: all 1s;
        }

    .home-about .g-service.aos-animate .l-info:before {
        transform: translateX(0);
    }

    .home-about .g-service > * {
        width: 50%;
        padding: 70px 30px 70px 85px;
    }

    .home-about .g-service .service-list a {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        margin: 0 15px;
        height: 420px;
        width: calc(100% / 3);
    }

    .home-about .g-service .service-list {
        align-items: center;
    }

        .home-about .g-service .service-list a:nth-child(2) {
            margin-top: 100px;
        }

        .home-about .g-service .service-list .info:before {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            top: -50%;
            z-index: -1;
            background: rgb(0,0,0);
            background: -moz-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
            background: -webkit-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
            background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
            opacity: .6;
        }

        .home-about .g-service .service-list .pic {
            overflow: hidden;
            height: 100%;
        }

            .home-about .g-service .service-list .pic img {
                object-fit: cover;
                height: 100%;
                width: 100%;
            }

        .home-about .g-service .service-list .info {
            position: absolute;
            bottom: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            left: 0;
            right: 0;
            padding: 20px;
            font-size: 28px;
            color: #fff;
            font-weight: bold;
            z-index: 5;
        }

            .home-about .g-service .service-list .info .no {
                font-size: 68px;
                font-weight: 500;
                opacity: .6;
                line-height: 1;
            }

    .home-about .g-service .r-info {
        position: relative;
        display: flex;
        align-items: center;
    }

    .home-about .g-service .pic-decorate {
        position: absolute;
        z-index: -1;
        opacity: .3;
    }

        .home-about .g-service .pic-decorate.a {
            right: 10%;
            top: 10%;
        }

        .home-about .g-service .pic-decorate.b {
            bottom: 0;
            left: 0;
        }

    .home-about .g-service .r-info .detail-item {
        align-items: center;
        margin: 10px 0;
    }

        .home-about .g-service .r-info .detail-item a {
            display: flex;
            align-items: center;
        }

    .home-about .g-service .r-info .icon {
        background: #fff;
        border-radius: 50%;
        padding: 30px;
        max-width: 120px;
        margin-right: 20px;
        flex-shrink: 0;
    }

    .home-about .g-service .r-info .tt {
        font-size: 22px;
        font-weight: bold;
        color: var(--forth-color);
        margin-bottom: 10px;
    }

        .home-about .g-service .r-info .tt a {
            display: flex;
            align-items: center;
        }

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.home-pro {
    position: relative;
}

    .home-pro:before {
        content: "";
        background: url(../images/all/bg_main.png) no-repeat;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-size: 100% auto;
        z-index: -1;
    }

    .home-pro .list-item .desc {
        display: none;
    }

.sec-group {
    position: relative;
}

    .sec-group:before {
        content: "";
        background: url(../images/all/bg_main2.png) no-repeat center center;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-size: 100% auto;
        z-index: -1;
    }

.home-case .news-list .date {
    display: none;
}

.home-case {
    position: relative;
}

    .home-case .bg {
        position: relative;
        margin-top: -30px;
        z-index: -1;
        height: 150px;
    }

        .home-case .bg img {
            object-fit: fill;
            height: 100%;
            width: 100%;
        }

.sec-home .wid {
    margin: 0;
}

.home-news {
    background: var(--sixth-color);
    position: relative;
}

.home-case .g-bg {
    position: relative;
}

.home-case .bg-man {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    pointer-events: none;
}

    .home-case .bg-man .pic-man {
        max-width: 100px;
    }

.home-news .news-list .list-item {
    margin: 20px;
    background: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 5px 8px 0px;
    /* display: flex; */
    padding: 20px;
    /* border-radius: 100px; */
    position: relative;
    align-items: center;
}

    .home-news .news-list .list-item .pic {
        
        position: relative;
        /* width: 150px;
        border-radius: 50%;
        margin-right: 30px; */
    }

    .home-news .news-list .list-item .info {
        /* width: 70%; */
            padding: 15px 0;
    }

.home-news .date {
    /* width: 77px; */
    /* color: #fff; */
    display: inline-block;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border-radius: 5px;
    /* position: absolute; */
    /* top: -10px; */
    /* left: -10px; */
    /* font-size: 14px; */
    /* padding: 3px 10px; */
    /* margin-bottom: 5px; */
    font-size: 14px;
    color: var(--main-color);
}

    .home-news .date b {
        font-size: 18px;
    }

.home-news .news-list .list-item .tt {
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
}

.home-news .news-list .list-item .desc {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
}




body .home .content .wid-home-news {
    margin-left: 0;
}

    body.home .content .wid-home-news .txt-list {
        margin-bottom: 10px;
        margin-top: -10px;
    }

        body.home .content .wid-home-news .txt-list li {
            padding-left: 14px;
            background-position: 0 4px;
            background-color: transparent;
        }

            body.home .content .wid-home-news .txt-list li:last-child {
                border-bottom: 2px solid #ACE7EB;
            }

            body.home .content .wid-home-news .txt-list li a {
                padding: 2px 80px 2px 0;
                font-size: 13px;
            }

                body.home .content .wid-home-news .txt-list li a span {
                    padding: 3px 0;
                    font-size: 12px;
                    top: 3px;
                }

body.home .wid-home-product .slick-slider {
    margin-top: 15px;
}

/*----------------------------------------- 相簿 album --------------------------------------*/
body.album .content > .h1 {
    text-align: center;
    color: #23989f;
    border: 1px solid #ACE7EB;
    padding: 10px;
}

.content .album-list a {
    margin: 20px 0;
    display: block;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .content .album-list a:hover {
        opacity: 0.7;
    }

    .content .album-list a img {
        width: 100%;
    }

    .content .album-list a .h4 {
        text-align: center;
        color: #666;
        font-size: 15px;
    }

    .content .album-list a .pic {
        border: 1px solid #e5e5e5;
        padding: 2px;
    }

.pic-gallery {
    margin-bottom: 40px;
    margin-top: 30px;
}

    .pic-gallery .pic-stage {
        margin: 0 auto 20px;
        width: 87%;
    }

        .pic-gallery .pic-stage ul li a {
            display: block;
        }

    .pic-gallery .pic-pager {
        position: relative;
        margin: 0 40px;
    }

        .pic-gallery .pic-pager .jcarousel div a {
            opacity: 0.5;
            float: left;
            padding: 0 5px;
        }

            .pic-gallery .pic-pager .jcarousel div a.active {
                opacity: 1;
            }

    .pic-gallery .pic-stage .bx-wrapper .bx-pager {
        display: none;
    }

    .pic-gallery .pic-stage .bx-wrapper .bx-controls-direction a,
    .pic-gallery .pic-pager .jcarousel-control,
    .pic-gallery .slick-prev,
    .pic-gallery .slick-next {
        background: url(../images/all/gallery_btn.png) no-repeat;
        display: block;
        width: 40px;
        height: 40px;
        margin-top: -10px;
        position: absolute;
        top: 50%;
    }

    .pic-gallery .pic-pager .jcarousel div {
        /*overflow: auto;
    width: 20000em;
    position: relative;
    list-style-type: none;*/
    }

        .pic-gallery .pic-pager .jcarousel div a img,
        .pic-gallery .pic-stage ul li a img {
            width: 100%;
        }

    .pic-gallery .pic-stage .bx-wrapper .bx-controls-direction a.bx-prev,
    .pic-gallery .slick-prev {
        background-position: 0 0;
        left: -45px;
    }

    .pic-gallery .pic-stage .bx-wrapper .bx-controls-direction a.bx-next,
    .pic-gallery .slick-next {
        background-position: -38px 0;
        right: -45px;
    }

    .pic-gallery .pic-pager .jcarousel-control-prev,
    .pic-gallery .pic-pager .slick-prev {
        background-position: -80px 0;
        left: -40px;
    }

    .pic-gallery .pic-pager .jcarousel-control-next,
    .pic-gallery .pic-pager .slick-next {
        background-position: -120px 0;
        right: -40px;
    }

    .pic-gallery .slick-prev:before,
    .pic-gallery .slick-next:before {
        display: none;
    }

    .pic-gallery .pic-pager .jcarousel div a.slick-current {
        opacity: 1;
    }


/*----------------------------------------- 活動訊息 news --------------------------------------*/

body:not(.home) .news-list .tt {
    font-size: 25px !important;
    font-weight: bold;
    margin: 15px 0 20px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
}

body:not(.home) .news-list .desc {
    font-size: 18px;
    color: #888;
}

body:not(.home) .news-list .list-item {
    padding: 30px 0;
    border-top: 1px solid #ccc;
}

    body:not(.home) .news-list .list-item .date {
        color: var(--main-color);
        display: inline-block;
        padding: 5px 15px;
        border-radius: 30px;
        font-size: 14px;
        border: 1px solid var(--main-color);
    }

    body:not(.home) .news-list .list-item:nth-child(1) {
        padding: 0 0 20px;
        border-top: none;
    }

body:not(.home) .news-list .pic {
    width: 30%;
}

    body:not(.home) .news-list .pic img {
        width: 100%;
        /*aspect-ratio: 4/3;*/
    }

body:not(.home) .news-list .info {
    width: 70%;
    padding: 0 30px;
    display: flex;
    margin-top: 0;
    justify-content: space-between;
    flex-direction: column;
}

    body:not(.home) .news-list .info .btn-more {
        margin: 20px 0 0 auto;
        min-width: 0;
        padding: 10px 20px;
    }

.news.show .h1 .g-date, .case.show .h1 .g-kind {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

    .news.show .h1 .g-date:after, .case.show .h1 .g-kind:after {
        content: "";
        flex-grow: 1;
        height: 1px;
        background: #ccc;
    }

.news.show .h1 .date, .case.show .h1 .kind {
    background: var(--main-color);
    color: #fff;
    display: block;
    padding: 5px 20px;
    border-radius: 30px;
    font-size: 14px;
    margin-right: 15px;
    font-weight: normal;
}

.news.show .h1 {
    margin-bottom: 40px;
    margin-top: 0;
    font-size: 25px;
    font-weight: bold;
    text-align: left;
}

.eZShareBar .item {
    border-radius: 5px;
}
/*----------------------------------------- 作品展示 product --------------------------------------*/


.content .list-mode {
    text-align: center;
    color: #848275;
}

    .content .list-mode label {
        display: none;
    }

    .content .list-mode .btn-group {
        display: inline-block;
    }

        .content .list-mode .btn-group .btn-mode {
            color: #ccc;
            background: none;
            border: none;
            padding: 0;
            -moz-border-radius: 0;
            -webkit-border-radius: 0;
            border-radius: 0;
            -moz-box-shadow: none;
            -webkit-box-shadow: none;
            box-shadow: none;
            font-size: 22px;
        }

            .content .list-mode .btn-group .btn-mode + .btn-mode {
                margin-left: 5px;
            }

            .content .list-mode .btn-group .btn-mode.active {
                color: var(--main-color);
            }

            .content .list-mode .btn-group .btn-mode:hover {
                color: var(--main-color);
            }

            .content .list-mode .btn-group .btn-mode .mode-txt {
                display: none;
            }

body.product .content .product-list .item {
    border: 1px solid #dcdcdc;
    margin: 10px 0;
    position: relative;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    position: relative;
    background-color: #F3F3F3;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
}

body.product.p02 .content .product-list .item {
    margin-bottom: 60px;
}

body.product .content .product-list .item:hover {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border-color: #37bac0;
}

body.product .content .product-list.mode1 .item.i1 > a ul {
    height: 20px;
}

body.product .content .product-list.mode1 .item.i2 > a ul {
    height: 40px;
}

body.product .content .product-list.mode1 .item.i3 > a ul {
    height: 60px;
}

body.product .content .product-list.mode1 .item.i4 > a ul {
    height: 80px;
}

body.product .content .product-list .item > a {
    -moz-border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}

body.product .content .product-list a {
    display: block;
}

    body.product .content .product-list a .pic {
        -moz-border-radius: 5px 5px 0 0;
        -webkit-border-radius: 5px 5px 0 0;
        border-radius: 5px 5px 0 0;
        overflow: hidden;
        background: #fff;
        padding: 10px;
    }

        body.product .content .product-list a .pic img {
            -moz-border-radius: 5px 5px 0 0;
            -webkit-border-radius: 5px 5px 0 0;
            border-radius: 5px 5px 0 0;
            width: 100%;
            -webkit-transition: 0.3s all ease;
            -moz-transition: 0.3s all ease;
            -o-transition: 0.3s all ease;
            transition: 0.3s all ease;
        }

    body.product .content .product-list a:hover .pic img {
        opacity: 0.7;
    }

    body.product .content .product-list a .info {
        padding-top: 5px;
        padding-bottom: 5px;
        text-align: center;
    }

    body.product .content .product-list a .h4 {
        font-size: 15px;
        text-align: center;
    }

body.product .content .product-list ul {
    color: #848484;
    font-size: 13px;
    list-style-type: none;
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 10px;
}

body.product .content .quick-buy .form-control {
    padding: 5px;
    vertical-align: top;
    display: inline-block;
    width: auto;
}

body.product .content .quick-buy .btn {
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    width: 74px;
    height: 74px;
    background: #ec5f5f url(../images/all/icon_cart.png) no-repeat center center;
    color: #fff;
    text-indent: -9999px;
    position: absolute;
    bottom: -38px;
    right: 50%;
    margin-right: -37px;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
}

    body.product .content .quick-buy .btn:hover {
        background-color: #51ced5;
    }

body.product .content .product-list.mode1 .quick-buy {
    padding: 10px 10px 50px;
    text-align: center;
}

    body.product .content .product-list.mode1 .quick-buy ul,
    body.product .content .product-list.mode1 .quick-buy ul li {
        display: inline-block;
        vertical-align: top;
    }

    body.product .content .product-list.mode1 .quick-buy .form-control.qty {
        width: 30%;
        vertical-align: middle;
    }

body.product.p02 .content .product-list.mode1 .item .info p {
    display: none;
}

body.product .content .product-list.mode2 > div {
    float: none;
    width: 100%;
    clear: both;
}

body.product .content .product-list.mode2 .item {
    position: relative;
    margin-bottom: 20px;
}

    body.product .content .product-list.mode2 .item:after {
        content: " ";
        visibility: hidden;
        display: block;
        height: 0;
        clear: both;
    }

    body.product .content .product-list.mode2 .item .pic {
        width: 36%;
        display: inline-block;
        vertical-align: top;
        margin-right: 5px;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        border-radius: 5px;
        padding: 0;
    }

    body.product .content .product-list.mode2 .item > a {
        padding: 10px;
        width: 70%;
        float: left;
    }

    body.product .content .product-list.mode2 .item .info {
        display: inline-block;
        vertical-align: top;
        width: 60%;
        text-align: left;
        padding-left: 10px;
    }

        body.product .content .product-list.mode2 .item .info .h4 {
            margin-bottom: 10px;
            text-align: left;
        }

        body.product .content .product-list.mode2 .item .info ul {
            text-align: left;
        }

            body.product .content .product-list.mode2 .item .info ul li {
            }

        body.product .content .product-list.mode2 .item .info p {
            margin: 5px 0 0;
            clear: both;
            color: #888;
            font-size: 14px;
            line-height: 1.4;
        }

    body.product .content .product-list.mode2 .item .quick-buy {
        width: 16%;
        float: left;
        padding: 20px 0 15px;
    }

        body.product .content .product-list.mode2 .item .quick-buy .form-control {
            width: 100%;
            display: inline-block;
            margin-bottom: 5px;
        }

        body.product .content .product-list.mode2 .item .quick-buy .btn {
            right: 10px;
            bottom: 50%;
            margin-right: 0;
            margin-bottom: -37px;
        }

body.product .content .content-banner {
    margin-top: 20px;
    border: 1px solid #635338;
    padding: 2px;
}

body.product .content .icon-addcart {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: url(../images/all/icon_cart.png) no-repeat;
    vertical-align: text-bottom;
    background-size: 100% auto;
    margin-bottom: -6px;
}

body.product.show .content .quick-buy .btn.goshop {
    background: #3da72a;
}

    body.product.show .content .quick-buy .btn.goshop:hover {
        background: #1b7277;
    }

body.product .content .goshop .icon-addcart {
    background-image: url('../images/all/icon_cart2.png');
}

body.product.show .content .quick-buy .btn {
    padding: 3px 10px;
}

body.product.show .content .icon-addcart {
    margin-right: 5px;
}


body.product.show .info .info_box {
    background: #f3f3f3;
    margin-bottom: 10px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 15px;
    margin: 20px 0;
}

    body.product.show .info .info_box .h6 {
        font-size: 15px;
        margin: 0;
        padding: 10px 10px;
        background: #dedede;
    }

    body.product.show .info .info_box .info_txt {
        padding: 10px;
    }



body.product.show .content .product-pic {
    margin-bottom: 10px;
}

    body.product.show .content .product-pic a {
        display: block;
    }

        body.product.show .content .product-pic a .img-zoom {
            width: 100%;
        }

    body.product.show .content .product-pic .zoomPad {
        float: none;
    }

    body.product.show .content .product-pic .zoomWindow {
        margin-left: 10px;
        left: 100% !important;
    }

body.product.show .content .jcarousel-wrapper {
    padding: 0 20px;
}

body.product.show .content .jcarousel-control-prev,
body.product.show .content .jcarousel-control-next {
    background: url(../images/home/arrow.png) no-repeat;
    display: block;
    top: 50%;
    width: 24px;
    height: 40px;
    margin-top: -20px;
    position: absolute;
}

body.product.show .content .jcarousel-control-prev {
    left: 0;
}

body.product.show .content .jcarousel-control-next {
    right: 0;
    background-position: 0 -40px;
}

body.product.show .content .jcarousel li a {
    padding: 2px;
    border: 1px solid #ACE7EB;
}

body.product.show .content .jcarousel img {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto !important;
}

/*-- for show2 product pic --*/
body.product.show .content .product-pic .big-pic a {
    cursor: zoom-in;
}

body.product.show .content .product-pic .small-pic {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

    body.product.show .content .product-pic .small-pic img {
        margin: 0 3px;
        outline: none;
        cursor: pointer;
    }

    body.product.show .content .product-pic .small-pic .slick-arrow {
        min-width: 20px;
        height: 40px;
        background: url(../images/home/arrow.png) no-repeat;
        border: none;
        outline: none;
    }

    body.product.show .content .product-pic .small-pic .slick-prev {
        background-position: center top;
    }

    body.product.show .content .product-pic .small-pic .slick-next {
        background-position: center bottom;
    }
/*-- END for show2 product pic --*/


body.product.show .content .info .h1 {
    text-align: left;
    margin-bottom: 20px;
    margin-top: 0;
    font-size: 22px;
    font-weight: bold;
}

body.product.show .content .info .txt {
    min-height: 200px;
    padding: 0;
}

    body.product.show .content .info .txt ul {
        margin-left: 0;
    }

        body.product.show .content .info .txt ul li {
            background: url(../images/all/list_icon.png) no-repeat 0 3px;
            padding-left: 22px;
        }


body.product.show .content > .h3 {
    color: #8E8B77;
    font-size: 18px;
    padding: 10px;
    border: 1px solid #ACE7EB;
    color: var(--main-color);
}

    body.product.show .content > .h3 small {
        margin-left: 10px;
        color: #888;
    }

body.product.show .content .txt {
    padding: 10px;
}

body.product.show .content .quick-buy .btn {
    position: static;
    margin: 0;
    text-indent: 0;
    background-image: none;
    width: auto;
    height: auto;
    line-height: 42px;
    font-size: 18px;
    border-radius: 10px;
}

body.product.show .content .quick-buy .form-control,
body.product.show .content .quick-buy .btn {
    vertical-align: middle;
    margin-bottom: 10px;
}

body.product.show .content .product-list .item {
    margin-bottom: 20px;
    /*height: 265px;*/
    overflow: hidden;
}

body:not(.home) .row.list-style .list-item {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    display: block;
}

body:not(.home) .row.list-style div[class*="col"] {
    margin-bottom: 30px;
}

body:not(.home) .row.list-style .list-item .tt {
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
}

body:not(.home) .row.list-style .list-item .desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
}

.g-sort {
    align-items: center;
    justify-content: space-between;
    background: #efefef;
    padding: 10px;
    margin-bottom: 40px;
    border-radius: 5px;
}

    .g-sort > ul, .g-sort > ul li {
        display: flex;
        align-items: center;
    }

        .g-sort > ul li + li {
            margin-left: 10px;
        }

        .g-sort > ul li label {
            flex-shrink: 0;
            margin-right: 5px;
        }

.pro-list .list-item .btn-group a, .pro-show .btn-group a {
    background: var(--main-color);
    color: #fff;
    width: 100%;
    padding: 15px 10px;
    text-align: center;
}

.pro-show .btn-quote {
    background: var(--main-color);
    color: #fff;
    width: 100%;
    padding: 15px 10px;
    text-align: center;
    display: block;
}

.pro-show .btn-group a.btn-buy {
    background: var(--fifth-color);
}

.pro-show .quick-buy a:hover {
    background: var(--second-color) !important;
}

.pro-show .quick-buy a {
    margin-bottom: 10px;
}


.pro-list .list-item .btn-group a i, .pro-show .btn-group a i {
    margin-right: 5px;
    opacity: .7;
}

.pro-list .list-item .btn-group {
    display: flex;
    margin: 0 -15px -15px;
}

.pro-list .btn-favorite {
    position: absolute;
    right: 15px;
    top: 15px;
    background: #ff5964;
    color: #fff;
    font-weight: bold;
    border: none;
    padding: 5px;
    line-height: 1;
    border-radius: 5px;
}

/* .product .pro-list .list-item .desc {
    margin-bottom: 30px;
} */



.pro-list.mode2 div[class*="col"] {
    width: 100% !important;
}

.pro-list.mode2 .list-item {
    display: flex;
}

    .pro-list.mode2 .list-item .pic {
        width: 25%;
    }

    .pro-list.mode2 .list-item .info {
        width: 50%;
        padding: 0 15px;
    }

    .pro-list.mode2 .list-item .infoB {
        width: 25%;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        border-left: 1px solid #ccc;
        padding-left: 15px;
    }

    .pro-list.mode2 .list-item .btn-group {
        margin: 0;
    }

    .pro-list.mode2 .list-item .price {
        margin: 0 0 15px;
    }


.pro-list:not(.mode2) .list-item .tag-list {
    display: none;
}

.location-list {
    margin: 0 0 10px;
}

    .location-list > div {
        display: inline-block;
        padding: 3px 10px;
        background: var(--main-color);
        border-radius: 5px;
        color: #fff;
        margin-right: 10px;
        font-size: 14px;
    }

.pro-show .info .no {
    color: var(--main-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.pro-show .btn-favorite {
    color: #ff5964;
    background: none;
    border: none;
    font-weight: bold;
    padding: 0;
}

.pro-show .g-flex {
    justify-content: space-between;
    align-items: center;
}

.pro-show .no-list li {
    margin-bottom: 5px;
}

.pro-show .price {
    font-size: 30px;
    font-weight: bold;
}

.pro-show .btn-group {
    margin-top: 20px;
}
/*----------------------------------------- 會員專區 member --------------------------------------*/
body.member .content .nav-func li a {
    text-align: center;
    color: #888;
    border: 1px solid #ACE7EB;
    padding: 20px 10px;
    width: 116px;
    margin-bottom: 15px;
}

    body.member .content .nav-func li a .glyphicon {
        font-size: 26px;
        margin-bottom: 15px;
        color: var(--main-color);
    }

    body.member .content .nav-func li a:hover {
        color: #aaa;
        border-color: #888;
    }

        body.member .content .nav-func li a:hover .glyphicon {
            color: #aaa;
        }

body.member.register .content .form-group .checkbox a {
    color: var(--main-color);
}

    body.member.register .content .form-group .checkbox a:hover {
        text-decoration: underline;
    }

body.member #membership {
    max-width: 700px;
    display: none;
}

body.member .content .form-border {
    padding: 50px 20px;
}

body.member.register.finish .content .form-border {
    padding: 40px 50px;
}

body.member.forget .content .form-border {
    padding-top: 30px;
}


body.member .content {
    padding-bottom: 20px;
}

/*----------------------------------------- 訂單查詢 order --------------------------------------*/
body.order.show #msg-box {
    display: none;
    min-width: 300px;
}
/*----------------------------------------- 購物車 cart --------------------------------------*/
.content .sec .h3 {
    color: var(--main-color);
    font-size: 16px;
    padding-bottom: 10px;
    border-bottom: 1px dotted #ACE7EB;
    margin: 0 0 20px;
    position: relative;
}

body.cart.p03 .content .sec .h3,
body.cart.help .content .sec .h3 {
    padding: 10px;
    border: 1px solid #ACE7EB;
}

body.cart.help .content .sec p {
    padding: 0 10px;
}

body.cart.help .content .sec ul {
    padding: 0 10px;
    margin-left: 20px;
    margin-bottom: 20px;
}

.content .sec .h3 span {
    margin-right: 10px;
}

.content .sec .sum {
    text-align: right;
    padding-right: 20px;
    font-size: 16px;
    border-top: 1px solid #ACE7EB;
    line-height: 36px;
    font-weight: bold;
}

body.cart .content p {
    font-size: 14px;
}

    body.cart .content p a {
        display: inline-block;
        color: var(--main-color);
    }

        body.cart .content p a:hover {
            color: #888;
        }


body.cart .content .invoice-title {
    display: inline-block;
    margin-left: 5px;
}

body.cart .content .hint {
    float: right;
}

body.cart .content .btn-list {
    color: var(--main-color);
    display: inline-block;
    line-height: 24px;
    font-size: 13px;
    position: absolute;
    right: 5px;
    border: 1px solid #ACE7EB;
    padding: 0 5px;
}

    body.cart .content .btn-list:hover {
        color: #888;
        border-color: #ccc;
    }

    body.cart .content .btn-list span {
        margin-right: 10px;
    }

body.cart .content .invoice .btn-list {
    position: static;
    margin-top: 12px;
    float: right;
}

body.cart .content .invoice .form-inline:after {
    content: " ";
    clear: both;
    display: block;
}

body.cart .lightbox-list {
    min-width: 400px;
    display: none;
}

    body.cart .lightbox-list .h4 {
        font-size: 18px;
        padding: 0 5px;
    }

        body.cart .lightbox-list .h4 small {
            display: inline-block;
        }

    body.cart .lightbox-list .glyphicon {
        margin-right: 5px;
    }

    body.cart .lightbox-list ul li {
        border-top: 1px solid #62544C;
    }

        body.cart .lightbox-list ul li a {
            color: #666;
            padding: 10px;
            display: block;
        }

            body.cart .lightbox-list ul li a:hover {
                background-color: #eee;
            }


/*----------------------------------------- 聯絡我們 contact --------------------------------------*/
.text-red {
    color: #f00;
}

.mx-auto {
    margin: 0 auto;
}




.txt-R {
    text-align: right;
}

h2.st {
    font-size: min(max(3.5vw, 30px), 35px);
    font-weight: bold;
    color: var(--main-color);
    margin: 0 auto 20px;
    text-align: center;
}

    h2.st:before {
        content: "";
        width: 2em;
        height: 3px;
        background: var(--main-color);
        margin: 10px auto 15px;
        display: block;
    }

h4.st {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

    h4.st:before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 5px;
        background: var(--main-color);
        display: inline-block;
        margin-right: 5px;
        transition: all .5s;
    }

.h-100 {
    height: 100% !important;
}


/*----------------------------------------- widgets --------------------------------------*/
/* 預設共用 */
.wid {
    position: relative;
    z-index: 10;
    margin-bottom: 30px;
}

.side .wid .h3 .side-toggle {
    display: none;
}


/* 搜尋產品 wid-search */
.wid-search .h3 {
    color: #23989F;
    font-size: 15px;
    text-align: center;
    margin-bottom: 15px;
}

    .wid-search .h3 .txt-tw {
    }

.wid-search .form-group {
    width: 100%;
}

    .wid-search .form-group .form-control {
        margin-bottom: 5px;
        width: 100%;
    }

.wid-search .btn {
    width: 100%;
}

    .wid-search .btn .txt-en {
        display: none;
    }

/* 商品推廌 wid-slideBanner */
.wid-slideBanner ul {
    list-style-type: none;
}

    .wid-slideBanner ul li a {
        display: block;
    }

        .wid-slideBanner ul li a img {
            width: 100%;
        }

.wid-slideBanner .jcarousel-control-prev,
.wid-slideBanner .jcarousel-control-next {
    position: absolute;
    display: block;
    width: 18px;
    height: 30px;
    background: url(../images/home/arrow.png) no-repeat;
    background-size: 100% auto;
    top: -39px;
}

.wid-slideBanner .jcarousel-control-prev {
    right: 16px;
}

.wid-slideBanner .jcarousel-control-next {
    right: 0;
    background-position: 0 -30px;
}

.form-group input[type=checkbox] + label {
    margin-right: 1em;
}



/*---------------------- 下拉選單 subNav  dropdownMenu --------------------*/
.navbar .navbar-nav .dropdown_submenu.pos_static {
    position: static;
}

.navbar-nav .dropdown_submenu > ul > li > ul > li {
    list-style: none;
}

    .navbar-nav .dropdown_submenu > ul > li > ul > li a {
        display: block;
    }

.navbar-nav .dropdown_submenu .dropdown-menu {
    left: auto;
    margin-top: -4px;
}

.navbar-nav .minwidth {
    min-width: 100px;
    padding: 0;
}



.navbar-nav .dropdown_submenu {
    position: relative;
}

li.hover_r_sider.dropdown_submenu {
    position: relative;
}


.navbar-nav .dropdown-menu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}

@media (min-width: 768px) {
    .navbar-nav .dropdown_submenu > ul > li > ul > li {
        /* margin-left: 15px; */
    }

    .dropdown_submenu .dropdown_submenu > a:after {
        display: block;
        content: " ";
        float: right;
        width: 0;
        height: 0;
        border-color: transparent;
        border-style: solid;
        border-width: 5px 0 5px 5px;
        border-left-color: #ccc;
        margin-top: 5px;
        margin-right: -10px;
    }
}
/*------------------------subNav  dropdownMenu --------------------*/
.is_scroll .header .g-marquee {
    opacity: 0;
    height: 0;
    padding: 0;
    display: none;
}

.is_scroll .header .navbar {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 5px 8px 0px;
}

    .is_scroll .header .navbar .navbar-brand {
        height: 69px;
        width: 192px;
        background-size: contain;
    }


body:not(.home) .main_top > .container, body:not(.cart.show) .main_ex > .container {
    width: 100%;
}

body:not(.home) .h1, body:not(.home) .h2 {
    text-align: center;
    font-weight: bold;
    font-size: min(max(3.5vw, 30px), 35px);
    color: var(--forth-color);
    margin-bottom: 30px;
    margin-top: 40px;
}

body:not(.home) .main_top .h1:before, body:not(.home) .main_top .h2:before {
    content: "";
    display: block;
    margin: 0 auto 10px;
    background: url(../images/all/icon_T.png) no-repeat;
    width: 77px;
    height: 55px;
}


.side .h3 {
    display: none;
}



.side ul.removeBefore {
    margin: 0;
}

.main_top .txt-en {
    display: none;
}
/*faq*/
.panel-group.panel-style {
    margin: 0;
}

    .panel-group.panel-style .panel-heading {
        padding: 0;
    }

    .panel-group.panel-style .panel {
        border-radius: 0;
        background: none;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
        border-radius: 5px;
        margin-bottom: 15px;
        color: inherit;
        overflow: hidden;
    }

        .panel-group.panel-style .panel.active {
            border-top: 3px solid var(--third-color);
        }

            .panel-group.panel-style .panel.active > * {
            }

        .panel-group.panel-style .panel > .panel-heading a {
            position: relative;
            display: flex;
            align-items: baseline;
            padding: 15px 35px 15px 15px;
            font-weight: bold;
        }

        .panel-group.panel-style .panel.active > .panel-heading a {
            color: var(--main-color);
        }
        /*.panel-group.panel-style .panel > .panel-heading a:before {
            content: "";
            background: url(../images/all/icon_msg.svg) no-repeat;
            background-size: contain;
            width: 34px;
            margin-right: 5px;
            display: block;
            position: absolute;
            top: 6px;
            left: 15px;
            height: 34px;
        }*/
        .panel-group.panel-style .panel > .panel-heading a:after, .panel-group.panel-style .panel > .panel-heading a.collapsed:after {
            content: "expand_more";
            font-family: 'Material Symbols Outlined';
            font-weight: 900;
            font-style: normal;
            font-size: 24px;
            line-height: 1;
            letter-spacing: normal;
            text-transform: none;
            display: inline-block;
            white-space: nowrap;
            word-wrap: normal;
            direction: ltr;
            -webkit-font-feature-settings: 'liga';
            -webkit-font-smoothing: antialiased;
            position: absolute;
            top: 50%;
            right: 10px;
            transform: translateY(-50%);
        }

        .panel-group.panel-style .panel.active > .panel-heading a:after {
            transform: translateY(-50%) scaleY(-1);
        }

        .panel-group.panel-style .panel:not(.active) > .panel-heading a:after {
            transform: translateY(-50%) scaleY(1);
        }

        .panel-group.panel-style .panel > .panel-heading a:hover, .panel-group.panel-style .panel > .panel-heading a:not(.collapsed) {
        }

    .panel-group.panel-style .panel-heading + .panel-collapse > .panel-body {
        padding: 15px;
        border: none;
        background: #eee;
    }

        .panel-group.panel-style .panel-heading + .panel-collapse > .panel-body .g-flex {
            display: flex;
            align-items: baseline;
        }

.glyphicon-chevron-down:before {
    content: "expand_more";
}

.side .glyphicon-list:before {
    content: "\f478";
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 400 !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    margin-right: 5px;
}

.side1 .side-toggle .glyphicon-chevron-up, .side1 .side-toggle.collapsed .glyphicon-chevron-down {
    display: inline-block;
    font-family: 'Material Symbols Outlined';
    font-weight: 900;
    font-style: normal;
    font-size: 20px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

.glyphicon-chevron-up:before {
    content: "expand_less";
}

.faq-box {
    margin-bottom: 50px;
}

    .faq-box .st {
        background: var(--main-color);
        width: 30px;
        height: 30px;
        border-radius: 50%;
        /* background: #eee; */
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-right: 10px;
        color: #fff;
    }

        .faq-box .st.st-a {
            background: var(--second-color);
        }

    .faq-box .panel {
        border: none;
        background: none;
    }

        .faq-box .panel + .panel {
            margin-top: 0;
        }

        .faq-box .panel > .panel-heading {
            background: none;
            padding: 0;
            position: relative;
        }

            .faq-box .panel > .panel-heading a {
            }

    .faq-box .panel-body .btn-show {
        display: table;
        margin: 20px 0 0 auto;
        padding: 5px 15px;
    }

.btn-box .pager.pager-num li > a {
    color: #000;
    padding: 0;
    width: 35px;
    height: 35px;
    display: block;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    background: #efefef;
}

.btn-box .pager li > a, .btn-box.btn-normal ul li > a {
    padding: 10px 20px;
    min-width: 120px;
    text-align: center;
    background: #5c5a59;
    color: #fff;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

a.btn-gray {
    background: #bcbdc0 !important;
    color: #000 !important;
}


.btn-box .pager li > a:hover, .btn-box.btn-normal ul li > a:hover {
    background: var(--main-color);
}

.btn-box .pager li > a.active {
    background: #000;
    color: #fff;
}

.btn-box .pager li > a.active2 {
    background: #d1d1d1;
    color: #fff;
}

.btn-box .pager.pager-num li.arrow a {
    background: #5c5a59;
}

    .btn-box .pager.pager-num li.arrow a:before {
        content: "navigate_next";
        font-family: 'Material Symbols Outlined';
        font-weight: normal;
        font-style: normal;
        font-size: 20px;
        line-height: 1;
        letter-spacing: normal;
        text-transform: none;
        display: inline-block;
        white-space: nowrap;
        word-wrap: normal;
        direction: ltr;
        -webkit-font-feature-settings: 'liga';
        -webkit-font-smoothing: antialiased;
        color: #fff;
        opacity: 1;
    }

.btn-box .pager.pager-num li.arrow.arrow-prev a:before {
    transform: scaleX(-1);
}




.btn-box .pager.pager-num li > a:hover, .btn-box .pager.pager-num li.active > a:hover {
    background-color: var(--main-color);
    color: #fff;
}

.btn-box .select-page {
    text-align: center;
}

    .btn-box .select-page select {
        margin: 0 10px;
    }

.content .btn-box .pager {
    text-align: left;
    display: flex;
    margin: 0 0 20px;
    float: none;
    justify-content: center;
}

    .content .btn-box .pager li {
        margin: 0 5px;
    }
/*rwd-tabs*/
.rwd-tabs.tab_wrapper .content_wrapper {
    border: none;
}

    .rwd-tabs.tab_wrapper .content_wrapper .tab_content {
        padding: 0;
    }

        .rwd-tabs.tab_wrapper .content_wrapper .tab_content .d-inner {
            margin-top: 40px;
        }

.rwd-tabs.tab_wrapper > ul li {
    border: none;
    font-size: 15px;
    text-align: center;
    margin: 0;
    padding: 15px 25px;
    transition: all .5s ease;
    font-size: 18px;
}

    .rwd-tabs.tab_wrapper > ul li.active {
        color: var(--main-color) !important;
    }

    .rwd-tabs.tab_wrapper > ul li a:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 4px;
        display: block;
        background-color: var(--main-color);
        bottom: 0;
        left: 0;
        transform-origin: right;
        transform: scaleX(0);
        transition: transform .3s ease-in-out;
    }

.rwd-tabs .r-tabs-nav li {
    flex-grow: 1;
    padding: 0;
}

    .rwd-tabs .r-tabs-nav li a {
        border: none;
        font-size: 15px;
        text-align: center;
        margin: 0;
        padding: 15px 25px;
        transition: all .5s ease;
        font-size: 18px;
        display: block;
        position: relative;
        font-weight: bold;
        height: 100%;
    }

        .rwd-tabs .r-tabs-nav li a .icon {
            margin-left: 5px;
        }

    .rwd-tabs .r-tabs-nav li.r-tabs-state-active a {
        color: var(--main-color);
    }

    .rwd-tabs .r-tabs-nav li a:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 4px;
        display: block;
        background-color: var(--main-color);
        bottom: 0;
        left: 0;
        transform-origin: right;
        transform: scaleX(0);
        transition: transform .3s ease-in-out;
    }

    .rwd-tabs .r-tabs-nav li.r-tabs-state-active a:after {
        transform-origin: left;
        transform: scaleX(1);
    }

.rwd-tabs.r-tabs .r-tabs-panel:not(.r-tabs-state-active) {
    display: block;
    height: 0;
    overflow: hidden;
    padding: 0;
    transition: all .5s ease;
}

.rwd-tabs.r-tabs .r-tabs-panel.r-tabs-state-active {
    height: auto;
    padding: 0 15px;
}

.main_ex {
    background: #eee;
}

    .main_ex .container:has(*) {
        padding: 50px 20px;
    }

    .main_ex .btn-box {
        margin: 0;
    }

h2.stB {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: min(max(3.5vw, 30px), 35px);
    color: var(--main-color);
}

    h2.stB:before, h2.stB:after {
        background: #ccc;
        content: "";
        display: inline-block;
        flex: 0 1 50%;
        height: 0.4rem;
    }

    h2.stB > span {
        flex-shrink: 0;
        margin: 0 20px;
    }
/*訂單*/
#joinCart .modal-dialog, #joinInquiry .modal-dialog {
    width: 50%;
}

#joinCart .cart-list .list-item, #joinInquiry .cart-list .list-item {
    box-shadow: none;
}

    #joinCart .cart-list .list-item .pic, #joinInquiry .cart-list .list-item .pic {
        width: 30%;
        margin-right: 30px;
    }

    #joinCart .cart-list .list-item .info, #joinInquiry .cart-list .list-item .info {
        margin: 0;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }




.tb-cart .g-proInfo .pic {
    max-width: 120px;
}

.tb-cart .g-proInfo .info {
    padding: 0 30px;
    align-self: center;
    text-align: left;
}

    .tb-cart .g-proInfo .info .tt {
        text-align: left;
        font-size: 18px;
        font-weight: bold;
    }

        .tb-cart .g-proInfo .info .tt .txt-en {
            font-size: 16px;
            font-weight: normal;
            color: #7d7d7d;
        }

.tb-cart .qty {
    max-width: 150px;
    margin: auto;
    display: flex;
    background: #eee;
}

    .tb-cart .qty button {
        width: 35px;
        height: 35px;
        display: flex;
        flex-shrink: 0;
        align-items: center;
        justify-content: center;
        transition: all .5s;
        background: #888;
        color: #fff;
        border-radius: 0;
    }

        .tb-cart .qty button:hover {
            background: var(--main-color);
            color: #fff;
        }

    .tb-cart .qty input {
        box-shadow: none;
        border: none;
        background: none;
    }

.tb-style .btn-tb {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 25px;
    background: #888;
    color: #fff;
}

    .tb-style .btn-tb:hover {
        background: var(--main-color);
    }

    .tb-style .btn-tb i {
        transition: all .5s;
    }

    .tb-style .btn-tb:hover i {
        transform: scale(0.8);
    }

.tb-cart .brand-name {
    background: var(--forth-color);
    color: #fff;
    border-radius: 5px;
    padding: 5px;
    font-size: 14px;
}

.pro-no {
    color: var(--main-color);
}

.d-preface {
    justify-content: center;
    align-items: center;
    background: var(--forth-color);
    padding: 20px;
}

    .d-preface .g-icon {
        margin-right: 30px;
        padding-right: 30px;
        border-right: 1px solid #fff;
        text-align: center;
        font-weight: bold;
        font-size: 18px;
    }

    .d-preface .icon > * {
        font-size: 101px;
        font-weight: normal;
        color: #fff;
        display: inline-block;
    }

.g-price {
    counter-reset: item;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    border-radius: 15px;
    padding: 15px;
    background: #fff;
}

    .g-price li {
        display: flex;
        padding: 5px;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #ccc;
    }

.price.total {
    font-size: 22px;
}

.g-total .checkbox {
    margin: 0;
}

.g-total .total {
    align-items: center;
}

    .g-total .total .price {
        margin-right: 15px;
    }

.g-total.scroll-to-fixed-fixed {
    background: #fff;
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    bottom: 10px !important;
    padding: 15px;
}

.g-total .btn-checkout {
    background: #f9323f;
}

    .g-total .btn-checkout:before {
        background: rgba(0, 0, 0, 0.1);
    }

.cart-num {
    width: 30px;
    height: 30px;
    background: #ff5964;
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.row-flex {
    display: flex;
    flex-wrap: wrap;
}

    .row-flex > div[class*="col"] {
        margin-bottom: 30px;
        flex-grow: 1;
    }

        .row-flex > div[class*="col"] .row {
            margin-bottom: -15px;
        }

        .row-flex > div[class*="col"] div[class*="col-"] {
            margin-bottom: 15px;
        }

    .row-flex div[class*="col"].w-auto {
        width: auto;
    }

.form-style .row-flex {
    margin-bottom: -15px;
}

.form-box .txt-red {
    margin-top: 5px;
}



.g-orderShow .total {
    text-align: right;
    font-size: 18px;
    background: #eee;
    padding: 20px;
    line-height: 1.8;
}

    .g-orderShow .total b {
        color: #f9323f;
    }

.g-form .sec + .sec {
    margin-top: 30px;
}

.tt-box {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
}

    .tt-box .tt-flex {
        align-items: center;
        font-size: 25px;
        justify-content: center;
        font-weight: bold;
        margin-bottom: 20px;
    }

        .tt-box .tt-flex .icon {
            margin-right: 10px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #eee;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--fifth-color);
        }

    .tt-box b {
        color: var(--main-color);
    }

.side-menu {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

    .side-menu li {
        padding: 0;
    }

        .side-menu li a {
            text-align: center;
            margin: 5px;
            padding: 5px 15px;
            transition: all .5s ease;
            font-size: 18px;
            display: block;
            position: relative;
            font-weight: bold;
            border: 1px solid #ccc;
            border-radius: 30px;
        }

            .side-menu li a:hover {
                background: var(--main-color);
                border: 1px solid var(--main-color);
                color: #fff;
            }

/*.side-menu li a:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 4px;
            display: block;
            background-color: var(--main-color);
            bottom: 0;
            left: 0;
            transform-origin: right;
            transform: scaleX(0);
            transition: transform .3s ease-in-out;
        }

        .side-menu li.active a:after, .side-menu li a:hover:after {
            transform-origin: left;
            transform: scaleX(1);
        }*/

.g-form .info-box {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    border-radius: 15px;
    border-top: 4px solid var(--third-color);
    padding: 30px 20px;
}

.g-form .g-input {
    background: #f5f5f5;
    border-radius: 5px;
    padding: 0 10px;
    align-items: center;
    display: flex;
}

    .g-form .g-input .icon {
        flex-shrink: 0;
        color: #000;
        opacity: .2;
    }

.g-form.login-form .g-input {
    padding: 10px;
}

    .g-form.login-form .g-input .icon {
        font-size: 25px;
    }

.txt-link {
    text-decoration: underline;
    color: var(--main-color);
}

.btn-line {
    background: #06c052 !important;
}

    .btn-line:before {
        background: rgba(0, 0, 0, 0.1) !important;
    }
/*會員*/
.login-form {
    margin: 0 -30px;
}

    .login-form > * {
        padding: 0 30px;
    }

    .login-form .btn-forgot {
        display: table;
        margin: 5px 0 0 auto;
    }

    .login-form .notice-list .list-item {
        margin-bottom: 30px;
    }

    .login-form .notice-list .tt {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
    }

.notice-list .icon {
    font-size: 30px;
    color: #ccc;
    margin-right: 10px;
}

.notice-list ul li {
    display: flex;
    align-items: baseline;
}

    .notice-list ul li:before {
        content: "";
        width: 1em;
        height: 1px;
        /* display: inline-block; */
        /* vertical-align: middle; */
        margin-right: 10px;
        background: #000;
        flex-shrink: 0;
        position: relative;
        top: -5px;
    }

    .notice-list ul li + li {
        margin-top: 10px;
    }

.btn-outline {
    border: 1px solid var(--main-color);
    border-radius: 5px;
    padding: 15px 30px;
    color: var(--main-color);
    display: block;
    text-align: center;
    background: none;
}

    .btn-outline:hover, .btn-outline.active {
        background: none;
        border: 1px solid var(--second-color);
        color: #fff;
    }

    .btn-outline.btn-style:before, .btn-outline.btn-style.active {
        background: var(--main-color);
    }

.step-list.step-style {
    display: flex;
    justify-content: space-around;
    margin-bottom: 50px;
}

.step-style .item {
    text-align: center;
    position: relative;
    width: calc(100% / 3);
    color: #888;
}

    .step-style .item .no {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        margin: 0 auto 10px;
        display: flex;
        align-items: center;
        font-weight: bold;
        justify-content: center;
        position: relative;
        z-index: 5;
    }

        .step-style .item .no .icon-font {
            position: absolute;
            top: 0;
            right: -5px;
            color: var(--second-color);
            font-size: 22px;
            line-height: 1;
        }

    .step-style .item.active .no:after {
        content: "\f26a";
        display: inline-block;
        font-family: bootstrap-icons !important;
        font-style: normal;
        font-weight: 400 !important;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        vertical-align: -.125em;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        position: absolute;
        top: 0;
        right: -5px;
        color: var(--second-color);
        font-size: 22px;
        line-height: 1;
    }




    .step-style .item .no .icon-font:after {
        content: "";
        position: absolute;
        top: 5px;
        left: 5px;
        bottom: 5px;
        right: 5px;
        background: #fff;
        z-index: -1;
        border-radius: 50%;
    }

    .step-style .item.active .no {
        color: #fff;
    }

    .step-style .item .no:before {
        content: "";
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        background: #eee;
        border-radius: 50%;
        z-index: -1;
        border: 4px solid #eee;
        background: #fff;
    }

    .step-style .item.active .no:before {
        background: var(--main-color);
        border: 4px solid var(--main-color);
    }

    .step-style .item.active {
        color: #000;
    }

    .step-style .item:not(:first-child):before {
        content: "";
        position: absolute;
        top: 30px;
        height: 2px;
        margin-top: -2px;
        left: -50%;
        right: 50%;
        background: #eee;
        z-index: -1;
    }

    .step-style .item.active:before {
        background: var(--main-color);
    }

.g-form .pwd {
    position: relative;
}

    .g-form .pwd .icon-eyes {
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
    }

.g-form .input-tt {
    margin-bottom: 5px;
}

.mform.marea .btn-box > div {
    margin: 0 10px 20px;
    width: calc(100% / 4 - 20px);
}

.line-register .mform .btn-box .btn-style {
    flex-grow: 1;
    padding: 20px;
    margin: 0 20px;
    color: #000;
    background: #eee;
    text-align: left;
    overflow: hidden;
    min-height: 300px;
}

.mform.marea .btn-box .btn-style {
    flex-grow: 1;
    padding: 20px;
    color: #000;
    background: #eee;
    text-align: left;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
}

    .mform.marea .btn-box .btn-style ul li:before {
        content: "\f231";
        display: inline-block;
        font-family: bootstrap-icons !important;
        font-style: normal;
        font-weight: 400 !important;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        vertical-align: -.125em;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        color: var(--second-color);
        margin-right: 5px;
        font-size: 14px;
    }

    .mform.marea .btn-box .btn-style .tt {
        font-weight: bold;
        font-size: 22px;
    }

.mform.marea .txt-welcome {
    font-size: min(max(3.5vw, 30px), 40px);
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--main-color);
}

.mform.marea .name {
    font-size: 20px;
}

.mform.marea .btn-box {
    counter-reset: item;
    flex-wrap: wrap;
    margin: 0 -10px;
}

    .mform.marea .btn-box a:before, .line-register .mform .btn-box a:before {
        background: var(--main-color);
    }

.mform .btn-style:after {
    content: counter(item, decimal-leading-zero) " ";
    counter-increment: item;
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 70px;
    color: #fff;
    line-height: 1;
    z-index: -1;
}

.mform .btn-style:hover:after {
    opacity: .3;
}

.mform .btn-style .txt-en {
    opacity: .5;
    font-size: 18px;
}

.mform .btn-style .icon {
    font-size: 40px;
    margin-bottom: 10px;
    color: var(--main-color);
    line-height: 0;
    height: 46px;
    display: flex;
    align-items: center;
}

.mform .btn-box .col-news {
    position: relative;
}

    .mform .btn-box .col-news .num {
        position: absolute;
        top: -10px;
        right: -10px;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        background: #f00;
        z-index: 5;
    }

.mform .btn-style:nth-child(1) .icon {
    font-size: 46px;
}

body.register .mform .btn-style:nth-child(2) .icon {
    font-size: 46px;
}

.mform .btn-style:hover .icon {
    opacity: .5;
    color: #fff;
}

table.tb-normal tr th, table.tb-normal tr td {
    text-align: left;
    padding: 10px;
}

table.tb-normal tr th {
    color: var(--main-color);
}

table.tb-normal tr:nth-child(1) {
    border-top: 2px solid var(--main-color);
}

table.tb-normal tr:last-child {
    border-bottom: 1px solid var(--second-color);
}

table.tb-normal tbody th {
    text-align: left !important;
    width: 30%;
}

table.table.tb-normal.tb-total {
    margin-top: -21px;
}

.tb-style .btn-normal {
    background: var(--second-color);
    color: #fff;
    padding: 5px;
    display: block;
    border: none;
    border-radius: 5px;
    text-align: center;
    min-width: 100px;
}

    .tb-style .btn-normal:hover {
        background: var(--main-color) !important;
        color: #fff !important;
    }

.tb-style .btn-icon {
    color: var(--main-color);
    font-size: 18px;
}

    .tb-style .btn-icon i {
        margin-right: 5px;
    }

.modify .g-form .btn-line {
    background: #06c052;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    padding: 5px 10px;
}

    .modify .g-form .btn-line.styleB {
        width: auto;
    }

        .modify .g-form .btn-line.styleB .icon {
            margin-right: 10px;
            border-right: 1px solid rgba(255, 255,255, 0.5);
            padding-right: 10px;
        }

.modal-style .tt-box .tt-flex {
    flex-direction: column;
    justify-content: center;
}

    .modal-style .tt-box .tt-flex small {
        display: block;
    }

    .modal-style .tt-box .tt-flex .icon {
        font-size: 30px;
        margin: 0 0 15px;
    }

.eZShareBar {
    display: none;
}

.g-search {
    border-radius: 5px;
    overflow: hidden;
}

    .g-search input {
        border: none;
    }

.member.housekeeper.modify .g-form .l-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .member.housekeeper.modify .g-form .l-info .pic {
        border-radius: 50%;
        width: 200px;
        height: 200px;
        background: #eee;
        font-size: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #a5a5a5;
        margin-bottom: 20px;
    }

        .member.housekeeper.modify .g-form .l-info .pic:has(img) img {
            width: 100%;
        }

    .member.housekeeper.modify .g-form .l-info .info {
        text-align: center;
    }

    .member.housekeeper.modify .g-form .l-info .txt-name {
        font-size: 30px;
        font-weight: bold;
        line-height: 1;
        color: var(--main-color);
    }

    .member.housekeeper.modify .g-form .l-info .txt-phone {
        font-size: 20px;
        font-weight: bold;
        margin: 10px auto 20px;
    }
    /*.member.housekeeper.modify .g-form .l-info a:before{
    content:"";
    width:2em;
    height:2px;
    background:var(--second-color);
    margin:15px auto;
    display:block;
}*/
    .member.housekeeper.modify .g-form .l-info a {
        font-size: 20px;
        font-weight: bold;
        text-align: center;
        margin-bottom: 10px;
        color: #fff;
        border-radius: 30px;
        display: block;
        padding: 5px 20px;
    }

#d-serviceTime .date-list .icon {
    margin-right: 5px;
    color: var(--main-color);
}

#d-serviceTime .date-list li.qk .icon {
    color: #ccc;
}

.line-register .mform.marea .btn-box .btn-style {
    color: #000;
    width: calc(100% / 3);
    display: block;
    margin: 0 20px;
    min-height: 0;
}

.line-register .mform.marea .btn-box {
    justify-content: center;
}

.g-scheduling .g-select {
    align-items: center;
    flex-grow: 1;
    justify-content: center;
    margin-right: -10px;
}

    .g-scheduling .g-select select {
        width: auto;
    }

    .g-scheduling .g-select > span {
        margin-right: 10px;
        display: flex;
        align-items: center;
    }

    .g-scheduling .g-select select {
        background: #fff;
        margin-right: 5px;
    }

.g-scheduling .sec1 .g-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    background: #bfa38a;
    padding: 10px;
    color: #fff;
    border-radius: 5px;
}

    .g-scheduling .sec1 .g-btn a {
        display: flex;
        align-items: center;
        color: #fff;
    }

    .g-scheduling .sec1 .g-btn .icon {
        width: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--second-color);
        color: #fff;
        border-radius: 5px;
        margin: 0 5px;
        transition: all .5s;
    }

    .g-scheduling .sec1 .g-btn a:hover .icon {
        background: var(--main-color);
    }

.g-state {
    justify-content: space-between;
    margin-bottom: 10px;
}

    .g-state .date {
        color: var(--main-color);
    }

    .g-state .state-list {
        margin-right: -5px;
    }

        .g-state .state-list span {
            border-radius: 30px;
            display: inline-flex;
            align-items: center;
            margin-right: 10px;
            line-height: 1;
        }

            .g-state .state-list span:before {
                content: "";
                width: 10px;
                height: 10px;
                border-radius: 50%;
                margin-right: 5px;
            }

            .g-state .state-list span:nth-child(1):before {
                background: var(--second-color);
            }

            .g-state .state-list span:nth-child(2):before {
                background: var(--main-color);
            }

            .g-state .state-list span:nth-child(3):before {
                background: var(--sixth-color);
            }

            .g-state .state-list span:nth-child(4):before {
                background: #ccc;
            }

            .g-state .state-list span:nth-child(5):before {
                background: #E88D67;
            }

table.table tr th, table.table tr td {
    text-align: center;
    vertical-align: middle;
}

table.table.tb-style thead tr {
    border-radius: 20px;
}



    /*table.table.tb-style thead:after {
    content: "";
    display: block;
    height: 15px;
}*/

    table.table.tb-style thead tr th {
        background: #7D869C;
        text-align: center;
        padding: 15px 10px;
        color: #fff;
        border: none;
        vertical-align: middle;
    }

table.table.tb-calendar thead tr th:nth-child(1) {
    background: #586994;
}

table.table.tb-style thead tr th small {
    display: block;
    opacity: .5;
    font-weight: normal;
}

table.table.tb-calendar thead tr th {
    min-width: 180px;
    word-break: keep-all;
    white-space: nowrap !important;
}

table.table.tb-calendar tbody th {
    border-top: 1px solid #fff !important;
}

table.table.tb-calendar tbody tr:nth-child(1) th {
    border-top: none !important;
}

table.table.tb-style tr td {
    border-top: none;
    text-align: center;
    background: #fff;
    border-bottom: 1px solid #ccc;
    padding: 10px;
}

table.table.tb-style.tb-calendar tr td {
    border-bottom: 1px solid #fff;
}

table.table.tb-style tr td.text-left {
    text-align: left;
}



.table-responsive {
    overflow-x: auto;
}

.tb-sticky tbody th:before, .tb-sticky thead th:nth-child(1):before {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    /* right: 0; */
    bottom: 0;
    /* box-shadow: 5px 0 0 #ccc; */
    width: 30px;
    background: rgb(145, 145, 145);
    background: -moz-linear-gradient(90deg, rgba(145, 145, 145, 0.4962359943977591) 0%, rgba(145, 145, 145, 0) 100%);
    background: -webkit-linear-gradient(90deg, rgba(145, 145, 145, 0.4962359943977591) 0%, rgba(145, 145, 145, 0) 100%);
    background: linear-gradient(90deg, rgba(145, 145, 145, 0.4962359943977591) 0%, rgba(145, 145, 145, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#919191",endColorstr="#919191",GradientType=1);
    opacity: .5;
    /*border-left: 1px solid #fff;
    border-left-width: 1px;
    border-left-style: solid;
    border-left-color: rgb(255, 255, 255);*/
}

table.table.tb-style tr th {
    background: var(--main-color);
    text-align: center;
    padding: 15px 10px;
    color: #fff;
    border: none;
}

.tb-sticky tbody th, .tb-sticky thead th:nth-child(1) {
    position: sticky;
    left: 0;
    z-index: 10;
    max-width: 160px;
}

table.table.tb-calendar tbody tr td {
    border-right: 1px solid #fff;
    background: #eee;
}

    table.table.tb-calendar tbody tr td:last-child {
        border-right: none;
    }

table.table.tb-calendar tbody tr th {
    font-weight: bold;
    background: #b6bfd5;
}

table.table.tb-calendar .g-box {
    border-radius: 5px;
    padding: 5px;
    color: #fff;
    display: block;
}

table.table.tb-calendar td.done .g-box {
    background: var(--second-color);
}

table.table.tb-calendar td.undone .g-box {
    background: var(--main-color);
}

table.table.tb-calendar td.qk {
    background: #E88D67;
    margin: -15px;
    border-radius: 0;
    color: #fff;
}

table.table.tb-calendar td.unwork {
    background: #ccc;
}

table.table.tb-calendar td.work {
    background: var(--sixth-color);
}

a.btn-right {
    margin: 0 0 0 auto;
    display: table;
}

.txt-maincolor {
    color: var(--main-color);
}

.g-h2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

    .g-h2 .btn-right {
        color: var(--main-color);
        font-weight: bold;
    }

        .g-h2 .btn-right .icon-font {
            margin-right: 5px;
        }

    .g-h2 h2.tt {
        margin: 0;
    }

.form-control.w-auto {
    width: auto;
}

body.notify .content .g-menu li + li {
    border-left: 1px solid #ccc;
}

.product.p01 .main_ex {
    background: var(--sixth-color);
}

.sec-reservation {
    position: relative;
}

    .sec-reservation:before {
        content: "";
        background: url(../images/all/bg_room.svg) no-repeat center bottom;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-size: 100% 100%;
        mix-blend-mode: luminosity;
    }

    .sec-reservation .reservation-list {
        justify-content: space-between;
        margin: 30px -20px;
    }

        .sec-reservation .reservation-list .list-item {
            flex-grow: 1;
            margin: 0 20px;
            width: 100%;
        }

            .sec-reservation .reservation-list .list-item .g-box {
                background: #fff;
                border-radius: 5px;
                box-shadow: rgba(99, 99, 99, 0.2) 0px 5px 8px 0px;
                position: relative;
                padding: 15px;
            }

                .sec-reservation .reservation-list .list-item .g-box .info {
                    padding: 0;
                    margin-top: 10px;
                }

            .sec-reservation .reservation-list .list-item .g-no {
                display: flex;
                align-items: center;
                justify-content: space-between;
            }

                .sec-reservation .reservation-list .list-item .g-no .g-icon {
                    font-size: 20px;
                    color: var(--main-color);
                    line-height: 1;
                }

    .sec-reservation .bg-man {
        position: absolute;
        display: flex;
        justify-content: space-between;
        left: -100px;
        right: -100px;
        bottom: 30px;
        pointer-events: none;
    }

        .sec-reservation .bg-man .pic-man {
            width: 100px;
        }



    .sec-reservation .reservation-list .list-item .no {
        font-family: "Poppins", sans-serif;
        font-weight: 700;
        font-size: 70px;
        color: var(--main-color);
        line-height: 1;
        z-index: 5;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        margin-bottom: -45px;
        z-index: 5;
        position: relative;
        padding-left: 10px;
    }

        .sec-reservation .reservation-list .list-item .no small {
            font-size: 20px;
        }



    .sec-reservation .reservation-list .list-item .pic {
        position: relative;
        border-radius: 5px 5px 0 0;
    }

        .sec-reservation .reservation-list .list-item .pic img {
            object-fit: cover;
            height: 100%;
            width: 100%;
        }
    /* .sec-reservation .reservation-list .list-item .pic:before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: #000;
                opacity: .5;
                z-index: 3;
            } */
    .sec-reservation .reservation-list .list-item .g-tt .icon {
        width: 90px;
        mix-blend-mode: exclusion;
        opacity: .2;
    }

    .sec-reservation .reservation-list .list-item .pic .icon img {
        width: 100%;
    }

    .sec-reservation .reservation-list .list-item .g-tt {
        /* position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                color: #fff; */
        z-index: 5;
        font-size: 20px;
        font-weight: bold;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        /* padding: 15px; */
        flex-direction: row-reverse;
    }

        .sec-reservation .reservation-list .list-item .g-tt .icon {
            width: 90px;
            mix-blend-mode: exclusion;
            opacity: .2;
        }

.sec-contact {
    background: url(../images/all/bg_contact.jpg) no-repeat left center;
    background-size: cover;
    padding: 50px;
    display: flex;
    align-items: center;
    height: 400px;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
}

    .sec-contact:before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgb(229,229,229);
        background: -moz-linear-gradient(270deg, rgba(229,229,229,1) 0%, rgba(201,203,94,0) 100%);
        background: -webkit-linear-gradient(270deg, rgba(229,229,229,1) 0%, rgba(201,203,94,0) 100%);
        background: linear-gradient(270deg, rgba(229,229,229,1) 0%, rgba(201,203,94,0) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#c9cb5e",endColorstr="#c9cb5e",GradientType=1);
        z-index: 3;
    }

    .sec-contact:after {
        content: "";
        background: url(../images/all/bg_contact2.svg) no-repeat right center;
        background-size: 100% auto;
        /* width: 40%; */
        position: absolute;
        top: 0;
        right: -10%;
        bottom: 0;
        z-index: 3;
        mix-blend-mode: soft-light;
        left: 70%;
        /* transform: translateY(-50%); */
        filter: blur(1px);
    }

    .sec-contact .info {
        width: 50%;
        font-size: 25px;
        font-weight: bold;
        text-align: center;
        position: relative;
        z-index: 6;
    }

        .sec-contact .info .tt {
            font-weight: bold;
            font-size: min(max(3.5vw, 30px), 35px);
            color: var(--forth-color);
        }

        .sec-contact .info a {
            display: table;
            margin: 20px auto;
            padding: 20px 30px;
            min-width: 300px;
            border-radius: 80px;
            border: 5px solid #fff;
            border-radius: 50px;
            box-shadow: rgba(99, 99, 99, 0.2) 0px 5px 8px 0px;
        }

            .sec-contact .info a .icon {
                margin-right: 10px;
            }
/*product*/
.pro-show .l-info .sec {
    counter-reset: item;
    margin-top: 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    border-radius: 15px;
    padding: 15px;
}

    .pro-show .l-info .sec .price-list .list-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 5px 0;
    }

        .pro-show .l-info .sec .price-list .list-item .radio, .pro-show .l-info .sec .price-list .list-item .checkbox {
            margin: 0;
        }


        .pro-show .l-info .sec .price-list .list-item + .list-item {
            border-top: 1px solid #eee;
        }

        .pro-show .l-info .sec .price-list .list-item .price-box {
            flex-shrink: 0;
            color: #EB0F0F;
        }

.original-price {
    text-decoration: line-through;
}

.flex-select {
    align-items: center;
}

    .flex-select label {
        font-weight: normal;
        flex-shrink: 0;
        margin: 0;
    }

    .flex-select select {
        width: 100px;
    }

    .flex-select .select-tt {
        margin-right: 10px;
        min-width: 2em;
    }

h3.st {
    color: var(--main-color);
    /* padding: 10px; */
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: flex-end;
    margin-bottom: 20px;
}

    h3.st:after {
        content: "";
        height: 1px;
        flex-grow: 1;
        background: var(--main-color);
    }

.pro-show .l-info .sec .g-h4 small {
    color: #888;
}

.pro-show .l-info .sec .g-select + .g-select {
    margin-top: 15px;
}

.pro-show .l-info .sec .g-select h4:before {
    font-size: 16px;
    content: counter(item, decimal-leading-zero) " ";
    counter-increment: item;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--third-color);
    color: #fff;
    margin-right: 5px;
}

.pro-show .r-info .desc {
    border-top: 1px solid #ccc;
    padding: 15px 0;
    margin: 15px 0;
    border-bottom: 1px solid #ccc;
}

.search-keyword {
    background: #eee;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
}

    .search-keyword .icon {
        width: 30px;
        height: 30px;
        border-radius: 5px;
        color: var(--main-color);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-right: 10px;
        background: #fff;
    }

    .search-keyword b {
        color: var(--main-color);
    }
/*cart*/
.btn-collapse {
    text-align: left;
    padding: 5px 10px;
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    color: #7D869C;
}

    .btn-collapse:not(.collapsed), .btn-collapse:hover {
        background: #b6bfd5;
        color: #fff;
    }

    .btn-collapse.collapsed:after {
        content: "expand_more";
        font-family: 'Material Symbols Outlined';
        font-weight: 900;
        font-style: normal;
        font-size: 20px;
        line-height: 1;
        letter-spacing: normal;
        text-transform: none;
        display: inline-block;
        white-space: nowrap;
        word-wrap: normal;
        direction: ltr;
        -webkit-font-feature-settings: 'liga';
        -webkit-font-smoothing: antialiased;
    }

    .btn-collapse:not(.collapsed):after {
        content: "expand_less";
        font-family: 'Material Symbols Outlined';
        font-weight: 900;
        font-style: normal;
        font-size: 20px;
        line-height: 1;
        letter-spacing: normal;
        text-transform: none;
        display: inline-block;
        white-space: nowrap;
        word-wrap: normal;
        direction: ltr;
        -webkit-font-feature-settings: 'liga';
        -webkit-font-smoothing: antialiased;
    }

.sec-tt {
    background: #7D869C;
    padding: 15px 10px;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 20px;
}

.sec-state .sec-tt {
    background: var(--second-color);
}

.order-list .order-info ul {
    margin-bottom: 10px;
}

    .order-list .order-info ul li {
        display: flex;
        padding: 5px 0;
        justify-content: space-between;
    }

        .order-list .order-info ul li + li {
            border-top: 1px solid #ccc;
        }

        .order-list .order-info ul li a.btn-del {
            padding: 0;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 1px solid #ccc;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .order-list .order-info ul li a.btn-del i {
                line-height: 1;
            }

.order-list .list-item {
    margin-bottom: 15px;
}

.order-list .collapse-detail .detail-tt {
    font-size: 16px;
    font-weight: bold;
    color: #7d869c;
}

.g-orderDetail {
    border: 1px solid #b6bfd5;
    border-radius: 5px;
}

    .g-orderDetail .collapse-detail {
        padding: 10px;
    }

.g-cart .l-info .btn-box {
    border-top: 1px solid #ccc;
    padding-top: 15px;
}

.g-cart .g-sec .sec + .sec {
    margin-top: 40px;
}

.input-tt {
    font-weight: bold;
    margin-bottom: 5px;
}

.txt-note {
    background: #f5f5f5;
    padding: 10px;
    margin-top: 10px;
}

    .txt-note .st {
        border-bottom: 1px solid #ccc;
        padding-bottom: 5px;
        margin-bottom: 5px;
        font-weight: bold;
    }

.pay-list .btn-outline {
    padding: 5px 15px;
}

.cart.show .g-total {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.g-cart table.table tr td {
    text-align: left;
}

.cart.show .main_ex .btn-box a {
    display: table;
    margin: 20px auto;
    padding: 20px 30px;
    min-width: 300px;
    border-radius: 80px;
    border: 5px solid #fff;
    border-radius: 50px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 5px 8px 0px;
}

    .cart.show .main_ex .btn-box a .icon {
        margin-right: 10px;
    }

.side-menuLeft .g-a {
    position: relative;
}

.side-menuLeft a.btn-collapse {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: none !important;
    color: #888 !important;
}

    .side-menuLeft a.btn-collapse:hover, .side-menuLeft a.btn-collapse:focus {
        color: var(--main-color) !important;
    }

.side-menuLeft > li > .g-a > a:not(.btn-collapse) {
    text-align: left;
    margin: 5px;
    padding: 5px 15px;
    transition: all .5s ease;
    font-size: 18px;
    display: block;
    position: relative;
    font-weight: bold;
    border: 1px solid #ccc;
    border-radius: 30px;
}

    .side-menuLeft > li > .g-a > a:not(.btn-collapse):hover {
        color: #fff;
        background: var(--main-color);
        border: 1px solid var(--main-color);
    }

        .side-menuLeft > li > .g-a > a:not(.btn-collapse):hover + a {
            color: #fff;
        }

.side-menuLeft ul {
    margin-left: 10px;
}

    .side-menuLeft ul li a {
        padding: 5px 10px;
    }

        .side-menuLeft ul li a:hover {
            background: none;
        }

.faq-box.faq-show {
    background: none;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    border-radius: 5px;
    margin-bottom: 15px;
    color: inherit;
    overflow: hidden;
    border-top: 3px solid var(--third-color);
}

    .faq-box.faq-show .tt-q {
        position: relative;
        display: flex;
        align-items: baseline;
        padding: 15px;
        font-weight: bold;
        color: var(--main-color);
    }

    .faq-box.faq-show .d-ans {
        display: flex;
        padding: 15px;
        border: none;
        background: #eee;
    }
/*join*/
.sec-join .sec1 .g-join {
    justify-content: space-between;
    position: relative;
}

    .sec-join .sec1 .g-join .pic-logo {
        width: 20%;
        flex-shrink: 0;
        position: relative;
        z-index: 5;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .sec-join .sec1 .g-join .pic-logo img {
            width: 100%;
        }

    .sec-join .sec1 .g-join .l-info, .sec-join .sec1 .g-join .r-info {
        width: 50%;
    }

        .sec-join .sec1 .g-join .l-info .pic, .sec-join .sec1 .g-join .r-info .pic {
            height: 400px;
            overflow: hidden;
        }

            .sec-join .sec1 .g-join .l-info .pic img, .sec-join .sec1 .g-join .r-info .pic img {
                object-fit: cover;
                height: 100%;
                width: 100%;
            }

    .sec-join .sec1 .g-join .info {
        padding: 15px;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

        .sec-join .sec1 .g-join .info .tt {
            font-size: 20px;
            font-weight: bold;
            color: var(--main-color);
            margin-bottom: 15px;
        }

        .sec-join .sec1 .g-join .info .icon-font {
            margin-right: 5px;
            opacity: .4;
        }

.sec-join .sec2 .g-welfare .l-info {
    width: 40%;
}

.sec-join .sec2 .g-welfare .r-info {
    width: 60%;
    padding-left: 30px;
}

.sec-join .sec2 .g-welfare .preface {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.sec-join > div[class*="sec"] {
    margin-bottom: 50px
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24 !important;
}

.sec-join .sec2 .welfare-list li {
    color: var(--main-color);
    display: flex;
}

    .sec-join .sec2 .welfare-list li:before {
        content: "";
        width: 5px;
        height: 5px;
        background: var(--second-color);
        margin-right: 5px;
        display: inline-block;
        border-radius: 50%;
        flex-shrink: 0;
        position: relative;
        top: 7px;
    }

.line-list .pic {
    width: 80%;
    margin: auto;
    max-width: 180px;
}

.line-list .info {
    text-align: center;
    margin-top: 20px;
    color: var(--main-color);
}

    .line-list .info .tt {
        font-size: 18px;
        font-weight: bold;
        color: #000;
        /* border: 1px solid #000; */
        border-radius: 30px;
        display: table;
        padding: 0 20px;
        margin: 0 auto 10px;
        background: #eee;
    }

    .line-list .info .icon {
        opacity: .5;
        margin-right: 5px;
    }

    .line-list .info li + li {
        margin-top: 10px;
    }

.service-loList li .tt {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--main-color);
}

    .service-loList li .tt .icon {
        color: var(--second-color);
        margin-right: 5px;
    }

.disabled {
    pointer-events: none;
    pointer-events: none;
    opacity: .65;
}
.pro-list.row{
    display:flex;
    flex-wrap: wrap;
}
.pro-list.row div[class*="col"] {
}
.pro-list.row .list-item{
    display: flex!important;
    flex-direction: column;
    height: 100%;


}
.pro-list.row .list-item .info{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.txt-red{
    color:#ff3333;
}