@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.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 {}
*/

/* 商品下拉超過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個--結束 */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*選單設定*/
.nav-menu {
    margin: 0;
}

.main_header_area .container {
    max-width: 90%;
}

.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: #ADA17E;
}

.nav-dropdown>li:hover>a,
.nav-dropdown>li.focus>a {
    color: #ADA17E;
}

.nav-dropdown>li {
    text-align: center;
}

.header_area {
    position: fixed;
    z-index: 9999;
    width: 100%;
    top: 0;
    left: 0;
    padding: 0;
    background: transparent;
}

.header_area.sticky {
    background: transparent;
}

.header_area::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #ffffffdb;
    backdrop-filter: blur(10px);
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: all 0.85s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    opacity: 0;
}

.header_area.sticky::before {
    transform: scale(1);
    opacity: 1;
    transition: all 0.85s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}



.main_header_area {
    position: relative;
    background: transparent;
    animation: hd-ac 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) both;
}

@keyframes hd-ac {
    0% {
        transform: translate(0, -100px);
        opacity: 0;
    }

    100% {
        transform: translate(0);
        opacity: 1;
    }

}



.navigation {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    padding: 15px 0;
    gap: 15px;
}


/* LOGO */
.header_area .nav-header {
    position: relative;
    z-index: 123;
    max-width: 50px;
    opacity: 1;
    transition: all 0.85s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.header_area.sticky .nav-header {
    opacity: 1;
}

.nav-brand {
    display: inline-block;
    width: 100%;
}

.nav-brand img {
    filter: contrast(0) brightness(100);
}

.sticky .nav-brand img {
    max-width: 100%;
    filter: contrast(0) brightness(1.0);
}







/* 選單選項 */



.stellarnav>ul {
    display: flex;
    width: fit-content;
    margin: 0;
    padding: 0;
    text-align: center;
    padding: 0;
    text-wrap: nowrap;
    transition: all 0.85s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    gap: 2%;
    justify-content: flex-end;
}



.header_area .me_tp_features {
    position: absolute;
    right: 0px;
    width: fit-content;
    text-align: right;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    margin-bottom: 0;
    z-index: 9999;
    transition: all 0.85s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.header_area.sticky .me_tp_features {
    transition: all 0.85s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}


.header_area .me_tp_features .tp_links :is(.me_tp_line, .me_tp_mail) {
    display: none;
}

.me_tp_features a i {
    color: #FFF;
}

.me_tp_features a i:hover {
    color: #3c3c3c;
}


.header_area.sticky .me_tp_features a i {
    color: #999997;
}

.header_area.sticky .me_tp_features a i:hover {
    color: #000;
}

.header_area .me_tp_features:after {
    content: "";
    background: #fff;
    position: absolute;
    top: 0px;
    left: 0%;
    width: 1px;
    height: 50%;
    transform: translate(0, 50%);
    z-index: -1;
    opacity: 1;
}

.header_area.sticky .me_tp_features:after {
    background: #999997;
}



.header_area .stellarnav {
    position: relative;
    display: flex;
    width: fit-content;
    z-index: 9900;
    line-height: normal;
    opacity: 1;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 20px;
    padding-right: 6%;
    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}


.me_tp_features a i.fa-solid.fa-phone-volume {
    display: none;
}




/* 選單字 */


.stellarnav>ul>li {
    width: 110px;
}


.stellarnav>ul>li::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #c7c7c7;
    position: absolute;
    bottom: 0;
    transform-origin: 50% 50%;
    transform: scale(0, 1);
    transition: all .5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}


.stellarnav>ul>li:hover::after {
    transform: scale(1, 1);
    transition: all .5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}



.stellarnav>ul>li>a {
    display: flex;
    padding: 0;
    margin: 0;
    color: #FFF;
    font-size: .875rem;
    font-family: "Cinzel","微軟正黑體",serif;
    letter-spacing: 1px;
    font-weight: 600;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    transition: all .5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.stellarnav>ul>li:hover>a {
    letter-spacing: 2px;
    transition: all .5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    color: #3c3c3c;
}


.header_area.sticky .stellarnav>ul>li>a {
    color: #999997;
}

.header_area.sticky .stellarnav>ul>li:hover>a {
    color: #000;
}
.stellarnav li.has-sub>a:after {
    display: none;
}

.stellarnav>ul>li>a b:nth-child(1) {}

.stellarnav>ul>li>a b {
    font-weight: 500;
    transition: all ease .5s;
}


@media screen and (max-width:1400px) {
    .stellarnav>ul>li>a {
        margin: 0 5px;
    }

}



/* 購物籃 */
.tp_links {
    display: flex;
    gap: 10px;
    padding: 0 0 0 20px;
}

.box_search input[type=text] {
    background: url(../images/search-icon.png) no-repeat 9px center #fff;
    border: 0;
    padding: 2px 0px 4px 42px;
    width: calc(100% - 42px);
    border-radius: 10em;
    transition: all .5s;
    outline: none;
    background-color: transparent;
    border-bottom: 1px #565656 solid;
    border-radius: 0;
    transition: all 0.3s;
}

.box_search input[type=text]:hover {
    color: #565656;
    transition: all 0.3s;
}

.box_search input[type=text]:focus {
    color: #565656;
    transition: all 0.3s;
}

.shop_search_btn {
    display: none;
    background: #565656;
    color: #fff;
    font-size: 13px;
    border: none;
    border-radius: 0;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
    padding: 4px 15px;
    cursor: pointer;
}

.box_search {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 60%;
    margin-bottom: 0;
    margin-right: 30px;
    display: none;
}

.me_tp_features a {
    margin: 0 0;
    font-size: 20px;
}

.me_tp_features a.tp_btn_cart {
    margin-right: 20px;
}

.me_tp_features a.tp_btn_cart span {
    display: none;
}

.me_tp_features a.tp_btn_notice span {
    display: none;
}

@media screen and (max-width:1024px) {
    .box_search {
        display: none;
    }

    .header_area .me_tp_features {
    right: -20px;
    }
}


/*下拉*/
.stellarnav>ul>li.has-sub>a {
    padding-right: 0;
}

.stellarnav ul ul {
    top: auto;
    width: 100%;
    position: absolute;
    z-index: 9900;
    text-align: left;
    background: #ffffffbf;
    border: 2px #fff solid;
    display: none !important;
}

.stellarnav li li {
    display: block;
    border: 0;
    margin-bottom: 0;
}

.stellarnav li li a,
.stellarnav li li.has-sub>a:nth-child(1) {
    padding: 15px 20px;
    display: block;
    color: #565656;
    background: transparent;
    font-size: 14px;
    backdrop-filter: blur(5px);
    font-weight: 600;
    white-space: break-spaces;
    transition: all 0.3s;
}

.stellarnav li li a:hover,
.stellarnav li li.has-sub>a:nth-child(1):hover {
    padding-left: 25px;
    background: #ffffff52;
    backdrop-filter: blur(12px);
    box-shadow: 0px 1px 2px #00000054;
    transition: all 0.5s;
}




@media screen and (max-width: 1400px) {
    .nav-brand {
        display: inline-block;
        width: 240px;
    }

  
}

@media screen and (max-width: 1024px) {
    .nav-brand {
        display: inline-block;
        width: 160px;
    }

  

}


@media screen and (max-width: 768px) {
    .header_area .nav-header {
    max-width: 70px;
}
    .header_area .me_tp_features {
        display: none;
    }

    .header_area.sticky .me_tp_features {
        display: none;
    }

    .header_area .stellarnav {
        top: 10px;
        left: 0px;
        transform: none;
    }

    .header_area .stellarnav {
        top: 1px;
        padding: 0;
    }

    .header_area.sticky .stellarnav {
        top: 1px;
    }

    .stellarnav.mobile.active {
        z-index: 1000000;
    }


    .stellarnav.mobile.right>ul,
    .stellarnav.mobile.left>ul {
        border: 0;
        max-width: 100%;
        background: #242424db;
        backdrop-filter: blur(10px);
    }

    .stellarnav.mobile.left .close-menu {
        background: #9e7e66;
        color: #fff;
    }

    .stellarnav .icon-close:after {
        border-bottom: solid 3px #fff;
    }

    .stellarnav .icon-close::before {
        border-bottom: solid 3px #fff;
    }

    .stellarnav.mobile>ul>li>a {
        display: flex;
        padding: 50px 0;
        align-items: center;
    }

    .header_area .stellarnav>ul::after {
        display: none;
    }

    .stellarnav.mobile>ul>li>a.dd-toggle {
        padding: 6px;
        position: absolute;
        top: 40px;
        display: none;
    }

    .stellarnav li li a:hover,
    .stellarnav li li.has-sub>a:nth-child(1):hover {
        padding-left: 25px;
        background: inherit;
        backdrop-filter: none;
        box-shadow: none;
        transition: all 0.5s;
    }

    .stellarnav.mobile li.open li.open {
        background: #eee;
        padding: 0;
    }

    .stellarnav.mobile li.open {
        background: #f3f3f3;
        padding: 0;
    }

    .stellarnav ul ul {
        border: 0;
    }

    .stellarnav .menu-toggle span.bars span {
        background: #a17f66;
    }

    .stellarnav .menu-toggle:after {
        color: #a17f66;
    }
    .header_area::before{
        backdrop-filter: none;
    }
    .main_header_area{
        animation: none;
    }
    .stellarnav.mobile > ul > li{
        border: 1px #ffffff3b solid;
    }
.stellarnav a.dd-toggle .icon-plus:before{
        border-bottom: solid 3px #9e7e66;
}
.stellarnav a.dd-toggle .icon-plus::after{
        border-bottom: solid 3px #9e7e66;
}
.stellarnav.mobile ul{
    background: #00000050;
}
    .stellarnav.mobile li.open {
        background: #00000050;
        padding: 0;
    }
    .stellarnav>ul>li {
    width: 100%;
}

}


@media screen and (max-width: 500px) {
    .header_area .nav-header {
    max-width: 60px;
}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2025.12.18  */
.product_page .main_part { max-width:1500px;}

.product_page .show_content,
.product_info_page .show_content { display: flex; justify-content: space-between; flex-wrap: wrap; align-items: flex-start; align-content: flex-start; width: 100%;}
ul.page { width: 100%;}

.ProdFilter_Item_Show { width: 100%;}
.Prods_Menulists { width: 100%; padding: 0;}
.Prods_Wrap { width: calc(100% - 270px);}

/* 篩選器-左手邊 / 產品分類-上面
.ProdFilter_ { order: 2;}
.Prods_Menulists { order: 1;}
.Prods_Wrap { order: 3;}
.ProdFilter_ { width: 250px; letter-spacing: 1px;}
.ProdFilter_ li { width: 100%;}
.ProdFilter_ li > a { background: #f3f3f3; border: none; border-bottom: 3px #ddd solid;}
.ProdFilter_ dl { position: static; width: 100%; display: block;}
*/

/* 產品分類-左手邊 / 篩選器-上面 */

.ProdFilter_ { order: 1; margin-bottom: 25px;}
.Prods_Menulists { order: 2;}
.Prods_Wrap { order: 3;}
.Prods_Menulists { width: 250px; letter-spacing: 1px;}
.Prods_Menulists ul {}
.Prods_Menulists > ul > li { width: 100%; flex-wrap: wrap;}
.Prods_Menulists ul ul { position: static; border: none;}
.Prods_Menulists ul li ul li {}
.Prods_Menulists li.has-sub.open > a { background: #f0f0f0;}

.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: 1024px) {
.product_main { display: block; width: 100%;}    
.sidebarBtn { display: block; width: 100%;}
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 768px) {
/* 篩選器-左手邊 / 產品分類-上面
.Prods_Wrap { width: 100%;}
.ProdFilter_ { width: 100%;}
.ProdFilter_Item_Show { width: calc(100% - 110px);}
.ProdFilter_ { order: 1;}
.Prods_Menulists { order: 2;}
.ProdFilter_ li > a span { color: #333;}
*/

.Prods_Wrap { width: 100%; margin-top: 20px;}
.ProdFilter_ { width: 100%;}
.Prods_Menulists { opacity: 0; display: none;}

}
@media screen and (max-width: 600px) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 2025.12.26 中間放大*/
.BannerHome02 .swiper-slide-active img { transform: scale(1);}
.BannerHome02 .swiperBan02 .swiper-slide img { transition: transform 5s ease-out; will-change: transform; transform: scale(1);}
.BannerHome02 .swiperBan02 .swiper-slide-active img { transform: scale(1.06);}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*footer*/

/*footerLogo/＝＝＝＝＝*/
.footer_logo {  width: 110px;  margin: 0;}
.footer_logo img {  max-width: 110px;  width: 100%; }

/*footer*/
.footer { padding: 65px 0px 40px 0px; background: #373737;background: #fff; background-size: inherit; background-repeat: repeat;}

.footer .center {  max-width: 86%;}
.footer_info {   display: flex;  padding: 0;  justify-content: space-between;  flex-direction: row-reverse;  align-items: flex-start;}
.footer_info li {  padding: 0px;}
.footer_info ul {  display: flex; /* flex-direction: row;*/flex-direction: column;}
.footer_info li:nth-child(1) {  margin-right: 30px;margin-bottom: 35px; display: flex; flex-direction: column;}
.footer_info li:nth-child(1):before {  content: "INFO";  font-size: 14px; display: block;margin-bottom: 15px;font-weight: 600;color: #000000; font-family: "Cinzel", "微軟正黑體", serif; letter-spacing: 1px;}
.footer_info li:nth-child(2):before {  content: "MENU";  font-size: 14px;font-weight: 600; color: #000000; font-family: "Cinzel", "微軟正黑體", serif; letter-spacing: 1px;}
.footer_info li:nth-child(2) { padding-top: 0;display: flex;  flex-direction: column;}
.footer_info li:nth-child(3) { padding-top: 0;border-bottom: solid 1px #ccc;}
.footer_info li p,
.footer_info li p a {  color: #999997;  font-size: 13px;  line-height: 230%; font-weight: 400;margin-right: 12px; font-family: "Noto Sans TC", sans-serif; transition: 0.5s;}
.footer_info li p a:hover, .footer_menu a:hover {color: #000;}
.footer_menu a:first-child {  display: none;}
.footer_menu:nth-child(2) {  padding: 0 10px; padding-left: 0;}
.footer_menu a {  margin: 10px 12px 10px 0px;  transition: all 0.3s;   color: #999997;   border: none;  text-transform: uppercase;   font-weight: 400;  font-size: 13px;  letter-spacing: 2px; 
background-color: transparent;  padding: 8px 7px 8px 0px;  text-align: left;font-family:"Cinzel","微軟正黑體",serif;}
.footer_menu a:hover {  background:  transparent;  transition: all.5s; color: #000;}
.copy {   color: #d7d7d7;  border: none;  text-align: right;  padding: 10px 0 0px;   max-width: 87%;  margin: auto;  font-size: 10px;justify-content: right;position: absolute;  right: 7%; bottom: 15%;}
.copy a {  color: #d7d7d7;  transition: all 0.3s;z-index: 99999999999999999;  position: relative;}
.copy a:hover { color:#999997;}
.privacyLinks a+a {border-left: 1px solid #d7d7d7; }
.box_link {  display: flex;  right: 0%;  top: 100%;   width: 100%;  justify-content: flex-start; display:none;}
.box_link a {  transition: all 0.3s;  border: none; color: gray;  margin: 0 2px;  width: auto;  text-align: right;  font-size: 20px; font-size: 16px;}
.box_link a:hover {  background: transparent;  opacity: .8;}
.box_link a:first-child { padding-left: 10px;}
.footer_info li p.line:before { content: 'Line ID ｜';}
.footer_info li p.tel:before { content: '電話 ｜';}
.footer_info li p.phone:before {  content: '手機 ｜';}
.footer_info li p.mail:before { content: '信箱 ｜';}
.footer_info li p.fax:before  { content: '傳真 ｜';}
.footer_info li p.add:before { content: '地址 ｜';}
.footer_info li p.add2:before {content: '內政部室內設計公司∣工程管理 合格登記證號 ｜';}

.footer_info li .taxid {display: none;}

.footer_info li p.phone{ order:1;}
.footer_info li p.tel {  order: 2;}
.footer_info li p.line{ order:3;}
.footer_info li p.mail{ order:4;}
.footer_info li p.add{ order:5;}
.footer_info li p.add2{ order:6;}


#to_top {
    width: 80px;
    height: 80px;
    color: #b3b3b3;
    background: transparent;
    box-shadow: none;
    border: 1px solid #b3b3b3;
    border-radius: 50%;
    padding-top: 25px;
    transition: 0.7s;
}

#to_top i {
    margin-bottom: 15px;
    width: fit-content;
    height: fit-content;
}

#to_top:hover i {
    transform: translate(0px, -5px);
    transition: 0.7s;
}

#to_top i:before, #to_top i:after{ background: #b3b3b3;}


@media screen and (max-width: 1300px) {
.footer_info li:nth-child(1) {  margin-right: 30px;  width: 48%;}
.footer_info li:nth-child(2):before {  margin-bottom: 15px;}
.footer_info ul { display: flex; justify-content: space-between;}
.footer_menu a {  margin: 0px 4px 0px 0px;}
.copy {  bottom: 13%;}
.footer { padding: 50px 0px 70px 0px;}
}
@media screen and (max-width: 900px) {
.footer_info li:nth-child(1) { width: 53%;}
}
@media screen and (max-width: 768px) {
	.footer_logo img{ max-width: 80px;}
.footer_info ul { display: flex;  flex-direction: column; margin: 0px 0px 30px 0px;}
.copy {  bottom: 8%; text-align: center; justify-content: center;  font-size: 9px;  max-width: 100%;  left: 50%; right: unset;  transform: translate(-50%, 13px); width: 100%; }
.footer { padding: 0px 0px 0px 0px; margin-bottom: 50px;}
.footer_info li:nth-child(1) { width: 100%;margin-right: 0px;}
#bottom_menu li a em {  color: #333;  font-weight: 700;}
#bottom_menu li {  border-right: 1px solid #c1c1c1;}
#bottom_menu li a em { color: #333; font-weight: 600;}
.footer_info{ padding-top: 30px; }
}
@media screen and (max-width: 600px) {
.footer_info li p, .footer_info li p a {  margin-right: 0px;}
.footer_info li:nth-child(1):before {  margin-bottom: 10px;}
.footer_info li:nth-child(2):before {  margin-bottom: 10px;}

}
@media screen and (max-width: 470px) {
.footer_logo img{ max-width: 55px;}
}
@media screen and (max-width: 400px) {
.footer_info{ flex-direction: column;}
.copy {  width: 90%;}
.footer_info li p, .footer_info li p a {  font-size: 12px;}
.footer_menu a {  font-size: 12px;}
.footer_info li:nth-child(1):before { font-size: 13px;}
.footer_info li:nth-child(2):before { font-size: 13px;}
.footer_info li:nth-child(1){ margin-bottom: 14px; }
} 


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*聯絡我們*/
.list_before.info li.info_ADD2 {
    display: none;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {}
.banner h5 {}
.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}
.banner.banDesign { background-color:#333;}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/
  

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬2000px
.work_page .main_part { max-width:2000px;}
.work_page .show_content { padding:0; width:100%;}
.work_page .show-list .item { width:33%; display:inline-block; float:none; margin:0; padding:0;}
@media screen and (max-width: 768px) {
.work_page .show-list .item { width:49%;}
}
@media screen and (max-width: 570px) {
.work_page .show-list .item { width:100%;}
}
.work_page .show-list .item a { max-width:100%;}
.work_page .show-list .show_pic { height:auto; line-height:0;}
.work_page .show-list .show_pic img { max-width:100%; max-height:100%;}
.work_page .show-list .show_name { position:absolute; top:50%; right:10%; width:80%; height:auto; line-height:160%; font-size: 20px; color: #FFFFFF !important; border: solid 1px #fff; text-align: center; margin: -20px 0 0 -120px; padding:5px 20px; transition:all ease-in .3s; opacity:0;}
.work_page .show-list .item:hover .show_name {opacity:1;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本列表
.work_info_page .main_part { max-width:2000px;}
.work_info_page .show_content { padding:0; width:100%;}
.work_info_page .subalbum-menu { text-align:center;}
.work_info_page .subalbum-menu h2 { float:none;}
.work_info_page .pic-list .item { margin:0; padding:10px; width:49%; float:none; display:inline-block;}
@media screen and (max-width: 768px) {
.work_info_page .pic-list .item { width:100%;}
}
.work_info_page .pic-list .show_pic { height:auto; line-height:0;}
.work_info_page .pic-list .show_pic img { max-width:100%; max-height:100%;}
.work_info_page .pic-list .item a { max-width:100%; pointer-events: none; cursor: default; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */





@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {}
.footer.with_shopping_mode { padding:30px 0 70px; }
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}




