@charset "utf-8";/*這段一定要加否則中文會變亂碼*/

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}


※※※【 CSS3選取器常用語法 】※※※

結構性偽類選擇器：
規則：在父元素中所有子元素的順序，所有父元素中的子元素皆會被選取。

:nth-child(n)       第幾個子元素
:nth-child(odd)     選中奇數列的子元素=:nth-child(2n+1)
:nth-child(even)    選中偶數列的子元素=:nth-child(2n)
:nth-child(n+5)     第5個開始之後的全部子元素
:nth-child(-n+3)    前3個子元素
:last-child         最後一個子元素

----------------------------------------------------

規則：根據元素的標籤類型(tag name)，來選擇父元素中的第幾個同類型子元素被選取。

:nth-of-type(n)     第幾個同標籤的元素
:nth-of-type(odd)   選中奇數列的同標籤子元素=:nth-of-type(2n+1)
:nth-of-type(even)  選中偶數列的同標籤子元素=:nth-of-type(2n)
:nth-of-type(n+5)   第5個開始之後的全部同標籤子元素
:nth-of-type(-n+3)  前3個同標籤子元素
:last-of-type       最後一個同標籤子元素

----------------------------------------------------

【 grid容器的欄位常用於排版設定大小的方式 】:

minmax(最小值, 最大值)

例： minmax(min(90px, 100%), 1fr)
翻譯：
欄位最小寬度為 90px 和 100% 之間的較小值，如果容器小於 90px，則會改取 100% 讓欄位撐滿整行。
1fr是剩餘空間的比例，在空間允許時，讓這1個欄位平均分配剩餘寬度。

----------------------------------------------------

例： grid-template-columns: repeat(auto-fit, minmax(min((n)px, 100%), 1fr));
翻譯：
每個欄位寬度 至少 min((n)px, 100%)（也就是最多不超過 (n)px ，如果太窄就撐滿一行100%）。
每個欄位最大可擴展到 1fr(平均分配剩餘空間)。
欄位數量會依容器大小自動調整，剛好填滿一整行(auto-fit)。

----------------------------------------------------

【 clip-path: 用來裁切該元素的顯示區域 】

clip-path:circle(50% at 50% 50%);                           圓形裁切( 半徑50%  圓心在中間 )
clip-path: ellipse(60% 40% at 50% 50%);                     橢圓形裁切( x軸半徑60%  y軸半徑 40% 圓心在中間 )
clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%)      多邊形裁切(較常用)(甚麼都沒切)
clip-path: inset(20px 30px 40px 10px);                      矩形內縮裁切(少用)(從上右下左分別裁切)
clip-path: none;                                            甚麼都沒切

polygon() 使用的座標系統：

1.左上角 2.右上角 3.右下角 4.左下角 (按順序)

(0%,0%) ─────────── (100%,0%)
   │                    │
   │                    │
   │                    │
(0%,100%) ─────── (100%,100%)



補充：
可搭配 SVG 使用，clip-path: url(#myClip) ;引用 SVG 定義的裁切路徑，能做更複雜形狀。

----------------------------------------------------

【 動畫效果設定說明 】

animation: 動畫名稱 幾秒s [linear(動畫速度保持均勻) or steps(在固定時間內切成n等分逐步進行)] infinite(無限次循環) alternate(動畫結束時會反向播放呈現來回移動的狀態);
一定要要搭配 @keyframes 動畫名稱 { ... } 使用。



















/* 滾動條-------------------- */

/* 捲軸寬度及高度 */
::-webkit-scrollbar {
    width: 8px;
    /*右側捲軸寬度*/
    height: 0px;
    /*下方捲軸高度*/
}

/* 軌道背景底色 */
::-webkit-scrollbar-track {
    background-color: var(--MainColor);
}

/* 滑桿顏色 */
::-webkit-scrollbar-thumb {
    background-color: var(--SubColor1);
    border-radius: 5px;
    border: 1px solid var(--MainColor);
}

/* 滑桿滑鼠滑入時的顏色 */
::-webkit-scrollbar-thumb:hover {
    background: var(--SubColor2);
}

/*反白顏色*/
::-moz-selection {
    background-color:var(--SubColor3);
    color: #ffffff;
}

::selection {
    background-color:var(--SubColor3);
    color: #ffffff;
}

/* 網站全域ROOT設定------------------ */
:root {
  --MainColor: #89785b; /*主要色系*/
  --SubColor1: #ad9b7f; /*輔助色系1*/
  --SubColor2: #ccbba6; /*輔助色系2*/
  --SubColor3: #93713b; /*輔助色系3*/
  --SubColor4: #6d5e3e; /*輔助色系4*/  
  --SubColor5: #676B3E; /*輔助色系5*/ 
  --SubColor6: #fff; /*輔助色系6*/ 
  --FontCh: 'Alyamama','Noto Serif TC',sans-serif;/*字型設定*/
}


/* 字型崁入-中文:Noto Serif TC + 英文:Alyamama ---- */
@import url('https://fonts.googleapis.com/css2?family=Alyamama:wght@300..900&family=Noto+Serif+TC:wght@200..900&display=swap');

/*開場動畫*/
.pageIndex div#page::after {
    content: "";
    display: block;
    background-image: url(https://pic03.eapple.com.tw/maoyicarton/logo-anm.png);
    width: 240px;
    height: 200px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000000000000000000001;
    pointer-events: none;
    animation: banner-logo 3.1s forwards;
}/* logo */

.pageIndex div#page::before {
    content: "";
    display: block;
    background: #f5f1ea;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1000000000000000000000;
    animation: banner-bg 3.3s forwards;

}/* bcg */

@keyframes banner-logo {
    0% {
        opacity: 0;
        filter: blur(20);
        top: 0%;
    }
    25% {
        opacity: 1;
        filter: blur(10);
    }
    50% {
        filter: blur(0);
        opacity: 1;
        top: 50%;
    }
    90% {
        filter: blur(40);
        opacity: 0;
        top: 50%;
    }
    100% {
        filter: blur(40);
        opacity: 0;
        top: 50%;
    }
}

@keyframes banner-bg {
    0% {
        filter: blur(0);
        opacity: 1;
        width: 100%;
    }
    50% {
        filter: blur(0);
        opacity: 1;
        width: 100%
    }
    70% {
        filter: blur(20);
        opacity: 1;
        width: 100%
    }
    100% {
        filter: blur(20);
        opacity: 0;
        width:  0%;
    }
}
/*大圖text-----------------------------------*/
.bannerindex .swiper-slide:nth-child(1):before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/maoyicarton/text01.png);
    height: 100%;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(-22%, 0%);
    opacity: 1;
    z-index: 999;
    position: absolute;
    backdrop-filter: blur(10px) brightness(1.05);
    clip-path: polygon(43% 0%, 57% 0%, 57% 100%, 43% 100%)
}/*---active分開寫避免時間差-----*/
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):before{
    animation: inside1 2s;
    animation-timing-function: 
    forwards
    linear(0 0%, 0 1.8%, 0.01 3.6%, 0.03 6.35%, 0.07 9.1%, 0.13 11.4%, 0.19 13.4%, 0.27 15%, 0.34 16.1%, 0.54 18.35%, 0.66 20.6%, 0.72 22.4%, 0.77 24.6%, 0.81 27.3%, 0.85 30.4%, 0.88 35.1%, 0.92 40.6%, 0.94 47.2%, 0.96 55%, 0.98 64%, 0.99 74.4%, 1 86.4%, 1 100%);
}
/*----------------------------------------------*/
.bannerindex .swiper-slide:nth-child(2):before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/maoyicarton/text02.png);
    height: 100%;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(20%, 0%);
    opacity: 1;
    z-index: 999;
    position: absolute;
    backdrop-filter: blur(10px) brightness(0.96);
    clip-path: polygon(42% 0%, 58% 0%, 58% 100%, 42% 100%);
}/*---active分開寫避免時間差-----*/
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):before{
    animation: inside2 2s;
    animation-timing-function: 
    forwards
    linear(0 0%, 0 1.8%, 0.01 3.6%, 0.03 6.35%, 0.07 9.1%, 0.13 11.4%, 0.19 13.4%, 0.27 15%, 0.34 16.1%, 0.54 18.35%, 0.66 20.6%, 0.72 22.4%, 0.77 24.6%, 0.81 27.3%, 0.85 30.4%, 0.88 35.1%, 0.92 40.6%, 0.94 47.2%, 0.96 55%, 0.98 64%, 0.99 74.4%, 1 86.4%, 1 100%);
}
/*------------------動畫在這裡---------------------------------------*/
@keyframes inside1{
	0% {clip-path: polygon(50% 0%, 50% 0%, 50% 100%, 50% 100%);backdrop-filter: blur(0px) brightness(1);opacity: 0;}
   25% {backdrop-filter: blur(3px) brightness(1.03);opacity: 0.5;}
   75% {backdrop-filter: blur(10px) brightness(1.04);opacity: 0.9;}
  100% {clip-path: polygon(43% 0%, 57% 0%, 57% 100%, 43% 100%);backdrop-filter: blur(10px) brightness(1.05);opacity: 1;}
}

@keyframes inside2{
	0% {clip-path: polygon(50% 0%, 50% 0%, 50% 100%, 50% 100%);backdrop-filter: blur(0px) brightness(1);opacity: 0;}
   25% {backdrop-filter: blur(3px) brightness(0.98);opacity: 0.5;}
   75% {backdrop-filter: blur(10px) brightness(0.97);opacity: 0.9;}
  100% {clip-path: polygon(42% 0%, 58% 0%, 58% 100%, 42% 100%);backdrop-filter: blur(10px) brightness(0.96);opacity: 1;}
}

/* 大圖下方點點 ---------------------------------*/
.swiper-pagination-bullet {
    width: 20px;
    height: 4px;
    display: inline-block;
    border-radius: 10px;
    background: #fff;
    opacity: 1;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: #ffffff55;
}
/* header-------------------------------------- */
.pageIndex .header_area {
    position: fixed;
    background: transparent;
    padding: 15px 10px;
    transition: .4s all;
    transition-timing-function: cubic-bezier(0.6, -0.28, 0.74, 0.05);
    border-bottom: 0px solid #fff9d58c;
    border-bottom-width: 0;
    height: 0;
}
.header_area {
    position: fixed;
    background: transparent;
    padding: 15px 10px;
    transition: .4s all;
    transition-timing-function: cubic-bezier(0.6, -0.28, 0.74, 0.05);
    border-bottom: 0px solid #fff9d58c;
    border-bottom-width: 0;
    height: 0;
}
.pageIndex .header_area.sticky {
    background: #1d290696;
    border-bottom: 1px solid #fff9d58c;
    transition: .6s all;
    transition-timing-function: cubic-bezier(0.6, -0.28, 0.74, 0.05);
    height: 85px;
}
.header_area.sticky {
    background: #1d290696;
    border-bottom: 1px solid #fff9d58c;
    transition: .6s all;
    transition-timing-function: cubic-bezier(0.6, -0.28, 0.74, 0.05);
    height: 85px;
}
.pageIndex .header_area:before {
    content: "";
    position: absolute;
    width: 101%;
    height: 100px;
    background: linear-gradient(180deg, #341e00b8, transparent);
    transform: translate(-1%, -15px);
    transition: .4s all;
    transition-timing-function: cubic-bezier(0.6, -0.28, 0.74, 0.05);
}
.header_area:before {
    content: "";
    position: absolute;
    width: 101%;
    height: 100px;
    background: linear-gradient(180deg, #341e00b8, transparent);
    transform: translate(-1%, -15px);
    transition: .4s all;
    transition-timing-function: cubic-bezier(0.6, -0.28, 0.74, 0.05);
}
.pageIndex .header_area.sticky.header_area:before {
    transition: .6s all;
    transition-timing-function: cubic-bezier(0.6, -0.28, 0.74, 0.05);
    opacity: 0;
}
.pageIndex .main_header_area .container {
    max-width: 98%;
    transition: .4s all;
    transition-timing-function: cubic-bezier(0.6, -0.28, 0.74, 0.05);
}
.header_area.sticky.header_area:before {
    transition: .6s all;
    transition-timing-function: cubic-bezier(0.6, -0.28, 0.74, 0.05);
    opacity: 0;
}
.header_area.sticky .main_header_area .container {
    max-width: 1600px;
    transition: .6s all;
    transition-timing-function: cubic-bezier(0.6, -0.28, 0.74, 0.05);
}
.main_header_area .container {
    max-width: 1600px;
}
.pageIndex .navigation {
    grid-template-columns: auto 1fr;
    align-items: center;
}
.pageIndex .nav-header {
    grid-row: unset;
    max-width: 220px;
    filter: brightness(4);
}
.nav-header {
    grid-row: unset;
    max-width: 220px;
    filter: brightness(4);
}
.me_tp_features {
    display: none;
}

.pageIndex .stellarnav > ul > li > a {
    color: #fff;
    font-family: sans-serif;
    font-weight: 300;
    letter-spacing: 3px;
    margin: 0 15px;
    line-height: 44px;
    height: 39px;
}
.stellarnav > ul > li > a {
    color: #fff;
    font-family: sans-serif;
    font-weight: 300;
    letter-spacing: 3px;
    margin: 0 15px;
    line-height: 44px;
    height: 39px;
}
.stellarnav li.has-sub > a:after {
    content: "＋";
    border: 0;
    font-size: 10px;
    top: 55%;
}
/* hover效果----------------------*/
.stellarnav > ul > li:before , .stellarnav > ul > li:after {
    content: "";
    position: absolute;
    width: 4px;
    border-radius: 0 0 3px 3px;
    background: linear-gradient(180deg, #ffffff13, #ffffffe8);
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
}
.stellarnav > ul > li:hover:before,.stellarnav > ul > li:hover:after {
    animation: constantDrop 3.2s infinite linear; 
}
.stellarnav > ul > li:hover:after {
    animation-delay: 1.6s; 
}
/* 動畫在這 --------------------------------------*/
@keyframes constantDrop {
      0% { top: 50%; height: 0; opacity: 0;}
     25% { height: 20px; opacity: 1;}
     50% { top: 130%; opacity: 0.5; height: 5px; }
     75% { height: 0;}
    100% { top: 130%; height: 0; opacity: 0;}
}
/* END */


/* 下拉選單 */
.stellarnav ul ul {
    padding-top: 18px;
    background: transparent;
}
.stellarnav li li {
    border: 0;
    background: linear-gradient(180deg, #ffffff8f, #ffffffd1);
    margin-bottom: 1px;
    transition: .5s;
}
.stellarnav ul ul li a {
    padding: 12px 10px;
    font-size: 15px;
    color: #685f40;
}
.stellarnav li li.has-sub > a:after {
    right: 5%;
    top: 48%;
    content: "＋";
    border: 0;
    font-size: 15px;
}
.stellarnav li li:last-of-type {
    border-bottom-width: 0;
}
.stellarnav li li:hover {
    border: 0;
    background: linear-gradient(180deg, #ffffffd1, #ffffffd1);
    transition: .5s;
}















/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/

/*上方選單右邊設定 臉書/LINE/電話/信箱
.tp_links a:before {寬高大小設定}
.tp_links a.me_tp_fb {}
.tp_links a.me_tp_fb:before {背景換圖/建議.SVG}
.tp_links a.me_tp_line {}
.tp_links a.me_tp_line:before {背景換圖/建議.SVG}
.tp_links a.me_tp_call {}
.tp_links a.me_tp_call:before {背景換圖/建議.SVG}
.tp_links a.me_tp_mail {}
.tp_links a.me_tp_mail:before {背景換圖/建議.SVG}
*/


/*電腦LOGO
.nav-brand {}
*/

/*手機LOGO
.nav-brand-m {}
*/

/* fix links-------------------------------------- */
/*
崁入其他連結放置後台之語法:
<a class="info_fix_default info_fix_名稱" href="連結" target="_blank(在新分頁中打開)">
<img src="https://pic03.eapple.com.tw/資料夾名稱/圖片名稱.svg" /></a> 
<!--名稱-->
*/
.info_fix {
    width: 60px;
    bottom: 50px;
}
.info_fix_links{
    display: flex!important;
    width: 42px;
    border: 1px solid #fff9d596;
    border-radius: 15px;
    padding-bottom: 0;
}
.linksBtn {
    display: none;
}
.info_fix_links a {
    width: 40px;
    height: 45px;
    font-size: 1.3em;
    margin-bottom: 0;
    border-radius: 0;
    background: #273904ad;
    display: flex;
    flex-direction: column;
}
.info_fix_links a:hover {
    background: #393104c4;
    transition: .3s all;
    height: 120px;
    justify-content: space-evenly;
}
a.info_fix_default.info_fix_tel2 i.fa-phone-volume:before {
    content: "\f3cd";
}
a.info_fix_default.info_fix_tel {
    order: 1;
    border-radius: 15px 15px 0 0;
}
a.info_fix_default.info_fix_tel2 {
    order: 2;
}
a.info_fix_default.info_fix_phone {
    order: 3;
}
a.info_fix_default.info_fix_mail {
    order: 4;
    border-radius: 0 0 15px 15px;
}
a.info_fix_default.info_fix_tel:before {
    content: "市話洽詢";
    font-family: sans-serif;
    font-size: 13px;
    font-weight: 300;
    width: 20px;
    line-height: 135%;
    display: none;
    order: 1;
}
a.info_fix_default.info_fix_tel2:before {
    content: "找萬老闆";
    font-family: sans-serif;
    font-size: 13px;
    font-weight: 300;
    width: 20px;
    line-height: 135%;
    display: none;
    order: 1;
}
a.info_fix_default.info_fix_phone:before {
    content: "找袁老闆";
    font-family: sans-serif;
    font-size: 13px;
    font-weight: 300;
    width: 20px;
    line-height: 135%;
    display: none;
    order: 1;
}
a.info_fix_default.info_fix_mail:before {
    content: "來信聯絡";
    font-family: sans-serif;
    font-size: 13px;
    font-weight: 300;
    width: 20px;
    line-height: 135%;
    display: none;
    order: 1;
}
.info_fix_links a:hover:before {
    display: block;
}


/* footer-------------------------------------- */

.footer {
    background: #f8f7f2;
    padding: 80px 0 60px 0;
}
.footer:before {
    content: "";
    position: absolute;
    pointer-events: none;
    width: 100%;
    height: 100%;
    z-index: -10;
    background: url(https://pic03.eapple.com.tw/maoyicarton/noise.png);
    background-attachment: fixed;
    left: 0;
    top: 0;
    opacity: 0.7;
}
.footer .center {
    position: relative;
    max-width: 1500px;
    display: flex;
    justify-content: center;
}
.footer_info {
    padding-right: 0;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    grid-gap: 20px 30px;
    justify-items: center;
    justify-content: start;
}
.footer_logo {
    display: flex;
    max-width: 300px;
    grid-column: 1 / 3;
    margin-bottom: 30px;
}
.box_link {
    position: relative;
    order: 3;
    right: unset;
    padding: 10px;
    max-width: 320px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-content: start;
    grid-gap: 0 10px;
    justify-content: start;
}
.box_link:before {
    content: "快速聯繫";
    display: block;
    font-family: var(--FontCh);
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 2px;
    color: #849569;
    padding: 0px 0px 8px 1px;
    margin-bottom: 10px;
    border-bottom: 1px solid #dddacc;
    grid-column: 1 / 3;
}
.box_link a {
    border: 0;
    border-radius: 0;
    margin: 0;
    width: 100%;
    padding: 4px;
    font-size: 15px;
    display: grid;
    grid-template-columns: 20px auto;
    text-align: left;
    justify-content: start;
    color: #7f8566;
    transition: .4s all;
}
.box_link a:hover {
    transition: .4s all;
    background: unset;
    color: #b28525;
}
.box_link a:after {
    font-family: var(--FontCh);
    padding-left: 6px;
    font-size: 17px;
    letter-spacing: 2px;
    font-weight: 600;
}
.box_link i {
    display: flex;
    justify-content: center;
    align-items: center;
}
a.me_tp_call:after {
    content: "PHONE";
}
a.me_tp_mail:after {
    content: "E-MAIL";
}
.footer_info ul {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 30px;
}
.footer_info li:nth-child(1) {
    order: 2;
}
.footer_info li:nth-child(1):before {
    content: "聯絡資訊";
    display: block;
    font-family: var(--FontCh);
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 2px;
    color: #849569;
    padding: 0px 0px 8px 1px;
    margin-bottom: 10px;
    border-bottom: 1px solid #dddacc;
}
.footer_info li p {
    font-family: sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    color: #7c715a;
    line-height: 190%;
}
.footer_info li p a {
    font-family: sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    color: #7c715a;
    transition: .4s all;
}
.footer_info li p a:hover {
    transition: .4s all;
    background: unset;
    color: #b28525;
}
.footer_info li p.tel2:before {
    content: '手機：';
}
p.tel2 a:after {
    content: "(萬老闆)";
    font-size: 13px;
    margin-left: 5px;
}
p.phone a:after {
    content: "(袁老闆)";
    font-size: 13px;
    margin-left: 5px;
}
.footer_menu {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-gap: 10px 15px;
}
.footer_menu:before {
    content: "網站導覽";
    display: block;
    font-family: var(--FontCh);
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 2px;
    color: #849569;
    padding: 0px 0px 8px 1px;
    margin-bottom: 10px;
    border-bottom: 1px solid #dddacc;
    grid-column: 1 / 3;
}
.footer_menu a {
    font-family: sans-serif;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 1px;
    padding: 7px 7px 7px 2px;
    margin: 0;
    color: var(--SubColor4);
    background: unset;
    border: 0;
    line-height: 100%;
    transition:  .4s all;
}
.footer_menu a:hover {
    transition: .4s all;
    background: unset;
    color: #b28525;
}
.footer_menu a:nth-of-type(1) {
    display: none;
}
/* 版權 ---------------*/
.copy {
    border: 0;
    font-family: var(--FontCh);
    letter-spacing: 2px;
    color: var(--SubColor4);
    padding-left: 5px;
    padding-right: 5px;
}
.copy a {
    color: var(--SubColor4);
}

/* 回上方 ---------------*/
#to_top {
    display: flex;
    bottom: 3%;
    left: 2%;
    width: 100px;
    height: 100px;
    box-shadow: none;
    background: #ffffff30;
    backdrop-filter: blur(3px);
    border: 1px solid #c7bea2;
    padding-top: 0;
    flex-direction: column;
    color: #a9942b;
    font-family: var(--FontCh);
    font-size: 18px;
    font-weight: 600;
    align-items: center;
    justify-content: center;
}
#to_top i.top {
    width: 50px;
    height: 20px;
    margin: 5px;
}
#to_top i.top:before, #to_top i.top:after {
    height: 13px;
    width: 1px;
    top: 0;
    left: 50%;
}
#to_top i:before, #to_top i:after {
    background: #a59b7d;
}
#to_top i:before {
    transform: rotate(-45deg);
}
#to_top i:after {
    transform: rotate(45deg);
}
/* footer RWD */

@media screen and (max-width: 860px) {
.footer_info {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: auto;
}
.footer_logo {
    grid-column: 1 / 2;
    margin-right: 30px;
}
.box_link {
    order: 0;
    width: 100%;
    max-width: stretch;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 0;
}
.box_link:before{
    grid-column: 1 / 5;
}
.footer_info li:nth-child(1) {
    order: 0;
}

}
@media screen and (max-width: 768px) {
.footer.with_shopping_mode {
    padding: 80px 0 60px 0;
}
.footer_info {
    padding: 0;
}
.footer_info li+li {
    margin-top: 20px;
}
}
@media screen and (max-width: 600px) {
.footer.with_shopping_mode {
    padding: 60px 0 60px 0;
}
.footer_info {
    padding: 0;
    justify-items: start;
}
.footer_logo {
    margin-right: 0;
    margin-bottom: 15px;
    max-width: 220px;
}
.box_link {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
.box_link:before {
        grid-column: 1 / 3;
    }
.footer_info ul {
    grid-template-columns: auto;
}
.footer_info li+li {
    margin-top: 0;
}
}

/* #to_top + info_fix RWD */
@media screen and (max-width: 768px) {
#to_top {
    bottom: 75px;
    width: 60px;
    height: 60px;
    font-size: 14px;
}
#to_top i.top {
    height: 10px;
}
#to_top i.top:before, #to_top i.top:after {
    height: 10px;
}
.info_fix {
    bottom: 75px;
}
}















/* 商品下拉超過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個--結束 */

/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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-layer-two { 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;}
}


/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/* 首頁 */
#content_main {
    background-image: url(https://pic03.eapple.com.tw/maoyicarton/bcg.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: top;
}
#content_main:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(https://pic03.eapple.com.tw/maoyicarton/noise.png);
    background-size: auto;
    background-repeat: repeat;
    pointer-events: none;
    opacity: .7;
}
/* 其他頁 */
#content {
    background-image: url(https://pic03.eapple.com.tw/maoyicarton/bcg.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: top;
}
#content:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(https://pic03.eapple.com.tw/maoyicarton/noise.png);
    background-size: auto;
    background-repeat: repeat;
    pointer-events: none;
    opacity: .7;
}
.main_part {
    max-width: 1500px;
}
.path {
    display: none;
}
/*內頁BANNER設定--------*/
.banner {
    position: relative;
    overflow: hidden;
    min-height: 400px;
    z-index: 0;
}
.banner h5 {
    display: flex;
    font-family: var(--FontCh);
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 28px;
    color: var(--SubColor3);
    margin: 150px auto auto 10vw;
    align-items: flex-start;
    flex-direction: column;
    line-height: 120%;
}
.banner h5:after {
    display: block;
    color: var(--SubColor2);
    font-size: 100px;
    font-weight: 100;
    letter-spacing: -3px;
    line-height: 80%;
    order: -1;
}
.banE.banner h5 , .banC.banner h5 {
    color: var(--SubColor5);
}
.banner.banA {}
.banB.banner h5:after {
    content: "Customized items";
}
.banC.banner h5:after {
    content: "Contact us";
}
.banner.banD {}
.banE.banner h5:after {
    content: "Product catalog";
}
.banblog.banner h5:after {
    content: "News";
}
.banner.banblog:after , .banner.banB:after{
    content: "";
    position: absolute;
    width: 110%;
    height: stretch;
    background: url(https://pic03.eapple.com.tw/maoyicarton/banner.jpg);
    background-position: center;
    background-size: cover;
    background-position-x: left;
    background-position-y: bottom;
    z-index: -1;
    top: 0;
    left: 0;
    animation: banner-scroll 45s linear infinite alternate;
}
.banner.banC:after , .banner.banE:after{
    content: "";
    position: absolute;
    width: 130%;
    height: stretch;
    background: url(https://pic03.eapple.com.tw/maoyicarton/banner2.jpg);
    background-position: center;
    background-size: cover;
    background-position-x: left;
    background-position-y: center;
    z-index: -1;
    top: 0;
    left: 0;
    animation: banner-scroll2 45s linear infinite alternate;
}

@keyframes banner-scroll {
    0% {
        transform: translateX(0) scale(1.1);
    }
    100% {
        transform: translateX(-8%) scale(1);
    }
}

@keyframes banner-scroll2 {
    0% {
        transform: translateX(-15%) scale(1.3);
    }
    100% {
        transform: translateX(-22%) scale(1);
    }
}

/* RWD */
@media screen and (max-width: 1024px) {
.banner h5 {
    font-size: 25px;
}
.banner h5:after {
    font-size: 75px;
    line-height: 100%;
}
}
@media screen and (max-width: 600px) {
.banner h5 {
    font-size: 25px;
    margin: 150px auto auto 4vw;
}
.banner h5:after {
    font-size: 48px;
}
.banner.banblog:after , .banner.banB:after ,.banner.banC:after , .banner.banE:after{
    background-position-x: center;
}
}
/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/
.blog_page .main_part {
    padding: 100px 20px;
}
.blog_box {
    display: flex;
    flex-direction: column;
}
.blog_le {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
}
h5.blog_le_t {
    display: none;
}
.blog_le .accordion {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #e4ddd4;
    background: #ffffff91;
    border-radius: 0;
    font-family: var(--FontCh);
}
.blog_le .accordion li {
    width: 20%;
    border-right: 1px solid #e4ddd4;
    transition: .5s;
}
.blog_le .accordion li:nth-of-type(5n) {
    border-right: 0;
}
.accordion li .link a {
    color: #745c3e;
    font-weight: 400;
    letter-spacing: .5px;
    font-size: 14px;
    text-align: center;
    transition: .5s;
}
.accordion li+li .link {
    border-top: 0;
}
.blog_le .accordion li .link i {
    display: none;
}
.submenu {
    display: none !important;
}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {
    background: var(--SubColor1) !important;
    transition: .5s;
}
.blog_le .accordion > li:hover .link, .blog_le .accordion > li.on_this_category .link {
    color: #fff !important;
    transition: .5s;
}


.blog_search input[type=search] {
    background: #ffffff59;
    border: 0;
    border-bottom: 1px solid #d0c8bd;
    border-radius: 0;
    color: var(--SubColor3);
}
.blog_search input[type=submit] {
    filter: grayscale(3);
}
/* post */
.blog_ri {
    width: 100%;
    padding: 0 15px;
    min-height: 75vh;
}
.blog_subbox {
    grid-gap: 35px;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}
.subbox_item {
    background: #ffffff90;
}
.subbox_item a {
    grid-template-columns: none;
    grid-gap: 15px;
}
.blog_list_ri {
    padding: 5px 20px 15px 20px;
}
.blog_list_ri h5 {
    font-family: var(--FontCh);
    color: var(--SubColor4);
    font-weight: 600;
    font-size: 19px;
    letter-spacing: 1px;
}
.blog_list_ri em {
    font-size: 13px;
    color: var(--SubColor2);
    font-family: var(--FontCh);
    letter-spacing: 1px;
}
.blog_list_ri p {
    font-family: var(--FontCh);
    line-height: 200%;
    -webkit-line-clamp: 2;
    letter-spacing: .5px;
    color: #727272;
}
.blog_list_le {
    overflow: hidden;
}
.blog_list_le img {
    filter: grayscale(.6);
    transition: .5s;
}
.subbox_item a:hover .blog_list_le img {
    transform: scale(1.2);
    transition: .5s;
    filter: grayscale(0);
}
.subbox_item a:before {
    content: "＋";
    font-weight: 100;
    font-size: 40px;
    font-family: auto;
    color: #fff;
    background: transparent;
    border: 1px #fff dotted;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60%;
    right: unset;
    bottom: unset;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 35%;
}
.subbox_item a:after {
    background: transparent;
    border: 1px solid var(--SubColor2);
}
/* 內文 */
h4.blog_category_title {
    font-size: 24px;
    font-family: var(--FontCh);
    color: var(--SubColor5);
    font-weight: 600;
    letter-spacing: 1px;
}
.toShareNews b, .toShareNews a, .toShareNews a object, .toShareNews a i {
    display: block;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: .5px;
    font-family: sans-serif;
    height: 20px;
    color: #888;
}
.toShareNews a {
    margin-left: 6px;
}
.toShareNews a object {
    width: 20px;
}
.articel_mainPic img {
    display: none;
}
.blog_box_edit * {
    line-height: 240%;
    padding: 25px 0;
    color: #514A41;
    font-size: 15px;
    letter-spacing: .5px;
}
.blog_back {
    grid-template-columns: repeat(3, 70px);
    grid-gap: 20px;
    justify-content: end;
}
.blog_back a {
    font-size: 15px;
    color: #514A41;
    padding: 10px 10px;
}
.blog_back a.article_btn_prev {
    background: transparent;
    border-bottom: 1px solid #514A41;
}
.blog_back a.article_btn_back {
    background: #2325068a;
    color: #fff;
}
.blog_back a.article_btn_next {
    background: transparent;
    border-bottom: 1px solid #514A41;
}

/* other post */
.news_related {
    display: none;
}


/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */


/*相本分類全版面 ( 限制最寬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;}
*/
/* 相簿 */
.album_page .main_part {
    padding: 100px 20px;
}
.show-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 25px;
}
.show-list .show_name {
    position: absolute;
    bottom: 0;
    padding: 0 10px;
    -webkit-line-clamp: 1;
    font-family: var(--FontCh);
    font-weight: 300;
    color: #fff;
    font-size: 15px;
    height: 24px;
}
.overlay {
    height: 35px;
    background: rgb(40 32 3 / 25%);
    top: unset;
    bottom: 0;
    opacity: 1;
    transform: scale(1);
}
.show-list .item:hover .show_name {
    color: #fff;
}
.show-list .item:hover .overlay {
    background: rgb(40 32 3 / 60%);
}
.overlay:after {
    position: absolute;
    display: flex;
    width: 35px;
    height: 100%;
    content: "＋";
    color: #3d3316;
    font-size: 19px;
    font-weight: 100;
    font-family: sans-serif;
    right: -35px;
    top: 0;
    opacity: 0;
    background: #e9e4d5;
    z-index: 0;
    align-items: center;
    justify-content: center;
    transition: .5s;
}
.show-list .item:hover .overlay:after {
    transition: .5s;
    right: 0;
    opacity: 1;
}

/* RWD */
@media screen and (max-width: 1024px) {
.show-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
}
@media screen and (max-width: 600px) {
.show-list {
    display: grid;
    grid-template-columns: 1fr;
}
}
/* 下層 */
.other_subalbum li a p {
    position: absolute;
    color: #fff;
    line-height: 0;
    bottom: 14px;
    padding: 0 10px;
    -webkit-line-clamp: 1;
    font-family: var(--FontCh);
    font-weight: 300;
    font-size: 15px;
    letter-spacing: 0.1em;
}
.subalbum-menu h2 {
    font-size: 20px;
    color: var(--SubColor1);
    font-family: var(--FontCh);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;
    border-bottom: 1px #c7bdae dotted;
    padding-bottom: 10px;
    width: 100%;
}
.other_album {
    display: none;
}

/* 下層 */
.album_descrip {
    margin-bottom: 40px;
    color: var(--SubColor4);
    font-size: 15px;
    font-family: var(--FontCh);
    letter-spacing: .5px;
    line-height: 190%;
}
.pic-list .item h6 {
    font-weight: 400;
    font-size: 14px;
    line-height: 190%;
    letter-spacing: .5px;
    color: #5c5342;
    padding: 10px;
}







/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */


/*相本列表
.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; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/* 聯絡我們頁面編輯 */
form {
    display: flex;
    justify-content: space-between;
}
.contact_page .main_part {
    padding: 150px 20px;
}
/* 左邊 */
.contact_content .information_left {
    background: #372f0a8a;
    padding: 25px;
    padding-right: 30px;
    width: 350px;
}
.blank_letter {
    padding-top: 15px;
    font-family: var(--FontCh);
    letter-spacing: 1px;
    font-size: 21px;
    font-weight: 500;
    color: #fff;
    line-height: 1;
    padding-bottom: 8px;
    border-bottom: 1px #ffffff3d dotted;
}/* 標題both */
.blank_letter:after {
    content: "";
    font-size: 15px;
    display: block;
    font-weight: 400;
    letter-spacing: .5px;
    color: #ffffff6e;
}/* both */ 
.blank_letter.i:after {
    content: "Information.";
}
.list_before {
    margin-top: 25px;
    margin-bottom: 35px;
    color: #e0dec8;
    font-size: 13px;
    letter-spacing: 1px;
    margin-left: 3px;
}
.list_before.info li {
    display: block;
    padding-left: 40px;
    margin: 3px 0;
    line-height: 180%;
}
.info_TEL:before, .info_TEL2:before, .info_PHONE:before, .info_LINE:before, .info_FAX:before, .info_TAXID:before, .info_MAIL:before, .info_ADD:before, .info_ADD2:before {
    width: 35px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    font-family: var(--FontCh);
    line-height: 185%;
}
.info_TEL:before {content: "Tel.";}
.info_TEL2:before {content: "Cell.";}
.info_PHONE:before {content: "Cell.";}
.info_FAX:before {content: "Fax.";}
.info_MAIL:before {content: "Mail.";}
.info_ADD:before {content: "Add.";}

.info_TEL2:after {
    content: "萬老闆.";
    margin-left: 8px;
}
.info_PHONE:after {
    content: "袁老闆.";
    margin-left: 8px;
}

.contact_le_nomap {
    width: 100%;
    overflow: hidden;
    filter: grayscale(.7);
    transition: .5s;
}
.contact_le_nomap:hover {
    filter: grayscale(0);
    transition: .5s;
}

/* 右邊 */
.contact_content .information_right {
    background: #3b4127;
    width: calc(100% - 400px);
    padding: 30px;
    padding-left: 40px;
    padding-right: 50px;
}
.contact_content .information_right:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(https://pic03.eapple.com.tw/maoyicarton/noise.png);
    left: 0;
    top: 0;
    pointer-events: none;
}
.note {
    font-size: 13px;
    text-align: right;
    margin-left: 8px;
}
.red {
    color: #ece8d3;
}
.blank_letter.f:after {
    content: "Form.";
}
.contact_form {
    color: #afaf8f;
    font-family: var(--FontCh);
    margin-top: 50px;
    margin-bottom: 15px;
    grid-gap: 25px 30px;
    grid-template-columns: 1fr 1fr;
}
.contact_form li {
    display: grid;
    grid-template-columns: 75px 1fr;
    grid-gap: 10px;
}
.contact_form li textarea.noborder {
    border: 0;
    background: #f2f1d961;
}
.contact_form li .form__label {
    font-weight: 600;
        letter-spacing: .5px;
}
.contact_form li input.noborder {
    border: 0;
    background: #f2f1d961;
}
.contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert {
    font-size: 13px;
    font-weight: 400;
    font-family: auto;
    letter-spacing: 1px;
}
.contact_form li:nth-of-type(6) {
    grid-column: 1 / 3;
}
.tncode {
    width: 110px!important;
    height: 30px!important;
    line-height: 30px!important;
    color: #4d462c!important;
    background: linear-gradient(to bottom, #fffeed 0%, #dedfca 100%)!important;
    box-shadow: unset!important;
    font-size: 13px!important;
    font-family: auto!important;
    font-weight: 400!important;
    border-radius: 2px!important;
    letter-spacing: 1px!important;
    border: 0!important;
}
.tncode:hover {
    background: #fff!important;
    color: #37371a!important;
    box-shadow: unset!important;
    border-color: unset!important;
}
button, input, optgroup, select, textarea {
    color: #ffffff;
}
.contact_form li.last {
    grid-column: 1 / 3;
    margin-top: 0;
    grid-gap: 20px;
}
.contact_form li.last blockquote, .contact_form li.last cite {
    padding: 0;
    border: 1px #7e806b solid;
    width: 130px;
    font-weight: 600;
}
.contact_form li.last cite {
    background: var(--SubColor4);
    color: #fff;
}
.noborder {
    letter-spacing: 1px;
    font-size: 14px;
}

/* RWD */
@media screen and (max-width: 1024px) {
.contact_form {
    grid-template-columns: 1fr;
}
.contact_form li:nth-of-type(6) {
    grid-column: unset;
}
.contact_form li.last {
    grid-column: unset;
}
}
@media screen and (max-width: 768px) {
form {
    flex-direction: column;
}
.contact_content .information_left {
    width: 100%;
    margin-bottom: 35px;
}
.list_before {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 25px 0 35px 3px;
}
.contact_content .information_right {
    width: 100%;
}
}
@media screen and (max-width: 600px) {
.list_before {
    display: block;
}
.contact_form li {
    grid-template-columns: 1fr;
}
.contact_form li .form__label {
    background: rgb(47 53 29);
}
}



/* 開啟手機板下方按鈕所需設定 */
/*#bottom_menu {display: block; }*/
