@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@300;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Saira:ital,wght@0,100..900;1,100..900&display=swap');

body{
	overflow-x:hidden;
	font-family: "Saira" , "Noto Sans TC", "Noto Serif TC","微軟正黑體","arial","sans-serif";
	font-weight: 400;
  background:  #ffffff;
}

body{overflow-y: scroll; overflow-x:hidden; max-height: 100%;}
body::-webkit-scrollbar {width: 4px;}
body::-webkit-scrollbar-track {box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);}
body::-webkit-scrollbar-thumb {background-color: #3965c2; border: 1px solid #3965c2;}


/*網站全域設定/＝＝＝＝＝*/

/*
  #211F20 /*網站主要色系
  #F4F2F0 /*網站輔助色系1
  #F4F2F0; /*網站輔助色系2*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/* 商品下拉超過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;}


/* = = = 大圖 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */




/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:relative; height:auto; margin-top: -110px;}
.swiper-banner { position:static; margin:0; height:auto;} 
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}



/*BN加字*/
.swiper-slide:before, .swiper-slide:after {
  content: "";
  position: absolute;
  z-index: 999;
  pointer-events: none;
  background-size: contain;
  background-repeat: no-repeat;
}

.pageIndex .swiper-slide:nth-child(1)::after {
  width: 100%;
  background-image: url(https://pic03.eapple.com.tw/qiaoyi/01T1.png);
  aspect-ratio: 1/1;
  right: 5vw;
  max-width: 20vw;
  bottom: 16vw;
  background-size: contain;
  content: '';
  position: absolute;
}
.pageIndex .swiper-slide:nth-child(1)::before {
  width: 100%;
  background-image: url(https://pic03.eapple.com.tw/qiaoyi/01T2.png);
  aspect-ratio: 1/1;
  right: 5vw;
  max-width: 20vw;
  bottom: -2vw;
  background-size: contain;
  content: '';
  position: absolute;
}

.pageIndex .swiper-slide:nth-child(2)::after {
  width: 100%;
  background-image: url(https://pic03.eapple.com.tw/qiaoyi/02T1.png);
  aspect-ratio: 1/1;
  margin: 0 auto;
  right: 0;
  left: 0;
  max-width: 30vw;
  width: 100%;
  bottom: 8vw;
  background-size: contain;
  content: '';
  position: absolute;
}
.pageIndex .swiper-slide:nth-child(2)::before {
  width: 100%;
  background-image: url(https://pic03.eapple.com.tw/qiaoyi/02T2.png);
  aspect-ratio: 1/1;
  margin: 0 auto;
  right: 0;
  left: 0;
  max-width: 30vw;
  width: 100%;
  bottom: 4vw;
  background-size: contain;
  content: '';
  position: absolute;
}



.pageIndex .swiper-slide:nth-child(1)::after  {
  animation: ani_LtoR 1s 0.5s both;
}
.pageIndex .swiper-slide:nth-child(2)::after  {
  animation: ani_TtoB 1s 0.5s both;
}

.pageIndex .swiper-slide:nth-child(1)::before {
  animation: ani_LtoR 1s 0.5s both;
  animation-delay: 1s;
}
.pageIndex .swiper-slide:nth-child(2)::before {
  animation: ani_BtoT 1s 0.5s both;
  animation-delay: 1s;
}


@keyframes ani_SC {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
            opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
            opacity:1;
  }
}
@keyframes ani_TtoB {
  0% {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
            opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
            opacity:1;
  }
}
@keyframes ani_BtoT {
  0% {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
            opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
            opacity:1;
  }
}
@keyframes ani_LtoR {
  0% {
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
            opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
            opacity:1;
  }
}
@keyframes ani_RtoL {
  0% {
    -webkit-transform: translateX(10%);
            transform: translateX(10%);
            opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
            opacity:1;
  }
}

@media screen and (max-width: 1800px) {

}
@media screen and (max-width: 1440px) {

}
@media screen and (max-width: 900px) {

}
@media screen and (max-width: 768px) {

}


/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:relative; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 
@media screen and (max-width: 1440px) {
.bannerindex { margin-top: 0px;}
}
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}


/*點點樣式*/
.swiper-pagination-bullets.swiper-pagination-horizontal {bottom: var(--swiper-pagination-bottom, 55px);}
.swiper-pagination-bullet {width: 40px; height: 5px; border-radius: 0px; background: #ffffff; display: none;}
.swiper-pagination-bullet-active {background: #211F20;}

/*隱藏大圖輪播點點按鈕*/
.swiper-pagination-clickable .swiper-pagination-bullet {
	display: none;
}


/* = = = BANNER = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */


#content_main {background: url(https://pic03.eapple.com.tw/qiaoyi/BBG.jpg)no-repeat top; background-size: cover;}
#content {background: url(https://pic03.eapple.com.tw/qiaoyi/BBG.jpg)no-repeat top; background-size: cover;}


.path {display: none;}
.banner {padding: 0px 0; height:450px; width: 100%;}
.banner h5{font-size: 50px; color: #09518b; padding-top: 45px;font-weight:500; letter-spacing: 6px; text-shadow: 2px 2px 1px #ffffff; text-align: center;font-style: italic;}
.banner h5:after {
    color: #6CBDBF;
    display: block;
    content: "－ QIAOYI PURIFIED WATER －";
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    font-family: "Saira";
    margin-top: -5px;}
.banner h5:before {
    content: ' ';
    height: 61px;
    width: 1px;
    background: url(https://pic03.eapple.com.tw/qiaoyi/SBNWATER.png)top;
    width: 100%;
    position: absolute;
    margin: 0 auto;
    top: 100px;
    left: 0;
    display: block;
    background-size: cover;
    animation: bubble 200s linear infinite alternate;
    -webkit-animation: bubble 200s linear infinite alternate;
    pointer-events: none;}


@keyframes bubble {
0% {
    background-position-x: 0;
}
100% {
    background-position-x: 10000px;
}
}

@keyframes scroll_bottom {
0% {
    background-position: 4327px 100px;
}
100% {
    background-position: 0 100px;
}
}


.product_page .banner , .product_info_page .banner {background: url(https://pic03.eapple.com.tw/qiaoyi/SBN4.jpg) no-repeat top left 30%; width: 100%;}
.blog_page.article_a .banner , .blog_in_page.article_a .banner{background: url(https://pic03.eapple.com.tw/qiaoyi/SBN2.jpg) no-repeat top left 30%; width: 100%;}
.blog_page.article_b .banner , .blog_in_page.article_b .banner{background: url(https://pic03.eapple.com.tw/qiaoyi/SBN3.jpg) no-repeat top left 30%; width: 100%;}
.contact_page .banner{background: url(https://pic03.eapple.com.tw/qiaoyi/SBN1.jpg) no-repeat top left 30%; width: 100%;}
.car_page .banner , .remit_page .banner {background: url(https://pic03.eapple.com.tw/qiaoyi/SBN5.jpg) no-repeat top left 30%; width: 100%;}
.other_page .banner {display: none;}

.car_page .main_part{padding: 50px 20px 100px 20px;}
.rewrite_simple {background: #8994ac url(../images/simple_left.png) 10% center no-repeat;}
.privacy_page .banner , .privacy_page .banner h5 {display: none;}


@media screen and (max-width: 1024px) {
.banner h5 {font-size: 38px;}
.banner h5:before {top: 172px;}
}
@media screen and (max-width: 768px) {
.banner h5 {font-size: 32px; padding-top: 35px;}
.banner h5:before {height: 35px;top: 140px;}
.banner {height: 350px;}
}
@media screen and (max-width: 480px) {
.banner h5 {font-size: 30px; padding-top: 15px;}
.banner {background-position: left top; height: 250px;}
.banner h5:after {font-size: 16px;}
}
@media screen and (max-width: 375px) {
.banner h5:before {top: 168px;}
}



/* = = = LOGO = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */


.nav-header {display: block; width: 100%; text-align: left;}
.pageIndex .nav-brand {width: 100%; display: block; margin-top: 12px; transition:all 0.3s;}
.pageIndex .header_area.sticky .nav-brand {margin-top: 12px;}
.nav-brand {width: 100%; display: block; margin-top: 12px; transition:all 0.3s;}
.nav-brand img {max-width: 200px; transition: 0.3s ease;}
.pageIndex .header_area.sticky .nav-brand img {max-width: 200px; transition: 0.3s ease;}
.stellarnav {margin-top: 0px; transition: 0.3s ease;}
.pageIndex .header_area.sticky .stellarnav {margin-top: 0px; transition: 0.3s ease;}
.header_area {padding: 0px; background: none;}


@media screen and (max-width: 1024px) {
.pageIndex .header_area.sticky .nav-brand {margin-top: 22px;}
}


/* = = = 主選單 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */


.pageIndex .header_area.sticky .main_header_area {
  background: #ffffffe3;
  height: 100px;
  opacity: 1;
  border-bottom: 0px solid #ececec;
  transition: 0.6s ease;
  width: 100%;
  border-radius: 0px;}
.pageIndex .main_header_area {background: #ffffffe3; height: 100px; opacity:1; border-bottom: 0px solid #ececec; transition: 0.6s ease; box-shadow: 1px 1px 10px #767676a1; margin: 0 auto; width: 55%; border-radius: 50px; margin-top: 10px;}
.main_header_area{background: #ffffff; height: 100px;transition: 0.6s ease;}
.navigation {padding: 0px 0 0px 0px;}
.header_area.sticky {background: none;}


/*選單最大寬度設定*/
.main_header_area .container {max-width:90%;}

/*第一層*/
.pageIndex .stellarnav {width: 100%; transition: 0.3s ease;}
.pageIndex .stellarnav > ul > li > a {color: #3b3733; transition:all 0.3s;}
.pageIndex .header_area.sticky .stellarnav > ul > li > a {color: #3b3733;}
.stellarnav > ul > li > a {font-weight: 500;font-size: 17px; color: #3b3733; transition:all 0.3s; padding: 0px 6px 0px 6px; text-shadow: none;}
.stellarnav > ul > li > a:hover {color: #6DBDBF;}
.stellarnav li.has-sub > a:after {display:none;}
.stellarnav li.has-sub > a{padding: 0px 6px 0 6px;}
.stellarnav > ul > li.has-sub > a {padding-right: 6px;}

/*第二層*/
.stellarnav > li {text-align: center;}
.stellarnav li a {color: #3b3733;}
.stellarnav li li > a , .stellarnav li li.has-sub > a{padding: 8px 8px; letter-spacing:1px; transition: all 0.3s; border-left:1px solid transparent; font-size: 14px; font-weight: 500;}
.stellarnav li li:hover > a , .stellarnav li li.has-sub:hover > a{color: #ffffff; padding-left:12px;border-color:#6DBDBF; background: #6DBDBF; border-radius: 10px;}
.stellarnav>ul {padding-top: 0px; transition: 0.3s ease;}
.stellarnav ul ul {margin-top: 0px; background: none;}
.stellarnav li li {width: 100%; border: 0px; border-bottom: 1px #e0e0e0 solid; background: #fff; border-radius: 10px;}
.stellarnav ul ul ul {top: 0px;}
.stellarnav li li:last-of-type {border-bottom-width: 0px;}

/*SubMenu*/
.shop_search_btn {background: linear-gradient(to bottom, #034586 0%, #6DBDBF 100%); border-radius: 50px; padding: 2px 12px;}
.tp_links {display: none;}
.tp_links a{transition:all 0.3s;}
.tp_links a:hover {color: #211F20;}
.me_tp_features {display: block; margin: 18px 0 0 0; height: 30px; padding-right: 6px;}
.me_tp_features a {font-size: 15px;}
.pageIndex .me_tp_features a.tp_btn_cart , .pageIndex .me_tp_features a.tp_btn_notice {color: #3b3733; }
.pageIndex .header_area.sticky .me_tp_features a.tp_btn_cart , .pageIndex .header_area.sticky .me_tp_features a.tp_btn_notice {color: #211F20;  text-shadow: none; }
.me_tp_features a.tp_btn_cart , .me_tp_features a.tp_btn_notice {color: #211F20;  text-shadow: none;}
.box_search input[type=text] {border-radius: 0; border: solid 0px #ccc;}
.box_search {margin-right: 5px;}
.me_tp_features a.tp_btn_cart b { padding: 0px 4px; border-radius: 100px; font-size: 14px;}


@media screen and (max-width: 1700px) {
  .stellarnav>ul {padding-left: 0px;}
  .pageIndex .main_header_area {width: 70%;}
}
@media screen and (max-width: 1440px) {
  .pageIndex .main_header_area {width: 100%; border-radius: 0px; margin-top: 0px;}
}
@media screen and (max-width: 1350px) {
  .main_header_area .container {max-width: 95%;}
}
@media screen and (max-width: 1180px) {
  .stellarnav {width: 100%;}
}
@media screen and (max-width: 1024px) {
  .stellarnav {width: 100%;}
  .stellarnav>ul {text-align: center; margin-top: 0px; margin-top: 0px; padding-top: 0px;}
  .main_header_area {height: 172px;}
  .header_area.sticky .stellarnav>ul {padding-top: 0px;}
  .header_area.sticky .main_header_area {height: 172px;}
  .nav-header {text-align: center; margin-top: 22px;}
  .pageIndex .nav-header {text-align: center; margin-top: 0px;}
  .me_tp_features {margin: 0px 0 0 0; margin-top: 10px;}

  .stellarnav li {text-align: center;width: 100px;}
  .pageIndex .main_header_area {height: 172px; background: #ffffff;}
  .pageIndex .header_area.sticky .main_header_area {height: 172px;}
  
  .nav-brand {margin-top: 0px;}
  .nav-brand:after {transform: translateX(-40px) translateY(50px); height: 88px; max-width: 75px; margin-top: -35px;}
  .pageIndex .nav-brand {margin-top: 22px;}
  .pageIndex .nav-brand:after {transform: translateX(-50px);height: 100px; }
  .pageIndex .header_area.sticky .nav-brand:after {transform: translateX(-40px) translateY(50px); height: 88px; max-width: 75px;}
  .pageIndex .me_tp_features a.tp_btn_cart, .pageIndex .me_tp_features a.tp_btn_notice {text-shadow:none;}
  .pageIndex .stellarnav > ul > li > a > b {text-shadow: none;}
}
@media screen and (max-width: 768px) {
.pageIndex .main_header_area {height: 140px;}
.stellarnav > ul > li > a{text-shadow:none;}
.header_area.sticky .main_header_area {height: 140px;}
.main_header_area {height: 140px;}
.me_tp_features a.tp_btn_cart, .me_tp_features a.tp_btn_notice {display: inline-block;}
.pageIndex .header_area.sticky .main_header_area {height: 140px;}

/*漢堡選單展開*/
.stellarnav.mobile > ul {border-top: 0px solid rgba(255, 255, 255, .15);}
.stellarnav.mobile > ul > li > a {padding:11px 43px 10px 15px;}
.stellarnav.mobile > ul > li.has-sub > a {padding: 11px 43px 10px 15px;}
.stellarnav li li > a, .stellarnav li li.has-sub > a {padding: 8px 15px;}
.stellarnav.mobile li li.has-sub a {padding: 11px 43px 10px 15px;}
.stellarnav.mobile > ul > li > a.dd-toggle {padding: 8px !important;}
.stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul {background: #034586; border-right: 0px #034586 solid; box-shadow: 1px 1px 10px #504c47ad;}
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {background: #034586;}
.stellarnav.mobile > ul > li {border-bottom: 1px #034586 solid;}
.stellarnav li {width: 100%; text-align: left;}
.stellarnav > ul > li.has-sub > a {padding-right: 10px; padding-left: 10px;}
.stellarnav > ul > li > a:hover {color: #6487d1;}
.stellarnav > ul > li > a {color: #fff;}
.stellarnav.mobile li.open li.open {background: #052443;}
.stellarnav ul ul ul {right: unset; left: 100%; top: 0px;}
.stellarnav a.dd-toggle .icon-plus:after {border-bottom: solid 3px #1a73ca;}
.stellarnav a.dd-toggle .icon-plus:before {border-bottom: solid 3px #1a73ca;}
.stellarnav li li:hover > a, .stellarnav li li.has-sub:hover > a {color: #ffffff; border-color: #052443; background: #052443;}
.stellarnav .icon-close:after {border-bottom: solid 2px #2e8ce7;}
.stellarnav .icon-close:before {border-bottom: solid 2px #2e8ce7;}
.stellarnav a {color:#2e8ce7;}
.stellarnav.mobile li a{border-bottom: 1px solid #115ba3;}

.stellarnav.mobile ul {background: #053463;}
.stellarnav.mobile li.open {background: #053463;}
.stellarnav li li {border: 1px #053463 solid; background: #052443;}
.stellarnav li a {color: #ffffff;}
.stellarnav > ul > li > a > b {color: #ffffff;}
.stellarnav ul ul {box-shadow: none;}

.pageIndex .stellarnav > ul > li > a {color: #ffffff;}

.pageIndex .header_area.sticky .stellarnav > ul > li > a {color: #fff;}
.pageIndex .header_area.sticky .stellarnav > ul > li > a:hover {color: #6487d1;}

.pageIndex .nav-header {margin-top: 22px;}
.pageIndex .nav-brand {margin-top: 0px;}
.pageIndex .header_area.sticky .nav-brand {margin-top: 0px;}

/*主選單按鈕下底線*/
.stellarnav > ul > li:not(.tp_links) > a:after ,
.stellarnav > ul > li > a:after {display: none;}
}

@media screen and (max-width: 400px) {
.box_search {margin-right: 0px; display: block; max-width: 160px; width: 100%; margin: 0 auto; margin-bottom: 5px;}
.pageIndex .main_header_area {height: 168px;}
.pageIndex .header_area.sticky .main_header_area {height: 168px;}
.header_area.sticky .main_header_area {height: 168px;}
.main_header_area {height: 168px;}
}


/* = = = 頁尾 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.footer .center {max-width: 60%;}
.center {max-width: 60%;}
.footer {background: url(https://pic03.eapple.com.tw/qiaoyi/footer.jpg) no-repeat; padding:74px 0 0px 0;}
.footer_info {display: flex; flex-wrap: wrap;  align-items: center;  justify-content: space-between; padding: 0 0; grid-gap: 0px;}
.footer_menu {display: grid;  grid-template-columns: repeat(auto-fit, minmax(min(90px,100%), 1fr));  gap: 3px; width: 100%; text-align: center; margin: 0 auto; max-width: 800px;}
/*footer按鈕最小寬度100px*/
.footer_menu a {color:#5f8ebc;margin: 0;	text-align: center;	padding: 0px 4px 2px 0px; border:0; border-right: 1px #6DBDBF solid;  border-left: 0px #f7f7f7 solid; background: none;  font-size: 14px; transition: all 0.3s;}
.footer_menu a:last-child {border-right: 0px #d6e1e1 solid;}
.footer_menu a:hover {background: none; color: #6DBDBF;} 
.copy {background:#cce7ef; color: #6DBDBF; border:none; padding: 15px 0 15px 0; text-align: center; margin: 0 100px 0 0; padding: 15px 0 15px 0; width: 100%; font-size: 11px;}
.copy a{color: #6DBDBF;transition:all 0.3s;}
.copy a:hover {color: #6DBDBF;}
.privacyLinks a+a {border-left: 1px solid #6DBDBF;}
.box_link a{transition:all 0.3s;}
.box_link a:hover {background: #fff;  color: #222;}
.box_link {display: none;}
.footer_logo img {max-width: 230px;}
.footer_logo {text-align: center; width: 100%; max-width: 230px; margin: 0 auto;}
.footer_info ul {width: 100%; text-align: center; margin-bottom: 60px;}
.footer_info li {padding: 20px 13px 10px 13px; display: inline-block;}
.footer_info li p {font-size: 14px; color:#3f3f3f; line-height: 150%; text-align: center; width:22%;display: inline-block; margin-bottom: 0px; background: #fff;}
.footer_info li p a{color:#3f3f3f; display: block;}
.footer_info li:nth-child(1) {width: 100%;}
.footer_info li:nth-child(2) {margin-top: 0px; padding: 0 0; margin-bottom: 0px; background:none; width: 100%; margin-top: 20px;}

.footer_info li p {
    border: 1px solid #6DBDBF;
    padding: 5px 8px;
    margin:0 1%;
    border-radius: 20px;}
.footer_info li p:before{color:#6DBDBF; margin: 0 0;}


/*改字*/
.info_TEL:before, .info_TEL2:before, .info_PHONE:before, .info_LINE:before, .info_FAX:before, .info_TAXID:before, .info_MAIL:before, .info_ADD:before, .info_ADD2:before {
  width: 90px !important;
  letter-spacing: 1px !important;
  color: #fff;
  background: #6dbdbf;
  text-align: center;
  padding: 2px 8px;
  border-radius: 5px;
  font-weight: 500;}
.list_before {margin-top: 20px; margin-bottom: 30px;}
.list_before.info li {padding-left: 105px; letter-spacing: 1px; width: 49.5%; display: inline-block;}
.footer_info li p.tel:before {content: '電話';}
.footer_info li p.line:before {content: 'LINE ID';}
.footer_info li p.mail:before {content: '信箱';}
.footer_info li p.add:before {content: '地址';}
.footer_menu a:nth-child(1) {display: none;} /*隱藏回首頁*/

/*top*/
#to_top {width: 44px; height: 44px; bottom: 30px; right: 25px; left: unset; background: #09538E; box-shadow: none; border-radius: 50px; color: #ffffff; font-size: 13px;}
#to_top i.top {margin-bottom: -9px; height: 15px;}
#to_top i.top:before, #to_top i.top:after {height: 9px; background: #ffffff; top: 1px;}


@media screen and (max-width: 1500px) {
.footer .center {max-width: 90%;}
}

@media screen and (max-width: 950px) {
.footer_info li p {width: 47%; margin: 5px 1%;}
}

@media screen and (max-width: 480px) {
.footer_info li p {width: 100%;}
}


/* = = = 相簿 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */


/*相簿管理*/
.album_page .main_part, .album_class_page .main_part, .album_info_page .main_part{max-width: 100%; width: 100%;  margin: 0 auto; padding: 5px 0px 60px 0px;}
.album_page .show_content, .album_class_page .show_content, .album_info_page .show_content {padding: 0;}

/*版面*/
ul.show-list, .other_subalbum, ul.pic-list {display: grid;  grid-template-columns: 1fr 1fr 1fr;  gap: 0px;}
ul.show-list:before , ul.pic-list:before{content:none;}
.overlay {z-index: 1;}
.show-list .item , .other_subalbum li , .pic-list .item{width: 100%;margin:0;padding:5px 0px;}
.show-list .show_pic , .other_subalbum li a div , .pic-list .show_pic{  display: block;  position: relative;  overflow: hidden;  height: 0;}
.show-list .show_pic , .other_subalbum li a div , .pic-list .show_pic  {  padding-bottom: 75%;}/*相簿圖片長寬比例，75% →100:75 = 4:3 */
.show-list .show_pic img , .other_subalbum li a img, .pic-list .show_pic img{
  display:block;
  max-width: 100%;
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  -moz-object-fit: cover;
  -ms-object-fit: cover;
  -o-object-fit: cover;
  -webkit-object-fit: cover;
  position: absolute;
  transform: translate(-50%,-50%);}
.show-list .item .show_name {  color: #000; }
.show-list .item:hover .show_name {  color:#000;}
.other_album {max-width: 1775px; width: 100%; margin: 0 auto; padding: 0 25px;}
.other_album_choice li {  background: #211F20; border-radius:10px;}
.subalbum-menu h2{  color: #F4F2F0;font-size: 24px; display: none;}
.subalbum-menu {margin: 0px 0; padding: 0 0px;}
.other_subalbum li {background: none;}
.other_subalbum li p {  margin-top: 10px; text-align: center; font-weight: 400;}
.show-list .show_pic img, .other_subalbum li a img, .pic-list .show_pic img {border-radius: 10px;}
.show-list .item:hover .overlay {border-radius: 10px; opacity: 0;}

/*特*/
.overlay {background: rgb(255 255 255 / 30%); display: none;}
.show-list .show_name {text-align: center; font-weight: 400; letter-spacing: 0px; transition: 0.3s ease;} 
.album_page .show-list .show_pic img {transform: scale(1); -webkit-filter: grayscale(0) contrast(1.2); transition: 0.5s ease;}
.album_page .show-list .show_pic img:hover {transform: scale(1.05); -webkit-filter: grayscale(1) contrast(1); transition: 0.5s ease;}
.show-list .show_pic {border-radius: 0px;}
.album_info_page .show-list .show_pic img , .album_info_page .other_subalbum li a img, .album_info_page .pic-list .show_pic img{left: 50%; top: 50%;}
.block {display: none;}
.album_fixed_title {background: none;}
.album_class_page .other_subalbum li a img {-webkit-filter: grayscale(0) contrast(1.2); transition: all .5s ease-out; transform: translate(0%, -100%) scale(1) !important;}
.album_class_page .other_subalbum li a img:hover {-webkit-filter: grayscale(1) contrast(1);  transform: scale(1.05); transition: all .5s ease-out; }

@media screen and (max-width: 480px) {
ul.show-list, .other_subalbum, ul.pic-list {grid-template-columns: 1fr;}
}


/* = = = 聯絡我們 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */


.contact_editbox {padding: 0px 0px;}
.contact_page .main_part{padding: 0px 00px; max-width: 100%; width: 100%;}
.contact_content {padding: 0px 10px 30px 10px;max-width: 1350px;}
.contact_le_map a {background: #034586;border-radius: 5px;}
.contact_form li.last cite {background: linear-gradient(to bottom, #034586 0%, #6DBDBF 100%); border-radius: 50px;}
.contact_content .information_left {width: 100%; padding: 70px 0px 0px 0px;}
.contact_content .information_right {width: 100%; padding-left: 0px; background: none; padding: 50px 0px 50px 0px; margin-top: 40px; margin: 0 auto;}
.contact_form li input.noborder {border:1px #f7f7f7 solid; background: #ffffff;}
.contact_form li textarea.noborder {border: 1px #f7f7f7 solid; background: #ffffff;}
.red {color: #c53c2c;}
.contact_form li.last blockquote {background: none;}
.contact_form li.last blockquote, .contact_form li.last cite {border: 0px #dfd4c3 solid;}
.contact_form li.last blockquote:hover input, .contact_form li.last cite:hover input {letter-spacing: 2px;}
.blank_letter {font-family: unset; padding-top: 10px; color: #034586; font-size: 30px; font-weight: 700; font-style: italic;}
.contact_form li .form__label {background: none; font-weight: 500;}
/*.contact_form {font-family: 'Noto Serif';}*/

@media screen and (max-width: 1024px) {
.blank_letter {font-size: 38px;}
}
@media screen and (max-width: 768px) {
.blank_letter {font-size: 32px;}
}
@media screen and (max-width: 480px) {
  .contact_content .information_right {padding:20px 0px;}
  .list_before.info li {width: 100%;}
  .contact_form li {grid-gap: 0px;}
  .blank_letter {font-size: 30px;}
}
@media screen and (max-width: 375px) {
.blank_letter {font-size: 28px;}
}


/* = = = 購物車 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part { max-width:1400px; padding: 80px 20px;}

.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; padding: 0px 0px;}
.product_page .product_menu_list { position: relative; width:300px; letter-spacing: 1px; min-height: 0vw; margin-bottom: 50px;}
.product_page .products-list{ width:calc(100% - 350px) !important;}
.product_page .products-list,
.product-wrapper { width: 100%;}
ul.page { width: 100%;}

.product-layer-two li a {background: #ffffff; color: #211F20; text-align: left; border: 0px #dadada solid; border-bottom: 1px #ececec solid; padding: 10px 16px;transition:all ease .3s; border-radius: 10px;}
.product-layer-two li a:hover {background: #f6f6f6;transition:all ease .3s;}
.product-layer-two li.active a {border: 0px #ccc solid;}
.product-layer-two li ul { position:static; margin-top:5px;width:100%; margin-left:0;}
.product-layer-two li:hover ul { border: none !important; }
.product-layer-two li li { display: block; padding:0; transition:all ease .3s; border-radius: 10px;}
.product-layer-two li li a{ padding:8px 10px;  background:#bcebec;}
.product-layer-two li li:hover > a { background:#034586; color:#ffffff;}
.product-layer-two > li { width: 300px; max-width:100%; padding:0; text-align:left; border-bottom:0px dotted #ccc; padding-bottom: 5px;}
.product-layer-two > li ul > li + li { margin-top:5px;}
.products-list .name {text-align: center; font-size: 17px;}
.product-layer-two li i.close::before {color: #bcebec;}
.product-layer-two li i {top: 4px;}
.product-layer-two ul {grid-gap: 0px;}

.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: 8px; height: 8px; border-radius: 50px; background: transparent; left: 0; margin-left: -14px; top: 50%; margin-top: -4px; /*clip-path: polygon(0 0, 100% 50% , 0 100%);*/}
.product-layer-two li li:hover > a:before { background:#034586;}

.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;}

.products-list .more { border:0px solid #034586; color: #ffffff; background: linear-gradient(to bottom, #034586 0%, #6DBDBF 100%); font-weight: 500; opacity: 1; transition: 0.3s ease; padding-top: 2px; font-size: 15px; border-radius: 50px;} 

/*詳細資料*/
.products-list .item a:hover .more {background: linear-gradient(to bottom, #034586 0%, #6DBDBF 100%); transition: 0.3s ease;} /*1*/

/*滿版*/
.products-list {grid-gap:20px; grid-template-columns: repeat(auto-fill, minmax(20%, 1fr));}

/*相關推薦*/
.prod_related h6 span:before {color: #0c1b3d;}
.lastPage {background: #034586; border-radius: 10px;}
.prod_related {background: none; padding: 100px 15px 70px 15px;}

/*內頁*/
#prod_thumbSwiper .swiper-slide::before {background:#ffffff;}
.pd_tabTitle li.activeTab::after {height: 0px;}
.pd_tabTitle li.activeTab a { color: #0c1b3d; font-size: 24px; font-weight: 700;}
.swiper-button-next, .swiper-rtl .swiper-button-prev {right: var(--swiper-navigation-sides-offset, 15px);}
.swiper-button-prev, .swiper-rtl .swiper-button-next {left: var(--swiper-navigation-sides-offset, 15px);}
.proImgSwiper {background: none;}
.sidebarBtn {border: 5px #eeeeee solid; background: #ffffff; border-radius: 20px;}
.pd_tabTitle li {border-bottom: 1px solid #d7d7d7;}

/*特*/
.products-list .pic {color: #211F20; border-radius: 10px; aspect-ratio: 3.5 / 5;}
.products-list .pic img {transform: scale(1); transition: 0.5s ease;}
.products-list .pic img:hover {transform: scale(1.1); transition: 0.5s ease;}
.products-list .pic img{left: 50%; top: 50%;}

.products-list .price .sp_price {text-align: left;}
.products-list .price b{text-align: right; font-weight: 500; font-size: 15px;}
.fa-circle-plus::before {color: #d3d3d3;}

.inquiry_a1{background: linear-gradient(to bottom, #034586 0%, #6DBDBF 100%);}
.inquiry_a2{background: linear-gradient(to bottom, #034586 0%, #6DBDBF 100%);}
.inquiry_a3{background: linear-gradient(to bottom, #034586 0%, #6DBDBF 100%);}
.inquiry_a1, .inquiry_a2, .inquiry_a3 {border-radius: 50px;}
.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover {background: linear-gradient(to bottom, #2b52a4 0%, #6DBDBF 100%);}

.products-list .price b , .ori_price {color: #e9b040; font-weight: 700;}
.products-list .price .sp_price , .sp_price {color: #c53c2c; font-weight: 700;}
.sidebarBtn .sp_price {color: #c53c2c;}

.pageIndex .products-list {grid-template-columns: repeat(5, 1fr);}
.animated-arrow {background: linear-gradient(to bottom, #2951a5 0%, #034586 100%); color: #121212; height: 60px; padding: 5px 0; border-radius: 50px;}
.i_prod_b a i.fa-solid.fa-arrow-right {display: none;}
.i_prod_b a b {font-weight: 500; font-size: 18px;}
#prod_thumbSwiper img {border-radius: 10px;}
.related_list li a {border-radius: 10px;}

@media screen and (max-width: 1200px) {
.products-list {grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));}
.products-list .price b {text-align: center !important; width: 100%; display: block;}
.products-list .price .sp_price {text-align: center;}
}
@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;}
.mobile_product_name {text-align: center;}

.product-layer-two {grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));}
.product-layer-two > li {width: 100%;}
.product-layer-two li a {text-align: left;}
.product_menu_list>h5 {padding: 7px 16px;}

.product_page .products-list {width: 100% !important;}
#prod_thumbSwiper img {max-width: 150px; width: 100%;}
.pageIndex .products-list{grid-template-columns: repeat(3, 1fr);}
}
@media screen and (max-width: 480px) {
.products-list {grid-template-columns: repeat(auto-fill, minmax(50%, 1fr));}
#prod_thumbSwiper .swiper-slide {height: 100px !important;}
.product_page .main_part {padding: 50px 20px 10px;}
.products-list .price b {text-align: center !important;}
.pageIndex .products-list {grid-template-columns: repeat(2, 1fr);}
}


/* = = = 文章管理 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */


/*首頁的*/
.prod_part section {max-width: 1600px;}
.prod_part {padding: 80px 20px;}
.i_prod_tit h2 , .i_prod_tit span , .i_blog_ri em{}
.i_prod_tit h2:before {
    content: '新品上市';
    font-size: 40px;
    font-weight: 700;
    color: #121212;}
.i_prod_tit h2:after {
    color: #034586;
    display: block;
    content: "Product";
    font-size: 20px;
    font-weight: 900;}
.i_prod_tit span {font-size: 40px; font-weight: 700; color: #121212; display: none;}
.i_blog_ri h5 {padding: 5px 0; color:#211F20;}
.i_prod_b {max-width: 1400px;}
.i_blog_b {max-width: 1400px;}
.blog_list_le, .i_blog_le {border: 3px solid #cee7e8; border-radius: 10px;}
.blog_list_le:hover, .i_blog_le:hover {border: 3px solid #6dbdbf; }
.i_blog_le img, .blog_list_le img {border: 0px solid #e0e0e0;}
.i_blog_b a {display: none;}
.module_i_news .title_i_box h6 {font-size: 26px; font-weight: 900; color: #e1e1e1;}
.module_i_news .title_i_box h6:after {content: ''; font-size: 28px; font-weight: 500; color: #211F20;}
.module_i_news .title_i_box h4 {font-size: 28px; font-weight: 500; color: #211F20; display: none;}
.module_i_news {padding: 100px 20px 100px 20px;}
.news_related h6 span:before {color: #140d0d;}
.news_related {background:none;}
a.news_menu_toggle i {display: none;}

.blog_page .main_part , .blog_in_page .main_part {max-width: 1400px;}
h4.blog_category_title{font-size: 28px; color: #140d0d;}
h4.blog_category_title span{font-size: 24px;}

/*文章管理/外層＝＝*/
.module_i_news ul, .blog_subbox {  display: grid;  gap: 20px;}
.module_i_news li , .subbox_item {  width: 100%;}
.module_i_news li a , .subbox_item a {  padding: 5px;}
.module_i_news li a:after , .subbox_item a:after{pointer-events:none; border: 0px #ddd solid;}
.subbox_item a:after {background: none;}
.i_blog_le, .i_blog_ri , .blog_list_le , .blog_list_ri {  width: 100%;}
.blog_list_ri {padding: 10px 2px;}
.i_blog_le , .blog_list_le{  position: relative;  padding-bottom: 100%;  height: 0;}/*文章縮圖長寬比例，100% →100:100 = 1:1 正方形 */
.i_blog_le img , .blog_list_le img{
	display:block;
  max-width: 100%;
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  -moz-object-fit: cover;
  -ms-object-fit: cover;
  -o-object-fit: cover;
  -webkit-object-fit: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);}
	
/*側邊*/
.blog_le .accordion {background: #fff; border:none; border-bottom: 1px #dcdcdc solid;}
.blog_le .accordion > li{transition:all 0.3s;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {  background: #f2f2f2 !important;}
.submenu a:hover {background: #74c3c5;}
.submenu {background: none;}

/*首*/
.module_i_news ul{max-width: 1400px; width: 100%;	grid-template-columns:1fr 1fr 1fr 1fr;}

/*功*/
.blog_subbox{grid-template-columns:1fr 1fr 1fr 1fr;}
.blog_subbox:before{content:none;}

/*文章管理/內層＝＝*/
.blog_back a{color: #ffffff;}
.blog_back a.article_btn_prev{background: #034586; border-radius: 10px 0 0 10px;}
.blog_back a.article_btn_back{background: #034586;}
.blog_back a.article_btn_next{background: #034586; border-radius: 0 10px 10px 0;}

.blog_search input[type=search] {border:solid 1px #dcdcdc; background: #fff; border-radius:10px;}
.blog_le .accordion {}
.pageIndex h5.blog_le_t span {display:none;}
h5.blog_le_t em , .blog_list_ri em {display:none;}
.blog_list_ri h5 {font-weight: 500; padding: 5px 0; -webkit-line-clamp: 2;font-size: 19px;}
.blog_ri {width: 100%;}
.subbox_item {margin-bottom: 30px; border-bottom: 0px #eee solid;}
.submenu li+li {border-top: 0px solid #ccc;}
.accordion li .link {border-radius: 10px;}
.articel_mainPic img {border-radius: 10px;}
.submenu li.on_this_category a, .submenu a:hover {background: #518ab7; border-radius: 10px;}

/*特效*/
.blog_le .accordion > li:hover .link, .blog_le .accordion > li.on_this_category .link {background: #09538E;}
h5.blog_le_t span {display:none;}
h5.blog_le_t em , .i_blog_ri em {display:none !important;}
.module_i_news li a:before , .subbox_item a:hover:before , .subbox_item a:hover:after {opacity: 1;}
.subbox_item a:before , .module_i_news li a:before {opacity: 1; right: auto; left: 7px; bottom: -30px;}
.pageIndex .blog_list_ri p {display: none;}
.blog_list_ri p {line-height: 160%; margin-top: 0px; text-align: justify;}
.i_blog_ri p {margin-top: 6px; display: none;}
.i_blog_ri , .blog_list_ri {padding: 6px 5px 5px 5px;}
.module_i_news li a:after {background: none;}

.blog_list_le , .i_blog_le {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
  position: relative;}
.subbox_item a:hover .blog_list_le img , .module_i_news a:hover .i_blog_le img{transform: translate(-50%, -50%) scale(1.1);}
.blog_list_le img , .i_blog_le img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all .8s;}
.module_i_news li a:before , .subbox_item a:before {
  content: 'READ MORE';
  font-size: 12px;
  color: #fff;
  background: linear-gradient(to bottom, #034586 0%, #6DBDBF 100%);
  padding: 5px 10px 5px 10px;
  border-radius: 50px;}
.subbox_item a {display: block;}
.accordion li+li .link {border-top: 0px solid #ccc;}
.blog_shareData {flex-direction: row;}


/*主選單*/
.blog_le {width: 100%;}
.blog_le .accordion {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  border-radius: 0;
  padding: 0 10px;
  overflow: inherit;
  background: none;}
.blog_le .accordion li {
  float: left;
  position: relative;
  text-align: center;}
.fa-chevron-down::before{display: none;}
.submenu a{letter-spacing: 0px; background: #f2f2f2;}
.news_tags a {color: #4fadb7;}
.news_tags {margin-bottom: 20px;}


.rewrite_simple {background: #034586 url(../images/simple_left.png) 10% center no-repeat;}
.news_related_list li a {border-radius: 10px;}

@media screen and (max-width: 768px) {
.blog_subbox {grid-template-columns: 1fr 1fr 1fr;}
.i_prod_tit span , .i_prod_tit h2:before {font-size: 32px;}
.prod_part {padding: 50px 20px;}
}
@media screen and (max-width: 500px) {
  .blog_subbox {grid-template-columns: 1fr;}
  .i_prod_tit span , .i_prod_tit h2:before {font-size: 30px;}
}
@media screen and (max-width: 375px) {
  .blog_le .accordion li {width: 100%;}
  .i_prod_tit span , .i_prod_tit h2:before {font-size: 28px;}
}
  

/* = = = 版權頁 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


.privacy_page .main_part { max-width: 100%; padding: 0;}
.privacy_page .show_content {padding: 0;}
.privacyContent {padding: 70px 15px;}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


@media screen and (max-width: 768px) {
#bottom_menu {display: none; } 

/*漢堡選單*/
.stellarnav.mobile {padding: 10px;}
.stellarnav .menu-toggle:after {color: #3765c8; margin-top: 0px;}
.stellarnav .menu-toggle span.bars span {height: 1px;background: #3765c8;}
}

@media screen and (max-width: 600px) { 
}




