@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/* "Noto Sans TC" */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&display=swap');
/* "Noto Serif TC" */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');


/* 英文字體 Cardo */
@import url('https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&display=swap');
/* 英文字體 Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


/*網站全域設定/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
:root {
    /* --Color: #1c3459; */
    --MainColor: #465169;
    /*網站主要色系*/
    --SubColor: #1f263a;
    /*網站文字色*/
    --SubColor1: #383b4e;
    /*網站輔助色系1*/
    --SubColor2: #7d91a6;
    /*網站輔助色系2*/
    --SubColor3: #a1b1cb;
    /*網站輔助色系3*/
    --SubColor4: #c5d0e2;
    /*網站輔助色系4*/
    --SubColor5: #eee;
    /*網站輔助色系5*/
    --SubColor6: #181818;
    /*網站輔助色系6*/
    --SubColor7: #8C8C91;
    /*網站輔助色系7*/
    --SubColor8: #d3d9e4;
    /*網站輔助色系8*/
    --SubColor9: #293943;
    /*網站輔助色系9*/
    --SFontE: "Inter", "Noto Sans TC", sans-serif;
    /*英文字體-無襯線*/
    --SFontEN: "Cardo", "Noto Serif TC", sans-serif, system-ui;
    /*英文標字體*/
    --SFont: "Noto Sans TC", sans-serif;
    /*內文黑體字*/
    --SFont2: "Shippori Mincho", "Noto Serif TC", sans-serif;
    /*內文襯縣字體*/
    --SFontJ: "LXGW WenKai Mono TC", "Noto Serif TC", "Noto Sans TC", sans-serif;
    /*日文字體-楷*/
    --pd100: 100px 0;
    --p100: 100px;
    --pre5: clamp(60px, 5%, 100px);
    --m100: 100px;
    --m50: 50px;
    --m30: 30px;
    --f80: 80px;
    --f60: 60px;
    --f52: 52px;
    --f48: 48px;
    --f44: 44px;
    --f40: 40px;
    --f36: 36px;
    --f32: 32px;
    --f28: 28px;
    --f24: 24px;
    --f22: 22px;
    --f20: 20px;
    --f18: 18px;
    --f17: 17px;
    --f16: 16px;
}

@media (min-width:1520px) {
    :root {
        /* --f52:60px;
    --f28:32px; */
        --p100: 120px;
    }
}

@media (max-width:1024px) {
    :root {
        --p100: 80px;
        --pre5: clamp(40px, 5%, 80px);
        --m50: 40px;
        --m30: 25px;
        --f80: 70px;
        --f52: 48px;
        --f48: 40px;
        --f44: 38px;
        --f40: 36px;
        --f36: 32px;
        --f32: 28px;
        --f28: 24px;
        --f24: 22px;
        --f22: 20px;
    }
}

@media (max-width:768px) {
    :root {
        --pd100: 70px 0;
        --p100: 60px;

        --m100: 70px;
        --f80: 60px;
        --m50: 30px;
        --m30: 20px;
        --f52: 44px;
        --f48: 32px;
        --f44: 30px;
        --f40: 28px;
        --f36: 26px;
        --f32: 24px;
        --f28: 20px;
        --f24: 20px;
        --f20: 18px;
        --f18: 17px;
        --f17: 16px;
    }
}

@media (max-width:600px) {
    :root {
        --p100: 50px;
        --pd100: 50px 0;
        --pre5: clamp(20px, 5%, 40px);
        --m100: 50px;
        --m50: 25px;
        --f80: 52px;
        --f52: 36px;
        --f48: 28px;
        --f44: 26px;
        --f40: 24px;
        --f36: 22px;
        --f32: 20px;
        --f28: 18px;
        --f24: 18px;
        --f22: 18px;
        --f20: 17px;
        --f18: 16px;
        --f17: 15px;
    }
}

@media (max-width:480px) {
    :root {
        --p100: 40px;
    }
}

@media (max-width:375px) {
    :root {
        --f80: 48px;
        --f52: 32px;
        --f48: 24px;
        --f44: 22px;
        --f40: 20px;
        --f36: 18px;
        --f32: 18px;
        --f28: 17px;
        --f24: 17px;
        --f22: 17px;
        --f20: 16px;
        --f18: 15px;
    }
}

/*網站全域設定/＝＝＝＝＝*/


/*反白顏色*/
::-moz-selection {
    background-color: #555;
    color: #fff;
}

::selection {
    background-color: #555;
    color: #fff;
}

/* :root {
    --MainColor: #060303;
    --SubColor: #f3f4f4;
    --TitleColor: #222222;
    --FontColor: #111111;
    --SFontE: "Inter", "Noto Sans TC",sans-serif;
    --SFontEN: "Lexend", "Noto Sans TC",sans-serif, system-ui;
    --SFont: "Noto Sans TC", sans-serif;
} */





/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/

/*header*/

.navigation { grid-template-columns: 320px 1fr;}

/*logo*/
.header_area .nav-header { position: relative; max-width: 100%; width: 100%; height: 100%; z-index: 99; }
.header_area.sticky .nav-header { }
.header_area .nav-header::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(https://pic03.eapple.com.tw/gongsicpb/logo.svg) no-repeat center;
    background-size: contain;
    pointer-events: none;
}
.nav-brand { width: 100%; height: 100%;}
.nav-brand img { display: none;}

.header_area {
    z-index: 9999;
    width: 100%;
    background: transparent;
    padding: 0;

}

body.pageIndex.bodyDesktop .header_area {
    position: fixed;
}

.header_area {
    position: relative;
}



.header_area.sticky {
    position: fixed;
    -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
    background: transparent;
}

.main_header_area:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition-timing-function: ease-in;
    padding: 0 40px;
    transition: .4s ease;
    border-bottom: 1px solid #e9edfc;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 1px 5px 8px 5px rgba(0, 71, 55, .03);
}

.pageIndex .main_header_area:after {
    background: #ffffffc4;
}

.pageIndex .main_header_area:after {
    /* height: 0; */
}

.header_area.sticky .main_header_area:after {
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
}

.main_header_area .container {
    max-width: 100%;
    padding: 0;
    padding-left: 5%;
    transition: 0.5s;
}

.pageIndex .header_area .main_header_area,
.header_area .main_header_area {
    background: transparent;
    /* opacity: 0; */
    transition: all 0.3s;
    position: relative;
}

.pageIndex .header_area.sticky .main_header_area,
.header_area.sticky .main_header_area {
    background: transparent;
    /* opacity: 1; */
    transition: all 0.3s;
}


/*選單 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =*/
.pageIndex .stellarnav {
    /* opacity: 0;
    transition: all 0.3s;
    pointer-events: none; */
}

.header_area.sticky .stellarnav {
    opacity: 1;
    transition: all 0.3s;
    pointer-events: unset;
}


/* 第一層 */
.stellarnav>ul>li {
    position: relative;
    padding: 0;
}

.stellarnav>ul>li:after {
    content: "";
    display: block;
    background-color: transparent;
    width: 0;
    height: 50px;
    position: absolute;
    top: -32%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all .5s;
    pointer-events: none;
    content: none;
}

.stellarnav>ul>li:hover::after {
    box-shadow: rgb(255, 255, 255) 0px 0px 31px;
    width: 100%;
    transition: .5s cubic-bezier(0.77, 0, 0.65, 0.99);
}

.stellarnav>ul>li>a {
    font-family: var(--SFont2);
    color: #383B4E;
    font-weight: 500;
    letter-spacing: 0.12em;
    padding: 20px 10px;
    font-size: 16px;
    height: 100%;
    margin: 0;
}

.stellarnav>ul>li>a:hover {
    color: #000;
    transition: .5s cubic-bezier(0.77, 0, 0.65, 0.99);
}

/* 預約按鈕 */
.stellarnav>ul>li:last-child {
    right: 0;
    background: var(--SubColor1);
}

.stellarnav>ul>li:last-child a {
    color: #fff;
    padding-right: 40px;
    padding-left: 40px;
    letter-spacing: 0.12em;
    font-weight: 300;
    z-index: 2;
}

.stellarnav>ul>li:last-child a:before {
    background-color: #465169;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    display: block;
    opacity: 0;
    z-index: -1;
    -webkit-transition: all 2s;
    transition: all 2s;
}

.stellarnav>ul>li:last-child a:after {
    background-color: #465169;
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 100%;
    display: block;
    opacity: 0;
    z-index: -1;
    -webkit-transition: all 2s;
    transition: all 2s;
}

.stellarnav>ul>li:last-child a:hover:before,
.stellarnav>ul>li:last-child a:hover:after {
    width: 100%;
    height: 100%;
    opacity: 1;
}


.stellarnav ul li:hover a {
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.stellarnav ul ul>li>a:hover,
.stellarnav ul ul>li>a:focus {
    color: #131413;
    opacity: 1;
}

.stellarnav > ul > li:hover > ul > li:hover > ul {
    margin-left: 0px;}

/* 下拉符號 */
.stellarnav li.has-sub>a:after {
    height: 6px;
    width: 6px;
    display: block;
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: transparent #888 #888 transparent;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    -webkit-transition: border .2s;
    transition: border .2s;
    margin: 0px;
    top: 48%;
    right: 6px;
}

.stellarnav li.has-sub>a:hover:after {
    opacity: 0.6;
    transition: .3s cubic-bezier(0.77, 0, 0.65, 0.99);
}


/* 第二層 */
.stellarnav:not(.mobile) ul ul {
    background: #fff;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 3px 5px rgba(0, 0, 0, .175);
}

.stellarnav li li {
    border: 0;
}

.stellarnav.desktop li.has-sub li a {
    font-size: 14px;
    text-align: left;
    padding: 10px;
    letter-spacing: 0.06em;
    font-family: var(--SFont2);
}

.stellarnav ul ul>li>a:hover {
    color: var(--SubColor);
    background: var(--SubColor4);
}


.me_tp_features {
    display: none;
}

/* ================= */

/* 商品下拉超過30個變大 */
.stellarnav.desktop li.bigMenu>ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    left: 0;
    width: 100%;
    position: fixed;
    padding: 20px;
}

.stellarnav.desktop li.bigMenu ul ul {
    top: 100%;
    left: 0;
    width: 100%;
    background: #efefef;
    height: auto;
    max-height: 300px;
    overflow: auto;
}

.stellarnav.desktop li.bigMenu ul ul li {
    margin: 0;
}

.stellarnav.hasBigMenu li.bigMenu li.has-sub>a:after {
    border-left: 6px solid transparent;
    border-bottom: unset;
    border-right: 6px solid transparent;
    border-top: 6px solid #898989;
    right: 5px;
}

/* 主分類超過30個但次分類直接顯示 
.stellarnav.desktop li.bigMenu>ul{grid-gap: 10px;}
.stellarnav.desktop li.bigMenu li{border: 0;}
.stellarnav.desktop li.bigMenu>ul>li>a{border: 1px solid #ddd;}
.stellarnav.desktop li.bigMenu ul ul{display: block !important; position: relative; top: 0; background: unset; border: 0;}
.stellarnav.desktop li.bigMenu ul ul li{border: 0;}
 主分類超過30個但次分類直接顯示-結束 */

/* 商品下拉超過30個--結束 */

@media only screen and (max-width: 1200px) {
    body.pageIndex.bodyDesktop .header_area {
        position: relative;
    }

    body.pageIndex.bodyDesktop .header_area.sticky {
        position: fixed;
    }

    .stellarnav ul {
        text-align: center;
    }

}


@media only screen and (max-width: 768px) {

    .navigation {
        flex-direction: column;
    }

    .main_header_area .container {
        padding-left: 0;
    }

    .navigation { flex-direction: column; height: 80px;}
    .header_area .nav-header { max-width: 280px;}

    .stellarnav .menu-toggle { padding: 15px 10px;}

}

@media only screen and (max-width: 600px) {
    .header_area .nav-header { max-width: 50vw;}
}

/*footer = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.footer {
    padding: 0;
    background: #eee;
}

.footer:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    pointer-events: none;
    opacity: 0.5;
    z-index: 1;
    top: 0px;
    filter: brightness(0.5);
}
.footer .center {
    position: relative;
    max-width: 100%;
    padding: 60px 50px;
    background-color: transparent;
    padding: 50px 0 30px;
}

/*logo*/
.footer_logo { position: relative; width: 100%;}
.footer_logo::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 30%;
  border-bottom: 1px solid var(--BorderColor);
  width: calc(100% - 200px);
}
.footer_logo a { position: relative; display: inline-block; max-width: 100%; width: 320px; height: 60px;}
.footer_logo a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(https://pic03.eapple.com.tw/gongsicpb/logo.svg) no-repeat center;
  background-size: contain;
}
.footer_logo img { display: none; max-width: 100%;}


/*info*/

.footer_info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px 48px;
    padding: 0;
    max-width: 1400px;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 60px;
    /* width: 90%; */
    /* width: 100%; */
    max-width: 1600px;
    margin: auto;
    padding: 0;
    position: relative;
    margin-left: clamp(60px, 5%, 100px);
    margin-right: clamp(60px, 5%, 100px);
}

.footer_info ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    width: 100%;
    /* max-width: 900px; */
    margin: auto;
    font-family: var(--SFont2);
}

.footer_info li {
    width: 100%;
    position: relative;
    padding: 0;
    top: 0;
}

.footer_info li:nth-child(1) {
    padding-left: 10px;
}

.footer_info li p::before {
    color: var(--SubColor1);
    font-weight: 600;
}

.footer_info li p.line::before {
    content: "Line ID |";
}

.footer_info li p.tel::before {
    content: "電話 |";
}

.footer_info li p.phone::before {
    content: "手機 |";
}

.footer_info li p.fax::before {
    content: "傳真 |";
}

.footer_info li p.mail::before {
    content: "信箱 |";
}

.footer_info li p.add::before {
    content: "地址 |";
}

.footer_info li p.taxid:before {
    content: '統編 |';
}

.footer_info li:nth-child(2) {
    /* order: -1; */
    /* border-right: solid 1px #ffffff25; */
}

.footer_menu a,
.footer_info li:nth-child(1)>p,
.footer_info li:nth-child(1) a {
    transition: all 0.3s;
    /* font-weight: 400; */
    font-style: normal;
    text-transform: none;
    line-height: 26px;
    letter-spacing: 0;
    color: #383B4E;
    padding: 0;
    letter-spacing: 0.1em;
}

.footer_info li p {
    /* font-weight: 600; */
}

.footer_menu {
    /* grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); */
    flex-wrap: wrap;
    max-width: 425px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 20px;
    row-gap: 5px;
    margin-left: auto;
}

.footer_menu a {
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    margin: 0;
    text-align: left;
    padding: 5px;
    border: none;
    background: transparent;
    width: fit-content;
    transition: all 0.3s;
    padding: 0;
    margin-top: 10px;
    letter-spacing: 0.4em;
    position: relative;
}

.footer_menu a:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 0%;
    top: 3px;
    left: 2px;
    background-color: #383b4e;
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
    transition: all 0.5s;
}

.footer_menu a:hover:after {
    height: 90%;
}

.footer_menu a:first-child {
    display: none;
}

.footer_menu a:hover {
    background: transparent;
    color: #383b4e;
}


.box_link {
    display: none;
}

.copy a {
    color: #888;
}

.copy a:hover {
    color: #9e5252;
}


.copy {
    margin: 0;
    text-align: center;
    background: var(--MainColor);
    color: #c1c9d5;
    padding: 1rem;
    font-size: 11px;
    letter-spacing: 0.08em;
}

/* = = = 分隔線  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
@media screen and (min-width: 1700px) {

    /* footer */
    .footer_info {
        margin: auto;
    }
}

@media screen and (max-width: 1024px) {}

@media screen and (max-width: 840px) {

    /* footer */
    .footer {
        padding-bottom: 0;
    }

    .footer_info {
        grid-template-columns: 1fr;
        text-align: left;
        position: relative;
        gap: unset;
        margin-left: clamp(40px, 5%, 80px);
        margin-right: clamp(40px, 5%, 80px);
        padding: 0 10px;
    }

    .footer_logo {
        position: relative;
        left: unset;
        width: 100%;
        max-width: 100%;
        font-size: 0;
        transform: unset;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 1px solid #383b4e1c;
    }

    .footer_logo a {
        position: relative;
        display: block;
        width: 100%;
    }

    .footer_info ul {
        /* grid-template-columns: 1fr; */
        gap: 20px;
    }

    .footer_info li:nth-child(1):before {
        text-align: center;
    }

    .footer_info li:nth-child(1) {
        /* border-bottom: 1px solid #163f37; */
        padding-bottom: 20px;
    }

    .footer_info li+li {
        margin-top: 0;
    }

    .footer_menu {
        margin: auto;
        max-width: 400px;
        /* border-top: 1px solid #163f37; */
        /* padding-top: 10px; */
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: center;
        row-gap: 0;
        margin-left: auto;
        flex-direction: column;
        width: fit-content;
        margin-right: 10px;
    }

    .footer_menu a {
        margin: 0;
        text-align: left;
        padding: 5px;
        border: none;
        background: transparent;
        width: fit-content;
        transition: all 0.3s;
        padding: 0;
        /* margin-top: 10px; */
        padding: 5px;
        text-align: center;
        writing-mode: unset;
        letter-spacing: 0.08em;
    }

    .footer_menu a:after {
        width: 0%;
        height: 1px;
        top: unset;
        bottom: 5px;
        left: 4px;
    }

    .footer_menu a:hover:after {
        height: 1px;
        width: 90%;
    }

    .copy {
        margin: 0;
        text-align: center;
        background: var(--MainColor);
        color: #c1c9d5;
        padding: 1rem;
        font-size: 11px;
        letter-spacing: 0.08em;
    }

    .copy a {
        color: #c1c9d5;
    }



}

@media screen and (max-width: 768px) {

    /* 開啟手機板下方按鈕所需設定 */
    #bottom_menu {
        display: none;
    }

    .footer.with_shopping_mode {
        padding: 0px 0 0px;
    }

    #to_top {
        bottom: 60px;
    }

}

@media screen and (max-width: 600px) {

    /* footer */
    .footer_logo:after {
        content: none;
    }

    .footer_info ul {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer_info li:nth-child(1) {
        border-bottom: 1px solid #383b4e1c;
    }

    .footer_menu {
        margin: auto;
        margin-left: 10px;
    }

    .copy {
        font-size: 10px;
    }

    .copy .total_view {
        display: unset;
    }
}


@media screen and (max-width: 480px) {
    .footer_info {
        margin-left: 0;
        margin-right: 0;
    }
}




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part {
    max-width: 1500px;
}

/* .product_info_page .main_part { max-width:1200px;} */

.product_page .show_content,
.product_info_page .show_content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
}

.product_page .product_menu_list {
    position: relative;
    width: 220px;
    letter-spacing: 1px;
    /*border-right: 1px solid #ccc;*/
    min-height: 30vw;
}

.product_page .products-list,
.product-wrapper {
    width: calc(100% - 270px);
}

ul.page {
    width: 100%;
}

.product-layer-two li ul {
    position: static;
    margin-top: 5px;
    /*display:block !important;*/
    width: 100%;
    margin-left: 0;
}

.product-layer-two li:hover ul {
    border: none !important;
    /*display:block !important;*/
}

.product-layer-two li li {
    display: block;
    padding: 0;
    transition: all ease .3s;
}

.product-layer-two li li a {
    padding: 5px 10px;
}

.product-layer-two li li:hover>a {
    background: #fff;
    color: #ad925e;
}

.product-layer-two>li {
    width: 100%;
    max-width: 100%;
    padding: 0;
    text-align: left;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 5px;
}

.product-layer-two>li ul>li+li {
    margin-top: 5px;
}

.product_info_page .product_menu_list {
    display: none;
}

.product_info_page .products-list,
.product-wrapper {
    width: 100%;
}

.product-layer-two li li:hover {
    margin-left: 15px;
}

.product-layer-two li li>a:before {
    content: "";
    position: absolute;
    width: 12px;
    height: 8px;
    background: transparent;
    left: 0;
    margin-left: -20px;
    top: 50%;
    margin-top: -4px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.product-layer-two li li:hover>a:before {
    background: #ad925e;
}

.product_info_page .half_box {
    width: 100%;
    float: none;
    padding-right: 0;
}

.product_info_page .half_box li.btn_blankTop {
    margin-top: 50px;
    justify-content: space-between;
    display: flex;
}

.product_info_page .half_box li.btn_blankTop input {
    width: calc(50% - 10px);
    background-image: none;
    padding: 0;
    text-align: center;
}

@media screen and (max-width: 1200px) {}

@media screen and (max-width: 980px) {}

@media screen and (max-width: 768px) {

    .product_menu_list,
    .products-list,
    .product-wrapper {
        width: 100%;
    }

    .product-layer-two {
        margin-right: 0;
        grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
        grid-gap: 5px;
    }

    .product_page .product-layer-two,
    .product_page .products-list {
        width: 100%;
        border-right: none;
    }

    .product_page .product_menu_list>h5 {
        display: block;
    }

    .product_page .show_content>a {
        order: 1;
    }

    .product_page ul.products-list {
        order: 2;
    }

    .product_page ul.page {
        order: 3;
    }

    .product_page .product_menu_list {
        width: 100%;
        order: 0;
        min-height: unset;
    }
}

@media screen and (max-width: 600px) {}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#content_main {
    margin: 0;
}

.bannerindex {
    position: relative;
    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;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


body.other_select_page ul.other_promotion {
    display: none;
}

body.other_select_page ul.page {
    display: none;
}



/* 聯絡我們============ */

.contact_content .information_left {
    display: none;
}

.contact_content .information_right {
    width: 100%;
    padding-left: 0px;
}

.contact_content {
    max-width: 1200px;
}

.blank_letter {
    font-size: 20px;
    font-weight: bold;
    color: #2C4B6A;
}

.contact_form li input.noborder,
.contact_form li textarea.noborder {
    background: #f9f9f9;
    padding: 8px 0;
    border: 0px #ddd solid;
}


.contact_form li.last blockquote,
.contact_form li.last cite {
    border: 1px #d1d1d1 solid;
}


.contact_form li.last cite {
    background: #A46263;
}

/* ==========文章=== */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*文章管理*/
/*文章分類設定*/


.blog_page .show_content {
    max-width: 1350px;
    padding: 70px 50px 20px;
}

.blog_search input[type=search] {
    border-radius: 0;
}

.blog_le .accordion li .link:last-child {
    border-bottom: 1px solid #CCC;
}

.clearfix:before,
.clearfix:after {
    display: none;
}

.blog_page .main_part {
    padding: 0 0 50px;
}

.blog_category_title {
    font-size: 26px;
    font-weight: 600;
    color: #2C4B6A;
}

.blog_subbox {
    margin: 0 auto;
    display: grid;
    grid-gap: 30px;
    grid-template-columns: 1fr;
}


/*文章設定*/
.blog_le.fadeInLeft.animated15.clearfix {
    position: sticky;
}

/*-----------------文章管理-分類全展開------------------*/
/*.submenu {
    display: block !important;
}*/

/*次分類全部展開*/
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category{
    background: #EAF2F6 !important;
}
.blog_le .accordion > li.on_this_category .link a {
    color: #333 !important;
}

.blog_le .accordion > li:hover .link a {
    color: #fff !important;
}

.blog_le .accordion>li:hover .link {
    background: #2C4B6A;
}

.blog_le .accordion li>a {
    color: #333333 !important;
}

.blog_le .accordion li>a:hover {
    color: #FFF !important;
}

.blog_le .accordion li .link i {
    color: #FFF;
}

/*----------------------------------------*/



.blog_le .accordion>li.active {
    background: #000 !important;
}



/*選單*/
.blog_le .accordion {
    border: none;
    border-radius: 0;
}

.blog_le .accordion li {
    border-bottom: 1px solid #f9f9f9;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.news_related {
    background: transparent;
}

.lastPage {
    background: #9e5252;
}
.submenu li.on_this_category a, .submenu a:hover {
    background: #d0d0d0;
    color: #FFF;
}
.blog_back a.article_btn_back {
    background: #2C4B6A;
    transition: all 0.3s ease-in-out;
}

.blog_back a.article_btn_back:hover {
    filter: brightness(1.05);
    transition: all 0.3s ease-in-out;
}

.blog_back a.article_btn_prev,
.blog_back a.article_btn_next {
    background: #777777;
}

.blog_back a.article_btn_prev:hover,
.blog_back a.article_btn_next:hover {
    filter: brightness(1.2);
    transition: all 0.3s ease-in-out;
}

h5.blog_le_t {
    display: none;
}

.submenu {
    background: #faf9fd;
}


.submenu a {
    padding: 12px 12px 12px 24px;
    letter-spacing: 0px;
}

.submenu a:hover {
    background: #d0d0d0;
    color: #FFF;
}

.blog_list_ri {
    width: calc(100%);
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}

.fa-chevron-down::before {
    color: #333;
}

.fa-chevron-down:hover::before {
    color: #fff;
}

/*文章管理-內頁*/


.blog_box_edit * {
    line-height: 170%;
}

.blog_in_page .main_part {
    max-width: 1600px;
    padding: 0 0 60px;
}

.blog_in_page .blog_box {
    max-width: 1350px;
    padding: 70px 50px 20px;
}

body.blog_page .subbox_item:hover .blog_list_le {
    border-radius: 2px;
    transition: border-radius 1.2s cubic-bezier(.165, .84, .44, 1), filter .5s cubic-bezier(.165, .84, .44, 1), -webkit-filter .8s cubic-bezier(.165, .84, .44, 1);
}

.subbox_item {
    width: 100%;
    background-color: #faf9fd;
    overflow: hidden;
    margin-bottom: 2%;
    position: relative;
    padding: 2% 2%;
}

.subbox_item a {
    border-bottom: 0px solid #ccc;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 25px;
}

.subbox_item:hover img {
    transform: translate(-50%, -50%) scale(1.05);
    object-fit: cover;
    width: 100%;
    transition: all 0.4s ease;
}

.blog_list_le img {
    display: block;
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transition: all 5000ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transform: translate(-50%, -50%) scale(1);
    width: 100%;
    height: 100%;
}

.blog_list_le {
    display: block;
    position: relative;
    text-align: center;
    overflow: hidden;
    padding: 0;
    padding-bottom: 0;
    aspect-ratio: 8/8;
    height: auto;
    width: 100%;
}

.subbox_item a:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 80%;
    height: 100%;
    background-repeat: no-repeat;
    z-index: -1;
    left: 50%;
    transform: translate(-45%, 39px);
    transition: all 0.3s ease-in-out;
    opacity: 1;
    border: none;
}

.subbox_item a:hover:after {
    width: 80%;
    transition: all 0.3s ease-in-out;
}

.subbox_item a:before {
    display: none;
}

.blog_list_ri em {
    order: 3;
    width: 100%;
    text-align: right;
    color: #371d16;
}

.blog_list_ri h5 {
    position: relative;
    color: #2C4B6A;
    font-size: 20px;
    font-weight: 600;
    -webkit-line-clamp: initial;
}

.blog_list_ri p {
    border-top: 1px solid #ccc;
    margin-top: 10px;
    color: #595959;
    font-size: 16px;
    letter-spacing: 0.8px;
    line-height: 1.5;
    padding: 20px 0;
    width: 100%;
    -webkit-line-clamp: 3;
}

.blog_list_ri p:after {
    content: '...';
}

.subbox_item:before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 50px;
    height: 4px;
    background-color: #A46263;
    transition: 0.3s;
    z-index: 1;
}

.subbox_item:hover:before {
    width: 100%;
    transition: all .5s;
}



@media screen and (max-width: 1200px) {
    .subbox_item a {
        grid-auto-flow: initial;
    }

    .blog_list_le {
        margin: auto;
    }

    .blog_subbox.clearfix {
        grid-template-columns: 1fr 1fr;
    }

    .subbox_item a {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .blog_le.fadeInLeft.animated15.clearfix {
        position: relative;
        top: auto;
    }

    .blog_list_le {
        width: 100%;
    }

    .blog_list_ri {
        width: 100%;
        padding: 0;
    }

    .blog_list_ri p {
        margin-top: 7px;
        margin-bottom: 19px;
        -webkit-line-clamp: inherit;
    }

    .blog_list_ri i {
        bottom: -7px;
    }

    .blog_list_le {
        width: 100%;
    }

    .blog_list_ri {
        width: 100%;
        padding: 20px 0px 40px;
    }

    .blog_list_ri h5 {
        -webkit-line-clamp: initial;
    }
}


/* 文章管理-分類展開縮合設定-----------------------------------------------------------------*/
/*----------------------------------
分類展開縮合(只能擇1設定)
1.電腦版強制展開次分類(手機版-就沒法展開縮合次分類)
2.照原始模組設定(手機版-就可正常展開縮合)
----------------------------------*/
/* 文章管理-指定分類全展開 */
h5.blog_le_t,
.blog_le .accordion {
    display: block;
}

/* 次分類全部展開 */
/*.blog_le .accordion li .submenu {
    display: none !important;
}

.blog_le .accordion li:hover .submenu {
    display: block !important;
}*/

/*強制點擊該分類>該分類分類展開
.blog_le .accordion li.default.on_this_category .submenu {
    display: block !important;
}*/

/*--------------------------------------------------------------------------------------*/


@media screen and (max-width: 476px) {
    .blog_box {
        width: 100%;
    }

    .blog_page .show_content {
        padding: 70px 20px 20px;
    }

    .blog_subbox.clearfix {
        grid-template-columns: 1fr;
    }

    /*文章管理-內頁*/
    .blog_in_page .blog_box {
        padding: 70px 20px 20px;
    }

    .blog_box_edit {
        padding: 0;
    }
}