@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n)

*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
.edit_part {padding: 0;}
.header_area{background: #faf9f8;    transition: all 0.3s ease;padding: 0;}
.pageIndex  .header_area{background: #f9eae5;position: sticky;}
.header_area.sticky { position:fixed;background: #faf9f8;}


.path { display:none;}

/*首頁+聯絡按鈕*/
.me_tp_features { text-align: center;}
.header_area.sticky .me_tp_features {display: none;transition: all 0.3s ease;}
.header_area.sticky .nav-header {display: none;transition: all 0.3s ease;}
.header_area.sticky .navigation {grid-template-rows: unset;transition: all 0.3s ease;}
.swiper-pagination {    left: 50%;    margin-left: 0;    transform: translate(-50% , 0);}
.stellarnav > ul > li > a:hover b {color: #f9eae5;}
.news_part .title_i_box h4 {
    font-family: 'Noto Serif TC', serif;
    font-size: 28px;
    font-weight: 600;
    color: #757575;}

.module_i_news .title_i_box h4 {
    font-family: 'Noto Serif TC', serif;
    font-size: 28px;
    font-weight: 600;
    color: #757575;
}

.module_i_news .title_i_box h6 {
    font-size: 24px;
    color: #757575;
    font-weight: 400;
    margin-top: 100px;
}

.module_i_news .title_i_box h6:before {
    content: "COLUMN";
    font-family: "Julius Sans One", serif;
    position: absolute;
    margin: -60px 0 0px -60px;
    font-size: 48px;
    color: #2B2B2B;
}

.module_i_album .title_i_box h6 {
    font-size: 24px;
    color: #757575;
    font-weight: 400;
    margin-top: 100px;
}
.module_i_album .title_i_box h6:before {
    content: "PROJECT";
    font-family: "Julius Sans One", serif;
    position: absolute;
    margin: -60px 0 0px -55px;
    font-size: 48px;
    color: #2B2B2B;
}
.module_i_news .title_i_box h4{display: none;}
.module_i_album .title_i_box h4{display: none;}

.module_i_album section {
    width: 100%;
    max-width: 100%;
}
.i_album_list li a p {
    height: 2.5em;
    }
.animated-arrow {
    background: #f9eae5;
    border-radius: 100px;
}
.animated-arrow:hover {
    background: #000;
}
.fa-arrow-right::before {
    content: "\f105";
}
.pageIndex .i_blog_b * {
    padding-left: 8px;
}


/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:static; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;}
.swiper-slide img { height:auto;}
.swiper-banner .swiper-slide img {
    width: 100%;
    height: auto;
}
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}
/*bannerindex/＝＝＝＝＝*/
.swiper-banner .swiper-slide img {animation: none;}
.bannerindex { position:sticky; height:auto;}/*custom原本有寫*/
.bannerindex .swiper-banner { position:static; margin:0; height:auto;}/*custom原本有寫*/
.bannerindex .swiper-slide img { height:auto;}/*custom原本有寫*/
.bannerindex .swiper-slide {position: relative;}/*因為偽元素，所以要加的*/
.bannerindex .swiper-slide:before ,.bannerindex .swiper-slide:after { content: ""; position: absolute;  z-index: 999; pointer-events:none;}

.bannerindex .swiper-slide:nth-child(1):before {
    background: url(https://pic03.eapple.com.tw/yuhsinfit/banner-01.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100% !important;
    background-position: left;
    padding-bottom: calc(100% / 1* 0.43);
}
.bannerindex .swiper-slide:nth-child(2):before {
    background: url(https://pic03.eapple.com.tw/yuhsinfit/banner-02.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100% !important;
    background-position: left;
    padding-bottom: calc(100% / 1* 0.43);}


.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):before {animation:fade-in-elegant  2.5s ease-in-out both;}
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):before {animation:fade-in-elegant  2.5s ease-in-out both;}
/*上升特效*/
@keyframes slide-top {
    0% {-webkit-transform: translateY(100%);  /* 一開始的位置 在Y-100(最下方)*/
              transform: translateY(100%);
              opacity:0;/*透明度0*/}
    100% {-webkit-transform: translateY(0);/* 跑到最後終止的位置 在Y-0(最上方)*/
              transform: translateY(0);
              opacity:1;/*透明度顯示*/}
    }
  
    @keyframes fade-in-elegant {
      0% {
          opacity: 0;
          transform: translateY(20px); /* 從下方滑入 */
      }
      100% {
          opacity: 1;
          transform: translateY(0); /* 最終位置 */
      }
  }
  
  @keyframes slide-fade-in {
      0% {
          opacity: 0;
          transform: translateX(-20px); /* 從左側滑入 */
      }
      100% {
          opacity: 1;
          transform: translateX(0);
      }
  }
  @-webkit-keyframes fade-in-bck {
      0% {
        -webkit-transform: translateZ(150px);
                transform: translateZ(150px);
        opacity: 0;
      }
      100% {
        -webkit-transform: translateZ(0);
                transform: translateZ(0);
        opacity: 1;
      }
    }
    @keyframes fade-in-bck {
      0% {
        -webkit-transform: translateZ(150px);
                transform: translateZ(150px);
        opacity: 0;
      }
      100% {
        -webkit-transform: translateZ(0);
                transform: translateZ(0);
        opacity: 1;
      }
    }

@media screen and (max-width: 1600px) {
    .bannerindex .swiper-slide:nth-child(2):before {
    top: -5%;
    }}

@media screen and (max-width: 1500px) {
    .bannerindex .swiper-slide:nth-child(2):before {width: 80%;top: -10%;}
.navigation {max-width: 1200px;}

}

@media screen and (max-width: 1024px) {.bannerindex .swiper-slide:nth-child(2):before {width:100%;top: 0%;}}


    @media screen and (max-width: 768px) {
      .bannerindex {
          padding-bottom: 0%;
      }}
.bannerindex .swiper-pagination, .stellarnav li.has-sub > a:after {display: none;}
/*banner*/
.banner {
    padding: 240px 0 240px 0;
    text-align: center;
    background: repeat center center #f9f9f9;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: none;
    background-position: center center;}
.banner {background-image: url(https://pic03.eapple.com.tw/jyuehcompany/banner-01.jpg);}
.banner h5 {
    text-shadow: 0.1em 0.1em 3px #333333;
    font-family: 'Noto Serif TC';
    color: #ffffff;
    font-weight: 600;
    font-size: 36px;}
.other_page .banner.banB {display: none;}
.car_page  .banner.banF {background-image: url(https://pic03.eapple.com.tw/jyuehcompany/banner-01.jpg);}
.product_info_page .banner.banF {display: none;}
.product_page .banner.banF {background-image: url(https://pic03.eapple.com.tw/jyuehcompany/banner-01.jpg);}
.video_page .banner.banF {background-image: url(https://pic03.eapple.com.tw/jyuehcompany/banner-02.jpg);}  
.banner.banblog {background-image: url(https://pic03.eapple.com.tw/jyuehcompany/banner-03.jpg);}  

@media screen and (max-width: 768px) {
.banner {padding: 120px 0 80px 0;}}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
.stellarnav > ul > li:last-child {display: none;}
.footer_menu a:last-child {display: none;}

.page li {
    color: #9999;
}
/*選單設定*/
.nav-menu {    margin: 0;}
.main_header_area .container {    max-width: 100%;transition: all 0.3s ease;}


.nav-menu>li:not(.tp_links) {    padding-right: 15px;}
.nav-menu>li:hover>a, .nav-menu>li.active>a, .nav-menu>li.focus>a {    color: #757575;}
.nav-dropdown>li:hover>a, .nav-dropdown>li.focus>a {    color: #757575;}
.nav-dropdown>li {    text-align: center;}
.tp_links{
    display: none;
}

.navigation {
    width: 100%;
    position: relative;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 100px 1fr;
    grid-gap: 0 20px;
    justify-items: center;
    transition: all 0.3s ease;
}



.stellarnav ul {
    background: #1d1b1c;
    color: #fff;
    text-align: center;
    transition: all 0.3s ease;}


.nav-header {
    max-width: 240px;}


.stellarnav > ul > li > a {
    letter-spacing: 2px;
    padding: 0 20px;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 40px;
    height: 35px;
    margin: 0 15px;
    overflow: hidden;
    cursor: pointer;
    text-align: center;}

.stellarnav li.has-sub > a:after {
    border-top: 6px solid #fff;
}

.stellarnav ul ul {
    background: #00000063;
}
.stellarnav li li a {
    padding: 10px 10px;
    display: block;
    color: #fff;
    transition: all 0.3s;
}
.stellarnav li li {
    border: 0.5px #777 solid;
    margin-bottom: -1px;
}
.stellarnav li li a::before {
    content: '';
    display: inline-block;
    width: 0px;
    height: 0px;
    margin: 5px;
    border-radius: 3px;
    background-color: #fff;
    vertical-align: middle;
    opacity: 0;
    transition: all 0.3s;
}
.stellarnav li li a:hover:before {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 5px;
    border-radius: 3px;
    background-color: #fff;
    opacity: 1;
    transition: all 0.3s;
}

.stellarnav > ul > li:hover > a {
    color: #707070;
    font-weight: 600;
}

/*下拉*/
.nav-dropdown>li>a {    background: #f7f5f5;    transition: 0.2s;        letter-spacing: 1.5px; width: 100%;}
.nav-dropdown>li>a:hover {    transition: 0.2s;    background-color: #757575;;    color: #fff}
.nav-dropdown>li:hover>a .submenu-indicator-chevron, .nav-dropdown>.focus>a .submenu-indicator-chevron {    border-color: transparent #fff #fff transparent;}








/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*LOGO設定*/
.nav-brand img {
    max-width: 200px;
    transition: all 0.3s;} 
    
    .footer_logo img {    
    width: 0px;    
    display: none;
}
.footer_logo a {
    display: block;
    width: 200px;
    height: 100px;
    margin: 0px auto;
    background-image: url(https://pic03.eapple.com.tw/chengedesign/logo-01.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
} */
.nav-brand {
    display: inline-block;
    width: 240px;
}
.sticky .nav-brand img{
    transition: all 0.3s;
}


.footer_logo {display: none;}

@media screen and (max-width: 1280px) {
.sticky .navigation {grid-template-columns: 240px 1fr;}}

@media screen and (max-width: 1240px) {
    .sticky .main_header_area .container {
        max-width: 100%;
    }
    .sticky .navigation {
        grid-template-rows: none;
        grid-template-columns: none;
    }
    .navigation {justify-content: center; }
    .header_area.sticky .me_tp_features {
        text-align: center;
        padding-right: 0;
        padding-top: 10px;
    }
    .main_header_area .container {
        max-width: 100%;}
        .stellarnav > ul > li > a {
            padding: 0;}
            .stellarnav ul {
                width: 100%;}}

@media screen and (max-width: 1024px) {
    .stellarnav > ul > li > a {padding: 0;}
    .nav-header {position: relative;}
    .main_header_area .navigation {padding: 0;}
    .sticky .main_header_area .navigation {padding: 0;}
    .stellarnav ul {padding: 0;}
    .main_header_area .container {max-width: 100%;}}

@media screen and (max-width:900px) {
    .stellarnav > ul > li > a {font-size: 14px;margin: 0 10px;}
    
}

@media screen and (max-width: 768px) {
    .nav-header {
        top: 10px;
    }
    .navigation {
        grid-template-rows: none;
        grid-template-columns: none;
    }

    .nav-brand img {
        max-width: 260px;}
    .stellarnav .menu-toggle span.bars span {
        background: #191A1E;
    }
    .stellarnav .menu-toggle:after {
        display: none;
    }
    .main_header_area .container {
        max-width: 90%;
    }
    .stellarnav.mobile.left .close-menu {
        background: #f9eae5;
        color: #fff;
    }
    .stellarnav.mobile {
        position: absolute;
        left: auto;
        top: 18px;
        width: auto;
        display: inline-block;
        right: 0;
    }
    .stellarnav.mobile > ul > li > a b:last-child {
        display: none;
    }
    .stellarnav .icon-close:after {
        border-bottom: solid 3px #fff;
    }
    .stellarnav .icon-close:before {
        border-bottom: solid 3px #fff;
    }
    .stellarnav ul {
        padding: 0;
    }
    .stellarnav > ul > li > a {
        color: #757575;
    }
    .stellarnav.mobile > ul > li > a {
        padding: 10px 43px 10px 10px;
    }
    .stellarnav.mobile ul ul {
        background-color: transparent;
    }
    .stellarnav li li {
        border: none;
    }
    .stellarnav li li a {
        padding: 10px 10px;
        border: none;
        margin-bottom: -1px;
        color: #757575;
    }
}




@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%;}
.stellarnav.mobile {
    left: none;
    right: 0;
}
}

@media screen and (max-width: 425px) {
.nav-brand img , .sticky .nav-brand img{
    max-width: 180px;
}
.nav-header {
    text-align: start;
}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*Footer*/

.copy {
    background: #212121;
    color: #ffffff;
}
.copy a{color: #ffffff;}
.footer_menu a:hover {
    background: none;
    color: #c39b6a;
    font-weight: 500;
}
.footer_menu a {    
    display: inline-block;
    padding: 5px 7px 5px 15px;
    border: none;
    margin: 0px 4px 4px 0px;
    font-size: 14px;
    line-height: 100%;
    color: #1d1b1c;
    background: none;
    border-left: 1px #ccc solid;
    transition: all 0.3s;}

.footer .fix_ri a{
    transition: all 0.3s;
}
.footer .fix_ri a:hover {
    transform: scale(1.3);
    transition: all 0.3s;
}
.box_link{
    display: none;
}


.footer {
    background: #f9eae5;
    border-top: 1px solid #E4E4E4;
}
.footer_info ul {
    display: inline-block;
    vertical-align: top;
    width: 100%;

}

.footer_info li {
    display: block;
    padding: 10px 0 10px 0;
}
.footer_info li p {color: #1d1b1c;font-weight: 400;}

.footer_info li p a {
    color: #1d1b1c;
}
.footer .center {
    position: relative;
    max-width: 90%;
}
.footer .center {
    position: relative;
    max-width: 90%;
    padding: 30px 0;
}
.footer_info {
    padding: 0;
    display: flex;
    grid-gap: 20px;
    padding-right: 0;
    flex-wrap: wrap;
}
.footer_info li:nth-child(2) {
    position: absolute;
    right: 0;
    top: 14px;
}
.footer_menu a:nth-child(1) {
    display: none;
}
.footer_menu a:nth-child(2) {
    border: none;
}

/*===聯絡我們===*/
.contact_form li:has(input[type=radio]) .form__insert {
    display: flex;}
.contact_content .information_left {
    width: 320px;
}
.contact_page .main_part {
    max-width: 1400px;
}
.contact_content .information_right {
    width: calc(100% - 360px);
    padding-left: 30px;
}
.contact_le_nomap iframe {
    filter: grayscale(1);
}

.blank_letter {
    background-position: left bottom;
    background-repeat: no-repeat;
    font-family: 'Noto Serif TC', serif;
    font-size: 28px;
    font-weight: 600;
    color: #757575;
}
.contact_form li.last blockquote, .contact_form li.last cite {
    border-radius: 50px;
}
@media screen and (max-width: 1100px) {
.footer_info li:nth-child(2) {
    position: relative;
    }
    .footer_menu a:nth-child(2) {
        border-left: 1px #ccc solid;
    }
    }
@media screen and (max-width: 600px) {
.blank_letter {
    padding-top: 0;}
    .contact_form li .form__label {
        background: rgb(195 179 146 / 15%);
    }

.contact_content {
    padding: 0;
    }}

/*文章設定*/
.subbox_item a {display: flex;flex-wrap: wrap;grid-gap: 0;}
.blog_le .accordion > li:hover .link a, .blog_le .accordion > li.on_this_category .link a {color: #dd5310 !important;}
.accordion li .link a {font-weight: 500;}

/*首頁文章*/
.module_i_news ul {max-width: 1400px;}
.i_blog_ri em {display: none;}
.i_blog_ri p {line-height: 180%;}


.blog_page .main_part , .blog_in_page .main_part  {max-width: 1400px;}
h4.blog_category_title{font-size: 28px;}
h4.blog_category_title span{font-size: 24px;}

/*文章管理/外層＝＝*/
.module_i_news ul, .blog_subbox {  display: grid;gap:50px 10px;}
.module_i_news li , .subbox_item {  width: 100%;}
.module_i_news li a , .subbox_item a {  padding: 5px;}
.module_i_news li a:after , .subbox_item a:after{pointer-events:none; border-radius: 15px; border: 1px #f5efe8 solid;}
.subbox_item a:after {border: 0px #ddd solid;}
.i_blog_le, .i_blog_ri , .blog_list_le , .blog_list_ri {  width: 100%;}
.i_blog_le , .blog_list_le{  position: relative;  padding-bottom: 100%;  height: 0;}/*文章縮圖長寬比例，100% →100:100 = 1:1 正方形 */
.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%);}
  .i_blog_le img, .blog_list_le img {border-radius: 15px;}
  .blog_list_ri p {line-height: 180%; padding-top: 10px;}
  .blog_list_ri {padding: 17px 3px 3px 3px;}
  h5.blog_le_t span {display:none;}
	
/*側邊*/
.blog_le .accordion {border-radius: 15px;border-bottom: 1px #ccc solid;border: 0;}
.blog_le .accordion > li{transition:all 0.3s;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {background:none !important;}
.submenu a{padding: 12px 12px 12px 30px; letter-spacing: 1px;}
.submenu a {background:#fff;}
.submenu a:hover {background: #dd5310;}
h5.blog_le_t em {display: none;}

/*首*/
.module_i_news {padding: 95px 20px;}
.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_shareData {justify-content: flex-end;}
.blog_back a.article_btn_prev {background: #f9eae5;color: #fff; border-radius: 30px 0 0 30px;}
.blog_back a.article_btn_prev:hover {background: #c2b7b3;}
.blog_back a.article_btn_back{background: #f9eae5;color: #fff;}
.blog_back a.article_btn_back:hover {background: #c2b7b3;}
.blog_back a.article_btn_next {background: #f9eae5;color: #fff; border-radius: 0 30px 30px 0;}
.blog_back a.article_btn_next:hover {background: #c2b7b3;}
.blog_search input[type=search] {border-radius: 15px;}
.news_related {background: #fff;}
/*特*/
.subbox_item a:before {display: none;}
.subbox_item a:after {display: none;}
.blog_page .blog_list_ri::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #C9C0B8;
  transition: all 0.3s ease-in-out;}
.blog_page .subbox_item:hover .blog_list_ri::before {width: 100%; transition: all 0.3s ease-in-out;}
.blog_list_ri {padding: 15px 3px 8px 3px;}
.blog_le .accordion li .link:last-child {border-bottom: 1px solid #ccc;}
.accordion li .link {border-bottom: 1px solid #f5e9d4;}
.i_blog_ri {padding: 15px 5px 5px 5px;}
.i_blog_ri h5{color:#444;}
.module_i_news .title_i_box h4 {color: #f9eae5;}
.blog_list_ri h5 {color:#444;}
.blog_le .accordion li i {color: #fff;}
.blog_le .accordion li.open i {color: #fff;}
.lastPage { background: #f9eae5;}
.articel_mainPic img {
  display: none;}
@media screen and (max-width: 1100px) {
/*文章管理/＝＝＝＝＝*/
.blog_subbox {grid-template-columns:1fr 1fr;}}

@media screen and (max-width: 768px) {
/*文章管理/＝＝＝＝＝*/
h4.blog_category_title{font-size: 24px;}
h4.blog_category_title span{font-size: 20px;}}

@media screen and (max-width: 600px) {
/*文章管理/＝＝＝＝＝*/
.blog_subbox {grid-template-columns:1fr 1fr;}
.i_blog_le, .blog_list_le {  padding-bottom: 100%;}
h4.blog_category_title{font-size: 20px;}
h4.blog_category_title span{font-size: 18px;}}

@media screen and (max-width: 400px) {
  .blog_subbox {grid-template-columns:1fr;}}
/*一排呈現
.subbox_item { width:100%;}
*/

/*購物車*/
/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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:#f9eae5;}
.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 .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:#f9eae5;}
.product-layer-two li a {background: #faf9f8;}
.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;}
.proImgSwiper li {justify-content: center;align-items: flex-start;}

/*按鈕顏色*/
.products-list .price b {color: #E89C45;font-weight: 500;}
.products-list .more {
    border: 1px solid #f9eae5;
    color: #f9eae5;}
.products-list .item a:hover .more {background: #f9eae5;}
.product-layer-two li a:hover { background: #f9eae5;color: #fff;}
.video-layer-two li a:hover { background: #f9eae5;color: #fff;}
@media screen and (max-width: 768px) {
.me_tp_features {display: none;}
.show_content {padding: 0;}
.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 .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;}}



/*   相簿管理(有分類)  */
/*大分類*/
.album_page .main_part {max-width: 1600px;}
.show-list{display: flex;flex-wrap: wrap;}
.show-list .item {width: 32%;padding: 2%;margin: 0;}
.show-list .item:hover .show_name {color: #666;}
.show-list .show_name {text-align: center;font-weight: 500;}
.overlay {-webkit-transform: scale(1);transform: scale(1);}
.show-list .show_pic img{min-height: 20vw;object-fit: cover;}
/*次分類*/
.album_class_page .main_part {max-width: 1600px;}
.subalbum-menu h2 {color: #555;text-align: center;display: block;}
.other_subalbum{display: flex;flex-wrap: wrap;}
.other_subalbum li {width: 32%;padding: 2%;margin: 0;}
.other_subalbum li p{text-align: center;margin-top: 10px;color: #555;letter-spacing: 2px;}
.other_subalbum li div{height: 0;padding-bottom: 75%;overflow: hidden;}
.other_subalbum li img{min-height: 20vw;object-fit: cover;transition: all .5s;}
.other_subalbum li:hover img{opacity: .6;}
/*相片頁*/
.album_info_page .main_part {max-width: 1600px;}
.pic-list{display: flex;flex-wrap: wrap;}
.pic-list .item {padding: 0;margin: 10px;width: 32%;padding: 2%;margin: 0;}
.pic-list .item h6{font-weight: 500;}
.pic-list .show_pic img {min-height: 20vw;object-fit: cover;}
.other_album{margin-top: 200px;}
.album_fixed_title {background: transparent;font-size: 15px;}
.other_album_choice li {background: #555;border-radius: 3px;font-size: 12px;}



/*※※※※※【【  此案件更動處↓↓↓  】】※※※※※*/
/*主分類*/
.show-list .item{padding: 1%;}
/*次分類*/
.subalbum-menu{padding: 0;margin: 0;}
.other_subalbum {
    /* display: block; */
    column-count: 3;width: 100%;}
.other_subalbum li{width: 100%;}
.other_subalbum li div {height: auto;padding-bottom: 0;overflow: inherit;}
.other_subalbum li a img{width: 100%;}
/*相片頁*/
.pic-list {column-count: 3;display: block;}
.pic-list .item{padding: 1%;width: 100%;}
.other_album_choice li {background: #757575;}
.pic-list .show_pic {overflow: inherit;height: auto;padding-bottom: 0;aspect-ratio: auto;}


@media screen and (max-width: 768px){
	/*主分類*/
	.show-list .item {width: 48%;}
	.show-list .show_pic img{min-height: 35vw;}
	/*次分類*/
	.other_subalbum li{width: 48%;}
	.other_subalbum li img{min-height: 35vw;}
	/*相片頁*/
	.pic-list .item {width: 100%;}
	.pic-list .show_pic img {min-height: 35vw;}
    .pic-list {column-count: 2;}
}

@media screen and (max-width: 450px) { 
	/*相簿*/
	.show-list .show_pic img{min-height: 140px;}
	.other_subalbum li img{min-height: 140px;}
	.pic-list .show_pic img {min-height: 140px;}
}
@media screen and (max-width: 1200px) {
    @media screen and (max-width: 980px) {
        @media screen and (max-width: 768px) {
            .mobile_product_name {
                display: none;
            }
        }
    }
}
@media screen and (max-width: 1200px) {
    @media screen and (max-width: 980px) {
        @media screen and (max-width: 768px) {
            @media screen and (max-width: 600px) {
                .main_part {
                    padding: 20px 10px 10px;
                }
            }
        }
    }
}