@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.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 {}
*/


#content_main {
  display: flex;
  flex-direction: column;
}

.module_i_news {
  order: 2;
}

.prod_part {
  order: 3;
}




  body.pageIndex::before {
      content: '';
      pointer-events: none;
      display: block;
      width: 100%;
      height: 100%;
      background-image: url(https://pic03.eapple.com.tw/yxpro/bdd-03.jpg);
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 10000;
      animation: bodybg 3s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
  }

  body.pageIndex::after{
      content: "";
      pointer-events: none;
      display: block;
      width: 20%;
      max-width: 150px;
      aspect-ratio: 30 / 16;
      padding-bottom: 100%;
      background-image: url(https://pic03.eapple.com.tw/yxpro/bdd-06.png);
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(1);
      z-index: 100000000;
      animation: logo-glow 3s ease-out forwards;
}

@keyframes bodybg {
    0% {opacity: 1; filter: blur(4px);}
    5% {filter: blur(0px);}
    50% {opacity: 1; transform: scale(1); filter: blur(0px);}
    100% {opacity: 0; transform: scale(1.5); filter: blur(4px);}
}
@keyframes logo-glow {
    0%   { opacity: 0; filter: brightness(0.5) blur(2px); }
    30%  { opacity: 1; filter: brightness(1.6); }
    60%  { filter: brightness(1); }
    100% { opacity: 0; filter: brightness(0.7) blur(3px); }
}
  @media screen and (max-width: 768px){body.pageIndex::after {width: 30%}}
  @media screen and (max-width: 600px){}
  @media screen and (max-width: 450px){body.pageIndex::after {width: 50%}}


/* END */

::-webkit-scrollbar {    width: 3px;}
::-webkit-scrollbar-track {    box-shadow: inset 0 0 8px #006eca;}
::-webkit-scrollbar-thumb {    background-color: #093657;border-radius: 4px;}
/*========================================*/
#to_top {
    right: 1px;
    left: auto;
    background: #f9f900;
    box-shadow: unset;
    color: #1a1a1a;
    border-radius: 0;
    bottom: 21px;
    width: 49px;
    height: 49px;
    font-size: 10px;
    border-top: 0;
    border: 0;
    padding-top: 14px;
}
#to_top i.top {width: 13px;height: 13px;}
#to_top i.top:before, #to_top i.top:after {height: 8px;background: #1a1a1a;}




/*大圖*/
#content_main {  margin: 0;}
.bannerindex { position: static; height: auto;}
.swiper-banner { position: static; margin: 0; height: auto;}
.swiper-slide { padding: 0px !important;}
.swiper-slide img { height: auto;}
.swiper-pagination { display: none;}
.swiper-slide { position: relative;}
.bannerindex .swiper-slide.swiper-slide-active:before {content: ""; position: absolute;  z-index: 999; pointer-events: none;}
.bannerindex .swiper-slide.swiper-slide-active:after {content: ""; position: absolute;  z-index: 999; pointer-events: none;}
@media screen and (max-width: 768px) {.bannerindex { padding:0; margin:0;}}


.bannerindex .swiper-slide.swiper-slide-active:nth-of-type(1):before {
    -webkit-animation: slide-top 2.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-top 2.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    background: url(https://pic03.eapple.com.tw/yxpro/A00-05.png);
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 10%;
    left:5%;
    width: 100% !important;
    height: 28% !important;
    background-position: left;
    padding-bottom: calc(100% / 1* 0.12);
}
.bannerindex .swiper-slide.swiper-slide-active:nth-of-type(2):before {
    -webkit-animation: slide-top 2.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-top 2.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    background: url(https://pic03.eapple.com.tw/yxpro/A00-06.png);
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 10%;
    left:5%;
    width: 100% !important;
    height: 28% !important;
    background-position: left;
    padding-bottom: calc(100% / 1* 0.12);
}

@keyframes slide-top{0%{opacity: 0;transform:translateY(0)}100%{opacity: 1;transform:translateY(-100%)}}
/*END*/
.me_tp_features {display: none;}

.pageIndex .header_area {position: fixed;background: #ffffff00;width: 100%;transition: all 0.5s;opacity: 0;top: -20px;;}
.pageIndex .header_area.sticky {opacity: 1;top: 0px;background:#fff;}

.header_area {background: #ffffff;position: sticky;}

.navigation {grid-template-columns: 400px 1fr;}
.nav-header {max-width: 350px;}

.pageIndex .header_area .nav-header {opacity: 0;transform: translate(-200px, 0);transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);}
.pageIndex .header_area.sticky .nav-header {opacity: 1;transform: translate(0px, 0);transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);}

.stellarnav > ul > li > a {font-family: "Noto Serif TC", serif;font-weight: 700;color: #1a1a1a;margin: 0 0 0 35px;transition: all 0.5s;}
.stellarnav > ul > li:hover > a {color:#006eca;transition: all 0.5s;}

.stellarnav li.has-sub > a:after {border-top: 6px solid #1a1a1a;transition: all 0.5s;}
.stellarnav li.has-sub:hover > a:after {border-top: 6px solid #006eca;transition: all 0.5s;}
.stellarnav > ul > li > a b {
    display: block;
    line-height: 40px;
    height: 40px;
    font-style: normal;
    font-weight: bold;
    font-family: "Noto Serif TC", serif;
}
/*下拉*/
.stellarnav ul ul {background: #006eca6e;}
.stellarnav li li {border: 1px #006eca solid;}
.stellarnav li a {font-family: "Noto Serif TC", serif;color: #f5f5f5;font-size: 14px;transition: all 0.5s;}
.stellarnav li li a:hover {background:#006eca;transition: all 0.5s;}
.stellarnav ul ul li a:hover {background:#006eca;transition: all 0.5s;}

.stellarnav li li.has-sub > a:after {display: none;}

/*Footer*/
.footer {
    position: relative;
    aspect-ratio: 2000 / 350;
    max-height: 350px;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(https://pic03.eapple.com.tw/yxpro/footer1.jpg) no-repeat center center;
    background-size: contain;
    pointer-events: none;
    z-index: -1;
}



.footer {background: transparent;padding: 0px;}
.footer_info {display: flex;flex-wrap: wrap;align-items: center;justify-content: space-between;display: none;}
.footer_menu {    display: grid;    grid-template-columns: repeat(auto-fit, minmax(min(110px,100%), 1fr));    gap: 5px;}/*footeræŒ‰éˆ•æœ€å°å¯¬åº¦100px*/
.footer_menu a {    margin: 0;	text-align: center;	padding: 5px;	transition: all 0.3s;}
.footer_menu a:hover {    background: #ADA17E;}
.copy {text-align: center;padding: 7px;font-size:13px;color:#ffffff;border-top:1px #ddd solid;margin-top:15px;display: flex;justify-content: center;align-items: center;align-content: center;flex-wrap: wrap;position: absolute;/* text-align: center; */right: 0%;width: 100%;bottom: 0%;z-index: 99;}
.copy a{    color: #fff;transition:all 0.3s;}
.box_link a{transition:all 0.3s;}
.box_link a:hover {    background: #ADA17E;    color: #fff;}



/*banner*/
.banner {display: flex;flex-direction: column;background: url(https://pic03.eapple.com.tw/yxpro/B00-01.jpg) no-repeat;}
.banner h5 {color: #0f4a7b;font-family: "Noto Serif TC", serif;font-size: 15px;display: flex;flex-direction: column;}




.banC:before {content: 'Contact';font-size: 25px;font-family: "Noto Serif TC", serif, serif;font-weight:800;color: #004982;}
.banblog:before {content: 'News';font-size: 25px;font-family: "Noto Serif TC", serif, serif;font-weight:800;color: #004982;}
.banF:before {content: 'Product';font-size: 25px;font-family: "Noto Serif TC", serif, serif;font-weight:800;color: #004982;}

 .banE h5:before { content: 'CASE'; }
.banner h5::after {
    content: "";
    display: block;
    width: 50%;
    height: 1px;
    background-color: #004982;
    margin: 10px auto 0;
    transform: scaleX(0);
    transform-origin: left center;
    animation: underlineExpand 0.6s ease-out forwards;
}

@keyframes underlineExpand {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}


/*文章-首頁*/

.animated-arrow {
	background:  linear-gradient(90deg, #143061, #0e4d7e);
	color: #ffffff;
	font-size: 14px;
	height: 60px;
	line-height: 60px;
	transition: all .3s;
	-webkit-box-shadow: 2.5px 4.33px 20px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 2.5px 4.33px 20px 0px rgba(0, 0, 0, 0.1);
	width: 200px;
}
.animated-arrow:hover {  color: #ffffff; z-index: 0;}

.animated-arrow::before {
    content: '';
    display: block;
	background:#0d569687;
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
	-webkit-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.animated-arrow:hover::before {
    background: linear-gradient(90deg, #b1d6ff66, #004488);
    width: 100%;
    left: 0;
    z-index: -1;
}
.animated-arrow:after {
	content: " ";
	width: 20%;
	height: 3px;
	/*background: #af8650;*/
	position: absolute;
	bottom: 0;
	left: 0;
	-webkit-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.animated-arrow:hover:after {width: 100%;}


.module_i_news {    padding: 50px; 
			
	background-image: url(https://pic03.eapple.com.tw/yxpro/bg01.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	z-index: -1;
	}
			   
.module_i_news section {    max-width: 100%;}
.module_i_news .title_i_box h6 {
    color: var(--logocolor);
    text-transform: uppercase;
    font-weight: 700;
    font-family: "Noto Serif TC", serif;
    color: #006eca;
    font-size: 30px;
}
.module_i_news .title_i_box h4 {
	font-family: "Noto Serif TC", serif;
	font-weight: 800;
	color: #006eca;
	font-weight: 700;
	letter-spacing: .2rem;
	line-height: 1.3;
}
/*
.module_i_news .title_i_box h4:before {
    content: "news";
    text-transform: uppercase;
    display: block;
    font-size: 30px;
    font-family: "Noto Serif TC", serif;
    color:  #006eca;;
    font-weight: 600;
}
*/
.module_i_news ul {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.blog_subbox {    grid-template-columns: repeat(3, 1fr);}
.module_i_news li a, .subbox_item a {    grid-template-columns: 1fr; background:#ffffff; box-shadow: 0 0 10px #a7c0d6;}
.module_i_news li a:after, .subbox_item a:after {
    border: none;
    background: linear-gradient(rgb(146 195 230 / 38%), rgb(29 75 112 / 59%) 48%, #27437bcc);
}
.i_blog_ri, .blog_list_ri {    padding: 15px 20px 30px;}
.i_blog_le, .blog_list_le {    overflow: hidden;}
.module_i_news li a:hover img, .subbox_item a:hover img {    transform: scale(1.2);  }
.blog_list_le img, .i_blog_le img {    transform: scale(1);    transition: all 1s; }
.subbox_item a {    gap: 0;}
.module_i_news li a:before {
    content: 'READ MORE';
    position: absolute;
    z-index: 19;
    bottom: 10px;
    right: 10px;
    opacity: 0;
    text-align: center;
    font-size: 15px;
    color: #ffffff;
    transition: all .6s;
}

.subbox_item a:before {
    content: 'READ MORE';
    position: absolute;
    z-index: 19;
    bottom: 10px;
    right: 10px;
    opacity: 0;
    font-size: 15px;
    color: #ffffff;
    transition: all .6s;
}
h5.blog_le_t em {
    display: inline-block;
    font-style: normal;
    display: none;
}
.submenu li.on_this_category a, .submenu a:hover {
    background: #91a7c7ad;
    color: #FFF;
}
/*設備展示*/

.i_prod_tit h2, .i_video_tit h2 {
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: "Noto Serif TC", serif;
    color: #006eca;
    font-size: 30px;
}

.prod_part{    padding: 50px; 
			
	background-image: url(https://pic03.eapple.com.tw/yxpro/bg02.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	}
.i_prod_tit span, .i_video_tit span {font-family: "Noto Serif TC", serif;font-weight: 700;color: #006eca;}
/*.i_prod_tit h2:before {content: "Photo";font-family: "Noto Serif TC", serif;font-weight: 600;font-size: 30px;color: #006eca;display: inline-block;}*/

.products-list .name {color: #1a1a1a;font-family: "Noto Sans TC", sans-serif;}
.products-list .more {border: 1px solid #ada17e00;color: #ffffff;background: #006eca;}
.products-list .item a:hover .more {background: #006eca;letter-spacing: 0;}

.path {display: none;}
h5.blog_le_t {color: #006eca;text-align: center;}
.blog_search input[type=search] {background: #ffffff6e;border: solid 1px #006eca;}
.blog_le .accordion {border: 1px #006eca solid;}
.accordion li .link a {color: #1a1a1a;transition: .5s;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {background: #006eca !important;transition: .5s;}
.accordion li+li .link {border-top: 1px solid #006eca;}
.blog_list_ri h5 {color: #1a1a1a;font-family: "Noto Sans TC", sans-serif;font-size: 18px;}
.blog_list_ri em {font-size: 13px;color: #006eca;text-align: right;}

h4.blog_category_title {color: #1a1a1a;font-size: 28px;}
.blog_back a.article_btn_prev,.blog_back a.article_btn_next {background: #006eca;}
.blog_back a.article_btn_back {background: #f9f900;color: #1a1a1a;}

.news_related {background: #ffffff;}
.news_related h6 span:before {color: #1a1a1a;}
.lastPage {background: #1a1a1a;}

/*設備展示*/
.product-layer-two li a {
background: #f3f3f300;
color: #006eca;
transition: .5s;
font-family: "Noto Sans TC", sans-serif;
}
.product-layer-two li:hover a {
color: #1a1a1a;
transition: .3s;
}
.product-layer-two li i.close::before {color: #1a1a1a;}
.fa-circle-plus::before {color: #006eca;}

.product-layer-two > li a:before {
   content: "";
    position: absolute;
    width: 12px;
    height: 8px;
    background: #006eca;
    left: 5px;
    margin-left: -20px;
    top: 50%;
    margin-top: -4px;
    clip-path: polygon(0 0, 100% 50%, 0 100%); 
    transform-origin: center center;
    backface-visibility: hidden;
}
.product-layer-two > li a:hover::before {
  animation: spinX 1s linear infinite;
  background: #1a1a1a;
}
@keyframes spinX {
  0%   { transform: rotateX(360deg); }
  100% { transform: rotateX(0deg); }
}

.product-layer-two li li:hover > a {color: #1a1a1a;}
.product-layer-two li li:hover > a:before {background: #1a1a1a;}


.products-list .pic img {transition: 1s;}
.products-list .pic img:hover {transform: scale(1.05);transition: 1s;}
.products-list .name {font-size: 17px;color: #1a1a1a;text-align: center;font-family: "Noto Sans TC", sans-serif;}
.products-list .price b {color: #474646;font-size: 14px;}
.products-list .more {border: 1px solid #006eca;color: #ffffff;letter-spacing: 1px;}
.products-list .item a:hover .more {
    background: #1a1a1a;
    border: 1px solid #1a1a1a;
}
.sidebarBtn h2 {
   line-height: 280%; 
}
.sidebarBtn {
    border: 5px #dddddd00 solid;
}
.sidebarBtn .price {
    color: #14b2f7;
    border-bottom: 1px solid #261901;
}
.sidebarBtn .sp_price {color: #261901;}
.inquiry_a3 {background: #261901;}
.inquiry_a1 {background: #006eca;}
.inquiry_a2 {background: #1a1a1a;}
.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover {background: #006eca;}
.toShare {border-top: 1px solid #006eca;}
.pd_tabTitle li.activeTab::after {height: 3px;background: ##006ecaa;}
.prod_related {background: #ffffff00;}
.lastPage {background: #006eca;transition: .5s;}
.lastPage:hover {background: #1a1a1a;letter-spacing: 2px;}
.prod_related h6 span:before {color: #1a1a1a;}


/*聯絡我們*/
.contact_form li.last blockquote {
    color: #006eca;
}
.contact_form li.last blockquote, .contact_form li.last cite {
    border: 1px #006eca solid;
}
.contact_form li.last cite {
    background: #006eca;
}

.contact_form li.last cite:hover {
    background: #1a1a1a;
    border: 1px #1a1a1a solid;
}


/* 商品下拉超過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 { 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_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) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#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;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.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 {display: block; }
.footer.with_shopping_mode { padding:30px 0 10px; }
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}




