@charset "utf-8";/*這段一定要加否則中文會變亂碼*/

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/
/* 滾動條 -------------------- */
/* 捲軸寬度及高度 */
::-webkit-scrollbar {
    width: 8px;
    /*右側捲軸寬度*/
    height: 0px;
    /*下方捲軸高度*/
}

/* 軌道背景底色 */
::-webkit-scrollbar-track {
    background-color: #222;
}

/* 滑桿顏色 */
::-webkit-scrollbar-thumb {
    background-color: #39424f;
    border-radius: 3px;
}

/* 滑桿滑鼠滑入時的顏色 */
::-webkit-scrollbar-thumb:hover {
    background: #45456b;
}

/*反白顏色*/
::-moz-selection {
    background-color:#39424f;
    color: #ffffff;
}

::selection {
    background-color:#39424f;
    color: #fff;
}

/*---------網站全域ROOT設定----*/
:root {
  --MainColor: #39424f; /*主要色系*/
  --SubColor1: #252543; /*輔助色系1*/
  --SubColor2: #b9e5ff; /*輔助色系2*/
  --SubColor3: #54aac9; /*輔助色系3*/
  --SubColor4: #e1b24a; /*輔助色系4*/  
  --SubColor5: #56253b; /*輔助色系5*/ 
  --SubColor6: #153870; /*輔助色系6*/ 
  --FontCh: 'Roboto','Noto Sans TC',sans-serif;
}


/*--字型崁入-中文:Noto sans TC + 英文:Roboto----*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/*動畫入場text-----------------------------------*/
.bannerindex .swiper-slide:nth-child(1):before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/yuanjhan/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 3s;
    animation-timing-function: linear;
}
/*----------------------------------------------*/
.bannerindex .swiper-slide:nth-child(2):before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/yuanjhan/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 3.3s;
    animation-timing-function: linear;
}
/*------------------動畫在這裡---------------------------------------*/
@keyframes inside1{
	0% {clip-path: polygon(0% 0%, 0 0%, 0% 100%, 0% 100%);transform:translate(-20%, 0%);}
   25% {transform:translate(0%, 0%);}
   75% {clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);}
  100% {clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);}
}

@keyframes inside2{
	0% {clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);transform:translate(20%, 0%);}
    25%{transform:translate(0%, 0%);}
    75%{clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);}
  100% {clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);}
}

/*header----------------------------------------------------------*/
.pageIndex .header_area {
    background: transparent;
    position: fixed;
    padding-top: 25px;
    transition: .3s all;
}
.header_area {
    background: #fff;
    position: fixed;
    padding-top: 25px;
    transition: .3s all;
}
.header_area.sticky {
    background: #ffffff;
    transition: .3s all;
    box-shadow: 0px 3px 6px 0px #1b223b17;
}
.main_header_area .container {
    max-width: 95%;
    margin: auto;
    transition: .3s all;
}
.header_area.sticky .main_header_area .container {
    max-width: 1600px;
    transition: .3s all;
}
.navigation {
    grid-template-columns: 250px 1fr;
    grid-gap: 0 20px;
}
.nav-header {
    max-width: 250px;
}
.me_tp_features {
    display: none;
}
.pageIndex .nav-brand {
    filter: brightness(5);
    transition: .3s all;
}
.header_area.sticky .nav-brand {
    filter: brightness(1);
    transition: .3s all;
}
.pageIndex .stellarnav > ul > li > a {
    color: #fff;
}
.stellarnav > ul > li > a {
    color: var(--SubColor1);
    font-size: 16px;
    letter-spacing: 1px;
    margin: 0 15px;
    font-family: 'Noto sans TC';
    font-weight: 400;
    transition: .3s all;
}
.header_area.sticky .stellarnav > ul > li > a {
    transition: .3s all;
    color: var(--SubColor1);
}
.stellarnav > ul > li:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 0;
    background: var(--SubColor1);
    top: 80%;
    left: 50%;
    transition: .3s;
}
.stellarnav > ul > li:hover:before {
    height: 15px;
    transition: .3s;
}
.stellarnav li.has-sub > a:after {
    display: none;
}
.stellarnav > ul > li.has-sub > a {
    padding-right: 0;
}
/* 下拉選項 */
.stellarnav ul ul.prod_classes {
    padding-top: 16px;
    background: transparent;
}
.stellarnav li li {
    border: 0;
    background: #ecf1f3;
    border-bottom: 1px solid #cad3d7;
}
.stellarnav li li:last-of-type {
    border-bottom-width: 0px;
}
.stellarnav.desktop li li > a {
    padding: 15px 15px 15px 15px;
    font-family: 'Roboto', 'Noto Sans TC';
    font-weight: 400;
    color: var(--MainColor);
    letter-spacing: .5px;
    font-size: 15px;
}
.stellarnav ul ul.news_classes {
    padding-top: 16px;
    background: transparent;
}
.stellarnav.desktop ul ul ul li > a {
    padding: 12px 12px;
    font-size: 14px;
    color: #567ea9;
}
/* RWD 漢堡設定 */

@media screen and (max-width: 768px) {
.pageIndex .header_area {
    position: sticky;
    background: #fff;
}
.header_area {
    position: sticky;
}
.pageIndex .nav-brand {
    filter: brightness(1);
}
.header_area.sticky .main_header_area .container {
    max-width: 95%;
}
.stellarnav.mobile {
    top: -6px;
}
.stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul {
    border-right: 1px solid #596473;
    background: #050e1ae6;
    font-family: var(--FontCh);
}
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {
    background: unset;
    color: #fff;
    letter-spacing: 1px;
    font-weight: 700;
}
.stellarnav .icon-close {
    margin-right: 3px;
}
.stellarnav .icon-close:before , .stellarnav .icon-close:after {
    border-bottom: solid 3px #fff;
}
.stellarnav.mobile > ul > li {
    display: block;
    border-bottom: 0;
}
.stellarnav > ul > li:before{
    display: none;
}
.stellarnav.mobile li a {
    border-bottom: 0;
}
.stellarnav.mobile > ul > li > a {
    padding: 15px 43px 15px 13px;
    color: #fff;
    letter-spacing: 2px;
    line-height: 190%;
}
.header_area.sticky .stellarnav > ul > li > a {
    color: #fff;
}
.stellarnav a.dd-toggle .icon-plus:before , .stellarnav a.dd-toggle .icon-plus:after {
    border-bottom: solid 2px #d1d7df;
    border-radius: 3px;
    width: 13px;

}
.stellarnav.mobile li.open {
    background: unset;
    padding: 0px;
}
.stellarnav ul ul.prod_classes {
    padding-top: 0px;
    background: unset;
}
.stellarnav li li {
    border: 0;
    border-bottom: 0;
    background: #7a839054;
}
.stellarnav.mobile li.open li.open {
    background: #b7bec84f;
    padding: 0;
}
.stellarnav.mobile li li.has-sub a {
    padding: 15px 43px 15px 28px;
}
.stellarnav.mobile li li a {
    padding: 15px 43px 15px 28px;
    color: #d3d9e2;
    font-size: 15px;
}
.stellarnav.mobile ul ul ul {
    background: unset;
}
.stellarnav li li li {
    background: unset;
}
.stellarnav.mobile li.open li.open li a {
    background: unset;
    font-size: 14px;
    padding: 15px 40px 15px 30px;
    color: #ffffff;
}
}

@media screen and (max-width: 375px) {
.nav-header {
    max-width: 220px;
    margin-left: 30px;
}
.stellarnav.mobile {
    top: 0px;
}
}
/*fix links----------------------------*/
.info_fix {
    right: 5px;
}
.info_fix_links {
    display: flex!important;
    padding-bottom: 40px;
}
.linksBtn {
    display: none;
}
.info_fix_links a {
    width: 46px;
    height: 46px;
    border-radius: 3px;
    margin-bottom: 5px;
    font-size: 1.4em;
    transition: .3s;
}
.info_fix_links a:hover {
    background: unset;
    transform: translateX(-5px);
    transition: .3s;
}
.info_fix_links a.info_fix_default {
    border: 1px solid #ffffff57;
}
a.info_fix_default.info_fix_fb {
    order: 0;
    background: #233e72;
}/*fb*/
a.info_fix_default.info_fix_line {
    background: #4fc01c;
    order: 1;
}/*line*/
a.info_fix_default.info_fix_mail {
    order: 2;
    background: #d44d28;
}/*mail*/
.fa-envelope2::before {
    content: '\f0e0';
}
a.info_fix_default.info_fix_mail2 {
    order: 3;
    background: #288ed4;
}/*mail2*/
a.info_fix_default.info_fix_whatsapp {
    order: 4;
    background: #23ae12;
}/*whatsapp*/
a.info_fix_default.info_fix_phone {
    order: 6;
    background: #eccd25;
}/*phone*/


/*to top ------------------------------*/
#to_top {
    bottom: 50px;
    left: unset;
    right: 17px;
    width: 46px;
    height: 46px;
    padding-top: 2px;
    font-size: 12px;
    color: #fff;
    background: #00000060;
    box-shadow: unset;
    border-radius: 3px;
    border: 1px solid #ffffff57;
}
#to_top i.top:before, #to_top i.top:after {
    height: 12px;
    top: 7px;
    left: 50%;
    background: #fff;
}


/* 測邊浮動按鈕RWD設定 */
@media screen and (max-width: 768px) {
.info_fix {
    width: 50px;
}
#to_top {
    right: 7px;
}
}



/*FOOTER-------------------------------*/
.footer {
    padding: 60px 0 0;
    background: #1b223b;
}
.footer_info {
    padding-right: 0;
    grid-template-columns: unset;
    grid-template-rows: 60px 1fr;
    justify-items: center;
}
.footer_logo {
    max-width: 300px;
    filter: brightness(5);
}
.box_link {
    display: none;
}
.footer_info ul {
    text-align: center;
    font-family: 'Roboto', 'NOTO SANS TC';
}
.footer_info li p , .footer_info li p a {
    line-height: 180%;
    letter-spacing: 1px;
    color: #cfcfcf;
}
.footer_info li:nth-child(2) {
    padding-top: 40px;
    display: flex;
    justify-content: center;
}
.footer_menu {
    width: 45vw;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(90px, 100%), 1fr));
    gap: 20px;
    text-align: center;
}
.footer_menu a {
    padding: 10px 12px;
    border: 1px solid #7280b3;
    margin: 0;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 2px;
    color: var(--SubColor1);
    font-family: 'Noto Sans TC';
    font-weight: 700;
    background: #ffffff;
    border-radius: 3px;
    transition: .3s;
}
.footer_menu a:hover {
    background: var(--SubColor6);
    color: #fff;
    transition: .3s;
    border: 1px solid #7280b3;
}
.copy {
    padding: 20px 0;
    font-size: 12px;
    letter-spacing: 1px;
    color: #8f8f8f;
    border-top: 0;
    margin-top: 50px;
    background: #11172b;
}
.copy a {
    color: #8f8f8f;
}
.privacyLinks a+a {
    border-left: 0;
}









/* 商品下拉超過30個變大 */
.stellarnav.desktop li.bigMenu>ul{display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); left: 0; width: 100%; position: fixed; padding: 20px;}
.stellarnav.desktop li.bigMenu ul ul{top: 100%; left: 0; width: 100%; background: #efefef; height: auto; max-height: 300px; overflow: auto;}
.stellarnav.desktop li.bigMenu ul ul li{margin: 0;} 
.stellarnav.hasBigMenu li.bigMenu li.has-sub > a:after{border-left: 6px solid transparent; border-bottom:unset; border-right: 6px solid transparent; border-top: 6px solid #898989; right: 5px;}
/* 主分類超過30個但次分類直接顯示 
.stellarnav.desktop li.bigMenu>ul{grid-gap: 10px;}
.stellarnav.desktop li.bigMenu li{border: 0;}
.stellarnav.desktop li.bigMenu>ul>li>a{border: 1px solid #ddd;}
.stellarnav.desktop li.bigMenu ul ul{display: block !important; position: relative; top: 0; background: unset; border: 0;}
.stellarnav.desktop li.bigMenu ul ul li{border: 0;}
 主分類超過30個但次分類直接顯示-結束 */

/* 商品下拉超過30個--結束 */

/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part { max-width:1500px;}
/* .product_info_page .main_part { max-width:1200px;} */

.product_page .show_content,
.product_info_page .show_content { width: 100%; display: flex; justify-content: space-between; flex-wrap: wrap; align-items: flex-start; align-content: flex-start;}
.product_page .product_menu_list { position: relative; width: 220px; letter-spacing: 1px; /*border-right: 1px solid #ccc;*/min-height: 30vw;}
.product_page .products-list,
.product-wrapper { width: calc(100% - 270px);}
ul.page { width: 100%;}

.product-layer-two li ul { position:static; margin-top:5px; /*display:block !important;*/ width:100%; margin-left:0;}
.product-layer-two li:hover ul { border: none !important; /*display:block !important;*/}
.product-layer-two li li { display: block; padding:0; transition:all ease .3s;}
.product-layer-two li li a{ padding:5px 10px;}
.product-layer-two li li:hover > a { background:#fff; color:#ad925e;}
.product-layer-two > li { width:100%; max-width:100%; padding:0; text-align:left; border-bottom:1px dotted #ccc; padding-bottom: 5px;}
.product-layer-two > li ul > li + li { margin-top:5px;}

.product_info_page .product-layer-two { display: none;}
.product_info_page .products-list,
.product-wrapper { width: 100%;}

.product-layer-two li li:hover{ margin-left: 15px;}
.product-layer-two li li > a:before { content: ""; position: absolute; width: 12px; height: 8px; background: transparent; left: 0; margin-left: -20px; top: 50%; margin-top: -4px; clip-path: polygon(0 0, 100% 50% , 0 100%);}
.product-layer-two li li:hover > a:before { background:#ad925e;}

.product_info_page .half_box { width: 100%; float: none; padding-right: 0;}
.product_info_page .half_box li.btn_blankTop { margin-top: 50px; justify-content: space-between; display: flex;}
.product_info_page .half_box li.btn_blankTop input { width: calc(50% - 10px); background-image: none; padding: 0; text-align: center;}
@media screen and (max-width: 1200px) {
}

@media screen and (max-width: 980px) {
}

@media screen and (max-width: 768px) {
.product_menu_list,
.products-list,
.product-wrapper { width: 100%;}
.product-layer-two { margin-right: 0; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); grid-gap: 5px;}
.product_page .product-layer-two,
.product_page .products-list { width: 100%; border-right: none;}
.product_page .product_menu_list>h5{display: block;}

.product_page .show_content > a { order: 1;}
.product_page ul.products-list { order: 2;}
.product_page ul.page { order: 3;}
.product_page .product_menu_list {width: 100%; order: 0; min-height: unset;}
}

@media screen and (max-width: 600px) {
}

/* 購物車 */
.product-layer-two li a {
    padding: 15px 15px;
    font-family: 'Roboto', 'Noto Sans TC';
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--SubColor5);
    background: #eef1f7;
}
.product-layer-two li i {
    width: 55px;
    height: 55px;
    color: var(--SubColor4);
}

.product-layer-two li li a {
    padding: 10px 10px;
    background: #f0f0f0;
}
.product-layer-two li li:hover > a {
    background: #fff;
    color: var(--SubColor4);
}
.product-layer-two li li:hover > a:before {
    background: var(--SubColor4);
}
.products-list {
    grid-gap: 40px 20px;
}
.products-list .name {
    font-family: 'Roboto', 'Noto Sans TC';
    font-weight: 700;
    font-size: 17px;
    color: var(--SubColor5);
}
.products-list .name .numbering {
    margin-top: 3px;
    font-size: 14px;
    font-weight: 400;
    color: #888888;
}
.products-list .more {
    border: 1px solid var(--SubColor6);
    color: var(--SubColor6);
}
.products-list .item a:hover .more {
    background: var(--SubColor6);
}

@media screen and (max-width: 768px) {
.product_menu_list>h5 {
    color: var(--SubColor5);
    font-family: 'Roboto', 'Noto Sans TC';
}
a.pd_menu_toggle i {
    color: var(--SubColor5);
}
}
/* 下層詳細商品內頁 */

.edit {
    line-height: 200%;
    font-size: 15px;
    color: #293541;
}
.prod_related {
    padding: 50px 15px;
}
.prod_related h6 span:before {
    font-size: 30px;
    color: var(--MainColor);
    font-weight: 700;
    font-family: 'Noto sans TC';
    letter-spacing: 2px;
}
.related_list li a {
    padding: 13px;
}
.related_list li a p {
    margin-top: 10px;
    font-size: 15px;
    color: #333;
    line-height: 1.8;
}
/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */


/*預設解除背景輪播*/
#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;}
}


/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.path { display: none;}

#content {
    background: url(https://pic03.eapple.com.tw/yuanjhan/bcg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}/*背景*/

/*內頁BANNER 設定*/
.banner {
    padding: 0;
    background: transparent;
    min-height: 300px;
    position: relative;
    z-index: 0;
}
.banner h5 {
    margin: auto;
    font-size: 32px;
    font-family: 'Noto Sans TC';
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--SubColor6);
    margin-top: 200px;
    position: relative;
}
.banner h5:before {
    position: absolute;
    content: "";
    display: block;
    font-family: 'Roboto';
    font-weight: 900;
    font-size: 80px;
    letter-spacing: 3px;
    color: #cedafc;
    transform: translateX(-50%);
    left: 50%;
    top: -50px;
    z-index: -1;
}
.banner.banblog h5:before {content: "NEWS";}
.banner.banF h5:before {content: "CASES";}
.banner.banA {}
.banner.banB {display: none;}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}

/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/
.main_part {
    max-width: 1600px;
    }

.blog_le {
    width: 230px;
    padding: 20px;
    background: #e3eaf373;
}
h5.blog_le_t {
    display: none;
}
.blog_search input[type=search] {
    border-radius: 0;
    background: transparent;
    border: 1px solid var(--MainColor);
    color: var(--MainColor);
}
.blog_search input[type=submit] {
    filter: grayscale(1);
}
.blog_le .accordion {
    border-radius: 0;
    border: 0;
}
.accordion li .link a {
    padding: 20px 15px;
    font-family: 'Noto Sans TC';
    font-size: 15px;
    font-weight: 600;
    color: var(--SubColor6);
}
.accordion li+li .link {
    border-top: 1px solid #98a5b7;
}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {
    background: var(--SubColor6) !important;
}
/*右邊*/
.blog_ri {
    padding-left: 70px;
}
h4.blog_category_title {
    display: none;
}
.blog_subbox {
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    grid-gap: 60px 40px;
}
.subbox_item a {
    grid-template-columns: unset;
}
.blog_list_ri h5 {
    font-family: 'Noto Sans TC';
    font-weight: 700;
    font-size: 23px;
    color: var(--MainColor);
}
.blog_list_ri em {
    margin-top: 12px;
}
.blog_list_ri p {
    line-height: 200%;
    -webkit-line-clamp: 3;
}

.subbox_item a:after {
    border: 0;    
}
.subbox_item a:before {
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    bottom: unset;
    right: unset;
    font-size: 22px;
    font-family: 'Noto Sans TC';
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--SubColor6);
}

@media screen and (max-width: 1024px) {
.blog_ri {
    padding-left: 30px;
}
.blog_subbox {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
}
@media screen and (max-width: 768px) {
.blog_ri {
    padding-left: unset;
}
.blog_le {
    width: 100%;
}
h5.blog_le_t {
    color: var(--SubColor6);
    font-family: 'Noto Sans TC';
    font-weight: 600;
    display: block;
}
a.news_menu_toggle i {
    color: var(--SubColor6);
}
}

/* 下層內文 */
.articel_mainPic {
    display: none;
}
.blog_box_edit * {
    line-height: 230%;
    color: #414d58;
    letter-spacing: 0.5px;
    font-size: 15px;
}
.blog_back {
    grid-gap: 10px;
}
.blog_back a.article_btn_prev {
    background: var(--SubColor1);
}
.blog_back a.article_btn_back {
    background: var(--SubColor6);
}
.blog_back a.article_btn_next {
    background: var(--SubColor1);
}

.news_related {
    background: #f3f3f3;
    padding: 50px 15px;
}
.news_related h6 span:before {
    font-size: 30px;
    color: var(--MainColor);
    font-weight: 700;
    font-family: 'Noto sans TC';
    letter-spacing: 2px;
}
.news_related_list li a {
    padding: 15px;
}
.news_related_list li a p {
    margin-top: 10px;
    font-size: 15px;
    color: #333;
    line-height: 1.8;
}
.lastPage {
    background: var(--SubColor1);
}

/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */


/*相本分類全版面 ( 限制最寬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 55px; }
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}
