﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+TC:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap');

@charset "utf-8";

:root {
    --init-about-editor-slick-ratio: 1296 /546;
}

body, html {
    font-size: 16px;
    font-family: "Montserrat", 'Noto Sans TC', "微軟正黑體", "Microsoft JhengHei", Arial, sans-serif;
}

::selection {
    background: var(--main-color) !important;
    color: var(--bs-white);
}

::-moz-selection {
    background: var(--main-color) !important;
    color: var(--bs-white);
}

img::selection {
    background: transparent;
}

img::-moz-selection {
    background: transparent;
}

.h1 {
    border-bottom: 1px solid #c4c4c4;
    padding-bottom: 10px;
    margin-bottom: 40px;
    font-size: 2rem;
}

.h2 {
    border-bottom: 1px solid #939393;
    color: #ad787b;
    text-align: center;
    padding-bottom: 10px;
    letter-spacing:0.1em;
}

    .h2 .txt-en {
        display: none;
    }

.h5 {
    color: #000000;
}

    .h5 .sub-txt {
        color: #9c8949;
    }

img {
    transition: all 0.5s;
}

a:hover {
    color: var(--main-color);
}


.btn.btn-primary {
    background: var(--main-color);
    border-color: unset;
    font-size: 14px;
    padding: 3px 20px;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    color: #fff;
    z-index: 2;
}

    .btn.btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
        background: #0000002e;
        transition: -webkit-clip-path 0.64s cubic-bezier(0.57, 0, 0, 0.99);
        transition: clip-path 0.64s cubic-bezier(0.57, 0, 0, 0.99);
        transition: clip-path 0.64s cubic-bezier(0.57, 0, 0, 0.99), -webkit-clip-path 0.64s cubic-bezier(0.57, 0, 0, 0.99);
        transition: clip-path 0.64s cubic-bezier(0.57, 0, 0, 0.99), -webkit-clip-path 0.64s cubic-bezier(0.57, 0, 0, 0.99);
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 140%, 0% 100%);
        clip-path: polygon(0 0, 100% 0, 100% 140%, 0% 100%);
        z-index: -1;
    }

    .btn.btn-primary:hover,
    .btn.btn-secondary:hover{
        background: var(--second-color);
        color: #fff;
        /* font-size: 16px; */
    }

        .btn.btn-primary:hover::before {
            -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        }

    .btn.btn-primary.focus,
    .btn.btn-primary:focus,
    .btn.btn-primary:not(:disabled):not(.disabled).active:focus,
    .btn.btn-primary:not(:disabled):not(.disabled):active:focus,
    .show > .btn.btn-primary.dropdown-toggle:focus {
        background: var(--main-color);
        border-color: var(--main-color);
    }

.btn.btn-secondary {
    background: var(--main-color);
    border-radius: 0;
}



.btn.btn-light, .btn.btn-dark {
    padding: 8px 25px 8px;
}

    .btn.btn-dark:hover,
    .btn.btn-light:hover {
        background-color: #b9c89d;
    }

.btn.btn-dark {
    background: #b8b8b8;
}

.btn.btn-light {
    background: #1c1c1c;
}

.btn-info {
    background-color: #dadada;
    font-size: 14px;
}

    .btn-info:hover {
        background-color: #ffe9ea;
        border-color: #ffe9ea;
    }

.btn.cover:before {
    /*background-color: var(--main-color);*/
}

.btn.cover.bottom:before {
    top: 0;
    bottom: 0;
}

.btn.more {
    background: var(--bs-white);
    border: 1px solid currentcolor;
    font-size: 14px;
    color: #000;
    display: table;
    padding: 9px 95px 9px 18px;
    position: relative;
    overflow: hidden;
}

    .btn.more:hover {
        color: #fff;
    }

    .btn.more:after {
        content: " ";
        display: block;
        position: absolute;
        width: 27px;
        height: 9px;
        right: 14px;
        top: 12px;
        background: url(../images/all/more.svg)no-repeat;
        transition: all 0.5s;
        z-index: 10;
    }

    .btn.more:hover:after {
        transform: translateX(150%);
    }

.btn.btn-txt {
    font-size: 0.875rem;
    color: #2d2d2d;
}

    .btn.btn-txt:hover {
        color: #9c8949;
    }

.btn-check:checked + .btn-info,
.btn-check:active + .btn-info,
.btn-info:active, .btn-info.active,
.show > .btn-info.dropdown-toggle {
    background-color: #b9c89d;
    border-color: #b9c89d;
}

.object-fit-contain,
.object-fit-cover {
    width: 100%;
    height: 100% !important;
    object-position: center;
}

.object-fit-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
}

.object-fit-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
}

.slickfixedInitPosition .slider {
    display: none;
}

    .slickfixedInitPosition .slider.slick-initialized {
        display: block;
    }

body.home .home_about .slickfixedInitPosition {
    aspect-ratio: var(--init-about-editor-slick-ratio);
}

/* header */
.header .navbar {
    padding: 0 10px;
    border-bottom: none;
}

    .header .navbar .nav-brand-wrapper {
        position: relative;
        z-index: 10;
    }

    .header .navbar .navbar-brand {
        display: block;
        /* background: url(../images/all/logos.png) no-repeat center; */
        background-size: contain;
        width: 207px;
        height: 66px;
        transition: all 0.3s ease;
        margin: 10px 0;
    }

        .header .navbar .navbar-brand img {
            width: 100%;
            height: auto;
        }

    .header .navbar .navbar-collapse > .navbar-nav {
        position: relative;
        padding: 0;
    }

.header .nav-item.dropdown > .navbar-nav {
    width: 160px;
}

.header .btn-group.lang > .btn {
    font-size: 1rem;
    padding: .2em .75em;
}

.header .btn-group.lang .dropdown-item {
    text-align: center;
    /*background-color: #505050;*/
    color: var(--bs-dark);
    padding: .5em;
}

    .header .btn-group.lang .dropdown-item:hover {
        background-color: var(--main-color);
    }

.header .navbar-nav .nav-link {
    padding: 20px 15px;
    color: var(--bs-dark);
    position: relative;
}

.header .navbar-nav .nav-item:hover > .nav-link {
    color: var(--main-color);
}

.header .navbar-nav .nav-item .caret {
    border-top-color:currentColor;
}

.nav-item.dropdown.dropdown-left .navbar-nav .nav-item:hover .nav-link.trigger:before {
    border-left-color: #fff;
}

.nav-item.dropdown.fadeup > .navbar-nav.in li a {
    color: #000;
}

.nav-item.dropdown.fadeup > .navbar-nav.in li:hover > a {
    background-color: var(--main-color);
    color: var(--bs-white);
}

.nav-item.dropdown.fadeup > .navbar-nav.in li a:hover {
    background-color: var(--main-color);
    color: var(--bs-white);
}

.nav-item.dropdown > .navbar-nav .nav-item:hover a:before {
    color: #fff;
}

.bsnav .navbar-nav .nav-item.active > .nav-link,
.bsnav .navbar-nav .nav-item:active:focus > .nav-link,
.bsnav .navbar-nav .nav-item:active > .nav-link,
.bsnav .navbar-nav .nav-item:focus > .nav-link,
.navbar-nav .nav-item.active > .nav-link,
.navbar-nav .nav-item:active:focus > .nav-link,
.navbar-nav .nav-item:active > .nav-link,
.navbar-nav .nav-item:focus > .nav-link
.navbar-nav .nav-item:hover > .nav-link {
    color: var(--main-color);
}

.navbar-toggler .navbar-toggler-icon, .navbar-toggler .navbar-toggler-icon::after, .navbar-toggler .navbar-toggler-icon::before {
    background-color: var(--bs-dark);
    height: 1px;
}

.bsnav-mobile.right {
    top: 66px;
}

    .bsnav-mobile.right .bsnav-mobile-overlay {
        top: 66px;
    }

    .bsnav-mobile.right .navbar {
        padding: 0;
        justify-content: flex-start;
    }

        .bsnav-mobile.right .navbar .navbar-brand {
            display: none;
        }

    .bsnav-mobile.right .navbar-nav {
        padding: 0;
    }

        .bsnav-mobile.right .navbar-nav .nav-item .nav-link {
            padding: 12px 15px;
            text-align: left;
            font-size: 1rem;
        }

        .bsnav-mobile.right .navbar-nav .nav-item .navbar-nav {
            margin-left: 0;
            margin-right: 0;
        }

            .bsnav-mobile.right .navbar-nav .nav-item .navbar-nav .nav-item .nav-link {
                padding: 10px 18px;
                font-size: .9375rem;
            }


/* banner */
.banner .banner-wrapbox {
    position: relative;
}

.banner-ani-zoom {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
}

body.home .banner .slick-current {
    -webkit-animation-name: csszoomIn;
    -webkit-animation-duration: 6s;
}

@-moz-keyframes csszoomIn {
    0% {
        -moz-transform: scale(1.2);
        transform: scale(1.2);
    }

    70% {
        -moz-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes csszoomIn {
    0% {
        -moz-transform: scale(1.2);
        transform: scale(1.2);
    }

    70% {
        -moz-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes csszoomIn {
    0% {
        -moz-transform: scale(1.2);
        transform: scale(1.2);
    }

    70% {
        -moz-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

.banner .slick .slick-dots .slick-active button {
    background: #a1b57b;
}

.banner .slick .slick-dots button {
    background: #fff;
}

.banner .slick-dots {
    bottom: 10px;
    z-index: 100;
}

.banner {
    position: relative;
}

/* footer */
.footer {
    position: relative;
    padding-top: 40px;
}

    .footer .foo-sit {
        padding-top: 20px;
    }

    .footer .footer_logo {
        width: 100%;
        max-width: 120px;
    }

    .footer .footer-info .fo_tix {
        display: none;
    }

    .footer .powered {
        text-align: right;
    }

        .footer .powered a {
            font-weight: 400;
        }

    .footer .new_flower4 {
        position: absolute;
        left: 0;
        top: 94px;
    }

    .footer .footer_right {
        width: 70%;
    }

    .footer .footer_left {
        width: 30%;
    }

        .footer .footer_left ul {
            line-height: 32px;
        }

            .footer .footer_left ul li a {
                color: #fff;
            }

        .footer .footer_left .social-box ul li {
            position: relative;
            overflow: hidden;
        }

            .footer .footer_left .social-box ul li a {
                color: #fff;
                background-color: #d8d9d8;
                border-radius: 50%;
                width: 39px;
                height: 39px;
                display: block;
                text-align: center;
            }

                .footer .footer_left .social-box ul li a:hover {
                    background-color: #b1a270;
                }

                .footer .footer_left .social-box ul li a::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    display: block;
                    width: 100%;
                    height: 100%;
                    border-radius: 50%;
                    background: #000 2e;
                    transition: -webkit-clip-path 0.64s cubic-bezier(0.57, 0, 0, 0.99);
                    transition: clip-path 0.64s cubic-bezier(0.57, 0, 0, 0.99);
                    transition: clip-path 0.64s cubic-bezier(0.57, 0, 0, 0.99), -webkit-clip-path 0.64s cubic-bezier(0.57, 0, 0, 0.99);
                    transition: clip-path 0.64s cubic-bezier(0.57, 0, 0, 0.99), -webkit-clip-path 0.64s cubic-bezier(0.57, 0, 0, 0.99);
                    -webkit-clip-path: polygon(0 0, 100% 0, 100% 140%, 0% 100%);
                    clip-path: polygon(0 0, 100% 0, 100% 140%, 0% 100%);
                }

            .footer .footer_left .social-box ul li:hover a::before {
                -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            }

            .footer .footer_left .social-box ul li:hover img {
                -webkit-filter: sepia(1);
            }

        .footer .footer_left label {
            color: #b1a270;
            font-family: "Myriad Pro";
        }

    .footer .social-box a {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.125rem;
        background: var(--bs-dark);
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--bs-white);
        border-radius: 50%;
        border: 1px solid var(--bs-dark);
    }

        .footer .social-box a:hover,
        .footer .social-box a:focus,
        .footer .social-box a:active {
            background: var(--bs-white);
            color: var(--bs-dark);
        }

    .footer .fot_sitemp .d-flex {
        justify-content: center;
    }

    .footer .fot_sitemp ul li a {
        position: relative;
        font-size: 0.8125rem;
        color: #9f9d9d;
        padding: 0px 0 0px 10px;
        transition: all 0.9s ease;
    }

        .footer .fot_sitemp ul li a:hover {
            color: #b1a270;
        }

        .footer .fot_sitemp ul li a:before {
            content: " ";
            display: block;
            position: absolute;
            background-color: #9f9d9d;
            left: 0;
            top: 16px;
            width: 7px;
            height: 1px;
        }

    .footer .copyrights {
        text-align: right;
    }

    .footer .tep1 {
        width: 20%;
    }

        .footer .tep1:last-child {
            width: 10%;
        }

    .footer .footer_content {
        background: #2c2f30;
    }

        .footer .footer_content.fc_seperate_bottom {
            padding: 47px 0 0;
        }

            .footer .footer_content.fc_seperate_bottom .footer-bottom {
                background: #fff;
                margin-top: 80px;
            }

    .footer a:hover {
        color: #a8b590;
    }

    .footer h4,
    .footer a.ti_p {
        color: #fff;
        font-size: 0.875rem;
        display: table;
        position: relative;
    }

    .footer a.ti_p {
        padding: 2px 0;
    }

        .footer a.ti_p::before {
            position: absolute;
            right: 0;
            bottom: 8px;
            left: auto;
            width: 0;
            height: 1px;
            content: "";
            background-color: #fff;
            transition: width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
        }

        .footer a.ti_p:hover::before {
            right: auto;
            left: 0;
            width: 100%;
        }

    .footer.thcol-st .footer-info {
        gap: 20px 40px;
    }

        .footer.thcol-st .footer-info .footer_left,
        .footer.thcol-st .footer-info .footer_right {
            flex: 0 0 auto;
            width: auto;
        }

        .footer.thcol-st .footer-info .footer_right {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-end;
        }

        .footer.thcol-st .footer-info .footer_mid {
            flex: 1 0 auto;
            width: auto;
        }

    .footer.thcol-st .nav.tat_x {
        margin-top: 0;
        flex-direction: column;
        font-size: .9375rem;
    }

        .footer.thcol-st .nav.tat_x li {
            margin-bottom: 8px;
        }

            .footer.thcol-st .nav.tat_x li label {
                font-weight: 400;
                opacity: .75;
            }

                .footer.thcol-st .nav.tat_x li label:after {
                    content: '/';
                    margin: 0 5px;
                }

    .footer.thcol-st .editor {
        padding: 0;
        font-size: 1rem;
        line-height: 1.5em;
    }

    .footer.thcol-st .powered {
        padding: 25px 0;
    }

        .footer.thcol-st .powered .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 10px 15px;
        }

.rwd-table.mob-mode th {
    background: #0071bb;
}

.rwd-table a {
    color: #000000;
}

    .rwd-table a:hover {
        color: #36bcbf;
    }

.container .ezshare-box {
    margin: 0px 0 30px 0;
}

.breadcrumb:before {
    content: " ";
    display: block;
    position: absolute;
    background-color: #daa6a9;
    left: -999px;
    right: -999px;
    top: 0;
    bottom: 0;
    z-index: -1;
}

.breadcrumb li,
.breadcrumb li a {
    color: #fff;
}

    .breadcrumb li a .txt-en {
        display: none;
    }

.breadcrumb-item + .breadcrumb-item::before {
    color: #ffffff;
}

.breadcrumb {
    position: relative;
    background: unset;
    font-size: 14px;
    margin: 0 auto;
    padding-left: 0;
}

/* SIDE */
.side .wid {
    padding:12px;
    border:1px solid #cfcfcf;
}
.side:empty {
    display: none;
}

.side .collapse.navbar-collapse {
    margin-top: 0;
}

.side .filter-content > ul {
    line-height: 29px;
    padding: 2px 6px;
}

.side .filter-content ul li {
    position: relative;
    padding-left: 15px;
}

.side .filter-content > ul li:before {
    content: " ";
    display: block;
    position: absolute;
    background-color: #f01c28;
    left: 0;
    top: 14px;
    width: 7px;
    height: 2px;
}

.side .filter-content, .side .filter-sidebar.multiple-collapse .collapse-content {
    border: none;
}

.side .filter-title .collapsed-btn:hover,
.side .filter-sidebar.multiple-collapse .collapsed-btn:hover {
    color:#000;
}

.side .filter-title .collapsed-btn,
.side .filter-sidebar.multiple-collapse .collapsed-btn{
    padding: 5px 7px;
    background: #fdf0f0 !important;
    border: none;
    color: #e0363e;
    font-size: 1rem;
}


.side .h3 {
    display:none;
    color: #040404;
    padding-bottom: 6px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    padding: 0px 0 10px;
    border-bottom: 1px solid #ccc;
}

    .side .h3 .txt-en {
        display: block !important;
        text-align: left;
        font-size: .75rem;
        color: #000;
        margin-bottom: 0;
    }

    .side .h3 .txt-tw {
        font-size: 1em;
        display: block;
        padding: 0px;
        border: 0;
        text-align: left;
        color: var(--main-color);
        font-weight: 500;
    }

.gotop a:hover {
    color: var(--main-color);
    background: var(--second-color);
}

/*----------------------- 會員專區 -----------------------*/
.form-group .notice {
    padding-right: 4px;
}

.modify .form-check-input,
.register .form-check-input {
    border: none;
    margin-top: 0;
}

.frame-small-box {
    width: 50%;
    background-color: #fff;
    border: 1px solid #b8b8b8;
    padding: 50px;
    border-top: 5px solid #9c8949;
}

.flex-item {
    margin-bottom: 15px;
}

.side .navbar-nav .dropdown-menu li.nav-title a {
    background: #212121;
    color: #fafafa;
}

    .side .navbar-nav .dropdown-menu li.nav-title a:hover {
        background-color: #0071bb;
    }

.member-function-box .item > a .info {
    color: #000;
}

.member-function-box .item > a:hover .info {
    color: #fff;
}

.member-function-box .item > a {
    color: #0071bb;
    background-color: #fff;
    padding: 32px 15px;
    -moz-box-shadow: 0px 0px 5px #5FD4F8;
    -webkit-box-shadow: 0px 0px 5px #5fd4f8;
    box-shadow: 0px 0px 5px #5fd4f8;
    border-radius: 15px;
}

    .member-function-box .item > a:hover {
        background: #0071bb;
        color: #fff;
    }

/* faq */
.accordion-list .accordion-list-header .btn-link:hover {
    color: #b9c89d;
}

.accordion-list .accordion-list-cont {
    background: #ffffff;
}

.accordion-list .st.st-a {
    color: #000;
}

.accordion-list .st {
    left: 12px;
    top: 12px;
    font-size: 20px;
    color: #ffffff;
}

.accordion-list .accordion-list-header .btn-link {
    padding: 15px 10px 15px 35px;
    color: #fff;
    border: none;
    background-color: #434343;
    border-radius: 0;
}


/* 聯絡我們 */
.contact .btn {
    padding: 12px ;
}

.contact .radio-inline label {
    margin: 0 12px 0 5px;
}

.list-creative > li {
    padding: 20px 0;
}

.list-creative .list-terms:before {
    width: 3px;
    background: #515151;
}

.list-creative > li:nth-child(2n) .list-terms:before {
    background: #cecece;
}

/*.contact h3 {
    text-align: center;
    border-bottom: 0;
}

    .contact h3 .txt-tw {
       
        font-size: 18px;
        padding-bottom: 10px;
        font-weight: 500;
    }

    .contact h3 .txt-en {
        font-size: 2.1875rem;
        color: #000;
        font-style: italic;
        display: table;
        margin: 0 auto 0;
        padding-bottom: 0;
        position: relative;
    }*/

.contact h3.h1 {
    position: relative;
    line-height: 1.2;
    padding-bottom: 10px;
    margin-bottom: 60px !important;
    border-bottom: 1px solid #939393;
    color: #000000;
    font-size: 1.625rem;
}
.contact h3.h1 .txt-en {
    display: none;
}
/*
    .contact h3:before {
        content: " ";
        display: block;
        position: absolute;
        background-color: #000;
        width: 25px;
        height: 1px;
        left: 0;
        right: 0;
        bottom: 0;
        margin: 0 auto;
    }*/

.contact .info-area .h5 {
    margin-bottom: 20px !important;
    background: url(../images/all/icon-01.svg) top -3px left 0px no-repeat;
    padding: 10px 0 10px 70px;
    font-size: 28px;
}
.list-creative a i {
    margin-right: 7px;
}
.list-creative a {

    font-size: 16px;
}
/* 產品 */
.badge {
    padding: 8px 11px;
}
.function-bar .display-mode .btn-mode {
    color: #aa3138;
}

.anchor-title.scroll-to-fixed-fixed {
    background: #393939;
}

    .anchor-title.scroll-to-fixed-fixed a {
        color: #fff;
    }


.product .product-info-area {
    font-size: 1em;
}
.anchor-title a:hover,
.anchor-title ul li:first-child a {
    color: #e0363e;
}

.product-info-area .item.price .cont {
    color: #e0363e;
    font-family: "Shippori Mincho", serif;
}

.gallery-list.cover.hov-cart .btn-box .btn {
    background: #ffc7ca;
}

.product .gallery-list .item .info {
    padding: 0;
}

.product .gallery-list.border-solid .item .item-detail {
    border: none;
}

.product .gallery-list .item .title {
    font-size: 1rem;
    text-align: center;
    margin: 25px 0 15px 0;
}

.product .info .justify-content-center {
    /*justify-content: unset !important;*/
    text-align: center;
}

.product .gallery-list p.price {
    font-size: 1.1rem;
    color: #e0363e;
    margin-top: 10px;
    font-family: 'Shippori Mincho', serif;
}
.tab-area .tab-title a {
    border-radius: 0;
}
.tab-area ul li a.nav-link {
    color: #666;
}

/* 最新消息 */
body.news .tag {
    background: #fff5ef;
    color:#666;
    margin:0;
}
.show .page-item a.page-link {
    background-color: #fff;
    border: 1px solid;
    display: table;
    margin: 0 auto;
    padding: 12px 90px;
    color: #000;
    letter-spacing: 1px;
    position: relative;
}

    .show .page-item a.page-link:hover {
        background-color: var(--second-color);
        color: var(--main-color);
    }

.small-title {
    color: #8d8d8d;
}

.item:hover .pic img {
    transform: scale(1);
    opacity: 0.7;
}
body.news .main-content,
body.contact .main {
    margin-top: 60px;
}
body.news .main {
    padding-bottom: 60px;
}
.article-list .item a {
    padding: 15px 10px;
}

.article-grid.ar-img .item .info .desc, .article-grid.ar-img .item .info .title, .article-grid.ar-img .item .info .desc a, .article-grid.ar-img .item .info .title a {
    font-weight: bold;
    font-size: 1rem;
}

.article-grid .item .info {
    border: none;
    padding: 0;
}

.article-grid.ar-img .item .info {
    padding: 12px;
    background: #f2f2f2;
}
.article-grid .item .info .kind a {
    font-size: 14px;
    padding: 5px 10px;
    background: unset;
    color: #737373;
    border: 1px solid;
    margin-bottom: 10px;
}
.page-link {
    color: var(--main-color);
    border-color: currentColor;
}

    .page-link:hover, .page-item.active .page-link {
        background: var(--second-color);
        color:#fff;
        border-color: var(--second-color);
    }
.page-item:first-child .page-link, .page-item:last-child .page-link {
    padding-top:9px;
}
.dropdown-toggle::after {
    display: none;
}

.gallery-list .item .pic {
    overflow: hidden;
}

.gallery-list .item:hover .pic img {
    opacity: 0.7;
    transform: scale(1);
}


.article-grid.info-absolute .item a {
    color: #000;
    font-weight: bold;
}

.article-grid.info-absolute .item .info .date {
    color: #257830;
    font-size: 0.75rem;
    padding-top: 5px;
}

.article-grid.info-absolute .item .info {
    text-align: left;
    padding-top: 18px;
}

.article-grid.info-absolute .item:hover .pic img {
    opacity: 0.7;
}

.news-sec {
    margin: 30px 0;
    position: relative;
    padding-bottom: 50px
}

    .news-sec .new_flower {
        position: absolute;
        right: 0;
        top: -50px;
    }

    .news-sec .new_flower2 {
        position: absolute;
        left: 0;
        bottom: -290px;
        top: unset;
    }

/*首頁*/
.home .main {
    display: none;
}

.home .sec,
.home .section {
    padding: 100px 0;
    position: relative;
}

    .home .sec .h3, .home .section .h3 {
        display: table;
        margin: 0 auto;
        font-size: 1.5rem;
        color: #000;
        letter-spacing: 2px;
        position: relative;
        font-weight: normal;
        padding-bottom: 10px;
        margin-bottom: 1em;
    }

        .home .sec .h3:before, .home .section .h3:before {
            content: " ";
            display: block;
            position: absolute;
            height: 1px;
            right: 0;
            left: 0;
            bottom: 0;
            z-index: 1;
            background-image: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(173, 120, 123, 0.5), var(--main-color));
        }

        .home .sec .h3:after, .home .section .h3:after {
            content: " ";
            display: block;
            position: absolute;
            height: 1px;
            width: 57%;
            right: 0;
            bottom: 0;
            z-index: 10;
        }

.home .wid.wid-page_unit > .title {
    display: none;
}

/*首頁_花*/
body.home .home_link::after {
    content: '';
    position: absolute;
    display: block;
    background: url(../images/all/flower.png) no-repeat;
    right: -50px;
    top: -20%;
    width: 364px;
    height: 310px;
    transform: scale(0.75);
    z-index: 10;
}
body.home .home_about::before {
    content: '';
    position: absolute;
    display: block;
    background: url(../images/all/flower2.png) no-repeat;
	background-size:contain;
    left:0;
    top: -160px;
    width: 211px;
    height: 410px;
    /*transform: scale(0.75);*/
    z-index: 10;
}

/*花 end*/

.new_flower {
    position: absolute;
    right: -2%;
    top: -50px;
    z-index: 10;
    width: 18.2vw;
    max-width: 364px;
    pointer-events: none;
}

.new_flower.new_flower2 {
	left: 0;
	right: unset;
	top: -34%;
	z-index: 30;
	width: 10.55vw;
	max-width: 211px;
}

.new_flower.new_flower2 img {
	margin: 0;
}

.new_flower.new_flower3 {
	right: 0;
	bottom: -150px;
	top: unset;
	z-index: 100;
	width: 4.25vw;
	max-width: 85px;
}

.director_c {
    position: relative;
    padding: 5% 0 3%;
}

.director_c .tit {
	position: relative;
	padding-left: 2%;
}

.director_c .tit p {
	font-size: 0.875rem;
	text-align: center;
	padding-top: 20px;
	margin-bottom: 0;
	line-height: 22px;
	color: #000;
}

.director_c .tit p span {
	display: block;
}

.director_c .tit p.tx_t {
	position: absolute;
	writing-mode: vertical-lr;
	text-orientation: mixed;
	left: 0;
	top: 56px;
	font-size: 0.75rem;
	letter-spacing: 2px;
	line-height: 32px;
}

.director_c .tit h4 {
	font-size: 1rem;
	color: #000;
	font-weight: bold;
	position: relative;
	padding-left: 78px;
	margin-bottom: 15px;
}

.director_c .tit h4 span {
	position: absolute;
	left: 23px;
	top: -12px;
	font-family: 'Gentium Book Plus', serif;
	font-size: 1.4375rem;
	font-weight: 100;
	padding-left: 5px;
}

.director_c .tit h4 span:before {
	content: " ";
	display: block;
	position: absolute;
	background: url(../images/all/round.svg) no-repeat;
	left: -23px;
	top: -19px;
	width: 66px;
	height: 67px;
}

.director_c .tit:hover p.tx_t {
	color: #666;
}

.home_link {
    position: relative;
}

.home_link + .home_news {
	padding-top: 0 !important;
}

.home_link .slick {
	--slick-gap: 5px;
	margin-left: calc(var(--slick-gap)* -1);
	margin-right: calc(var(--slick-gap)* -1);
	display: flex;
	justify-content: space-between;
	flex-wrap:wrap;

}

.home_link .slick .slick-dots {
	bottom: -40px;
}

.home_link .slick .list_item {
	padding: 0 var(--slick-gap);
	margin: 0;
	width: 25%;
}
.home_link .slick .list_item > a {
	display: block;
	position: relative;
}

.home_link .slick .list_item .pic {
	border-radius: 15px;
	background: var(--bs-dark);
	overflow: hidden;
}

.home_link .slick .list_item .pic img {
	transform: scale(1);
	transition: 1.25s;
	opacity: .5;
}

.home_link .slick .list_item .info {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	z-index: 10;
	transform: translateY(-50%) scale(1);
	transition: all ease .5s;
}

.home_link .slick .list_item .info p.title {
	font-size: 20px;
	color: #fff;
	display: table;
	margin: 0 auto;
	border-bottom: 1px solid #fff;
	padding-bottom: 10px;
}

.home_link .slick .list_item:hover .pic img {
   
	filter: blur(2px);
	transform: scale(1.25);
}

.home_link .slick .list_item:hover .info {
	transform: translateY(-50%) scale(0);
}

.home_link .slick .list_item .info:before {
	display: none;
}

.home_about {
    position: relative;
    z-index: 10;
    background: url(../images/home/about_bg.jpg)no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.home .home_about .h3 {
    color: var(--bs-white);
    text-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.home .home_about .btn.more {
    margin: 40px auto 0;
    background: transparent;
    border-color: currentColor;
    color: var(--bs-white);
    text-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.home .home_about .btn.more:after {
	filter: invert(1);
}
.home_about .editor {
    color: #fff;
}
.home .home_about .wid-page_unit {
    max-width: 47em;
    margin: 0 auto;
    color: var(--bs-white);
    text-shadow: 0 0 10px rgba(0,0,0,0.2);
    text-align: center;
}

.home_news .ser_right .news {
    padding: 25px 0 25px 50px !important;
}

.home_news .ser_right .news .h3 {
	display: block;
	text-align: start;
}
.home_news .ser_right .news .article-list .item a {
	padding: 14px 5px;
}
.home_news .ser_left .new_left .pic {
    position: relative;
}

.home_news .ser_left .new_left .yellow_right.aos-animate:before {
    bottom: -20px;
}

.home_news .ser_left .new_left .yellow_right:before {
    content: " ";
    display: block;
    position: absolute;
    background-image: linear-gradient(rgba(255,255,255,1),rgba(173,120,123,0.5),var(--main-color));
    width: 1px;
    top: 0;
    transition: all 1s ease;
    right: 35px;
    bottom: 500px;
    z-index: -1;
}

.home_news .ser_left .new_left .yellow_left.aos-animate:before {
    top: 20px;
}

.home_news .ser_left .new_left .yellow_left:before {
    content: " ";
    display: block;
    position: absolute;
    background-image: linear-gradient(to top,rgba(255,255,255,1),rgba(173,120,123,0.5),var(--main-color));
    width: 1px;
    top: 500px;
    transition: all 1s ease;
    left: -35px;
    bottom: -20px;
    z-index: -1;
}

.home_news .ser_left .new_left .yellow_top.aos-animate:before {
    left: -35px;
}

.home_news .ser_left .new_left .yellow_top:before {
    content: " ";
    display: block;
    position: absolute;
    background-image: linear-gradient(to left,rgba(255,255,255,1),rgba(173,120,123,0.5),var(--main-color));
    height: 1px;
    top: 20px;
    right: 35px;
    transition: all 1s ease;
    left: 0;
    z-index: -1;
}

.home_news .ser_left .new_left .yellow_bottom.aos-animate:before {
    left: -35px;
}

.home_news .ser_left .new_left .yellow_bottom:before {
    content: " ";
    display: block;
    position: absolute;
    background-image: linear-gradient(to left,rgba(255,255,255,1),rgba(173,120,123,0.5),var(--main-color));
    height: 1px;
    bottom: -20px;
    right: 35px;
    transition: all 2s ease;
    left: 500px;
    z-index: -1;
}
.article-list .item .icon .fas {
    color: #ad787b;
}

.se_abt .btn.more {
    background-color: #fff0;
    border: 1px solid #fff;
    color: #fff;
}

.se_abt .h3:before {
    display: none;
}


.se_prod {
    margin: 40px 0 0;
    padding-bottom: 100px;
    position: relative;
}

.se_prod .h3 {
	margin: 0 auto 40px;
}


.se_prod .gallery-list .item .title {
	text-align: left;
	margin-bottom: 0;
	margin-top: 3px;
}


.se_prod .gallery-list p.price label {
	color: #585d4e;
}

.se_prod .gallery-list p.price {
	color: #000;
	font-size: 0.875rem;
	text-align: left;
	margin-top: 0;
}

.se_prod .new_flower3 {
	position: absolute;
	right: 0;
	top: -108px;
}


.is_scroll .navbar {
	background: rgb(255 255 255);
	border-color: #ccc;
  }
.home .section.environment {
    padding: 0;
}
.home .section.environment .list_item .pic {
    border-radius: 15px;
}
.wid-float-section ul li.icon_l {
    background: #00ab44;
    color: #fff;
}
.wid-float-section ul li.icon_l a:hover, .wid-float-section ul li.icon_l a,.wid-float-section ul li.icon_l a .icon {
    color:#fff;
}

/*about*/
.about_box{
	position:relative;
	display: block;
}
.about_flex{
	display:flex;
	position:relative;
	flex-direction: row; 
	justify-content: space-between;
	align-items: flex-end;
}
.about_flex02{
	display:flex;
	position:relative;
	flex-direction: row; 
	justify-content: space-between;
	align-items: center;
	margin-top:30px;
}
.about_title{
	font-size:30px;
	line-height:46px;
	color:#973f44;
	display:block;
	margin-bottom:10px;
	letter-spacing:0.08em;
	font-weight:300;
}
.about_word{
	font-size:16px;
	line-height:30px;
	color:#666;
	font-weight:300;
	letter-spacing:0.05em;
	margin-bottom:30px;
}
.about_pic{
	display:block;
	position:relative;
	margin:0 auto;
}
.about_pic img{
	width:100%;
}
.about_pic02{
	width: 42%;
    margin-right: 30px;
    display: block;
    position: relative;
}
.red_word{
	display:block;
	color:#de767a;
}
	