@charset "utf-8";
/*網站全域設定/＝＝＝＝＝*/
/*
  #ADA17E /*網站主要色系
  #cbc0a0 /*網站輔助色系1
  #658781; /*網站輔助色系2*/

/*Main/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*Header/＝＝＝＝＝*/
.main_header_area{background: #ffffff00;}
/*選單最大寬度設定*//*
.main_header_area .container {    max-width: 95%;}
*/
.navigation {padding: 10px 0 10px 0px;}
/*第一層*/
.stellarnav > ul > li > a{transition:all 0.3s;}
.stellarnav > ul > li:hover > a{color: #cf9a68;}
/*第二層*/
.stellarnav li li > a , .stellarnav li li.has-sub > a{    padding: 7px 5px;    transition: all 0.3s;border-left:1px solid transparent;}
.stellarnav li li:hover > a , .stellarnav li li.has-sub:hover > a{color: #cf9a68;	padding-left:10px;border-color:#cf9a68 ;}
/*SubMenu*/
.shop_search_btn {background: #2d2380;}
.tp_links a{transition:all 0.3s;}
.tp_links a:hover {    color: #cf9a68;}

/* =============== ▼ 全域變數 ▼ =============== */

:root {
    /* 顏色 */
    --main-color: #555;
    --sub1-color: #666;
    --sub2-color: #9f9fa0;
    --sub3-color: #fafafa;
    --ac-color: #542800;
    --f1-color: #404040;
    --f2-color: #c8c8c8;
    --f3-color: #f6f6f6;
    --bg-color: white;

    /* 字型 */
    --font: "Noto Sans TC", sans-serif;
    --sfont: "Martian Mono", monospace;

    /*變化*/
    --tr: ease-out 0.5s;
    /*圓角*/
    --br:0;
}

/* =============== ▲ 全域變數 ▲ =============== */

/* ＝＝＝ 【【  版型設定(基本) ↓↓↓  】】 ＝＝＝ */
/* 布局 */
.header_area,
.header_area.sticky {
    background: var(--bg-color);

}

.main_header_area .container {
    max-width: 1600px;
}

.navigation {
    display: flex;
    align-items: center;
}

/* +++ logo -------------------- */

/*logo大小*/
.nav-header {
    max-width: 250px;
}

.nav-brand img {
    display: block;
    /*填滿h1空白*/
}

/* 開場 LOGO 遮罩效果 */
/* 白色背景 */
.pageIndex::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: white;
  z-index: 10000;
  pointer-events: none;
  animation: bgFadeOut 2s ease forwards;
  animation-delay: 1.7s; /* 與 logo 淡出時間一致 */
}

/* Logo 圖片 */
.pageIndex::after {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: url('https://pic03.eapple.com.tw/kongku/LOGO_3.png') no-repeat center center;
  background-size: contain;
  transform: translate(-50%, -50%);
  z-index: 10001;
  pointer-events: none;
  animation: logoFloatFade 2s ease forwards;
}


@keyframes logoFloatFade {
  0% {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  20% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  80% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -60%);
    visibility: hidden;
  }
}

@keyframes bgFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

/* 滾動條 -------------------- */
/* 捲軸寬度及高度 */
::-webkit-scrollbar {
    width: 12px;
    /*右側捲軸寬度*/
    height: 0px;
    /*下方捲軸高度*/
}

/* 軌道背景底色 */
::-webkit-scrollbar-track {
    background-color: var(--bg-color);
}

/* 滑桿顏色 */
::-webkit-scrollbar-thumb {
    background-color: var(--f2-color);
}

/* 滑桿滑鼠滑入時的顏色 */
::-webkit-scrollbar-thumb:hover {
    background: var(--f1-color);
}

/* +++ 主選單 -------------------- */

/* 主選單文字樣式 */
.header_area:not(.sticky) .stellarnav>ul>li>a,
.header_area:not(.sticky) .stellarnav>ul>li>a b {
    color: white;  /* 或用 #fff */
    font-family: var(--font);
    letter-spacing: .15rem;
    margin: 0;
}
.header_area:not(.sticky) .stellarnav>ul>li>a,
.header_area:not(.sticky) .stellarnav>ul>li>a b {
    color: #ffffff;  /* 或用 #fff */
    font-family: var(--font);
    letter-spacing: .15rem;
    margin: 0;
}

/* 滾動後 sticky，文字變黑色 */
.header_area.sticky .stellarnav>ul>li>a,
.header_area.sticky .stellarnav>ul>li>a b {
    color: var(--f1-color);
    font-family: var(--font);
    letter-spacing: .15rem;
    margin: 0;
}

/* 滑鼠懸停變色 */
.stellarnav>ul>li:hover a {
    color: var(--f2-color);
    transition: var(--tr);
}

/* 翻轉後文字 */
.stellarnav>ul>li>a b:nth-child(2) {
    font: 300 14px/40px var(--sfont);
    letter-spacing: .1rem;
}

/* 按鈕間距+高度 */
.stellarnav>ul>li {
    padding: 0px 1rem;
}

/* 隱藏三下拉角形 */
.stellarnav li.has-sub>a:after {
    display: none;
}

.stellarnav>ul>li.has-sub>a {
    padding-right: unset;
}

body{ font-family:"微軟正黑體"; -webkit-text-size-adjust: none; -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; }
a {color: #555;}

/* 一開始白色 */
.header_area:not(.sticky) .me_tp_features a,
.header_area:not(.sticky) .me_tp_features a i,
.header_area:not(.sticky) .me_tp_features a span,
.header_area:not(.sticky) .me_tp_features a b {
    color: white;
    letter-spacing: .15rem;
}

/* 滾動後變黑色 */
.header_area.sticky .me_tp_features a,
.header_area.sticky .me_tp_features a i,
.header_area.sticky .me_tp_features a span,
.header_area.sticky .me_tp_features a b {
    color: var(--f1-color); /* 或直接 color: black; */
    letter-spacing: .15rem;
}
/* 預設未滾動：使用白色 logo */
.header_area:not(.sticky) .nav-brand img {
    content: url('https://pic03.eapple.com.tw/kongku/LOGO_3_white.png');
}

/* 滾動後 sticky：使用彩色 logo */
.header_area.sticky .nav-brand img {
    content: url('https://pic03.eapple.com.tw/kongku/LOGO_3.png');
}

/* +++ 下拉區塊 -------------------- */
/* 整個下拉的外框 */
.stellarnav ul ul{
    border: solid 1px var(--f3-color);
    background: transparent;
    width: 185px;
    box-shadow: rgba(0 0 0/5%) 0px 2px 8px 0px;
}

/* 次分類定位 */
.stellarnav li.drop-left ul ul {
    right: 185px;/*同寬度*/
}

/*----------*/
.stellarnav li.has-sub li {
    border: none;
    border-bottom: solid 1px var(--f3-color);
    background: var(--bg-color);
}

.stellarnav li.has-sub li:last-of-type {
    border-bottom: none;
}

.stellarnav li.has-sub li:hover {
    background: var(--f3-color);
    transition: var(--tr);
}

/* 下拉選單文字 */
.stellarnav li.has-sub li a,
.stellarnav.mobile li li.has-sub a {
    font-size: 13px;
    padding: .75rem 1rem;
    color: var(--f1-color);
}
/* 寬度 */
.main_header_area .container {
    max-width: 1200px;
}

/* logo大小 */
.nav-header {
    max-width: 120px;
    transition: var(--tr);
}

/* 下滑變化 */
.header_area{
    background: transparent;
    transition: var(--tr);
    /* position: fixed; */
    position: relative;
}

.header_area{
    position: fixed;
}

.header_area.sticky {
    background: #ffffffc2;
    transition: var(--tr);
    position: fixed;
} 

/* 桌面版限定模糊效果 */
@media (min-width: 768px) {
  .header_area.sticky {
    background: #ffffff8f;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(10px); /* Safari 支援 */
    transition: var(--tr);
    position: fixed;
  }
}

/* 手機版保留原樣 */
@media (max-width: 767px) {
  .header_area.sticky {
    background: #ffffffc2;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: var(--tr);
    position: fixed;
  }
}

/* 下拉選單文字換行 */
.stellarnav.desktop li.has-sub a {
    word-break: keep-all;
}
/* 布局調整 */
.me_tp_features{
    order: 3;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    width: 370px;
    gap: 4px;
}

/* 手機版保留原樣 */
@media (max-width: 767px) {
.me_tp_features{
    order: 3;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    width: 200px;
    gap: 4px;
  }
}
.tp_btn_cart,
.tp_btn_notice {
  white-space: nowrap;
}
.me_tp_features {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: -4px;
}
.path p, .path p a {
    display: none;
}

/*隱藏購物車搜尋欄*//*
.box_search{display:none;}
/*隱藏購物車*//*
.me_tp_features a.tp_btn_cart {display: none;}
/*隱藏匯款通知*//*
.me_tp_features a.tp_btn_notice{display: none;}
/*隱藏選單按鈕連結*//*
.tp_links{display: none;}

/*選單漸變效果＝＝*/
/*首頁固定選單 開啟後下方RWD 768對應標籤也需開啟*//*
.pageIndex .header_area{position: fixed;    width: 100%;}

/*Footer/＝＝＝＝＝*/
.footer { border-top: 0px solid #555;  padding: 50px 0 0; font-size: 16px;	background: #fbfbfb; background-size: cover;	background-position: center;	box-shadow: 0 0 8px rgba(0 0 0 / 8%);}
.footer_menu a { background: #b2b2b200;  border: none;  color: #555;  padding: 5px 10px;   transition: all .3s;   letter-spacing: .15rem;}
.footer_menu a:hover { background: none;  color: #555;  border-radius: 6px;}
.footer_info ul {  width: calc(100% - 100px);}
.footer_info {  padding: 0 0 0 130px;  margin: auto;  grid-gap: 10px;}
.footer_info li:nth-child(1) {  width: 100%;  display: flex;  flex-flow: column;  padding: 0 17px;  flex-wrap: wrap;  flex-direction: row;}
.footer_info li p {
    color: #555;
    line-height: 190%;
    display: inline-block;
    width: calc(100% / 2);
    letter-spacing: 1px;
}
.footer_info li p a { color: #555;}
.footer_info li:nth-child(2) {
    width: 100%;
    margin: 25px 0 0;
    border-top: 1px solid rgb(0 0 0 / 20%);
    padding-top: 25px;
}
.footer_logo img {
  width: 50%;  /* 手機等小螢幕基準 */
  max-width: 120px;
  height: auto;
}
@media (min-width: 1024px) {
  .footer_logo img {
    width: auto;  /* 用固定寬度 */
    max-width: 150px;
  }
}
.copy {    background: #2D2380;color: #fff;border:none;}
.copy a{    color: #fff;transition:all 0.3s;}
.box_link a{transition:all 0.3s;}
.box_link a:hover {    background: #ADA17E;    color: #fff;}
.tp_links {    display: none;}
.box_link {    display: none;}

/*Logo/＝＝＝＝＝*/
.nav-brand {    width: 100%;max-width: 120px;transition:all 0.3s;}
.header_area .nav-brand {    transition: all 0.3s;    margin-top: 10px;}
.header_area.sticky .nav-brand{}


/*按鈕/＝＝＝＝＝*/
.animated-arrow {    background: #AAAAAA;}

/*大圖/＝＝＝＝＝*/
/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:static; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;}
.swiper-slide img { height:auto;}
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}

/* 大圖文字 */
.swiper-wrapper {
    position: relative;
}

.swiper-slide.swiper-slide-active:before,
.swiper-slide.swiper-slide-active:after {
    position: absolute;
    left: 8vw;
    bottom: 12vw;
    z-index: 100;
    color: #fff;
    letter-spacing: 6px;
    text-shadow: 2px 2px 10px rgb(0 0 0 / 50%);
    animation: ss 1.5s ease backwards;
}

.swiper-slide.swiper-slide-active:nth-child(1):before,
.swiper-slide.swiper-slide-active:nth-child(1):after {
    left: auto;
    right: 8vw;
}

/* 預設大標（給第1張用） */
.swiper-slide.swiper-slide-active:before {
    content: "工具人，最懂你需求的人";
    font-size: 1.3vw;
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

/* 第2張的覆蓋大標 */
.swiper-slide.swiper-slide-active:nth-child(2):before {
  content: "工具進化，創作無限";
}

/* 副標預設 */
.swiper-slide.swiper-slide-active:after {
  font-size: .8vw;
  margin-bottom: -1.8vw;
  animation-delay: 1s;
}

/* 第1張的副標 */
.swiper-slide.swiper-slide-active:nth-child(1):after {
  content: "KONGKU 為手作人打造，陪你完成每一次靈感與創作的挑戰";
}

/* 第2張的副標 */
.swiper-slide.swiper-slide-active:nth-child(2):after {
  content: "融合40年工藝技術與現代設計，重新定義你手中的操作感";
}

@keyframes ss {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 768px) {
    .swiper-slide.swiper-slide-active:before {
        font-size: 2.3vw;

    }

    .swiper-slide.swiper-slide-active:after {
        font-size: 1.8vw;
    }



}

/*手機版大圖文字調整-開始/＝＝＝＝＝*/
@media screen and (max-width: 768px) {
    .swiper-wrapper {
        position: relative;
    }

    .swiper-slide.swiper-slide-active:before,
    .swiper-slide.swiper-slide-active:after {
        position: absolute;
        left: 8vw;
        bottom: 12vw;
        z-index: 100;
        color: #fff;
        letter-spacing: 4px;
        text-shadow: 0 0 5px rgb(137 125 108);
        animation: ss 1.5s ease backwards;
    }

    .swiper-slide.swiper-slide-active:nth-child(1):before,
    .swiper-slide.swiper-slide-active:nth-child(1):after {
        left: auto;
        right: 8vw;
    }

    .swiper-slide.swiper-slide-active:before {
        content: "工具人，最懂你需求的人";
        font-size: 2.3vw;
        font-family: "Poppins", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    }

    .swiper-slide.swiper-slide-active:after {
        content: "工具進化，創作無限";
        font-size: 1.8vw;
        margin-bottom: -3vw;
        animation-delay: 1s;
    }

    .swiper-slide.swiper-slide-active:nth-child(1):after {
        content: "KONGKU 為手作人打造，陪你完成每一次靈感與創作的挑戰";
    }

    .swiper-slide.swiper-slide-active:nth-child(2):after {
        content: "融合40年工藝技術與現代設計，重新定義你手中的操作感";
    }
}
/*手機版大圖文字調整-結束/＝＝＝＝＝*/

/*手機版大圖比例調整-開始/＝＝＝＝＝*/
@media screen and (max-width: 768px) {
    .bannerindex,
    .swiper-banner,
    .swiper-wrapper,
    .swiper-slide {
        height: 45vh !important;
    }

    .swiper-slide img {
        width: 100%;
        height: 100% !important;
        object-fit: cover;
        display: block;
    }
}
/*手機版大圖比例調整-結束/＝＝＝＝＝*/

/*Banner/＝＝＝＝＝*/
.banA,
.banB,
.banC,
.banD,
.banE,
.banF,
.banG {
    background: transparent center center no-repeat;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;

}
.banner {
    position: relative;
    overflow: hidden;
    z-index: -2;
}
.banner:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/kongku/1-2-2.jpg);
    background-position: center;
    background-position: center;
    z-index: -1;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

.banner h5 {
    color: #ffffff;
    text-align: center;
    font-size: 46px;
    letter-spacing: 0.2em;
    padding-top: 200px;
    font-weight: 400;
    margin-top: 10px;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.6);
}

body.album_page .banner h5,
body.album_class_page .banner h5,
body.album_info_page .banner h5 {
    color: #fff;
}

.banner h5:after {
    content: 'Product Description';
    width: 100%;
    max-width: 900px;
    font-size: 15px;
    display: block;
    margin: auto;
    margin-top: 5px;
    margin-bottom: 40px;
    font-weight: 500;
    letter-spacing: 0.3em;
    font-family: '微軟正黑體';
}


/*Page/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*麵包屑＝＝*/
.path p a:hover {    color: #ADA17E;}
/*頁碼＝＝*/
.page {    width: 100%;    margin: 40px auto;    display: flex;    flex-wrap: wrap;    justify-content: center;    align-items: center;}
.page li {    display: flex;    margin: 3px;    width: 30px;    height: 30px;    line-height:30px;    align-items: center;    justify-content: center;}
.page li a {    display: block;    width: inherit;    height: inherit;    line-height: inherit;    padding: 0;    transition:all 0.3s;}
.page strong, .page a:hover {    background: #ADA17E;border: 1px solid #ADA17E;}

/*購物車/＝＝＝＝＝*/
.prod_part {    width: 100%;}
.products-list {    display: grid;    gap: 30px;    grid-template-columns: 1fr 1fr 1fr 1fr;}
.products-list:before{content:none;}
.products-list .item {    width: 100%;}

.prod_part {border-top: 1px solid #e2e2e2;padding: 100px 20px;}

.pageIndex .productsListBox, .productsListBox.swiper {    
	width: 90%;
	margin: 0px auto;
    padding: 40px 0;
}

/*購物車/外層＝＝*/
/*顏色*/
.products-list .more {border: 1px solid #aaaaaa;color: #3B3B3B;}
.products-list .item a:hover .more {    background: #aaaaaa;}
/*價格*/
.products-list .price {    display: flex;    margin-bottom: 5px;    align-items: center;    justify-content: center;    flex-wrap: wrap;}
.products-list .price b {    margin: 0 5px;    line-height: 180%;    text-align: center;color: #eb8e37;}
.products-list .price b.ori_price {    font-size: 14px;}

.i_prod_tit span {
    font-size: 24px;
    color: var(--maincolor);
    font-weight: 700;
    letter-spacing: 4px;
    margin-top: 5px;
}
.i_prod_tit span::before {
    content: "PRODUCT"; /* 替換成英文副標 */
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #000000;
    letter-spacing: 2px;
    margin-bottom: 5px;
    text-transform: uppercase; /* 全部大寫可選 */
}

/*外層版面*/
.product_page .main_part {    width: 90%;	max-width: 1500px;}
.product_page .show_content {    display: flex;    flex-wrap: wrap;    align-items: flex-start;    justify-content: space-between;}
.product_page .products-list {    width: calc(100% - 280px);}
.product-layer-two {    width: 250px;    margin: 0;}
.product_info_page .product-layer-two {    display: none;}
.product-layer-two li {    margin: 0;    width: 100%;padding: 0 10px;}
.product-layer-two > li.active {    background: #f2f2f2;}
.product-layer-two li.active a {    border: unset;border-bottom: 1px dotted #ccc;}
/**/
.product-layer-two li a {    color: #222;    border: none;    background: transparent;    transition: all 0.3s;    line-height: 200%;    transition: all 0.3s;}
.product-layer-two > li > a {    border-bottom: 1px dotted #ccc;padding-left: 25px;}
.product-layer-two li:hover > a , .product-layer-two li.active > a{color: #ADA17E;}
.product-layer-two li:hover > a:before , .product-layer-two li.active > a:before {background: #ADA17E; color:#fff;}
.product-layer-two > li > a:before {
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    height: 18px;
    content: "＞";
    color: #ADA17E;
    background: #f2f2f2;
    width: 18px;
    text-align: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
    padding-left: 2px;
    font-size: 13px;
}
/**/
.product-layer-two li ul {    position: relative;padding-top: 1px;}
.product-layer-two li li {    border: none;background: transparent;}
.product-layer-two li li a{    background: transparent;}
.product-layer-two li li:hover a{color: #ADA17E;}

/*hover到才顯示副選單 關掉↓*/
.product-layer-two li li {    display: block;}

/*購物車/內層＝＝*/
.product_info_page .main_part {    width: 90%;}
/*按鈕顏色*/
.inquiry_a1{background: #cbc0a0;}
.inquiry_a2{background: #bdab77;}
.inquiry_a3{background: #ADA17E;}
.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover{background: #222;}
.lastaction {    color: #ADA17E;    background-color: #f2f2f2;}
.nextaction {    background-color: #ADA17E;}
.lastPage {    background: #ADA17E;}
/*商品側邊規格*/
.product_info li .txt_box {    color: #222222;    width: 100%;}
.sidebarBtn .sp_price {   color: #cbc0a0;}
.mobile_product_name{font-size: 24px;}
/*相關推薦*/
.prod_related h6 span:before{font-size: 28px;}

/*文章首頁*/
.module_i_news { border-top: 1px solid #e2e2e2; padding: 100px 20px;}
.module_i_news .title_i_box h6{font-size: 16px; font-weight: 100; color: #8d8d8d; letter-spacing: 5px;margin-left: 3px;}
.module_i_news .title_i_box h4 {
    font-size: 24px;
    color: var(--maincolor);
    font-weight: 700;
    letter-spacing: 4px;
    margin-top: 5px;
}
.module_i_news .title_i_box h4::before {
    content: "Latest News"; /* 替換成英文副標 */
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #000000;
    letter-spacing: 2px;
    margin-bottom: 5px;
    text-transform: uppercase; /* 全部大寫可選 */
}

.module_i_news01, .prod_related {
    background: repeating-linear-gradient(-45deg, #bcb08b1f, #bcb08b1f 1px, transparent 1px, transparent 10px), repeating-linear-gradient(45deg, #bcb08b1f, #bcb08b1f 1px, transparent 1px, transparent 10px);
	border-top: 1px solid #d4d4d4;
}

.module_i_news_list, .module_i_news_list.swiper{padding: 15px 0 40px;}

.module_i_news ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 50px;
  justify-content: center; /* 讓 grid 容器裡的欄位置中 */
  width: fit-content; /* 讓 ul 寬度隨內容縮放 */
  margin: 0 auto; /* ul 區塊置中 */
}
.blog_subbox{grid-template-columns:1fr;grid-gap: 40px;}

.module_i_news li {  background: white; border: 1px solid #e9e9e9;}
.module_i_news li a { display: flex; flex-wrap: wrap;grid-gap: 0px;}

.i_blog_le, .blog_list_le   {aspect-ratio: 16 / 9;}
.i_blog_ri   {padding: 10px 15px 15px;}
.blog_list_ri{padding: 15px 10px; border-top: 1px solid #efefef; border-bottom: 1px solid #efefef;}

.i_blog_ri h5, .blog_list_ri h5{line-height: 150%; font-size: 16px; color: #3b3b3b; font-weight: 600; text-align: justify;-webkit-line-clamp: 3;}
.blog_list_ri h5 { font-size: 20px;}

.i_blog_ri em, .blog_list_ri em{font-size: 12px;margin: 8px 0;}
.i_blog_ri p, .blog_list_ri p {font-size: 12px;line-height: 150%;color: #565656; font-weight: 600; text-align: justify;s-webkit-line-clamp: 5;-webkit-line-clamp: 10;}

.module_i_news li a:before, .subbox_item a:before {display:none; color: #ffffff;}
.module_i_news li a:after, .subbox_item a:after{display:none; background: transparent; border: none;}

.module_i_news li:hover{background: #efefef;}


.subbox_item a {grid-template-columns: 250px 1fr;}

/*文章內層*/
.blog_back a.article_btn_back {    background: white; border: 1px solid #949494; color: black;}
.blog_back a.article_btn_prev, .blog_back a.article_btn_next { background: var(--maincolor);border: 1px solid #949494;}

.blog_box_edit * {   width: 100%; line-height: 200%;}
.blog_shareData { border-bottom: 1px solid black; padding-bottom: 10px; justify-content: flex-end;}
h4.blog_category_title {  padding: 0;  margin-bottom: 10px;}
.toShareNews b { font-size: 15px; font-weight: 300;}
.toShareNews a object{width: 20px;}

.news_related_list li a{ background: transparent;}
.news_related_list li a img { border-radius: 20px;}

/*按鈕*/
.animated-arrow {
	background: unset;
	transition:.3s;
	position:relative;
	overflow:hidden;
    color: #434343;
    background: #e7e7e7;
	margin-top: 0;
	font-size: 14px;
	height: 40px;
    line-height: 40px;
}

.animated-arrow b, .animated-arrow i{position:relative; z-index:99;}
.animated-arrow b{ font-size: 12px; }
.animated-arrow::after {
	content:"";
	position:absolute;
	width:0px;
	height:100%;
	top:0px;
	left:0px;
	background: var(--maincolor);
	transition:.5s;
}
.animated-arrow:hover {	color: #838282;}
.animated-arrow:hover::after {	width:100%;}

/*標籤*/
/*.news_tags a {    color: red;}*/

/*文章-相關推薦*/
.news_related {
    padding: 40px 20px 10px;
    border-top: 1px solid #c9c9c9;
    background: repeating-linear-gradient(-45deg, #bcb08b1f, #bcb08b1f 1px, transparent 1px, transparent 10px), repeating-linear-gradient(45deg, #bcb08b1f, #bcb08b1f 1px, transparent 1px, transparent 10px);
}
.news_related h6 span:before {  color: #575757; font-weight: 500;}
.lastPage {
    color: #3c3c3c;
    background: transparent;
    border: 1px solid #686868;
}

/*側邊*/
.blog_le .accordion > li{transition:all 0.3s;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {    background: #ADA17E !important;}
.submenu a:hover {    background: #cbc0a0;}
/*首*/
.module_i_news ul{width: 90%;	grid-template-columns:1fr 1fr 1fr 1fr;}
/*功*/
.blog_subbox{grid-template-columns:1fr 1fr 1fr;}
.blog_subbox:before{content:none;}
/*文章管理/內層＝＝*/
.blog_back a.article_btn_back{background: #ADA17E;}

/*相簿/＝＝＝＝＝*/
/*作品展示*/
.work_page .main_part , .work_class_page .main_part, .work_info_page .main_part{    max-width: 1400px; width: 90%;    margin: 0 auto;}
/*相簿管理*/
.album_page .main_part , .album_class_page .main_part, .album_info_page .main_part{    max-width: 1400px; width: 90%;    margin: 0 auto;}
/*版面*/
ul.show-list, .other_subalbum, ul.pic-list {    display: grid;    grid-template-columns: 1fr 1fr 1fr;    gap: 20px;}
ul.show-list:before , ul.pic-list:before{content:none;}
.overlay {    z-index: 1;}
.show-list .item , .other_subalbum li , .pic-list .item{width: 100%;margin:0;padding:5px;}
.show-list .show_pic , .other_subalbum li a div , .pic-list .show_pic{    display: block;    position: relative;    overflow: hidden;    height: 0;}
.show-list .show_pic , .other_subalbum li a div , .pic-list .show_pic    {    padding-bottom: 75%;}/*相簿圖片長寬比例，75% →100:75 = 4:3 */
.show-list .show_pic img , .other_subalbum li a img, .pic-list .show_pic 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%);}

.show-list .item:hover .show_name {    color: #ADA17E;}
.other_album_choice li {    background: #ADA17E;}
.subalbum-menu h2{    color: #cbc0a0;font-size: 24px;}
.other_subalbum li p {    margin-top: 10px;}
/**/

/*促銷方案/＝＝＝＝＝*/
.news_part {    width: 90%;}
.news_list ul li a:hover {    background: #f9f9f9;}
.news_list ul li p:after {    background: #ADA17E;    padding: 3px 5px;    border-radius: 5px;    color: #fff;}

.other_promotion li a:hover:before , .other_promotion li a:hover:after {border-color:#ADA17E;}

/*聯絡我們/＝＝＝＝＝*/
.contact_le_map a {    background: #ADA17E;}
.contact_form li.last cite {background: #ADA17E;}

/*會員/＝＝＝＝＝*/
.send_simple{background-color: #ADA17E;}
.rewrite_simple{background-color: #cbc0a0;}
.member_title p {    border-top: 2px #ADA17E solid;}
.login_mem_submit{background: #ADA17E;}
.login_mem_other_link a{color: #ADA17E;}
.member_login_regist a{background: #ADA17E;}
.mem_regist_title_s {    background: #cbc0a0;    color: #fff;}


/*RWD1200/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
@media screen and (max-width: 1200px) {
/*購物車/＝＝＝＝＝*/
.products-list {    grid-template-columns: 1fr 1fr 1fr;}
}

/*RWD1024/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
@media screen and (max-width: 1024px) {
/*Header/＝＝＝＝＝*/
.navigation {    padding: 10px;}
/*Logo/＝＝＝＝＝*/
.header_area .nav-brand{max-width: 100px;}
.header_area.sticky .nav-brand{max-width: 0;}

/*文章管理/＝＝＝＝＝*/
.module_i_news ul{grid-template-columns:1fr 1fr;}

/*購物車/＝＝＝＝＝*/
.product_page .products-list {    grid-template-columns: 1fr 1fr;}

}

/*RWD980/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
@media screen and (max-width: 980px) {
/*文章管理/＝＝＝＝＝*/
.blog_subbox{grid-template-columns:1fr 1fr;}


/*相簿/＝＝＝＝＝*/
ul.show-list , .other_subalbum ,ul.pic-list{    display: grid;    grid-template-columns: 1fr 1fr;}

}

/* RWD768 ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
@media screen and (max-width: 768px) {

/* 開場 LOGO 遮罩效果 */
/* Logo 圖片 */
.pageIndex::after {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  background: url('https://pic03.eapple.com.tw/kongku/LOGO_3.png') no-repeat center center;
  background-size: contain;
  transform: translate(-50%, -50%);
  z-index: 10001;
  pointer-events: none;
  animation: logoFloatFade 2s ease forwards;
}
    /* 側邊選單 */
    .stellarnav li li > a, 
    .stellarnav li li.has-sub > a {
        padding: 10px;
        border-left: none;
    }
    .stellarnav li li:hover > a, 
    .stellarnav li li.has-sub:hover > a {
        padding: 10px;
        border-color: transparent;
    }
    /* header Logo開始 */
    .nav-brand {
    position: fixed;     /* 固定位置 */
    top: 10px;       
    right: 20px;
    max-width: 80px;
    z-index: 9999;
    }
    .header_area .nav-brand,
    .header_area.sticky .nav-brand {
    max-width: 80px; /* 或其他的大小 */
    transition: max-width 0.3s ease;
    }
    
    /* header Logo結束 */

    /* Footer */
    #to_top { bottom: 60px; }
    .footer.with_shopping_mode { padding: 30px 0 55px; }

    .footer_info {
        padding: 0 !important;
        margin: 0 auto !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }
    .footer_info {
    padding: 0 0 0 0px;
    margin: auto;
    grid-gap: 0px;
    }
    .footer_info li:nth-child(1) {
        flex-direction: column;
        align-items: center;
        padding: 0 10px;
    }
    .footer_info li:nth-child(2) {
    width: 100%;
    margin: 15px 0 0;
    border-top: 1px solid rgb(0 0 0 / 20%);
    padding-top: 15px;
    }
    .footer_info li p {
        width: 100%;
        word-wrap: break-word;
        text-align: center;
        font-size: 14px;
        white-space: nowrap; /* ← 加這行就不會換行 */
    }

    /* Footer 標誌 */
    .footer_logo {
        text-align: center;
        margin-bottom: 20px;
    }

    /* 隱藏桌機 logo */
    .footer_logo img {
        display: none;
    }

    /* 加入手機版footer logo 圖片 */
    .footer_logo::after {
        content: '';
        display: block;
        width: 120px;
        height: 60px;
        background-image: url('https://pic03.eapple.com.tw/kongku/LOGO_3.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        margin: 0 auto;
    }

    /* Banner */
    .banner h5 { font-size: 28px; }

    /* 購物車 */
    .products-list { grid-template-columns: 1fr 1fr; }
    .product_page .products-list,
    .product-layer-two { width: 100%; }
    .prod_related h6 span:before { font-size: 24px; }
    .product_page .products-list { order: -1; }

    /* 文章管理 */
    h4.blog_category_title { font-size: 24px; }
    h4.blog_category_title span { font-size: 20px; }

    /* 相簿 */
    .mobile_product_name { font-size: 20px; }
    .subalbum-menu h2 { color: #cbc0a0; font-size: 20px; }

    /* 手機版主選單文字顏色 */
    .header_area:not(.sticky) .stellarnav>ul>li>a,
    .header_area:not(.sticky) .stellarnav>ul>li>a b {
        color: #404040;
    }

    /* 滾動後 sticky，手機版文字變黑色 */
    .header_area.sticky .stellarnav>ul>li>a,
    .header_area.sticky .stellarnav>ul>li>a b {
        color: #404040;
    }

    /* Sticky header */
    .header_area.sticky {
        background: #ffffffc2;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        transition: var(--tr);
        position: fixed;
    }

	.prod_part { border-top: 1px solid #e2e2e2; padding: 50px 20px;}

	.module_i_news { border-top: 1px solid #e2e2e2; padding: 50px 20px;}
}

/*RWD600/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
@media screen and (max-width: 600px) {
/*Footer/＝＝＝＝＝*/
.box_link {    text-align: center;}

/*Banner/＝＝＝＝＝*/
.banner h5{font-size: 24px;}

/*購物車/＝＝＝＝＝*/
.prod_related h6 span:before{font-size: 20px;}

/*文章管理/＝＝＝＝＝*/
.module_i_news ul , .blog_subbox{grid-template-columns:1fr;}
/*.i_blog_le, .blog_list_le {padding-bottom: 75%;}*/
h4.blog_category_title{font-size: 20px;}
h4.blog_category_title span{font-size: 18px;}

/*相簿/＝＝＝＝＝*/
ul.show-list , .other_subalbum ,ul.pic-list{    display: grid;    grid-template-columns: 1fr;}
.mobile_product_name{font-size: 18px;}
.subalbum-menu h2{    font-size: 18px;}

/*促銷方案/＝＝＝＝＝*/
.news_list ul li p:after {    width: fit-content;    margin: 10px auto 0;}
}

/*RWD375/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
@media screen and (max-width: 375px) {
/*購物車/＝＝＝＝＝*/
.products-list , .product_page .products-list  {    grid-template-columns: 1fr;}
}