@charset "utf-8";/*這段一定要加否則中文會變亂碼*/

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

/*反白顏色*/
::-moz-selection {
    background-color: #5ea1aa;
    color: #fff;
}

::selection {
    background-color: #5ea1aa;
    color: #fff;
}


body {overflow-x: hidden;}

&::-webkit-scrollbar {width: 6px;}

&::-webkit-scrollbar-track {background: #fff;}

&::-webkit-scrollbar-thumb {background-color: #5598c2;border-radius: 3px;}


/*動畫入場text-----------------------------------
.bannerindex .swiper-slide:nth-child(1):before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/bosiaqua/text01.png);
    height: 100%;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(0%, 0%);
    opacity: 1;
    z-index: 999;
    position: absolute;
}---active分開寫避免時間差-----
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):before{
    animation: inside1 2s;
    animation-timing-function: linear;
}
----------------------------------------------
.bannerindex .swiper-slide:nth-child(2):before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/bosiaqua/text02.png);
    height: 100%;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(0%, 0%);
    opacity: 1;
    z-index: 999;
    position: absolute;
}---active分開寫避免時間差-----
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):before{
    animation: inside2 1.5s;
    animation-timing-function: linear;
}
---------下方波浪--------------
.pageIndex .swiper-slide.swiper-slide:nth-child(n):after {
    content: "";
    position: absolute;
    height: 100px;
    width: 100%;
    bottom: 0%;
    z-index: 1;
    background-image: url(https://pic03.eapple.com.tw/bosiaqua/bottom.png);
    background-repeat: repeat;
    background-position: center;
    transition-property: opacity;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.3, 0.1, 0.1, 1);
    animation: scroll 40s steps(15000) infinite alternate;
    background-size: cover;
}

------------------動畫在這裡---------------------------------------
@keyframes inside1{
	0% {transform: translate(0%, -5%);opacity: 0.5;filter: blur(5px);}
    50%{filter: blur(1px);}
	100%{opacity: 1;}
}
@keyframes inside2{
	0% {transform: translate(0%, -10%);opacity: 0;filter: blur(5px);}
	100%{opacity: 1;}
}

@keyframes scroll{
    0% {background-position: 0;}
    100% {background-position: -2000px;}
}
*/
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/
.pageIndex .header_area {
    position: relative;
    z-index: 9999;
    /*padding: 0px;*/
    background: #fff;
    position: sticky;
    top: 0;
    width: 100%;
    box-shadow: 1px 1px 6px #60b9c6;
    transition: .7s all;
    /*transform: translate(0%, -100%);*/
    /*height: 0;*/
}
.header_area.sticky {
    width: 100%;
    z-index: 9999;
    background: rgb(255 255 255 / 86%);
    height: auto;
    padding: 10px;
    /*transform: translate(0%, 0%);*/
    backdrop-filter: blur(5px);
}
.pageIndex .main_header_area .container {
    max-width: 90%;
    margin: auto;
    transition: .7s all;
    /*transform: translate(0%, -100%);*/
    /*opacity: 0;*/
}
/*.header_area.sticky .main_header_area .container {
    transform: translate(0%, 0%);
    opacity: 1;
}*/

.header_area {
    position: relative;
    z-index: 9999;
    padding: 10px;
    background: #fff;
    position: sticky;
    top: 0;
    width: 100%;
    box-shadow: 1px 1px 6px #60b9c6;
}
.main_header_area .container {
    max-width: 90%;
    margin: auto;
}
/*----------------------------------*/
.navigation {
    width: 100%;
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
}
.nav-header {
    z-index: 123;
    top: 0;
    left: 0;
    max-width: 150px;
    width: 100%;
    grid-row: 1 / span 2;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.me_tp_features {
    display: none;}
.stellarnav > ul > li > a {
    padding: 0;
    color: #000;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 40px;
    height: 40px;
    margin: 10px 15px;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    letter-spacing: 1px;
}
.stellarnav li.has-sub > a:after {
    content: '+';
    margin-left: 10px;
    border-left: 0px solid transparent;
    border-right: 0px solid transparent;
    border-top: 0px solid #898989;
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    color: #01a0ec;
}
.stellarnav > ul > li > a:before {
    content: "";
    position: absolute;
    width: 0;
    top: 95%;
    height: 3px;
    background: #01a0ea;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, 0px);
    transition: .5s;
}
.stellarnav > ul > li > a:hover:before {
    transition: .5s;
    width: 100%;
}
/*-------------下拉-------------*/
.stellarnav ul ul {
    top: auto;
    width: 200px;
    position: absolute;
    z-index: 9900;
    text-align: left;
    display: none;
    background: #fff;
}
.stellarnav li li {
    display: block;
    border: 1px #c7e6f0 solid;
    border-bottom-width: 0;
}
.stellarnav li a {
    padding: 11px 10px;
    display: block;
    color: #132d3e;
    font-size: 15px;
    transition:  .5s;
}
.stellarnav li.drop-left li.has-sub > a:after {
    float: left;
    margin-right: 10px;
    border-left: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid transparent;
}
.stellarnav li.drop-left ul ul {
    left: auto;
    right: 198px;
}
.stellarnav li li:hover > a {
    padding: 11px 10px 11px 20px;
    transition: .5s;
}
.stellarnav li li li:hover a {
    transition: .5s;
    padding: 11px 10px 11px 20px;
}



/*-----------------------------------------*/
.info_fix_links {
    display: flex!important;}
.linksBtn {
    display: none;}
.info_fix {
    width: 70px;
    box-sizing: border-box;
    position: fixed;
    bottom: 130px;
    right: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: flex-end;
}
.info_fix_links a {
    display: flex;
    width: 45px;
    height: 45px;
    overflow: hidden;
    border-radius: 5px;
    transition: .3s;
    background: #123c57a3;
    margin-bottom: 2px;
    color: #FFFFFF;
    font-size: 1.5em;
    justify-content: center;
    align-items: center;
    align-content: center;
    line-height: 1;
}
.info_fix_links a:hover {
    background: #254c64;
}
a.info_fix_default.info_fix_tel {
    display: none;
}
a.info_fix_default.info_fix_mail {
    display: none;
}
/*-----------------------------*/
#to_top {
    position: fixed;
    bottom: 105px;
    left: unset;
    right: 12px;
    z-index: 600;
    width: 45px;
    height: 45px;
    padding-top: 10px;
    font-size: 12px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    background: #123c57a3;
    box-shadow: unset;
    border-radius: 5px;
}
#to_top i.top {
    width: 15px;
    height: 15px;
}
#to_top i:before, #to_top i:after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 100px;
    background: #ffffff;
    transition: all 100ms ease-in-out;
}

/* 商品下拉超過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個--結束 */

/* = = = FOOTER = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.footer {
    padding: 120px 0 0;
    font-size: 14px;
    background: #048ba2 url(https://pic03.eapple.com.tw/bosiaqua/footer.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    z-index: 99;
}
.footer .center {
    position: relative;
    max-width: 80%;
}
.footer_info {
    padding: 0;
    display: flex;
    grid-gap: 40px;
    padding-right: 0px;
    flex-wrap: wrap;
}
.footer_logo {
    filter: contrast(0.2) brightness(4);
    display: inline-block;
    vertical-align: top;
    max-width: 280px;
    margin: 0;
}
/*.footer_logo:after {
    content: "伯思淨水";
    font-size: 25px;
    font-weight: 700;
    font-family: noto serif TC;
    letter-spacing: 1px;
}*/
.box_link {
    position: absolute;
    top: 0;
    right: 10px;
    width: auto;
    max-width: 200px;
    display: flex;
    justify-content: flex-end;
    max-height: 100%;
    flex-direction: row;
}
.box_link a {
    display: block;
    width: 30px;
    border: 0px #ccc solid;
    border-radius: 0px;
    padding: 5px;
    font-size: 18px;
    text-align: center;
    margin: 5px 5px;
    color: #fff;
    transition: .5s all;
}
.box_link a:hover {
    transition: .5s all;
    color: #254c64;
}
.footer_info ul {
    display: flex;
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
}
.footer_info li:nth-child(1) {
    padding-left: 0px;
}
.footer_info li:nth-child(1):before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    margin-bottom: 10px;
}
.footer_info li p {
    line-height: 200%;
    letter-spacing: 1px;
    color: #fff;
}
.footer_info li p a {
    line-height: 200%;
    letter-spacing: 1px;
    color: #fff;
    transition: .5s all;
}
.footer_info li p a:hover {
    transition: .5s all;
    color: #254c64;
}
.footer_info li p.taxid:before {
    content: '統編';
}
.footer_info li:nth-child(2):before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    margin-bottom: 10px;
}
.footer_menu a {
    display: inline-block;
    padding: 10px 10px;
    border: 0px;
    margin: 0px 0px 0px 0;
    font-size: 14px;
    line-height: 100%;
    color: #fff;
    background: none;
    letter-spacing: 1px;
    transition: .5s all;
}
.footer_menu a:hover {
    background: #254c64;
    color: #fff;
}



.copy {
    text-align: center;
    max-width: 78%;
    padding-top: 100px;
    padding-bottom: 7px;
    font-size: 13px;
    font-weight: 100;
    letter-spacing: 1px;
    color: #fff;
    border-top: none;
    margin-top: unset;
    margin: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}
.copy a {
    color: #fff;
}
.privacyLinks a+a {
    border-left: 1px solid #fff;
}


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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) {
}

/*購物車設定*/
.product-layer-two li a {
    position: relative;
    border: 1px #fff solid;
    background: #e6f5f6;
    padding: 15px 16px;
    display: block;
    font-size: 16px;
    color: #132d3e;
}
.product-layer-two li.active a {
    font-weight: bold;
    border: 1px #a9cfd1 solid;
}
.product-layer-two li i {
    position: absolute;
    right: 0;
    top: 0;
    width: 37px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #132d3e;
}
.product-layer-two li.active li a {
    font-weight: normal;
    color: #3d6f77;
}
.product-layer-two li li:hover > a {
    background: #fff;
    color: #318390;
}
.product-layer-two li li:hover > a:before {
    background: #318390;
}
.products-list .name {
    font-size: 16px;
    font-weight: 600;
    font-family: noto serif TC;
    color: #132d3e;
    letter-spacing: 1px;
    margin-top: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3em;
}
.products-list .more {
    border: 1px solid #132d3e;
    color: #132d3e;
    font-size: 16px;
    font-weight: bold;
    line-height: 32px;
    text-align: center;
    transition: all .5s;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: 0;
}
.products-list .item a:hover .more {
    background: #77bdcb;
    color: #fff;
    letter-spacing: 2px;
    border: none;
}
/*結束*/















/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#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;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/

.path p, .path p a {display: none;}


.banner {
    min-height: 500px;
    background: url(https://pic03.eapple.com.tw/bosiaqua/banner.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}/*共通背景*/
.banner h5 {
    font-family: noto serif TC;
    font-weight: 500;
    color: #fff;
    font-size: 23px;
    letter-spacing: 1px;
}/*共通標題設定*/
.banner h5:after {
    display: block;
    font-family: monospace;
    font-weight: 800;
    font-size: 60px;
}

.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banE h5:after {content: "ALBUM";}
.banner.banF {}
.video_page .banner.banF h5:after {content: "VIDEO";}
.product_page .banner.banF h5:after {content: "PRODUCT";}
.banner.banblog {}
.article_a .banner.banblog h5:after {content: "NEWS";}
.article_b .banner.banblog h5:after {content: "BLOG";}

/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */


/*文章設定*/
h5.blog_le_t {
    display: none;
}
.blog_search input[type=search] {
    outline: none;
    box-sizing: border-box;
    width: 100%;
    font-size: 14px;
    color: #999;
    border: 0px;
    border-radius: 0px;
    padding: 10px 35px 10px 10px;
    border-bottom: 1px solid #597e84;
}
.blog_le .accordion {
    list-style-type: none;
    margin: auto;
    border-radius: 0px;
    border: 0px;
    overflow: hidden;
}
.accordion li+li .link {
    border-top: 1px solid #abcbd9;
}
.accordion li .link a {
    cursor: pointer;
    display: block;
    padding: 15px 10px;
    color: #4d6778;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {
    background: #6ca1ab !important;
}
/*-----*/
.blog_subbox {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
}
.subbox_item {
    display: block;
    width: 100%;
    position: relative;
    border-bottom: 1px solid #abcbd9;
}
.subbox_item a {
    display: grid;
    grid-template-columns: unset;
    position: relative;
    grid-gap: 20px;
}
.blog_list_ri {
    display: block;
    padding: 5px 5px;
}
.blog_list_ri h5 {
    font-weight: 600;
    font-size: 20px;
    color: #132d3e;
    letter-spacing: 1px;
    font-family: noto serif TC;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
}
.blog_list_ri em {
    font-size: 13px;
    color: #b1b1b1;
    letter-spacing: 1px;
    font-style: normal;
    display: block;
}
.blog_list_ri p {
    font-size: 14px;
    color: #444;
    line-height: 180%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;
}
.subbox_item a:before {
    content: 'READ MORE';
    position: absolute;
    z-index: 19;
    bottom: 0px;
    right: 0px;
    opacity: 0;
    font-size: 15px;
    color: #fff;
    transition: all .6s;
    background: #abcbd9;
    padding: 6px 10px;
}
.subbox_item a:after {
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 8;
    background: rgba(255, 255, 255, 0.9);
    opacity: 0;
    border: 0px;
    transition: all .5s;
}
/*--下層--*/
h4.blog_category_title {
    color: #132d3e;
    font-family: noto serif TC;
    font-size: 28px;
    letter-spacing: 1px;
    padding: 10px 0;
    margin-bottom: 20px;
}
.articel_mainPic img {
    display: none;
}
.blog_box_edit * {
    line-height: 200%;
}
.blog_back {
    text-align: center;
    display: flex
;
    grid-gap: 30px;
    justify-content: center;
}
.blog_back a {
    font-size: 15px;
    color: #fff;
    display: block;
    padding: 25px 15px;
    border-radius: 40px;
    width: unset;
}
.blog_back a.article_btn_prev {
    background: #afcbd0;
}
.blog_back a.article_btn_back {
    background: #6ca1ab;
}
.blog_back a.article_btn_next {
    background: #afcbd0;
}
.news_related_list li a {
    display: block;
    padding: 10px;
    background: #fff;
    height: 100%;
    border-radius: 5px;
}
.news_related_list li a p {
    font-size: 15px;
    color: #333;
    line-height: 3;
}
.lastPage {
    font-size: 16px;
    color: #fff;
    background: #6ca1ab;
    padding: 25px 10px;
    display: block;
    margin: 40px auto;
    width: 75px;
    text-align: center;
    border-radius: 45px;
}
/*---結束----*/










/*一排呈現
.subbox_item { width:100%;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
.show-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 30px;
}
.overlay {background: rgb(56 209 209 / 30%);}
.show-list .show_name {
    font-size: 17px;
    font-family: noto serif TC;
    color: #132d3e;
    letter-spacing: 0.15em;
    line-height: 1.5;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 26px;
}
.show-list .item:hover .show_name {
    color: #56bfc7;
}
/*---*/

.subalbum-menu h2 {
    font-size: 20px;
    color: #132d3e;
    display: inline-block;
    vertical-align: middle;
}

.album_fixed_title {
    display: none;}

.other_album_choice li {
    background: #6ca1ab;
    font-size: 15px;
    display: inline-block;
    border-radius: 4px;
    padding: 7px 20px;
    margin: 0 7px 7px 0;
}


/*相本分類全版面 ( 限制最寬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 {display: block; }*/
.footer.with_shopping_mode { padding:30px 0 70px; }
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}



/*-----------------------*/
.product-layer-two > li:first-child, 
.product-layer-two > li:first-child.active ~ li { display: none;}

.product-layer-two > li:first-child.active { display:block;}
