@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n)

*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&family=Zen+Maru+Gothic:wght@300;400;500;700&display=swap');

.pageIndex .main_part {
    border-top: none;
}

body {
    overflow: overlay;
}

&::-webkit-scrollbar {
    background: #000;
    width: 7px;
}

&::-webkit-scrollbar-button {
    display: none;
    background: #000;
    border-radius: 0;
}

&::-webkit-scrollbar-track-piece {
    background: #000;
}

&::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #fff;
    border: 1px solid slategrey;
}

&::-webkit-scrollbar-track {
    box-shadow: transparent;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/


/*上方選單右邊設定 臉書/LINE/電話/信箱
.tp_links a:before {寬高大小設定}
.tp_links a.me_tp_fb {}
.tp_links a.me_tp_fb:before {背景換圖/建議.SVG}
.tp_links a.me_tp_line {}
.tp_links a.me_tp_line:before {背景換圖/建議.SVG}
.tp_links a.me_tp_call {}
.tp_links a.me_tp_call:before {背景換圖/建議.SVG}
.tp_links a.me_tp_mail {}
.tp_links a.me_tp_mail:before {背景換圖/建議.SVG}
*/

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*反白顏色*/
::-moz-selection {
    background-color: #444;
    color: #fff;
}

::selection {
    background-color: #444;
    color: #fff;
}


#content_main {
    background-color: #000;
}

#content {
    width: 100%;
    min-height: 80vh;
    background: url(https://pic03.eapple.com.tw/jycoat68/bg-19.jpg) no-repeat center;
    background-color: #000;
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 頁面的麵包屑 首頁/頁面名稱/ */
.path {
    display: none;
}

.i_blog_ri h5 {
    color: #b4ff00;
}

/*首頁+聯絡按鈕*/
.swiper-pagination {
    display: none;
}

.info_fix {
    display: none;
}

/*預設解除背景輪播*/
#content_main {
    margin: 0;
}

.bannerindex {
    position: static;
    height: auto;
}

.swiper-banner {
    position: static;
    margin: 0;
    height: auto;
}

.swiper-slide img {
    height: auto;
}

@media screen and (max-width: 768px) {
    .bannerindex {
        padding: 0;
        margin: 0;
    }

}

.swiper-wrapper .swiper-slide {
    background-color: #000;
}

.swiper-wrapper .swiper-slide-active:nth-child(1)::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/jycoat68/bg-39.png);
    width: 100%;
    max-width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10000;
    animation: banner-bg 2s forwards cubic-bezier(0.73, 0.08, 0.11, 0.99);
    animation-delay: 0.5s;
}

.swiper-wrapper .swiper-slide-active:nth-child(2)::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/jycoat68/bg-40.png);
    width: 100%;
    max-width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10000;
    animation: banner-bg 2s forwards cubic-bezier(0.73, 0.08, 0.11, 0.99);
    animation-delay: 0.5s;
}




.swiper-slide img {
    height: auto;
    transform: scale(1.4);
    animation: banner-img 1s forwards;
}


@keyframes banner-img {
    0% {
        opacity: 0.5;
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}


@keyframes banner-bg {
    0% {
        height: 95%;
        opacity: 0;
    }

    100% {
        height: 100%;
        opacity: 1;
    }
}




@keyframes bannerScrollAnimation {

    0%,
    100% {
        bottom: 81px;
        border-color: rgba(255, 255, 255, 0.5);
    }

    50% {
        bottom: 90px;
        border-color: #fff;
    }
}

@media screen and (max-width: 768px) {

    @keyframes bannerScrollAnimation {

        0%,
        100% {
            bottom: 10px;
            border-color: rgba(255, 255, 255, 0.5);
        }

        50% {
            bottom: 20px;
            border-color: #fff;
        }
    }

    .swiper-wrapper .swiper-slide-active:nth-child(1):before {
        width: 80%;
        max-width: 80%;
        margin: 0 auto;
        left: 50%;
        transform: translate(-50%, 0);
    }

    .swiper-wrapper .swiper-slide-active:nth-child(2):before {
        width: 80%;
        max-width: 80%;
        margin: 0 auto;
        left: 50%;
        transform: translate(-50%, 0);
    }

    .swiper-wrapper .swiper-slide-active:nth-child(1)::after {
        width: 80%;
        max-width: 80%;
        margin: 0 auto;
        background-image: url(https://pic03.eapple.com.tw/jycoat68/bg-41.png );
        background-size: contain;
        left: 50%;
        transform: translate(-50%, 0);
    }

    .swiper-wrapper .swiper-slide-active:nth-child(2)::after {
        width: 80%;
        max-width: 80%;
        margin: 0 auto;
        left: 50%;
        transform: translate(-50%, 0);
    }

}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*選單設定*/
.nav-menu {
    margin: 0;
}

.main_header_area .container {
    max-width: 80%;
}

.nav-menu>li:not(.tp_links) {
    padding-right: 15px;
}

.nav-menu>li:hover>a,
.nav-menu>li.active>a,
.nav-menu>li.focus>a {
    color: #e3c66f;
}

.nav-dropdown>li:hover>a,
.nav-dropdown>li.focus>a {
    color: #e3c66f;
}

.nav-dropdown>li {
    text-align: center;
}

.me_tp_features {
    display: none;
}

/*  */
.header_area {
    position: fixed;
    z-index: 9999;
    width: 100%;
    padding: 0px;
    background: #f0f0f000;
}

.header_area .main_header_area {
    background: transparent;
    opacity: 0;
    transition: all 0.3s;
}

.header_area.sticky .main_header_area {
    background: #0000005e;
    opacity: 1;
    transition: all 0.3s;
}

.header_area.sticky .main_header_area::before {
    box-shadow: 0px 0px 31px #ffffff82;
    width: 100%;
    transition: all 2s cubic-bezier(0.77, 0, 0.65, 0.99);

}


.header_area .main_header_area::after {
    content: "";
    display: block;
    background-color: #000000c7;
    width: 0%;
    height: 84px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 1s;
}

.header_area.sticky .main_header_area::after {
    width: 100%;
    transition: all 1s;
}

/*  */




/* 2 */
/*  */

.nav-header {
    top: 20px;
    max-width: 300px;
}

.stellarnav>ul>li>a {
    padding: 0;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 40px;
    height: 40px;
    margin: 0 15px;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    transition: all 0.1s;
}

.stellarnav>ul:hover>li>a b:nth-child(1) {
    color: #acabab;
    transition: all 0.5s;
}

.stellarnav>ul>li>a b:nth-child(2) {
    color: #fff;
    transition: all 0.3s;
}

.stellarnav>ul>li:hover>a b:nth-child(1) {
    color: #fff;
    transition: all 0.5s;
}




.stellarnav li.has-sub>a:after {
    display: none;
}

.stellarnav>ul>li::before {
    content: "";
    display: block;
    width: 100%;
    height: 150px;
    background: linear-gradient(180deg, #79ed00, transparent);
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(0px, -80px);
    opacity: 0;
    transition: all 0.3s;
}

.stellarnav>ul>li:hover:before {
    opacity: 1;
    transition: all 1s;
    animation-name: breath;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}





.navigation {
    width: 100%;
    position: relative;
    padding: 20px 0 20px 10px;
    grid-template-columns: 300px 1fr;
}




@media screen and (max-width: 768px) {
    .header_area .main_header_area {
        opacity: 1;
    }

}










/* 浮動 */
.info_fix {
    display: none;
}

/*  */


/*下拉*/

.stellarnav>ul>li.drop-left>ul {
    right: auto;
    left: 0;
}


/*  */
.stellarnav ul ul {
    background: transparent;
    border: 0;
}

.stellarnav>ul>li>ul>li {
    border: 0;
    overflow: hidden;
}

.stellarnav>ul>li>ul>li>a {
    background-color: #000000c7;
    border: none;
    padding: 15px 10px;
    color: #fff;
    text-align: left;
    font-weight: 100;
    font-size: 14px;
    transition: all 0.3s;
}

.stellarnav>ul>li>ul>li>a:hover {
    padding-left: 16px;
    color: #fff;
    transition: all 0.3s;
}

.stellarnav>ul>li>ul>li>a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #ffffff21, transparent);
    opacity: 0;
    animation: show 2s infinite;
    transition: all 0.3s;
}

.stellarnav>ul>li>ul>li>a:hover:before {
    opacity: 1;
    transition: all 0.3s;
}

@keyframes show {
    0% {
        left: -200px;
    }

    100% {
        left: 200px;
    }
}


.stellarnav li li.has-sub>a {
    padding: 15px 10px;
}


/*        */
.stellarnav>ul>li>ul>li>ul {
    border: 0;
}

.stellarnav>ul>li>ul>li>ul>li {
    border: 0;
}

.stellarnav>ul>li>ul>li>ul>li>a {
    background-color: #00000033;
    border: 1px #5B5E43 solid;
    padding: 15px 10px;
    color: #fff;
    text-align: left;
    transition: all 0.3s;
}

.stellarnav>ul>li>ul>li>ul>li>a:hover {
    padding-left: 16px;
    color: #fff;
    transition: all 0.3s;
}

@media screen and (max-width: 1440px) {
    .main_header_area .container {
        max-width: 90%;
    }

    .stellarnav>ul>li>a {
        margin: 0 15px;
    }

}

@media screen and (max-width: 1024px) {
    .nav-header {
        position: absolute;
        z-index: 123;
        top: 20px;
        left: 0;
    }

    .stellarnav ul {
        text-align: right;
    }

    .stellarnav>ul>li>a {
        margin: 0px 5px;
        font-size: 14px;
    }

    .main_header_area .container {
        max-width: 95%;
    }
}


@media screen and (max-width: 768px) {
    .nav-header {
        position: absolute;
        z-index: 1;
        top: 12px;
        left: 50%;
        transform: translate(-50%, 0);
    }

    .nav-brand {
        width: 200px;
    }

    .stellarnav .menu-toggle span.bars span {
        background: #fff;
    }

    .stellarnav .menu-toggle:after {
        color: #fff;
    }

    .me_tp_features {
        display: none;
    }

    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        background: #709f00;
        color: #fff;
    }

    .stellarnav>ul>li>a b:nth-child(2) {
        color: #709f00;
    }

    .stellarnav .icon-close:before {
        border-bottom: solid 3px #fff;
    }

    .stellarnav .icon-close:after {
        border-bottom: solid 3px #fff;
    }

    .stellarnav.mobile.right>ul,
    .stellarnav.mobile.left>ul {
        border-right: 0px #eee solid;
        background-color: #171717e0;
    }

    .stellarnav.mobile>ul>li>a {
        padding: 25px 10px;
        border: 0;
    }

    .stellarnav>ul>li:nth-last-child(1)>a {
        margin: 0 7px;
    }

    .stellarnav.mobile>ul>li>a b:nth-child(2) {
        font-size: 12px;
        vertical-align: bottom;
        letter-spacing: 2px;
    }

    .stellarnav.mobile li.open {
        background: #171717e0;
    }

    .stellarnav.mobile ul ul {
        background-color: #171717e0;
    }

    .stellarnav.mobile>ul>li {
        border-bottom: 1px #5B5E43 solid;
    }

    .stellarnav.mobile li a {
        border-bottom: 1px solid #5B5E43;
        background-color: transparent;
    }

    .stellarnav>ul>li>ul>li>a {
        background-color: #00000033;
        border: 0;
    }

    .stellarnav>ul>li>ul>li {
        border: 0;
        background-color: #00000033;
    }

    .stellarnav.mobile ul ul li {
        background-color: #171717e0;
    }

    .stellarnav.mobile li.open li.open {
        background: #171717e0;
        padding: 3px;
    }

    .stellarnav.mobile li li.has-sub a {
        padding: 10px 43px 10px 10px;
        border: 0;
    }

    .stellarnav.mobile>ul {
        border-top: 0;
    }

    .stellarnav.mobile li a {
        border-bottom: 0;
        background-color: transparent;
    }

    .stellarnav>ul>li::before {
        display: none;
    }

    .stellarnav.mobile.right>ul,
    .stellarnav.mobile.left>ul {
        max-width: 250px;
        border-top: none
    }

    .stellarnav a.dd-toggle .icon-plus:before {
        border-bottom: solid 3px #fff;
    }

    .stellarnav a.dd-toggle .icon-plus:after {
        border-bottom: solid 3px #fff;
    }

    .stellarnav.mobile>ul>li>a.dd-toggle {
        padding: 6px;
        position: absolute;
        text-align: center;
        top: 19px;
    }
}







/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*LOGO設定*/
.nav-brand img {
    margin-top: 5px;
    max-width: 100%;
}

@media screen and (max-width: 768px) {
    .nav-brand-m {
        display: block;
        text-align: left;
        padding: 15px 10px;
    }

    .nav-brand-m img {
        max-width: 200px;
        width: 100%;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*Footer*/
.footer {
    border-top: none !important;
    padding: 50px 0 0;
    background: #000;
}

.footer_menu {
    border-bottom: none !important;
}

.copy {
    background: #000;
    color: #fff;
    border: none;
}

.copy a {
    color: #fff;
}

.footer_menu a {
    transition: all 0.3s;
}

.box_link {
    display: none;
}

.footer_info {
    display: block;
}

.footer_info li p {
    color: #fff;
}

.footer_info li p a {
    color: #fff;
}

.footer_menu a:nth-child(1) {
    display: none;
}

.footer_menu a {
    display: inline-block;
    padding: 11px;
    border: 0;
    margin: 0 5px;
    font-size: 14px;
    line-height: 100%;
    color: #a1de02;
    background: transparent;
    border-bottom: 1px #a1de02 solid;
}

.footer_menu a:hover {
    background: #b2f503;
    color: #000;
}

.footer_info li p.add:before {
    content: '總店：';
}

@media screen and (max-width: 768px) {
    .footer_menu a {
        display: inline-block;
        padding: 5px 11px;
        border: 0;
        margin: 10px 5px;
        font-size: 14px;
        line-height: 100%;
        color: #fff;
        background: transparent;
        border-bottom: 1px #fff solid;
        width: 43%;
    }

    .footer_info li {
        text-align: center;
        margin: 20px;
    }

}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    padding: 0;
    height: 500px;
    background-image: url(https://pic03.eapple.com.tw/jycoat68/banE.jpg);
    width: 100%;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    animation: banner-img 1s forwards;
    padding-top: 130px;
}

.banner h5 {
    color: #fff;
    font-size: 16px;
    letter-spacing: 1.1em;
    text-indent: 1.1em;
}

.banner h5::before {
    content: "";
    display: block;
    background-size: cover;
    background-position: center;
    font-size: 30px;
    letter-spacing: 1.1em;
    text-indent: 1.1em;
    margin-bottom: 20px;
    color: #9ee203;
}

.banner.banA h5::before {
    content: "NEWS";
}

.banner.banB h5::before {
    content: "SERVICES";
}

.banner.banB h5::before {}

.banner.banC h5::before {
    content: "CONTACT";

}

.banner.banD {}

.banner.banE h5::before {
    content: "WORKS";
}

.banner.banF h5::before {
    content: "SHOP";
}

.banner.banblog h5::before {
    content: "ARTICLE";
}

@media screen and (max-width: 768px) {
    .banner {
        animation-name: banner;
        animation-duration: 96s;
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite;
    }

    .banner h5::before {
        font-size: 20px;
    }
}

@keyframes banner {
    0% {
        background-position: 0px;
    }

    50% {
        background-position: 100%;
    }

    100% {
        background-position: 0px;

    }
}

@keyframes banner-img {
    0% {
        opacity: 0.5;
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}



/*  */

/* 分頁 */
.other_select_page .promotion_title {
    display: none;
}

.other_select_page .other_promotion {
    display: none;
}

/*其他分頁*/
/*其他分頁*/
.promotion_title h2 {
    display: block;
    border-bottom: none;
    text-align: left;
    font-size: 33px;
    color: #e3c66f;
}

.promotion_title {
    padding: 13px 0;
    display: block;
}

.promotion_title span {
    border: none;
    color: #ccc;
}

.promotion_title em {
    border: none;
    padding: 2px 7px;
    margin: 0 2px 2px 0;
    color: #ccc;
}

.edit {
    word-break: break-all;
    color: #ccc;
}

/* 底下分類 */
.other_promotion li {
    font-size: 13px;
    line-height: 20px;
    color: #666;
    display: inline-block;
    vertical-align: top;
    width: 33%;
    margin: 2%;
}

.other_promotion li a {
    display: block;
    border: none;
    padding: 30px 20px;
    width: 100%;
    margin: 0;
    position: relative;
    background: #00000099;
    transition: all 0.3s;
}

.other_promotion li a:hover {
    background: #000;
    transition: all 0.3s;
}

.other_promotion li a:before {
    display: none;
}

.other_promotion li a:after {
    display: none;
}

.other_promotion .pmtTime span {
    float: left;
    font-size: 13px;
    margin-left: 0;
}

.promotion_title h2 span {
    display: none;
}

.promotion_title {
    vertical-align: middle;
    color: #6D6D6D;
}

.pmtTitle {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: #C5C5C5;
    flex-direction: column;
}

.other_promotion .pmtTitle h3 {
    font-size: 17px;
    color: #e3c66f;
    margin: 10px 0 0 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: auto;
    font-weight: normal;
}

.subalbum-menu h2 {
    display: none;
}

.copy a:hover {
    color: #abed03;
}

@media screen and (max-width: 768px) {
    .other_promotion li {
        width: 45%;
    }

}

@media screen and (max-width: 768px) {
    .other_promotion li {
        width: 45%;
    }

}










/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*購物車設定*/
/* 產品的看更多按鈕設定 */
.product_page .main_part {
    width: 100%;
    max-width: 80%;
    margin: auto;
    padding: 50px 20px;
}

.products-list .more {
    border: 0;
    color: #fff;
    position: absolute;
    top: 140px;
    left: 50%;
    transform: translate(-50%, 0px);
    padding: 10px 0;
    width: 100%;
    background: linear-gradient(90deg, transparent, #000, transparent);
    opacity: 0;
    transition: all 0.3s;
}

.products-list .item a:hover .more {
    background: linear-gradient(90deg, transparent, #000, transparent);
    color: #fff;
    letter-spacing: 2px;
    opacity: 1;
    transition: all 0.3s;
}

.product_page .show_content {
    display: flex;
    margin: auto;
    padding: 10px 10px;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.product_info_page .show_content {
    display: flex;
    margin: auto;
    padding: 0;
    flex-direction: column;
    flex-wrap: nowrap;
}

.product-layer-two {
    display: flex;
    width: 100%;
    margin: 20px auto;
    flex-direction: row;
    justify-content: center;
    flex-wrap: nowrap;
}

.products-list {
    padding: 20px 0;
    flex: 8;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.product-layer-two li {
    display: inline-block;
    margin: 10px 0;
    position: relative;
    width: 25%;
    text-align: center;
}

.product-layer-two li a {
    color: #fff;
    background: transparent;
    padding: 10px 20px;
    border: none;
    transition: all 0.3s;
    border-bottom: 1px #fff solid;
}

.product-layer-two li a::before {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(0%, -50%);
    background-color: #ffffff13;
    transition: all 0.3s;
    opacity: 0;
    transition: all 0.3s;
}

.product-layer-two li a:hover:before {
    height: 100%;
    opacity: 1;
    transition: all 0.3s;
}

.products-list .name {
    font-size: 16px;
    color: #fff;
    text-align: center;
    letter-spacing: 1px;
    margin-top: 22px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 56px;
}

.product-layer-two li.active a {
    font-weight: bold;
    background: #ffffff13;
    border: none;
    border-bottom: 1px #fff solid;
}

.products-list .item a img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.7s;
}

.products-list .item a:hover img {
    transform: translate(-50%, -50%) scale(1.1);
    transition: all 0.7s;
}

.product_page .page {
    display: none;
}

.product_main {
    width: 60%;
    margin-right: 5%;
}

ul.prod {
    width: 80%;
    margin: 0 auto;
}



@media screen and (max-width: 1024px) {
    .products-list {
        flex-wrap: wrap;
    }

    .products-list .item {
        width: 48%;
        display: inline-block;
        vertical-align: top;
        padding: 0 7px;
        margin: 0 0 14px 0;
    }

    .clearfix:before,
    .clearfix:after {
        display: none;
    }
}



@media screen and (max-width: 768px) {
    .product-layer-two li {
        width: 33%;
    }
}




/* 內頁 */
.product-wrapper {
    display: flex;
    margin: 0 auto;
    position: relative;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}

.product_info_page .main_part {
    width: 100%;
    max-width: 80%;
    margin: auto;
    padding: 50px 20px;
}

ul.prod li h3.prod-thumb {
    background: transparent;
    color: #fff;
    text-align: center;
    padding: 10px;
    border-bottom: 1px #fff solid;
    margin: 50px 0;
}

.half_box {
    width: 100%;
    float: left;
    padding-right: 10px;
}

.half_box li.btn_blankTop {
    margin-top: 10px;
}

ul.prod li {
    margin-bottom: 10px;
    color: #fff;
}

.qaform .breakF {
    color: #fff;
    border: 2px #eeeeee2b solid;
    background: #0000006b;
}

.half_box li.btn_blankTop {
    margin-top: 10px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
}

.nextaction {
    color: #fff;
    background-color: #e3c66f;
    background-position: right bottom;
    width: 49%;
    background-image: none;
    text-align: center;
}

.lastaction {
    color: #fff;
    background-color: #e3c66f;
    background-position: right top;
    width: 49%;
    background-image: none;
    text-align: center;
}

.prod_related {
    background: #00000087;
    padding: 25px 15px;
}

.related_list li a {
    display: block;
    padding: 0;
    background: #fff;
}

.related_list li a p {
    font-size: 16px;
    color: #fff;
    padding: 10px;
    margin-top: 25px;
}

.related_list li a {
    display: block;
    padding: 0;
    background: transparent;
    position: relative;
}

.prod_related h6 span:before {
    color: #fff;
}

.prod_related h6 {
    max-width: 1200px;
    margin: 20px auto 40px;
    text-align: center;
}

.lastPage {
    font-size: 16px;
    color: #fff;
    background: #e3c66f;
    padding: 10px 20px;
    display: block;
    margin: 40px auto;
    width: 130px;
    text-align: center;
}

.related_list li a::before {
    content: "";
    display: block;
    width: 0;
    height: 70px;
    border-radius: 50%;
    box-shadow: 0px 6px 25px #ffffff63;
    background-position: center;
    background-size: contain;
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 0;
    opacity: 0;
    transition: all 0.7s;
}

.related_list li a:hover:before {
    width: 90%;
    opacity: 1;
    transition: all 0.7s;
}

.product_pic .bx-wrapper .bx-viewport {
    border: 0;
    background: transparent;
}


.sidebarBtn {
    padding: 25px;
    display: inline-block;
    width: 28%;
    vertical-align: top;
    border: 2px #eeeeee2b solid;
    background: #0000007a;
    height: fit-content;
}

.sidebarBtn h2 {
    color: #e3c66f;
    font-size: 24px;
}

.sidebarBtn {
    transition: all .5s;
    color: #fff;
}

.product_info_page .related_list li a img {
    transition: all 0.3s;
}

.product_info_page .related_list li a:hover img {
    transform: scale(1.05);
    transition: all 0.3s;
}

.mobile_product_name {
    color: #fff;
}

.product_info li span {
    color: #ccc;
}

.product_info li .txt_box {
    color: #fff;
}

.radio-inline__label {
    padding: 5px 10px;
    color: #ccc;
    border: 1px solid #ccc;
}

.product_pic #bx-pager h6 {
    display: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    border: 1px #ccc solid;
    background: transparent;
    padding: 0;
}

.inquiry_a2 {
    background: transparent;
    border: 1px #ccc solid;
}














@media screen and (max-width: 768px) {

    .product-layer-two {
        display: flex;
        margin: 20px 0;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .product_page .main_part {
        width: 100%;
        max-width: 90%;
        margin: auto;
        padding: 50px 0;
    }

    .product_page .show_content {
        display: flex;
        margin: auto;
        padding: 10px 10px;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .products-list .more {
        display: none;
    }

    .product_info_page .show_content {
        display: flex;
        margin: auto;
        padding: 10px 10px;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .sidebarBtn {
        padding: 15px;
        display: inline-block;
        width: 100%;
        vertical-align: top;
        border: 2px #eeeeee2b solid;
        background: #0000007a;
    }

    .product_main {
        width: 100%;
    }

    .product_info_page .main_part {
        max-width: 90%;
        padding: 50px 0;
    }
}





/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/
.blog_back a.article_btn_back {
    background: #e3c66f;
}

.blog_le .accordion>li:hover,
.blog_le .accordion>li.on_this_category {
    background: #444 !important;
}

.share_page .edit {
    text-align: justify;
    line-height: 160%;
    color: #fff;
}

.subbox_item a {
    display: block;
}

.subbox_item {
    width: calc(100% / 1 - 3%);
}

.subbox_item a:before,
.subbox_item a:after {
    display: none;
    transition: 0.3s;
}

.blog_le .accordion>li {
    transition: all 0.3s;
}

.blog_box_edit {
    line-height: 180%;
    text-align: justify;
}

h4.blog_category_title {
    text-align: justify;
    color: #e3c66f;
}

.link a {
    width: 100%;
    display: block;
    padding: 15px 10px;
    color: #ccc;
}

.accordion li .link {
    padding: 0;
}

.blog_list_le {
    padding: 0;
    padding-bottom: 100%;
    height: 0;
    overflow: hidden;
    position: relative;
}

.blog_list_le img {
    max-width: 100%;
    min-width: 100%;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    transition: all 0.3s;
}

.subbox_item a:hover .blog_list_le img {
    transform: translate(-50%, -50%) scale(1.1);
    transition: all 0.3s;
}

.blog_box_edit {
    line-height: 150%;
    color: #fff;
}

.blog_list_ri {
    display: inline-block;
    vertical-align: top;
    padding: 20px 10px;
    background: transparent;
}

.blog_list_ri h5 {
    color: #e3c66f;
    margin-top: 10px;
    margin-bottom: 20px;
}

/* 左邊欄位 */
h5.blog_le_t {
    display: none;
}

.blog_search input[type=search] {
    outline: none;
    box-sizing: border-box;
    width: 100%;
    font-size: 14px;
    color: #ccc;
    border: 0;
    border-radius: 0;
    border-bottom: 1px #ccc solid;
    padding: 10px 35px 10px 10px;
    background: transparent;
}

.blog_search input[type=submit] {
    outline: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 999;
    width: 28px;
    height: 28px;
    border: none;
    transform: scaleX(-1);
    background-size: contain;
    transition: all 0.3s;
}

.blog_search input[type="submit"]:hover {
    transform: scaleX(-1) scale(1.1);
    border: none;
    color: #fff;
    transition: all 0.3s;
}

.blog_search input[type=search]:focus {
    color: #fff;
}

.blog_le .accordion {
    border: none;
    border-radius: 0;
}

.blog_le .accordion>li:hover .link a,
.blog_le .accordion>li.on_this_category .link a {
    color: #000 !important;
    transition: all 0.3s;
    background: #b0fd02;
}

.blog_le .accordion>li:hover .link i,
.blog_le .accordion>li.on_this_category .link i {
    color: #565656 !important;
}

.submenu {
    display: none;
    background: transparent;
    font-size: 14px;
}

.submenu a {
    display: block;
    position: relative;
    background: transparent;
    color: #565656;
    padding: 12px 12px 12px 25px;
    letter-spacing: 2px;
    transition: all 0.6s ease;
    word-break: break-all;
    line-height: 1.25;
    font-family: 'Klee One';
}

.submenu a:hover {
    background: #0000000d;
    color: #565656;
}

.submenu a:before {
    display: none;
}

.blog_le .accordion li i {
    position: absolute;
    top: 27px;
    right: 20px;
    font-size: 16px;
    color: #444;
    transition: all 0.4s ease;
}

.blog_le .accordion>li:hover.open {
    background-color: transparent !important;
}

.blog_list_ri em {
    color: #ccc;
}

.blog_list_ri p {
    color: #ccc;
}

/*文章分享變1排3個*/
.blog_page .main_part {
    max-width: 90%;
}

.blog_list_le,
.blog_list_ri {
    width: 100%;
}

.subbox_item {
    width: calc(100% / 1 - 2%);
    padding: 0;
    margin-bottom: 2%;
    background-color: #00000008;
    transition: all 0.3s;
}

.subbox_item:hover {
    transition: all 0.3s;
}

.accordion li .link a {
    color: #b0fd02;
}

.module_i_news .title_i_box h6 {
    color: #95d108;
}

.module_i_news .title_i_box h4 {
    color: #eee;
    font-size: 18px;
}

.module_i_news li a:hover:before,
.module_i_news li a:hover:after {
    display: none;
}

.animated-arrow {
    background: #b5fe00;
    color: #000000;
}

.blog_subbox {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(345px, 1fr));
    grid-gap: 20px;
}


/*相簿修改*/

.other_subalbum li a p {
    text-align: center;
    line-height: 3;
    background-color: #b3fd00;
    color: black;
}

@media screen and (max-width: 1440px) {
    .subbox_item {
        width: calc(100% / 1 - 2%);
    }

}

@media screen and (max-width: 1024px) {
    .blog_page .main_part {
        max-width: 100%;
    }
}





@media screen and (max-width: 960px) {
    .subbox_item {
        width: 100%;
        border-bottom: 0;
    }
}




@media screen and (max-width: 768px) {
    .subbox_item {
        width: 100%;
    }

    .header_area.sticky .main_header_area {
        height: 55px;
    }

    .header_area .main_header_area::after {
        height: 55px;
    }

    .blog_subbox {
        grid-template-columns: repeat(auto-fill, minmax(335px, 1fr));
    }
}

/**/

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.album_fixed_title {
    display: none;
}




@media screen and (max-width: 600px) {

    /*照片頁*/
    .pic-list .item {
        width: 96%;
        margin: 10px 2%;
    }

    .stellarnav.mobile {
        top: 10px;
    }

    .header_area.sticky .main_header_area {
        height: 55px;
    }

    .show-list {
        grid-template-columns: repeat(auto-fill, minmax(171px, 1fr));
    }

}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*聯絡我們*/
.contact_content {
    max-width: 80%;
}

.blank_letter {
    color: #afff02;
}

.list_before.info li {
    display: none;
}

.contact_content .information_left {
    width: 30%;
}

.contact_content .information_right {
    width: 69%;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*其他分頁*/
.promotion_title {
    border-bottom: 1px solid #e3c66f;
}



@media screen and (max-width: 768px) {

    /* 開啟手機板下方按鈕所需設定 */
    .footer.with_shopping_mode {
        padding: 30px 0 70px;
    }

    #to_top {
        bottom: 60px;
    }

    .nav-menu {
        margin: 0;
    }

    .nav-menu>li:not(.tp_links) {
        padding-right: 0;
    }

    .nav-dropdown>li {
        text-align: left;
    }

    .nav-dropdown>li>a {
        width: calc(100% - 45px);
    }

    /*手機版LOGO設定*/
    .footer_logo {
        margin-left: unset;
        margin: auto;
        text-align: center;
    }

    /*聯絡我們*/
    .contact_content .information_left {
        width: 100%;
    }

    .contact_content .information_right {
        width: 100%;
    }
}



.list_before {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #fff;
    display: block;
    width: 100%;
    position: relative;
}

.contact_form li .form__label {
    color: #fff;
}

.contact_form li input.noborder {
    color: #fff;
    border: 2px #eeeeee2b solid;
    background: #0000006b;
}

.contact_form li textarea.noborder {
    color: #fff;
    border: 2px #eeeeee2b solid;
    background: #0000006b;
}

.contact_form li.last cite {
    background: #b1fb00;
    color: #000000;
    border: none;
}

.list_before.info li {
    padding-left: 32px;
    color: #ccc;
}


@media screen and (max-width: 768px) {
    .contact_form li .form__label {
        width: 85px;
    }

}

@media screen and (max-width: 600px) {

    .contact_form li .form__label {
        background: rgb(177 251 0);
        color: #000000;
    }

    .blog_subbox {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }

    .module_i_news ul {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
}