@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+Sans+TC:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200..900&display=swap');

body {
    font-family: "Noto Serif TC", serif;
    font-weight: 800;
}



/*font star*/
body {
    --f50: 50px;
    --f40: 40px;
    --f24: 24px;
    --f20: 20px;
    --f16: 16px;
}

@media screen and (max-width:1440px) {
    body {
        --f50: 48px;
        --f40: 38px;
        --f24: 22px;
        --f20: 18px;
    }
}

@media screen and (max-width:1024px) {
    body {
        --f50: 46px;
        --f40: 36px;
        --f24: 20px;
        --f20: 16px;
        --f16: 14px;
    }
}

@media screen and (max-width:600px) {
    body {
        --f50: 44px;
        --f40: 34px;
        --f24: 18px;
    }
}

@media screen and (max-width:500px) {
    body {
        --f50: 40px;
        --f40: 30px;
    }
}






/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*反白顏色*/
::-moz-selection {
    background-color: #d49a3f;
    color: #fff;
}

::selection {
    background-color: #d49a3f;
    color: #fff;
}

body {
    overflow: overlay;
}

&::-webkit-scrollbar {
    background: #65757c;
    width: 7px;
}

&::-webkit-scrollbar-button {
    display: none;
    background: #65757c;
    border-radius: 0;
}

&::-webkit-scrollbar-track-piece {
    background: #65757c;
}

&::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #d49a3f;
}

&::-webkit-scrollbar-track {
    box-shadow: transparent;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 頁面的麵包屑 首頁/頁面名稱/ */
.path {
    display: none;
}

/*首頁+聯絡按鈕*/
.animated-arrow {
    background: #d49a3f;
}

.swiper-pagination {
    display: none;
    left: 50%;
    margin-left: 0;
    transform: translate(-50%, 0);
}


/*預設解除背景輪播*/
#content_main {
    margin: 0;
    background: transparent;
    z-index: 0;
    background-image: url(https://pic03.eapple.com.tw/642repair/bg-04.jpg);
}

.bannerindex {
    position: relative;
    height: auto;
}

.swiper-banner {
    position: static;
    margin: 0;
    height: auto;
}

.swiper-slide img {
    height: auto;
}

@media screen and (max-width: 768px) {}




.pageIndex .swiper-wrapper .swiper-slide.swiper-slide:nth-child(1)::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/642repair/bg-05.png);
    width: 100%;
    max-width: 100%;
    height: 101%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1000;
    opacity: 1;
}

.pageIndex .swiper-wrapper .swiper-slide.swiper-slide:nth-child(2)::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/642repair/bg-06.png);
    width: 100%;
    max-width: 100%;
    height: 101%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1000;
    opacity: 1;
}




.pageIndex .swiper-wrapper::before {
    content: "";
    display: block;
    background-image: url(https://pic03.eapple.com.tw/642repair/bg-10.png);
    width: 27vw;
    height: 20vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 19%;
    left: 14%;
    z-index: 100000;
    transform-origin: 50% 100%;
    animation: 1.5s down forwards cubic-bezier(0.87, 0.04, 0.32, 0.43);
}

.pageIndex .swiper-wrapper::after {
    content: "";
    display: block;
    background-image: url(https://pic03.eapple.com.tw/642repair/bg-11.png);
    width: 20vw;
    height: 20vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: -350px;
    right: 8%;
    z-index: 100000;
    transform-origin: 50% 100%;
    animation: 1.8s down2 forwards cubic-bezier(0.87, 0.04, 0.32, 0.43);
    animation-delay: 1s;
}






@keyframes down {
    0% {
        top: -300px;
    }

    80% {
        top: 19%;
        transform: scale(1, 1);
    }

    90% {
        top: 18%;
        transform: scale(1, 0.7);
    }

    100% {
        top: 19%;
        transform: scale(1, 1);

    }
}

@keyframes down2 {
    0% {
        top: -350px;
    }

    80% {
        top: 54%;
        transform: scale(1, 1);
    }

    90% {
        top: 55%;
        transform: scale(1, 0.7);
    }

    100% {
        top: 54%;
        transform: scale(1, 1);
    }
}




@media screen and (max-width: 768px) {
    .pageIndex .swiper-wrapper .swiper-slide.swiper-slide:nth-child(1)::before {
        left: 50%;
        transform: translate(-50%, 0px);
        width: 170%;
        max-width: 170%;
    }

    .pageIndex .swiper-wrapper .swiper-slide.swiper-slide:nth-child(2)::before {
        left: 50%;
        transform: translate(-50%, 0px);
        width: 170%;
        max-width: 170%;
    }

    .bannerindex {
        position: relative;
        height: 0;
        padding-bottom: 84%;
    }

    .swiper-banner .swiper-slide img {
        width: 170%;
        max-width: 170%;
    }

    .swiper-banner .swiper-slide {
        display: flex;
    }

    .swiper-banner .swiper-slide {
        display: flex;
        justify-content: center;
    }

}

















#content {
    width: 100%;
    min-height: 80vh;
    background-image: url(https://pic03.eapple.com.tw/642repair/bg-04.jpg);
    background-position: top center;
    background-size: 100% auto;
}









/* = == 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*選單設定*/




.header_area {
    padding: 0;
}


.header_area .main_header_area {
    position: fixed;
    background: transparent;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    transition: all 0.5s;
}

.header_area.sticky .main_header_area {
    transition: all 0.5s;
}




.header_area .me_tp_features {
    display: flex;
    width: auto;
    position: fixed;
    top: 26px;
    right: 130px;
    margin-bottom: 0;
    align-items: flex-end;
}


.header_area .stellarnav .menu-toggle,
.stellarnav .call-btn-mobile,
.stellarnav .location-btn-mobile {
    display: block;
    position: fixed;
    top: 83px;
    right: 3%;
    transition: all 0.5s;
    pointer-events: all;
}

.header_area.sticky .stellarnav .menu-toggle,
.stellarnav .call-btn-mobile,
.stellarnav .location-btn-mobile {
    top: 27px;
    transition: all 0.5s;
}







/* 漢堡 */

.pageIndex .stellarnav.desktop .menu-toggle {
    opacity: 0;
    animation: banner-navbar 1s forwards;
    animation-delay: 2.8s;
}



@keyframes banner-navbar {
    0% {
        top: 97px;
        opacity: 0;
    }

    100% {
        top: 27px;
        opacity: 1;
    }

}



.stellarnav .menu-toggle {
    text-align: center;

}

.stellarnav .menu-toggle:after {
    content: "MENU";
    display: none;
    font-size: 12px;
    text-align: center;
    color: #43453D;
    font-family: "Klee One", 'Noto Serif TC';
    margin-top: 10px;
}




.stellarnav.desktop .menu-toggle span.bars span {
    display: block;
    position: relative;
    width: 50px;
    height: 2px;
    border-radius: 6px;
    background: #d49a3f;
    margin: 0;
    margin-bottom: 8px;
    left: 0;
    transition: 0.5s;
}

.stellarnav.desktop .menu-toggle:hover span.bars span:nth-child(1) {
    transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.stellarnav.desktop .menu-toggle span.bars span:nth-child(2) {
    opacity: 1;
    width: 25px;
    transition: all 1s;
}

.stellarnav.desktop .menu-toggle span.bars span:nth-child(3) {
    display: none;
}

.stellarnav.desktop .menu-toggle:hover span.bars span:nth-child(2) {
    width: 50px;
    transition: all 1s;
}



/* 漢堡關 */

.stellarnav .menu-toggle span.bars {
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}








/* 未開啟 */

.stellarnav.desktop>ul {
    display: none !important;
    margin: 0;
    padding: 0;
    text-align: center;
    background: transparent;
    position: relative;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    z-index: -5;
    transition: all 0.3s;
}

.stellarnav.desktop {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -5;
    line-height: normal;
    background-color: transparent;
    pointer-events: none;
    transition: 1s;
}

.stellarnav.desktop::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    z-index: -5;
    line-height: normal;
    background-color: transparent;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: 1s;
}



/* 開啟 */
.stellarnav.desktop.active>ul {
    display: flex !important;
    transition: all 0.3s;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-end;
    pointer-events: all;
    width: 20%;
    height: 100%;
    background: transparent;
    padding: 200px 4% 30px;
    padding-top: 130px;
    align-items: center;
}

.stellarnav.desktop.active>ul::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    right: 0;
    background-color: #2c383d;
    animation: nav-left 0.5s forwards;
}

.stellarnav.desktop.active {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-content: flex-end;
}

.stellarnav.desktop.active::before {
    content: "";
    width: 100%;
    height: 100%;
    /* background-color: #fff; */
    border-radius: 0;
    /* backdrop-filter: blur(5px); */
    opacity: 1;
    transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
}


@keyframes nav-left {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }

}






@keyframes line-up {
    0% {
        height: 0%;
    }

    100% {
        height: 100%;
    }
}




/* BAR */


/* 購物籃 */
.tp_links {
    display: none;
}

.box_search input[type=text] {
    background: url(https://pic03.eapple.com.tw/642repair/icon-04.png) no-repeat 9px center #fff;
    border: 0;
    padding: 2px 0px 4px 42px;
    width: 130px;
    border-radius: 10em;
    transition: all .5s;
    outline: none;
    background-color: transparent;
    border-bottom: 1px #d49a3f solid;
    border-radius: 0;
    font-size: 0;
    height: 20px;
    transition: all 0.3s;
    color: transparent;
    display: none;
}

.box_search input[type=text]:hover {
    font-size: 14px;
    color: #fff;
    transition: all 0.3s;
}

.box_search input[type=text]:focus {
    font-size: 14px;
    color: #fff;
    transition: all 0.3s;
}

.shop_search_btn {
    display: none;
    background: #3F3F3F;
    color: #fff;
    font-size: 13px;
    border: none;
    border-radius: 0;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
    padding: 4px 15px;
    cursor: pointer;
}

.box_search {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 60%;
    margin-bottom: 0;
    margin-right: 30px;
}

.me_tp_features a {
    margin: 0 0;
}

.me_tp_features a.tp_btn_cart {
    margin-right: 10px;
    width: fit-content;
    display: flex;
    align-items: center;
}

.me_tp_features a.tp_btn_cart span span {
    display: none;
}

.me_tp_features a.tp_btn_cart b {
    font-weight: normal;
    color: #d49a3f;
}

.me_tp_features a.tp_btn_notice span {
    display: none;
}

.fa-cart-shopping::before {
    content: "\f07a";
    color: #d49a3f;
}

.me_tp_features a.tp_btn_notice {
    color: #d49a3f;
}






/* 選項 */
.stellarnav>ul>li>a {
    margin: 0 20px;
    padding-left: 0;
    color: #d49a3f;
    display: flex;
    text-transform: uppercase;
    position: relative;
    font-size: 16px;
    line-height: 20px;
    height: auto;
    margin: 0;
    overflow: visible;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
    opacity: 1;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    letter-spacing: 5px;
    transform-origin: 0 0;
    font-family: "Noto Serif TC", serif;
}

.stellarnav>ul>li>a::after {
    content: "";
    display: block;
    width: 0%;
    height: 1px;
    background-color: #d49a3f4b;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.stellarnav>ul>li>a:hover::after {
    width: 50%;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.stellarnav>ul>li>a b {
    line-height: 15px;
    height: 20px;
}

.stellarnav>ul>li>a b:nth-child(1) {
    font-weight: 800;
    margin-bottom: 5px;
}

.stellarnav>ul>li>a b:nth-child(2) {
    font-size: 12px;
    color: #d49a3f73;
    word-break: keep-all;
}

.stellarnav li {
    opacity: 1;
    width: 100%;
}

.stellarnav>ul>li::before {
    content: "";
    display: none;
    width: 0%;
    height: 1px;
    margin: 15px 0;
    background-color: #43453d21;
    animation: line-left-right 1s forwards linear;
}

.navigation {
    width: 100%;
    position: relative;
    padding: 0;
}

.stellarnav>ul>li>a:hover b {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
}











/* 選單線 延遲 */

.stellarnav li:nth-child(2):before {}

.stellarnav li:nth-child(3):before {
    animation-delay: 0.3s;
}

.stellarnav li:nth-child(4):before {
    animation-delay: 0.4s;
}

.stellarnav li:nth-child(5):before {
    animation-delay: 0.5s;
}

.stellarnav li:nth-child(6):before {
    animation-delay: 0.6s;
}

.stellarnav li:nth-child(7)::before {
    animation-delay: 0.7s;
}

.stellarnav li:nth-child(8)::before {
    animation-delay: 0.8s;
}




@keyframes line-left-right {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }

}




/* 字 動畫 */



.stellarnav>ul>li {
    opacity: 0;
    animation: up 1.5s forwards;
    animation-delay: 0.2s;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 0;
}

.stellarnav>ul>li:nth-of-type(2) ul li:nth-of-type(1),
.stellarnav>ul>li:nth-of-type(3) ul li:nth-of-type(1),
.stellarnav>ul>li:nth-of-type(4) ul li:nth-of-type(1),
.stellarnav>ul>li:nth-of-type(5) ul li:nth-of-type(1) {
    display: none;
}














/* .stellarnav > ul > li:nth-child(2) {
    animation: up 1s forwards;
    animation-delay: 0.5s;
}
.stellarnav > ul > li:nth-child(3) {
    animation: up 1s forwards;
    animation-delay: 1s;
}
.stellarnav > ul > li:nth-child(4) {
    animation: up 1s forwards;
    animation-delay: 1.5s;
}
.stellarnav > ul > li:nth-child(5) {
    animation: up 1s forwards;
    animation-delay: 2s;
}
.stellarnav > ul > li:nth-child(6) {
    animation: up 1s forwards;
    animation-delay: 2.5s;
}
.stellarnav > ul > li:nth-child(7) {
    animation: up 1s forwards;
    animation-delay: 3s;
}
.stellarnav > ul > li:nth-child(8) {
    animation: up 1s forwards;
    animation-delay: 3.5s;
} */

/* 下拉 */
.stellarnav ul ul {
    border-radius: 5px;
    width: 200px;
    left: -195px;
    top: 0;
    background: #2c383d;
    box-shadow: 1px 1px 5px #000000b3;
}

.stellarnav li li {
    display: block;
    border: 0;
    margin-bottom: -1px;
    background: transparent;
    transition: all 0.3s;
}


.stellarnav li li:nth-child(1) {}

.stellarnav li li:nth-last-child(1) {
    border-radius: 0 0 5px 5px;
}

.stellarnav li li:hover {
    background: #00000073;
    z-index: 100000;
    transition: all 0.3s;
}

.stellarnav li li a {
    padding: 15px 10px;
    display: block;
    color: #d49a3f;
    font-size: 14px;
    transition: all 0.3s;
    font-weight: 800;
    letter-spacing: 1px;
}

.stellarnav li li:hover>a {
    color: #ffb100;
    letter-spacing: 1.1px;
    transition: all 0.3s;
}


/* 下拉二層 */

.stellarnav ul ul ul {
    top: 0;
    left: 240px;
}

.stellarnav li.has-sub>a:after {
    display: none;
}







@keyframes ul-show {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

}






/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*LOGO設定*/



.pageIndex .nav-header {
    opacity: 0;
    animation: banner-nav-logo 1s forwards;
    animation-delay: 2.8s;
}

@keyframes banner-nav-logo {
    0% {
        top: 87px;
        opacity: 0;
    }

    100% {
        top: 20px;
        opacity: 1;
    }
}

@keyframes show-line {
    0% {
        right: 100%;
        opacity: 0;
    }

    100% {
        right: 0;
        opacity: 1;
    }
}






.nav-header {
    position: fixed;
    z-index: 123;
    top: 27px;
    left: 50%;
    transform: translate(-50%, 0px);
    transition: all 0.3s;
}

.header_area.sticky .nav-header {
    top: 27px;
    transition: all 0.3s;
}



.footer_logo img {
    width: 100%;
    margin-top: ;
}

.footer_logo {
    display: flex;
    width: 310px;
    margin: 0;
    align-items: center;
}

.nav-brand {
    display: inline-block;
    width: 160px;
}

.footer_info ul {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    text-align: center;
}


.nav-header {
    transition: all 0.3s;
}

.header_area.sticky .nav-header {
    transform: translate(-50%, -240px);
    transition: all 0.3s;
}






@media screen and (max-width: 1440px) {
    .stellarnav.desktop.active>ul {
        width: 30%;
    }

}






@media screen and (max-width: 1024px) {
    .nav-brand {
        width: 100px;
    }

    .nav-header {}

    .nav-brand img {
        position: relative;
        max-width: 100%;
        z-index: 100000;
        transition: all 0.3s;
    }

    .header_area.sticky a.nav-brand::before {
        width: 20%;
        left: 50%;
        transform: translateX(-50%);
        transition: all 0.3s;
    }

    .stellarnav>ul>li>a {
        margin: 0 15px;
    }

    .stellarnav.desktop.active>ul {
        width: 40%;
    }

}











@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%;
    }

    .nav-brand {
        display: inline-block;
        width: 70px;
    }

    .header_area.sticky a.nav-brand::before {
        width: 160%;
    }

    .header_area a.nav-brand::before {
        display: none;
    }

    .header_area.sticky a.nav-brand::before {
        display: none;
    }

    .nav-header {
        z-index: 0;
        top: 7px;
    }

    .footer_logo {
        display: block;
        margin: 0 auto;
    }

    .header_area .stellarnav .menu-toggle,
    .stellarnav .call-btn-mobile,
    .stellarnav .location-btn-mobile {
        display: block;
        position: fixed;
        top: 27px;
        left: 3%;
        width: fit-content;
        transition: all 0.5s;
        pointer-events: all;
    }

    .stellarnav .menu-toggle span.bars span {
        background: #d49a3f;
    }

    .stellarnav .menu-toggle span.bars {
        width: fit-content;
    }

    .stellarnav .menu-toggle span.bars span {
        background: #d49a3f;
        margin: 0 0 4px;
    }

    .header_area.sticky .stellarnav .menu-toggle,
    .stellarnav .call-btn-mobile,
    .stellarnav .location-btn-mobile {
        top: 27px;
        width: fit-content;
        transition: all 0.5s;
    }

    .stellarnav.mobile>ul {
        border-top: 0;
    }

    .stellarnav.mobile>ul {
        background: #2c383d;
    }

    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        display: inline-block;
        text-align: right;
        font-size: 12px;
        background: #d49a3f;
        color: #fff;
    }

    .stellarnav .icon-close:after,
    .stellarnav .icon-close::before {
        border-bottom: solid 3px #fff;
    }

    .stellarnav.mobile>ul>li {
        display: block;
        padding: 10px 5px;
        border-bottom: 1px #dddddd2e solid;
        position: relative;
    }

    .stellarnav.mobile>ul>li>a {
        text-align: left;
        overflow: auto;
        height: auto;
        line-height: 150%;
        display: block;
        border: 0;
        display: flex;
        flex-direction: column;
    }

    .stellarnav.mobile li.open {
        background: transparent;
    }

    .stellarnav.mobile.right>ul,
    .stellarnav.mobile.left>ul {
        background: #2c383d;
        left: 0;
        box-shadow: none;
        border: 0;
    }

    .stellarnav.mobile li a {
        border-bottom: 0;
    }

    .stellarnav.mobile ul {
        background: transparent;
        border: 0;
        box-shadow: none;
        left: 0;
    }

    .stellarnav a.dd-toggle .icon-plus:before,
    .stellarnav a.dd-toggle .icon-plus::after {
        border-bottom: solid 3px #d49a3f;
    }

    .stellarnav.mobile>ul>li>a.dd-toggle {
        padding: 6px;
        position: absolute;
        text-align: center;
        z-index: 999;
        top: 33px;
        transform: translate(0, -50%);
    }

    .stellarnav.mobile li.open li.open {
        background: transparent;
        padding: 3px;
    }

    .header_area .me_tp_features {
        display: flex;
        right: 5%;
        align-items: center;
        display: none;
    }
}


@media only screen and (max-width: 570px) {

    .me_tp_features a.tp_btn_cart,
    .me_tp_features a.tp_btn_notice {
        display: flex;
    }
}




@media screen and (max-width: 500px) {
    .nav-brand {
        width: 70px;
    }

}


@keyframes up {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}




/*開場NAV */



.stellarnav.desktop .menu-toggle {
    opacity: 1;
    top: 27px;
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*Footer*/
.footer {
    border-top: none !important;
    padding: 0;
    height: auto;
    opacity: 1;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background: #3b4b53;
}

.footer_logo {
    display: none;
}

.footer_menu {
    border-bottom: none !important;
    display: flex;
    flex-wrap: wrap;
}

.copy {
    background: transparent;
    color: #d49a3f;
    border: none;
    margin-top: 0;
    border-top: 1px #d49a3f70 solid;
    padding: 10px 0;
    display: none;
}

.copy a {
    color: #d49a3f;
}

.footer_menu a:nth-child(1) {}

.footer_menu a {
    transition: all 0.3s;
}

.box_link {
    display: none;
}

.footer_info ul {
    width: 100%;
    display: flex;
    padding: 20px 0;
    justify-content: space-between;
    flex-direction: row;
    align-items: flex-start;
}

.footer .center {
    position: relative;
    max-width: 1440px;
}

.footer_info li p {
    width: auto;
    color: #d49a3f;
    width: 50%;
}

.footer_info li p a {
    color: #d49a3f;
}

.footer_info li p.taxid {
    display: none;
}

.footer_menu a {
    width: calc(100% / 4 - 10px);
    display: inline-block;
    padding: 10px;
    border: 0;
    margin: 5px;
    font-size: 14px;
    line-height: 100%;
    color: #d49a3f;
    background: #364247;
    border-radius: 35px;
    transition: all 0.5s;
}

.footer_menu a:hover {
    background: #65757c;
    color: #d49a3f;
    letter-spacing: 1px;
    transition: all 0.5s;
}

.footer_info {
    padding: 0;
    display: flex;
    align-items: center;
    flex-direction: row;
    padding: 0;
    justify-content: center;
}


.center {
    max-width: 80%;
    width: 100%;
    margin: 0 auto;
}

.footer_info li:nth-child(1) {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    width: 48%;
}

.footer_info li:nth-child(1)::before {
    content: "CONTACT";
    display: block;
    width: 100%;
    font-size: 20px;
    font-weight: bold;
    padding: 10px 0;
    border-bottom: 1px #d49a3f solid;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
    color: #d49a3f;
}

.footer_info li:nth-child(2) {
    width: 48%;
}

.footer_info li:nth-child(2)::before {
    content: "OTHER PAGE";
    display: block;
    width: 100%;
    font-size: 20px;
    font-weight: bold;
    padding: 10px 0;
    border-bottom: 1px #d49a3f solid;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
    color: #d49a3f;
    text-align: left;
}






/* 浮動 */

.info_fix {
    width: auto;
    box-sizing: border-box;
    position: fixed;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: flex-end;
    justify-content: flex-end;
    transition: all 0.7s;
    animation: footer-text forwards 1s;
    opacity: 0;
    z-index: 1;
    animation-delay: 3.3s;
}

.info_fix:hover {
    width: auto;
    right: 0;
    transition: all 0.7s;
}

.info_fix_links {
    display: flex !important;
    background: #565656bf;
    width: 50px;
    padding-bottom: 0;
    border: 1px #A29080 solid;
    /* border-radius: 0px 0 0 10px; */
    overflow: hidden;
    justify-content: flex-end;
    flex-direction: column;
}

.info_fix>span {
    display: none;
}

.info_fix_links a {
    background: transparent;
}

.info_fix_links a {
    display: block;
    width: 100%;
    height: 50px;
    overflow: visible;
    border-radius: 0;
    transition: .3s;
    background: transparent;
    margin-bottom: 0;
}

.info_fix_links a span {
    width: 20px;
    height: 100%;
    display: block;
    margin: 0 auto;
}

.info_fix_links a span::before {
    background-size: contain;
}



.info_fix_links p {
    text-align: center;
    font-weight: 900;
    writing-mode: vertical-rl;
}


.info_fix_links {
    display: flex !important;
    background: #565656a1;
    width: 50px;
    padding-bottom: 0;
    border: 1px #fff solid;
    border-radius: 15px 0 0 15px;
    overflow: hidden;
}

.info_fix>span {
    display: none;
}

.info_fix_links a {
    background: transparent;
}

.info_fix_links a {
    display: block;
    width: 100%;
    height: 50px;
    overflow: visible;
    border-radius: 0;
    transition: .3s;
    background: transparent;
    margin-bottom: 0;
}

.info_fix_links a span {
    width: 20px;
    height: 100%;
    display: block;
    margin: 0 auto;
}

.info_fix_links a span::before {
    background-size: contain;
}



.info_fix_default.info_fix_phone,
.info_fix_default.info_fix_tel,
.info_fix_default.info_fix_mail {
    display: none;
}

.info_fix_default.info_fix_google {
    color: #fff;
    background-color: #d49a3f;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    height: 120px;
    align-items: center;
    align-content: center;
}

.info_fix_default.info_fix_google:hover {
    background-color: #ab822d;
}

.info_fix_links p {
    text-align: center;
    font-weight: 500;
    writing-mode: vertical-rl;
    font-size: 16px;
}


.info_fix_google img {
    width: 25px;
    margin-bottom: 5px;
}







#to_top {
    color: #494949;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding-top: 0;
    transition: all 0.7s;
}

#to_top:hover i {
    transform: translate(0, -5px);
    transition: all 0.7s;
}

#to_top i:before,
#to_top i:after {
    background: #494949;
}


.info_fix_default.info_fix_yt span::before {
    background-image: url(https://pic03.eapple.com.tw/mudao/footer-text-09.png);
    background-size: cover;
}

.info_fix_links a.info_fix_default.info_fix_tel,
.info_fix_links a.info_fix_default.info_fix_mail {
    display: none;
}



@keyframes footer-text {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

}


@media screen and (max-width: 1440px) {
    .footer_info ul {}

    .footer_info li p {
        width: auto;
        min-width: 50%;
    }
}


@media screen and (max-width: 1024px) {
    .footer_info ul {
        width: 100%;
        display: flex;
        padding: 20px 0;
        justify-content: space-between;
        flex-direction: column;
        align-items: center;
    }

    .footer_info li:nth-child(1) {
        width: 80%;
    }

    .footer_info li:nth-child(2) {
        width: 80%;
    }

}




@media screen and (max-width: 768px) {
    .footer_info ul {
        width: 100%;
        text-align: center;
    }

    .footer_menu {
        border-bottom: none !important;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

}



@media screen and (max-width: 450px) {
    .footer_menu a {
        width: calc(100% / 2 - 10px);
    }

}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    background: transparent;
    width: 100%;
    padding: 0;
    height: 0;
    padding-bottom: 35%;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner h5 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: var(--f50);
    font-weight: 300;
    letter-spacing: .3em;
    width: 100%;
    max-width: 600px;
    text-indent: .3em;
    padding: 10px 0;
    display: flex;
    border-bottom: 1px #fff solid;
    justify-content: center;
    align-items: baseline;
    font-weight: bold;
}

.banner h5::after {
    content: "";
    display: block;
    font-size: 16px;
    color: #fff;
    letter-spacing: .2em;
    text-indent: .2em;
}

.banner.banA {
    display: none;
}

.banner.banA h5::after {}

.banner.banB {
    display: none;
}

.banner.banC {
    display: none;
}

.banner.banC h5::after {}

.banner.banD {}

.banner.banE h5::after {
    content: "PHOTO";
}



/*  */
.banner.banF {
    display: none;
    background-image: darkblue;
}

.banner.banF h5::after {
    content: "SHOP";
}




/*  */
.banner.banblog {
    background-image: url(https://pic03.eapple.com.tw/642repair/banner-07.jpg );
}

.banner.banblog h5::after {
    content: "NEWS";
}



@keyframes banner-line {
    0% {
        width: 0;
        opacity: 0;
    }

    75% {
        width: 300px;
        opacity: .5;
    }

    100% {
        width: 300px;
        opacity: 1;

    }
}

@keyframes banner-text {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}






@media screen and (max-width: 600px) {
    .banner h5 {

        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: bold;
        flex-direction: column;
        align-content: center;
    }

    .banner {
        padding: 100px 20px;
    }

    .banner h5::after {
        font-size: 14px;
    }
}










.main_part {
    width: 100%;
    max-width: 1440px;
    margin: auto;
    padding: 50px 20px;
}


/* 其他分頁 */
.other_promotion {
    display: none;
}

.other_select_page .page {
    display: none;
}







/*購物車設定*/
/* 產品的看更多按鈕設定 */


.product_page .main_part {
    width: 100%;
    max-width: 1440px;
    margin: auto;
    padding: 0;
    padding: 190px 0 100px;
}





/* 選單 */
.product-layer-two {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
}

.product-layer-two li {
    display: inline-block;
    padding: 0;
    margin: 0;
    position: relative;
    width: 100%;
    height: fit-content;
    text-align: left;
    transition: all 0.5s;
}

.product-layer-two>li {
    margin: 0 0 10px;
}

.product-layer-two li li::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    border: 8px solid;
    border-color: transparent transparent transparent #d49a3f;
    position: absolute;
    left: -20px;
    top: 50%;
    opacity: 0;
    transform: translate(0, -50%);
    transition: all 0.5s;
}

.product-layer-two li li:hover:before {
    opacity: 1;
    left: 0;
    transition: all 0.5s;
}

.product-layer-two li a {
    color: #fff;
    border: 0;
    padding: 10px 20px;
    background: #d49a3f;
    text-wrap: nowrap;
    font-weight: 800;
    letter-spacing: 5px;
    transition: all 0.3s;
}

.product-layer-two li:hover>a {}

.product_page .show_content,
.product_info_page .show_content {
    margin: auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}

.product-layer-two li ul {
    display: block !important;

    position: relative;
}

.product-layer-two li li {
    display: block;
    background: transparent;
    margin: 0;
}

.product-layer-two li li a {
    background: transparent;
}

.product-layer-two li i {
    top: 26px;
    transform: translate(0, -50%);
    color: #fff;
    display: none;
}

.product-layer-two li.active li a {
    color: #fff;
    background: transparent;
    font-weight: bold;
}






.page {
    color: #fff;
    width: 100%;
    margin: 0;
}

.product-layer-two li.active>a {
    background: #d49a3f;
    border: 0;
    font-weight: bold;
    font-size: 17px;
}

/* 內容 */
.products-list .more {
    border: 1px solid #fff !important;
    color: #fff;
    width: 50% !important;
    margin: 0 auto;
    border-radius: 10px;
}

.products-list .item a:hover .more {
    background: #d49a3f;
    border-color: #fff;
    color: #ffffff;
}

.products-list {
    width: 80%;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    grid-gap: 0;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: none;
}

.products-list .item {
    width: calc(100% / 3 - 4%);
    display: inline-block;
    vertical-align: top;
    margin: 2%;
    margin-top: 0;
    background: transparent;
    border-radius: 0;
    transition: all 0.5s;
}

.products-list .item:hover {
    transition: all 0.5s;
}

.products-list .item a img {
    padding: 10px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    transition: all 0.5s;
}

.products-list .item a:hover img {
    transform: scale(1.05);
    transition: all 0.5s;
}

.products-list .name {
    font-size: 20px;
    color: #fff;
    height: auto;
    padding: 5%;
    text-align: center;
    margin-top: 0;
    font-weight: 800;
}
.products-list .name::before {
    /* content: ""; */
    /* text-align: center; */
    /* display: block; */
    /* width: 100%; */
    /* height: 1px; */
    /* background-color: #fff; */
    /* margin: 10px 0; */
}

.products-list .pic {
    display: block;
    position: relative;
    text-align: center;
    padding-bottom: 100%;
    height: 0;
    overflow: hidden;
    border-radius: 50px;
    border: 2px #d49a3f solid;
    transition: all 0.5s;
}

.products-list .item a:hover .pic {
    transition: all 0.5s;
}



.products-list .price b {
    color: #d49a3f;
    font-size: 18px;
    font-weight: 800;
    width: calc(100% / 2 - 6px);
    text-align: center !important;
}

.products-list .price .sp_price {
    text-align: center;
    font-size: 20px;
    color: #d49a3f;
}

.products-list .price {
    align-items: flex-end;
    padding: 10px 5px;
    border-top: 1px #ffffff6b solid;
}








/*內液*/
.product_info_page .main_part {
    width: 100%;
    max-width: 1440px;
    margin: auto;
    padding: 200px 0px 100px;
}

.lastPage {
    background: #d49a3f;
}

.nextaction {
    background-color: #c1b09c;
}

.lastaction {
    color: #fff;
    background-color: #c1b09c;
}

.bx-wrapper .bx-viewport {
    border: none;
    left: 0px;
    background: transparent;
}

.product_pic #bx-pager a {
    border: none;
}

.product_info_page .product-layer-two {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-end;
    width: 100%;
    margin-right: 10%;
    position: absolute;
}

.product-wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.sidebarBtn {
    padding: 3%;
    display: inline-block;
    width: 30%;
    max-width: 60%;
    vertical-align: top;
    border: 0;
    background: #00000038;
    border-radius: 0 140px 0 0;
}

.sidebarBtn h2 {
    color: #d49a3f;
    font-family: 'Noto Serif TC', 'Zen Maru Gothic', sans-serif, arial;
    font-size: 24px;
}

.sidebarBtn {
    color: #fff;
}
.product_info li {
    margin: 0 0 20px;
}
.product_info li span {
    color: #fff;
    font-size: 18px;
    font-family: "Noto Serif TC", serif;
    font-weight: 800;
    margin-bottom: 15px;
}

#bx-pager h6 {
    display: none;
}

ul.prod li h3.prod-thumb {
    background: transparent;
    color: #d49a3f;
    padding: 0;
    text-align: left;
}

ul.prod li h3.prod-thumb::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #d49a3f;
    margin: 10px 0;
}

ul.prod {
    list-style: none;
    display: block;
    width: 100%;
}

ul.prod li .prod-panel {
    color: #fff;
    text-align: left;
}

ul.prod li {
    margin-bottom: 40px;
    color: #fff;
}

.toShare {
    border-top: 0;
    color: #fff;
}

.toShare {}


button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    border: 1px #d49a3f solid;
    border-radius: 10px;
}


/*  */
.half_box {
    width: 100%;
    float: left;
    padding-right: 0px;
}

ul.prod li span {
    color: #fff;
}

.qaform .breakF {
    border: 1px #fff solid;
    background: #00000061;
    color: #fff;
}

.half_box li.btn_blankTop {
    margin-top: 0;
    display: flex;
    justify-content: space-between;
}

.productBtn {
    text-align: center;
    width: 40%;
    background-color: transparent;
    background-image: none;
    margin-top: 10px;
    padding-left: 0;
    border: 1px #fff solid !important;
    color: #fff;
    transition: all 0.5s;
}

.productBtn:hover {
    background-color: #00000071;
    transition: all 0.5s;
}

.blog_le .accordion>li:hover,
.blog_le .accordion>li.on_this_category {
    background: #002454 !important;
}

/*  */

.prod_related {
    background: #0000001c;
    padding: 25px 15px;
}

.prod_related h6 span:before {
    content: '相關推薦';
    font-size: 24px;
    color: #d49a3f;
}

.related_list li a {
    display: block;
    padding: 0;
    background: transparent;
}

.related_list li a p {
    font-size: 18px;
    color: #fff;
    margin: 10px 0;
    font-weight: bold;
}

.related_list li {
    transition: all 0.5s;
}

.related_list li:hover {
    transition: all 0.5s;
}

.mobile_product_name {
    display: none;
}

.product_menu_list {
    margin-bottom: 0;
    width: 15%;
    height: fit-content;
    margin-right: 5%;
    position: relative;
}

.product_menu_list::before {
    display: block;
    width: 80%;
    height: 0;
    padding-bottom: 90%;
    background-image: url(https://pic03.eapple.com.tw/642repair/logo.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -190px;
    left: 50%;
    transform: translate(-50%, 0);
}

.product_info_page .product_menu_list {
    display: none;
}



.inquiry_a3 {
    background: #d49a3f;
}

.sidebarBtn .price {
    border-bottom: 1px solid #d49a3f;
    display: block;
    align-items: baseline;
}

.inquiry_a2 {
    background: #755412;
    border: 1px #d49a3f solid;
    border-radius: 10px;
}

.inquiry_a1 {
    background: #b7892b;
}

.inquiry_a1:hover,
.inquiry_a2:hover,
.inquiry_a3:hover {
    letter-spacing: 2px;
    background: #ffc95a;
    box-shadow: 1px 1px 5px #ffffff47;
}


.product_main {
    position: relative;
    left: 100px;
    padding: 0;
    width: 60%;
    left: 0;
    margin-right: 20px;
}

.pd_tabTitle li.activeTab a {
    color: #d49a3f;
    font-size: 24px;
    font-weight: bold;
}

.pd_tabTitle li.activeTab::after {
    height: 2px;
    background: #d49a3f;
}

.pd_tabTitle li {
    border-bottom: 0;
}

.prod_tabs {
    margin-top: 80px;
    width: 100%;
}

.edit {
    color: #fff;
}



/*  */


.remit_page .main_part {
    width: 100%;
    max-width: 1440px;
    margin: auto;
    padding: 50px 20px;
    margin-top: -30vh;
}

@media screen and (max-width: 1024px) {
    .remit_page .main_part {
        margin-top: -10vh;
    }

}



.notetext {
    color: #fff;
}


.car_page .main_part {
    width: 100%;
    max-width: 1440px;
    margin: auto;
    padding: 210px 20px;
}

.shopping-cart .cart_head {
    background: #d49a3f;
    color: #fff;
}

.shopping-cart .cell.product_name p {
    color: #fff;
}

.shopping-cart .cell {
    color: #fff;
}

a {
    color: #fff;
}

.total_amount li {
    color: #fff;
}

span#all_total_price {
    font-size: 24px;
    color: #d49a3f;
}
.send_simple {
    background: #d49a3f url(../images/simple_right.png) 88% center no-repeat;
}
.formbox_form li .form__label {
    color: #fff;
}

.form label.Bigcheck {
    color: #fff;
}

.form label {
    color: #fff;
}

.total_amount li input[name=DiscountCode] {
    color: #333;
}

.declaration {
    background: #755412;
    line-height: 40px;
    padding: 5px 15px;
}

.order_finish_page .main_part {
    max-width: 990px;
    padding: 200px 20px 100px;
}

.list_before.account li {
    color: #fff;
}

.rder_finish_page .blank_letter.i {
    padding: 0;
    margin: 0 0 50px;
    font-size: 24px;
    letter-spacing: 0;
}

.order_list_tab td {
    font-size: 15px;
    color: #fff;
    padding: 10px;
    border-top: 0;
}

.payer {
    background: transparent;
}

.order_list_tit b {
    font-size: 28px;
    color: #d49a3f;
}

.order_list_tit span {
    color: #fff;
    padding: 3px;
    border-bottom: 1px #fff solid;
}

.order_list_tab td:nth-child(1) {
    background: transparent;
    color: #d49a3f;
    width: 100px;
    font-weight: 1000;
}

.order_list_tab.payer td:nth-child(1) {
    border-right: 0;
}

.order_list_pro tr:first-child {
    background: #d49a3f;
}

.order_list_pro tr:first-child td {
    color: #fff;
    font-weight: 1000;
}

.order_list_pro td {
    padding: 10px;
    border-bottom: 1px #ddd solid;
    text-align: center;
    color: #fff;
    font-size: 14px;
}

.last_box_money p,
.last_box_money em {
    display: inline-block;
    font-size: 15px;
    color: #fff;
    font-style: normal;
}

.last_box_money em span {
    color: #d49a3f;
}

.order_finish_page .lastPage {
    margin: 0 auto;
}

.order_list_head p {
    font-size: 24px;
    color: #d49a3f;
    text-align: center;
    display: inline-block;
    border-bottom: 2px #d49a3f solid;
    padding: 10px;
    margin: 20px;
}



.formbox_form li {
    grid-template-columns: 180px 1fr;
}

.note_edit {
    color: #ffffff;
    background: #ff0000ad;
    padding: 10px 20px;
    font-weight: bold;
    text-align: center;
}

.codePay_info .notetext {
    display: block;
    width: 100%;
}

.note_edit+section {
    margin: 50px 0 100px;
}

.codePay_info .information_left {
    display: flex;
    width: 100%;
    margin-top: 40px;
    align-items: center;
}

.order_list_tit {
    text-align: center;
}


.codePay_info .notetext>img {
    max-width: 100%;
}


.radio-inline__label {
    font-weight: bold;
    color: #fff;
    border: 1px solid #fff;
    cursor: pointer;
}




.radio-inline__input:checked + .radio-inline__label {
    background: #d49a3f;
    color: #fff;
}

.pd_tabInner > p {
    text-align: center;
    letter-spacing: 0.2em;
    font-weight: 400;
}







@media screen and (max-width: 1440px) {
    .product_main {
        left: 0;
    }

    .product_page .main_part {
        max-width: 1024px;
    }


}

@media screen and (max-width: 1024px) {
    .products-list .item {
        width: calc(100% / 2 - 2% - 20px);
    }

    .product-wrapper {
        width: 100%;
        margin: 0 auto;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .product_page .main_part {
        padding-top: 190px;
        max-width: 90%;
    }

    .sidebarBtn {
        margin-top: 60px;
        width: 100%;
        max-width: 80%;
    }
    
    
    .products-list {
    width: 70%;
}
    .product_menu_list {
    width: 25%;
}
}

@media (max-width: 640px) {
    .order_list_pro td span {
        font-size: 20px;
        color: #fff;
        display: block;
    }
}


@media screen and (max-width: 768px) {
    .product-layer-two {
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        width: 100%;
        margin-right: 0;
        justify-content: space-between;
        align-items: flex-end;
    }

    .product-layer-two li {
        width: calc(100% / 3);
    }

    .product-layer-two li a {
        text-wrap: pretty;
        word-break: keep-all;
    }

    .product-layer-two li:hover>a {
        padding-left: 20px;
    }

    .products-list {
        width: 100%;
        padding: 20px 0;
        margin-top: 30px;
    }

    .product_info_page .product-layer-two {
        display: none;
    }

    .product-wrapper {
        left: 0px;
    }

    .product_info_page .show_content {
        width: 100%;
        padding: 5%;
    }

    .product_main {
        position: relative;
        left: 0;
    }

    .products-list .item {
        width: calc(100% / 2 - 2% - 20px);
        margin-bottom: 30px;
    }

    .product_page .main_part {
        padding-top: 70px;
    }

    .product_main {
        left: 0;
        width: 90%;
    }

    .sidebarBtn {
        max-width: 100%;
    }

    .car_page .information_left {
        display: none;
    }

    .shopping-cart .cell:before {
        color: #fff;
    }

}

@media screen and (max-width: 500px) {

    .products-list .item {
        width: 100%;
    }

    .product_page .main_part {
        max-width: 85%;
    }

    .product-layer-two li {
        width: calc(100% / 2);
    }

    .products-list .more {
        font-size: 14px;
    }

    .products-list .item {
        width: 100%;
    }

    .products-list .item a {
        padding: 20px;
    }

    .product_info_page .main_part {
        width: 100%;
        max-width: 85%;
        margin: auto;
        padding: 50px 0px;
    }

    .products-list .item {
        width: 100%;
    }

}






/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/
.blog_back a.article_main_header_area_back {
    background: #02642F;
}

.blog_le .accordion>li:hover,
.blog_le .accordion>li.on_this_category {
    background: transparent !important;
}

.share_page .edit {
    text-align: justify;
    line-height: 180%;
    margin: 80px 0;
}

.subbox_item a:before,
.subbox_item a:after {
    transition: 0.3s;
}

.blog_le .accordion>li {
    width: 100%;
    position: relative;
    text-align: center;
    transition: all 0.3s;
}

.blog_box_edit {
    line-height: 180%;
    text-align: justify;
}

h4.blog_category_title {}

.link a {
    width: 100%;
    display: block;
    padding: 15px 10px;
}

.accordion li .link {
    padding: 0;
}

.blog_page .main_part {
    width: 100%;
    max-width: 60%;
    margin: auto;
    padding: 0px;
}

.clearfix:before,
.clearfix:after {
    display: none;
}




/* 選單 */
.blog_ri {
    width: 100%;
    padding: 0;
    min-height: 75vh;
}

.blog_box {
    min-height: 20vw;
    padding: 0px;
    display: flex;
    flex-direction: column;
}

.blog_le {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;
    /* padding: 0; */
}

h5.blog_le_t {
    display: none;
    font-size: 24px;
    font-weight: 500;
    color: #d49a3f;
    font-family: serif;
    letter-spacing: 2px;
    margin-bottom: 80px;
    width: auto;
    font-family: 'Noto Serif TC', 'Zen Maru Gothic', sans-serif, arial;
}

.blog_search {
    width: 90%;
    position: relative;
    margin-bottom: 60px;
    display: flex;
    justify-content: flex-end;
}

.blog_search form {
    width: 20%;
    position: relative;
    display: none;
}

.blog_le .accordion {
    list-style-type: none;
    margin: auto;
    border-radius: 0;
    border: none;
    overflow: visible;
    width: 80%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-around;
    border-top: 1px #43453d solid;
}

.accordion li .link a {
    font-size: 16px;
    color: #43453d;
    font-weight: 400;
    padding: 5px 10px;
    transition: all 0.3s;
}

.blog_le .accordion>li:hover .link a,
.blog_le .accordion>li.on_this_category .link a {
    color: #d49a3f !important;
    transition: all 0.3s;
}

.accordion li::before {
    content: "";
    display: block;
    background-color: #d49a3f;
    height: 2px;
    width: 0%;
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s;
}

.accordion li:hover:before,
.blog_le .accordion>li.on_this_category::before {
    width: 95%;
    transition: all 0.5s;
}

.blog_search input[type=search] {
    outline: none;
    box-sizing: border-box;
    width: 100%;
    font-size: 14px;
    color: #999;
    border: 0;
    border-radius: 0;
    border-bottom: 1px #565656 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: 38px;
    height: 38px;
    background: url(../images/search-icon.png) no-repeat 9px center transparent;
    border: none;
    transform: scaleX(-1);
}

.blog_search input[type="submit"]:hover {
    background: url(../images/search-icon.png) no-repeat 9px center transparent;
    border: none;
    color: #fff;
    transition: all 0.3s;
}

.blog_search input[type=search]:focus {
    color: #ccc;
}








/* 內容 */
.subbox_item a:after {
    display: none;
}

.subbox_item a:before {
    content: "";
    z-index: 19;
    bottom: 15px;
    right: 15px;
    color: #fff;
    letter-spacing: 0px;
    border: 1px #fff solid;
    transition: all 0.3s;
}

.subbox_item a:hover:before {}

.blog_list_le {
    width: 26%;
    height: auto;
    overflow: hidden;
    position: relative;
    margin-right: 3%;
    aspect-ratio: 4 / 3;
}

.i_blog_le img,
.blog_list_le img {
    display: block;
    max-width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s;
}

.subbox_item a:hover .blog_list_le img {
    transform: translate(-50%, -50%) scale(1.1);
    transition: all 0.5s;
}



.subbox_item a {
    display: inline-block;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    grid-gap: 0;
}

.blog_list_ri {
    display: inline-block;
    vertical-align: top;
    padding: 20px;
    width: 100%;
}

.blog_list_ri p {
    font-size: 16px;
    color: #545454;
    line-height: 130%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;
    line-height: 30px;
}

.sidebarBtn .price span {
    color: #7e8d2994;
    font-size: 14px;
}
.product_info li:nth-of-type(1) .txt_box{
    line-height: 0.9;
}

.product_info li .txt_box {
    color: #ffffffbf;
    font-size: 14px;
}
.product_info li .txt_box br{
}

.sidebarBtn .price span.sp_price {
    color: #4c804d;
    font-size: 16px;
}

.prod_info_clearfix {
    display: none;
}

.blog_back a.article_btn_back {
    background: #d49a3f;
}





/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/
.blog_back a.article_main_header_area_back {
    background: #02642F;
}

.blog_le .accordion>li:hover,
.blog_le .accordion>li.on_this_category {
    background: transparent !important;
}

.share_page .edit {
    text-align: justify;
    line-height: 180%;
    margin: 80px 0;
}

.subbox_item a:before,
.subbox_item a:after {
    transition: 0.3s;
}

.blog_le .accordion>li {
    width: 100%;
    position: relative;
    text-align: center;
    transition: all 0.3s;
}

.blog_box_edit {
    line-height: 180%;
    text-align: justify;
}

h4.blog_category_title {
    text-align: center;
    color: #d49a3f;
    font-size: 36px;
}

.link a {
    width: 100%;
    display: block;
    padding: 15px 10px;
}

.accordion li+li .link {
    padding: 0;
    border-top: 0;
}

.blog_page .main_part {
    width: 100%;
    max-width: 60%;
    margin: auto;
    padding: 0px;
}

.clearfix:before,
.clearfix:after {
    display: none;
}




/* 選單 */
.blog_ri {
    width: 100%;
    padding: 0;
    min-height: 75vh;
}

.blog_box {
    min-height: 20vw;
    padding: 0px;
    display: flex;
    flex-direction: column;
}

.blog_le {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding-top: 60px;
}

h5.blog_le_t {
    display: none;
    font-size: 24px;
    font-weight: 500;
    color: #d49a3f;
    font-family: serif;
    letter-spacing: 2px;
    margin-bottom: 80px;
    width: auto;
    font-family: 'Noto Serif TC', 'Zen Maru Gothic', sans-serif, arial;
}

.blog_search {
    width: 90%;
    position: relative;
    margin-bottom: 40px;
    display: flex;
    justify-content: flex-end;
}

.blog_search form {
    width: 20%;
    position: relative;
}

.blog_le .accordion {
    list-style-type: none;
    margin: auto;
    border-radius: 0;
    border: none;
    overflow: visible;
    width: 80%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-around;
    border-top: 1px #fff solid;
}

.accordion li .link a {
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    padding: 5px 10px;
    transition: all 0.3s;
}

.blog_le .accordion>li:hover .link a,
.blog_le .accordion>li.on_this_category .link a {
    color: #d49a3f !important;
    transition: all 0.3s;
}

.accordion li::before {
    content: "";
    display: block;
    background-color: #d49a3f;
    height: 3px;
    width: 0%;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s;
}

.accordion li:hover:before,
.blog_le .accordion>li.on_this_category::before {
    width: 95%;
    transition: all 0.5s;
}

.blog_search input[type=search] {
    outline: none;
    box-sizing: border-box;
    width: 100%;
    font-size: 14px;
    color: #fff;
    border: 0;
    border-radius: 0;
    border-bottom: 1px #fff 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: 38px;
    height: 38px;
    background: url(../images/search-icon.png) no-repeat 9px center transparent;
    border: none;
    transform: scaleX(-1);
    filter: brightness(100);
}

.blog_search input[type="submit"]:hover {
    background: url(../images/search-icon.png) no-repeat 9px center transparent;
    border: none;
    color: #fff;
    transition: all 0.3s;
}

.blog_search input[type=search]:focus {
    color: #ccc;
}








/* 內容 */
.subbox_item a:after {
}

.subbox_item a:before {
    opacity: 1;
    content: "閱讀全文";
    padding: 2px 12px;
    z-index: 19;
    top: auto;
    bottom: 0;
    right: 130px;
    color: #fff;
    font-weight: bold;
}

.blog_list_le {}

.i_blog_le img,
.blog_list_le img {
    display: block;
    max-width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.subbox_item a {
    display: inline-block;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.blog_list_ri {
    display: inline-block;
    vertical-align: top;
    padding: 20px;
    width: 75%;
    padding-left: 0;
    padding-bottom: 45px;
}

.blog_list_ri h5 {
    font-weight: bold;
    font-size: 18px;
    color: #fff;
    margin-top: 25px;
    margin-bottom: 25px;
    letter-spacing: 1px;
    line-height: 18px;
    font-weight: 700;
}
.blog_list_ri h6 {
    font-size: 18px;
    line-height: 18px;
    padding: 10px;
    font-weight: 700;
}


.blog_list_ri em {
    color: #fff;
    position: absolute;
    bottom: 0;
    right: 0;
    margin-top: 0;
    line-height: 23px;
    font-weight: 600;
}

.blog_list_ri p {
    font-size: 14px;
    color: #545454;
    line-height: 130%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;
    line-height: 23px;
    color: #fff;
    margin: 0;
    font-weight: 500;
}

.sidebarBtn .price span {
    color: #ffffff7a;
    font-size: 14px;
    margin-right: 10px;
}

.sidebarBtn .price span.sp_price {
    color: #d49a3f;
    font-size: 20px;
}

.prod_info_clearfix {
    display: none;
}


.news_related {
    background: #1a1a1aa1;
}

.news_related h6 span:before {
    color: #d49a3f;
}

.news_related_list li a p {
    font-size: 15px;
    color: #fff;
    line-height: 2;
}

.news_related_list li a {
    display: block;
    padding: 0;
    background: transparent;
    height: 100%;
}




.blog_in_page .main_part {
    max-width: 1200px;
}







/*文章分享變1排3個*/
.blog_page .main_part {
    max-width: 70vw;
}

.blog_subbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.subbox_item {
    width: 100%;
    padding: 0;
    border-bottom: 0;
    margin: 10px 5px;
}

.toShareNews b {
    display: block;
    color: #fff;
}

.articel_mainPic {
    display: none;
}



.blog_data b{
    color: #d49a3f;
    font-size: 20px;
    font-weight: bold;
}
.blog_data span{
    color: #fff;
    font-size: 16px;
}












@media screen and (max-width: 1024px) {
    .blog_page .main_part {
        max-width: 80%;
    }

    .blog_in_page .main_part {
        max-width: 700px;
    }

    .subbox_item a:before {
    }

    .blog_list_le {
        width: 31%;
        margin-right: 3%;
    }

    .blog_list_ri {
        width: 65%;
        padding-top: 50px;
        padding-left: 0;
        padding-bottom: 40px;
    }
}

@media screen and (max-width: 768px) {
    .subbox_item {
        width: 100%;
    }

    .blog_le {
        display: none;
    }

    .blog_in_page .main_part {
        max-width: 80%;
    }

    .blog_list_ri {
        width: 100%;
        padding-top: 20px;
        padding-left: 0;
        padding-bottom: 40px;
    }
    .subbox_item a:before{
        bottom: 0;
        left: 0;
        right: auto;
        top: auto;
    }
}



@media screen and (max-width: 500px) {
    .subbox_item a {
        flex-direction: column;
    }

    .blog_list_le {
        width: 100%;
        margin-right: 0;
    }

    .blog_page .main_part {
        max-width: 80%;
        padding: 50px 0;
    }
}

/**/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*主分類頁面*/
.album_page .main_part,
.album_class_page .main_part,
.album_info_page .main_part {
    max-width: 1400px;
}

.show-list .item:hover .show_name {
    color: #d49a3f;
}

.show-list .show_pic {
    height: 30vh;
    max-height: 290px;
    padding-bottom: 0;
}

.show-list .show_pic img {
    display: inline-block;
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: 30vh;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    border-radius: 50px;
    transition: all 0.3s;
}

.show-list a:hover .show_pic img {
    transform: scale(1.1);
    transition: all 0.3s;
}

/*次分類頁面*/
.other_album_choice li {
    background: #4c804d;
}

.other_subalbum li p {
    line-height: 220%;
    color: #43453d;
}

.other_subalbum li a div {
    height: 30vh;
    max-height: 250px;
    overflow: hidden;
    position: relative;
}

.other_subalbum li a img {
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: 100%;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
}

.other_subalbum li a div:after {
    content: "";
    position: absolute;
    background: rgb(0 0 0 / 30%);
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(0);
    top: 50%;
    left: 50%;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

.other_subalbum li a:hover div:after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*主分類頁面*/
.album_page .main_part {
    max-width: 80%;
    padding: 50px 0;
}

.album_info_page .main_part {
    max-width: ;
}

.show-list .show_pic {
    height: 60vh;
    max-height: 430px;
    padding-bottom: 0;
    overflow: hidden;
    border-radius: 50px;
}

.show-list .show_pic img {
    display: inline-block;
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: 50vh;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
}

.show_content {}

.album_page .main_part {}

.album_page .main_part .show-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.show-list .item {
    width: 33.1%;
    padding: 0;
    margin: 20px;
    margin-bottom: 50px;
}


.album_fixed_title {
    display: none;
}


/*  */
.show-list a .show_name {
    font-size: 20px;
    color: #43453d;
    letter-spacing: 0.15em;
    line-height: 1.5;
    margin-top: 0;
    display: block;
    height: auto;
    opacity: 1;
    font-weight: bold;
    text-align: center;
    padding: 20px;
    transition: all 0.3s;
}

.show-list .item:hover .show_name {
    color: #d49a3f;
}

.subalbum-menu h2 {
    color: #c1b09c;
}

.show-list .item .overlay {
    display: none;
    position: absolute;
    content: '';
    width: 100%;
    height: 0;
    display: block;
    background: rgba(0, 0, 0, .3);
    left: 0;
    top: 0;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: all .4s 100ms cubic-bezier(.42, 0, .58, 1);
}

.show-list .item:hover .overlay {
    display: none;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    width: 100%;
    height: 100%;
}





@media screen and (max-width: 768px) {
    .show-list .item {
        width: 100%;
    }

}

/*  */


@media screen and (max-width: 600px) {

    /*照片頁*/
    .pic-list .item {
        width: 96%;
        margin: 10px 2%;
    }
}


.edit,
.show_content {}

.pic-list {
    -moz-column-count: 3;
    -moz-column-gap: 10px;
    -webkit-column-count: 3;
    -webkit-column-gap: 10px;
    column-count: 3;
    column-gap: 10px;
    width: 100%;
    margin: 0 auto;
}

.pic-list .item {
    width: 100%;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
    padding: 0;
    margin: 0;
}

.pic-list .show_pic {
    height: auto;
    padding: 0;
}

.pic-list .item img {
    max-width: 100%;
}

.other_subalbum li {
    display: inline-block;
    background: transparent;
    width: 100%;
    margin: 10px 0;
    border: none !important;
    color: #fff;
}


/*相本分類全版面 ( 限制最寬2000px
.work_page .main_part { max-width:2000px;}
.work_page .show_content { padding:0; width:100%;}
.work_page .show-list .item { width:33%; display:inline-block; float:none; margin:0; padding:0;}
@media screen and (max-width: 768px) {
.work_page .show-list .item { width:49%;}
}
@media screen and (max-width: 570px) {
.work_page .show-list .item { width:100%;}
}
.work_page .show-list .item a { max-width:100%;}
.work_page .show-list .show_pic { height:auto; line-height:0;}
.work_page .show-list .show_pic img { max-width:100%; max-height:100%;}
.work_page .show-list .show_name { position:absolute; top:50%; right:10%; width:80%; height:auto; line-height:160%; font-size: 20px; color: #FFFFFF !important; border: solid 1px #fff; text-align: center; margin: -20px 0 0 -120px; padding:5px 20px; transition:all ease-in .3s; opacity:0;}
.work_page .show-list .item:hover .show_name {opacity:1;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本列表
.work_info_page .main_part { max-width:2000px;}
.work_info_page .show_content { padding:0; width:100%;}
.work_info_page .subalbum-menu { text-align:center;}
.work_info_page .subalbum-menu h2 { float:none;}
.work_info_page .pic-list .item { margin:0; padding:10px; width:49%; float:none; display:inline-block;}
@media screen and (max-width: 768px) {
.work_info_page .pic-list .item { width:100%;}
}
.work_info_page .pic-list .show_pic { height:auto; line-height:0;}
.work_info_page .pic-list .show_pic img { max-width:100%; max-height:100%;}
.work_info_page .pic-list .item a { max-width:100%; pointer-events: none; cursor: default; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*其他分頁*/
.promotion_title h2 {
    border-bottom: 2px solid #d49a3f;
    padding: 10px 0;
}

.promotion_title {
    display: none;
}



@media screen and (max-width: 768px) {

    /* 開啟手機板下方按鈕所需設定 */
    #bottom_menu {
        background: #565656a1;
        border: #fff 1px solid;
    }

    .footer.with_shopping_mode {
        padding: 30px 0 70px;
    }

    #bottom_menu li a {
        color: #fff;
    }

    #to_top {
        bottom: 60px;
    }

    #bottom_menu .fa-cart-shopping::before {
        content: "\f07a";
        color: #fff;
    }

    .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;
    }

}

@media screen and (max-width: 600px) {

    /*手機板大圖*/
    /*
.swiper-slide img { display:none; }
.swiper-slide {    width: 100%;    height: 0;    padding-bottom: calc(100% / 3 * 4);}
.swiper-slide:nth-child(1) { background-image:url(https://pic03.eapple.com.tw/.../Banner-03.png) ; background-size:cover;   background-position: center;}
.swiper-slide:nth-child(2) { background-image:url(https://pic03.eapple.com.tw/.../Banner-04.png) ; background-size:cover;   background-position: center;}
*/

}



.contact_editbox {
    padding: 0;
}

.contact_page .main_part {
    width: 100%;
    max-width: 100%;
    margin: auto;
    padding: 0;
    background-image: url(https://pic03.eapple.com.tw/642repair/bg-05.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.contact_content {
    margin: auto;
    padding: 0;
    width: 100%;
    max-width: 60%;
}

.list_before.info li {
    padding-left: 0;
    color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin: 15px 0;
}

.contact_form li .form__label {
    display: flex;
    color: #fff;
    margin-left: 0;
    width: auto;
    padding: 10px 0;
    font-size: 15px;
    flex-direction: row-reverse;
    background: transparent;
}

.blank_letter {
    font-size: 50px;
    color: #d49a3f;
    background-position: left bottom;
    background-repeat: no-repeat;
    text-align: center;
    font-family: "Noto Serif TC", serif;
    letter-spacing: 20px;
    text-indent: 20px;
}

.contact_content form {
    display: flex;
    justify-content: space-between;
}

.contact_content .information_left {
    display: none;
}

.contact_content .information_right {
    display: block;
    width: 100%;
    padding-left: 30px;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 0;
}

.contact_le_map {
    display: none;
}

.blank_letter.i {}

.list_before {
    margin-top: 0;
    margin-bottom: 0px;
}

.contact_form li {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.contact_form li .form__insert {
    outline: #d49a3fa8;
}

.contact_form li input.noborder {
    border: 1px #d49a3f solid;
    background: transparent;
    color: #fff;
}

.contact_form li .form__insert:focus {
    border: 1px #d49a3fa8 solid;
}

.contact_form li textarea.noborder {
    border: 1px #d49a3f solid;
    background: transparent;
    color: #fff;
}

.contact_form li:nth-last-of-type(2) {
    width: 20%;
}

.contact_form li.last {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

.contact_form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.contact_form li.last blockquote {
    color: #fff;
    background: transparent;
    transition: all 0.5s;
}

.contact_form li.last blockquote:hover input,
.contact_form li.last cite:hover input {
    letter-spacing: initial;
    color: #fff;
    transition: all 0.5s;
}

.contact_form li.last blockquote,
.contact_form li.last cite {
    display: inline-block;
    vertical-align: top;
    font-style: normal;
    padding: 3px 10px;
    text-align: center;
    border: 1px #d49a3f solid;
    width: 140px;
    background: transparent;
}

.contact_form li.last blockquote:hover,
.contact_form li.last cite:hover {
    background: #d49a3f;
}

.contact_form li.last blockquote {
    margin-right: 10px;
}

.contact_form li.last cite {
    background: transparent;
    color: #43453d;
}

.prod_related h6 {
    margin: 0 auto 40px;
}

.list_before.info li::before {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: inline-block;
    position: relative;
    margin-right: 20px;
}

.note {
    text-indent: 0;
    letter-spacing: 0;
}

.star {
    margin-left: 5px;
}

.contact_form li.last input {
    color: #fff;
}

.fa-arrow-right::before {
    color: #fff;
}

@media screen and (max-width: 768px) {
    .contact_content {
        margin: auto;
        padding: 0;
        width: 100%;
        max-width: 80%;
    }

    .blank_letter {
        font-size: 6vw;
        letter-spacing: 10px;
        text-indent: 10px;
    }

    .order_finish_page .main_part {
        padding: 120px 20px 100px;
    }
}










/*  */


.blog_in_page .main_part {
    padding: 100px 0;
    max-width: 100vw;
}

.blog_box {
    align-items: center;
}

.blog_le {
    max-width: 1200px;
}

h4.blog_category_title {
    max-width: 1200px;
    margin: 0 auto;
}

.blog_shareData {
    max-width: 1200px;
    margin: 0 auto;
}