@import url('https://fonts.googleapis.com/css?family=Noto+Sans+TC:300,400,500,700,900&display=swap');
body{
  font-family: 'Noto Sans TC','Microsoft JhengHei', Arial, Helvetica, sans-serif;
  font-size: 16px;
  position: relative;
  color:#000;
  font-weight: 300;
  word-break: break-word;
  word-wrap:break-word;
  background: url(../images/cover_bg.png) repeat;
}
:root {
  --header_background:#fff;
  --header_background_scroll:rgba(255,255,255,0.9);
  --menu_txt: #333;
  --menu_txt_hover: #7b8e42;
  --menu_txt_scroll: #4b433f;
  --menu_txt_scroll_hover: #7b8e42;
  --menu-sub_background:rgba(255, 255, 255, 0.85);
  --menu-sub_background_hover:none;
  --menu-mobile-icon:#4b433f;
  --main_color:#555;
  --main_color_hover:#7b8e42;
  --main_background:#7b8e42;
  --main_background_hover:#297941;
  --footer_background:url(../images/footer_bg.png)no-repeat;
  --footer_color:#fff;
  --footer_a_color:#fff;
  --footer_a_color_hover:#fff;
  --footer_copy-right_background:#292929;
  --footer_copy-right_color:#fff;
  --footer_design_color:#7b8e42;
  --footer_design_a_color:#7b8e42;
  --gotop_background:#a18a7c;
  --gotop_background_hover:#a18a7c;
  --page-links_a_color:#000;
  --page-links_a_background:#fff;
  --page-links_a_border:1px solid #bbbbbb;
  --page-links_background_current:#7b8e42;
  --page-links_color_current:#fff;
  --page-title_color:#000;
}
a{
  color: var(--main_color);
  text-decoration: none;
}
a:hover{
  color: var(--main_color_hover);
  color: 7b8e42;
}
ul{
  margin: 0;
  padding: 0;
}
input[type="text"],input[type="search"],input[type="submit"],input[type="reset"],input[type="date"],input[type="tel"],input[type="password"],input[type="email"],textarea {
  appearance: none;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  outline: 0;
}
input[type=checkbox], input[type=radio]{
  margin: 0 0 5px!important;
}
img{
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
}
button{
  outline: none;
}
select {
  border-radius: 0;
  outline: 0;
}
.cus-select select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.cus-select select::-ms-expand {
  display: none;
}
.animated {
  -webkit-animation-duration: .7s;
  animation-duration: .7s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.h1, .h2, .h3, h1, h2, h3{
  margin-top: 0 !important;
}
a:focus, a:hover {
  text-decoration: none !important;
}
label{
  font-weight: inherit !important;
}
.bold{
  font-weight: bold;
}
.float-right{
  float: right !important;
}
a,a:hover, button:hover{
  -moz-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  -webkit-transition: all, 0.3s;
  transition: all, 0.3s;
}
.tabs-content a{
  -moz-transition: all, 0s;
  -o-transition: all, 0s;
  -webkit-transition: all, 0s;
  transition: all, 0s;
}
.editor{
  line-height: 2;
}
.editor ul{
  padding-left: 30px;
}
/*banner*/
.banner .swiper-slide .img {
  width: 100%;
  -webkit-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.banner .swiper-slide.swiper-slide-active .img {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.banner .swiper-slide .container {
  position: absolute;
  top: 0;
  left: 50%;
  -moz-transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  -o-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.banner .swiper-slide .banner_txt {
  width: 600px;
  max-width: 50%;
}

.banner .swiper-slide .container.right {
  justify-content: flex-end !important;
}

.banner .swiper-slide .banner_txt .banner_title_box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: #ffffff;
  font-weight: 400;
  line-height: 1.1;
  text-shadow: #000 5px 5px 10px;
}

.banner .swiper-slide .banner_txt .banner_title {
  font-size: 90px;
  margin: 0 5% 5% 0;
  opacity: 0;
  transform: translateX(-30%);
  -moz-transition: all, 1s ease-out;
  -o-transition: all, 1s ease-out;
  -webkit-transition: all, 1s ease-out;
  transition: all, 1s ease-out;
}

.banner .swiper-slide.swiper-slide-active .banner_txt .banner_title {
  opacity: 1;
  transform: translateX(0%);
}

.banner .swiper-slide .banner_txt .banner_wtxt {
  font-size: 40px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateX(-30%);
  -moz-transition: all, 1s ease-out 0.3s;
  -o-transition: all, 1s ease-out 0.3s;
  -webkit-transition: all, 1s ease-out 0.3s;
  transition: all, 1s ease-out 0.3s;
}

.banner .swiper-slide.swiper-slide-active .banner_txt .banner_wtxt {
  opacity: 1;
  transform: translateX(0%);
}
.banner .swiper-pagination-bullet{
  width: 50px;
  height: 5px;
  border-radius: 0;
  background: #eeeeee;
  opacity: 1;
}

.banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #7b8e42;
}

.banner .swiper-button-prev:after,
.banner .swiper-container-rtl .swiper-button-next:after {
  color: #fff;
}

.banner .swiper-button-next:after,
.banner .swiper-container-rtl .swiper-button-prev:after {
  color: #fff;
}

/*//banner*/
/*index*/
.lang select {
  background: none;
  color: #fff;
  border: 0;
  font-size: 14px;
}
.lang select option {
  color: #000;
}
.lines {
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 90%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: -1;
}
.lines>div {
  width: 1px;
  height: 100%;
  background-color: rgba(0,0,0,0.1);
}
.index_contact{
  overflow: hidden;
  font-size: 20px;
  font-weight: 400;
  line-height: 2;
}
.index_contact .parallax{
  background: #6e6e6e;
}
.index_contact h2{
  color: #000;
  font-size: 2.5rem;
  letter-spacing: 0.5rem;
}
.index_contact .contact_en{
  font-size: 9vw;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px #5d5d5d;
  line-height: 1;
  text-align: center;
}
.bg_title:after{
  content: attr(data-title);
  position: absolute;
  top: -2px;
  right: 0px;
  font-size: 9.9vw;
  font-weight: 700;
  line-height: 1;
  color:transparent;
  -webkit-text-stroke: 1px #e3e3e3;
  transform: translateX(-50%);
  transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  -webkit-transition: all 0.6s ease-out;
}
.bg_title:before{
  content: attr(data-title);
  position: absolute;
  top:0;
  right: 0.3vw;
  font-size: 10vw;
  font-weight: 700;
  line-height: 1;
  color: #ededed;
  transform: translateX(-50%);
  transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  -webkit-transition: all 0.6s ease-out;
}
.in-view .bg_title:after,
.in-view .bg_title:before,
.in-view.bg_title:after,
.in-view.bg_title:before{
  transform: translateX(0%);
}
.index_contact:after{
  top: auto;
  left: auto;
  bottom: -0.8vw;
  font-size: 9vw;
  right: 5px;
  opacity: 0.5;
  -webkit-text-stroke: 0.5px #fff;
}
.index_contact:before{
  top:0;
  left: 0;
  opacity: 0.6;
  bottom: -1vw;
  font-size: 9vw;
  right: 0;
  top: auto;
  left: auto;
}
.index_contact a{
  border: 3px solid #fff;
  background: #fff;
  font-size: 20px;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.index_contact a:before{
  content: '';
  width: 0%;
  height: 100%;
  background: rgba(4, 29, 97,1);
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  z-index: 0;
}
.index_contact a .svg, .index_contact a svg{
  position: relative;
  z-index: 1;
  margin-right: 10px;
}
.index_contact a:hover .svg{
  fill: #fff;
}
.index_contact a:hover{
  color: #fff;
}
.index_contact a:hover:before{
  width: 100%;
}
.index_contact a span{
  z-index: 1;
}

.z-index-1{
  z-index: 1;
}
.index_service.bg_title:before{
  /* position: relative; */
  left: 0;
}
.index_service.bg_title:after{
  left: 0.3vw;
}
.product_list a{
  display: block;
  position: relative;
}
.product_list a:before{
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  top:0;
  left: 0;
  transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
}
.product_list a:hover:before{
  background: rgba(0, 0, 0, 0.5);
}
.product_list .info{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  color: #fff;
  display: flex;
  align-items: flex-end;
  width: 85%;
  height: 85%;
}
.product_list .info .en{
  font-weight: 400;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.product_list .info .title{
  position: relative;
}
.product_list .info .btn{
  background: #fff;
  border-radius: 50px;
  color: #000;
  display: inline-block;
  padding: 5px 25px;
}
.index_news .news_list, .index_og .og_list{
  background-color: #fff;
  margin: 10px;
}
.news_list a, .og_list a{
  position: relative;
  display: flex;
  flex-direction: column;
}
.og_list{
  position: relative;
}
.og_list a.more{
  position: relative;
  color: #fff;
  background: #000;
  width: 20%;
  margin: 0 auto;
  min-height: 40px;
  line-height: 40px;
  font-size: 14px;
}
.og_list a.more::before{
  position: absolute;
  content: '';
  width: 38px;
  height: 38px;
  left: -40px;
  bottom: 0;
  border-bottom: solid 20px #000;
  border-right: solid 20px #000;
  border-left: solid 20px transparent;
  border-top: solid 20px transparent;
}
.og_list a.more::after{
  position: absolute;
  content: '';
  width: 38px;
  height: 38px;
  right: -40px;
  bottom: 0;
  border-bottom: solid 20px #000;
  border-left: solid 20px #000;
  border-right: solid 20px transparent;
  border-top: solid 20px transparent;
}
.news_list .tag {
  position: absolute;
  content: '';
  top: 0;
  left: 20px;
  padding: 5px;
  width: 60px;
  height: 60px;
  background-color: #bdbd00;
  color: #fff;
  line-height: 1.4;
}
.news_list .tag .date{
  font-size: 22px;
  font-weight: 500;
  border-bottom: 1px solid #fff;
}
.news_list .tag .month{
  font-size: 14px;
}
/*//index*/
/*頁數*/
.pager {
  padding: 60px 0 0;
  text-align: center;
}
.pager a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 30px;
  font-size: 15px;
  color: #fff;
  vertical-align: top;
  margin: 0 3px;
  background: #b1b1b1;
  border-radius: 100%;
}
.pager a span{
  color: #666666 !important;
}
.pager a.current span{
  font-weight: bold;
}
.pager a:first-child,
.pager a:last-child {
  font-size: 24px;
}
.pager a:hover,.pager a.current{
  background:rgb(255,150,0);
  background: var(--menu_txt_hover);
}
/*//頁數*/
/* CART */
#cart:hover{
  cursor: pointer;
}
#cart .cart_num{
  background: #787878;
  color: #fff;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  position: absolute;
  right: -14px;
  top: -5px;
  font-size: 14px;
}
#cart .cart_total{
  color: #ba865a;
  font-weight: 400;
}
/* //CART */
 /*麵包屑*/
 .bread-crumbs {
  position: relative;
  padding: 15px 0;
}
.bread-crumbs + .page-title{
  margin-top: 20px !important;
}
.bread-crumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0;
}
.bread-crumbs ol img {
  margin: 0px 10px 0 0;
}
.bread-crumbs ol li {
  display: inline-flex;
  align-items: center;
}
.bread-crumbs ol li a {
  font-size: 15px;
  text-align: center;
}
.bread-crumbs ol li i,
.bread-crumbs ol li span {
  display: inline-block;
  font-size: 14px !important;
  color: #fff;
}
.bread-crumbs ol i{
  margin: 0 5px;
  font-size: 14px;
}
.index .bread-crumbs{
  opacity: 0;
  margin: 0;
  height: 0;
  position: absolute;
  z-index: -1;
}
/*//麵包屑*/
.no_banner header.header{
  background: rgba(203,203,203,0.4);
}
.no_banner.scroll header.header{
  background: rgba(255,255,255,0.8);
  background: var(--header_background_scroll);
}
.no_banner header .logo .svg{
  fill:rgb(8, 90, 162);
}
.no_banner #search .svg,
.no_banner .lang .svg{
  fill:#555;
  fill:var(--main_color);
}
.no_banner .wsmenu-list > li > a,
.no_banner .wsmenu-list > li > .wsmenu-click,
.no_banner .lang select,
.no_banner .bread-crumbs ol li i,
.no_banner .bread-crumbs ol li span{
  color: #555;
  color: var(--main_color);
}
.news_list .date_day{
  font-size: 5rem;
  font-weight: 400;
  color: rgb(8,90,162);
  color: var(--main_color_hover);
  font-family: Helvetica,Arial,sans-serif;
}
.date_more{
  font-size: 0.9rem;
  font-weight: 400;
  color: #777;
}
.news_list, .og_list{
  box-shadow: 0 0 10px #ccc;
}
.news_list .border-bottom{
  border-bottom: 1px solid #a1a1a1 !important;
}
.news_list .border-bottom a:not(.btn):before{
  content: "";
  position: absolute;
  left: 50%;
  top: -1px;
  bottom: -2px;
  width: 100vw;
  height: auto;
  transform: translate(-50%);
  background-color: #ddd;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
}
.news_list .border-bottom a:not(.btn):hover:before{
  opacity: 1;
}
.news_list a .img_box .more_btn{
  display: none;
}
.news_list a h3{
  color: #555;
  color: var(--main_color);
}
.news_list a p{
  color: #555;
  color: var(--main_color);
}
/* product-list */
.product-detail .thumbsSlider_out img{
  filter: blur(2px);
}
.product-detail .info{
  writing-mode: vertical-lr;
  letter-spacing: 5px;
}
.product-detail .thumbsSlider_out .swiper-pagination-bullet{
  width: 15px;
  height: 15px;
  margin: 0 5px;
  background: transparent;
  border: 2px solid #7e6636;
}
.product-detail .thumbsSlider_out .swiper-pagination-bullet-active{
  background:#b79244;
}
.product-img .thumbsSlider_out{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.product-img .swiper-wrapper{
  align-items: end;
}
/* //product-list */
/* store */
.store-view .store-img .show-box-wrap{
  margin: 0 auto;
  width: 80%;
}
.store-view .store-img .show-box-wrap .swiper-slide{
  background: linear-gradient(180deg,#fff 10%,#ebebeb 90%);
}
.store-view .swiper-wrapper .info{
  font-weight: 400;
  line-height: 2.5;
}
.store-view .swiper-slide{
  justify-content: space-around;
  align-items: start;
}
.store-view .store-img .show-box-wrap .tag {
  position: absolute;
  top: 40px;
  right: -55px;
  transform: rotate(35deg);
  background: #c99b0f;
  color: #fff;
  padding: 5px 40px;
  text-align: center;
  width: 290px;
  overflow: hidden;
  z-index: 1;
  font-size: 20px;
}
.store_box{
  z-index: 0;
}
.store-view .product-info .title {
  color: #000;
  font-weight: 400;
  position: relative;
  padding: 0 42px 10px 0;
  border-bottom: 1px #c6c6c6 solid;
}
.store-view .product-info .title h2{
  font-size: 28px;
  color: var(--main_color);
}
.store-view .product-info .title a.addCart {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  visibility: visible;
  right: 0;
  top: auto;
  bottom: 10px;
}
.store-view .product-info .title a.addCart span {
  font-size: 12px;
}
.store-view .product-info .text {
  padding: 15px 0;
  line-height: 2;
}
.store-view .product-info .text.right_info {
  padding: 25px 0 40px;
}
.store-view .product-info .text .price {
  font-size: 28px;
  color: #d31e05;
  font-weight: 600;
  line-height: 1;
}
.store-view .product-info .text .o-price{
  text-decoration: line-through;
}
.product-list.detail .row .col {
  width: 25%;
  padding: 0 20px;
}
.product-list.detail .row .col:nth-child(n+4) {
  margin-top: 0px;
}
.store-view .product-info .method_box > span {
  display: block;
  padding-top: 15px;
  padding-bottom: 8px;
}
.store-view .product-info .method_box .text {
  padding: 15px 0;
}
.store-detail .swiper-slide-thumb-active{
  position: relative;
}
.store-detail .swiper-slide-thumb-active::before{
  border-radius: 20px;
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 0;
  top:0;
}
.thumbsSlider_out{
  padding: 0 40px;
}
.thumbsSlider_out .swiper-button-prev, 
.thumbsSlider_out .swiper-container-rtl .swiper-button-next{
  left: -10px;
}
.thumbsSlider_out .swiper-button-next, 
.thumbsSlider_out .swiper-container-rtl .swiper-button-prev{
  right: -10px;
}
.thumbsSlider_out .swiper-button-next{
  color: #fff;
  background: #cec0b7;
  width: 35px;
  height: 55px;
  border-top-left-radius: 25px 25px;
  border-bottom-left-radius: 25px 25px;
}
.thumbsSlider_out .swiper-button-prev{
  color: #fff;
  background: #cec0b7;
  width: 35px;
  height: 55px;
  border-top-right-radius: 25px 25px;
  border-bottom-right-radius: 25px 25px;
}
.thumbsSlider_out .swiper-button-next:after,
.thumbsSlider_out .swiper-button-prev:after{
  font-size: 22px;
  color: transparent;
  text-align: center;
}
.thumbsSlider_out .swiper-button-prev:after{
  position: absolute;
  content: '';
  top: 15px;
  left: 12px;
  border-right: solid 12px #fff;
  border-bottom: solid 12px transparent;
  border-top: solid 12px transparent;
  text-align: center;
}
.thumbsSlider_out .swiper-button-next:after{
  position: absolute;
  content: '';
  top: 15px;
  left: 12px;
  border-left: solid 12px #fff;
  border-bottom: solid 12px transparent;
  border-top: solid 12px transparent;
  text-align: center;
}
/* //store */
.swiper-container .bg{
  background-repeat: no-repeat;
  background-size: cover;
}
.pages_swiper{
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.pages_swiper:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.36);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
}
.pages_swiper.banner .swiper-slide .img.bg{
  height: 100%;
  min-height: auto;
}
.pages_swiper .swiper-container,
.pages_swiper .swiper-container .bg{
  height: 100%;
}
.process i{
  font-size: 20px;
}
.process > div{
  position: relative;
}
.process > div:not(:first-child):before{
  content: "\f0da";
  font: normal normal normal 14px/1 FontAwesome;
  position: absolute;
  left: 0;
  top:50%;
  font-size: 20px;
}
.page-title_s strong{
  position: relative;
  padding-bottom: 20px;
  display: inline-block;
  line-height: 1em;
  overflow: hidden;
}
.page-title_s strong:after,
.page-title_s strong:before {
  content: "";
  display: block;
  border-bottom: 3px solid #333;
  position: absolute;
  width: 50%;
  bottom: 6px;
}
.page-title_s strong:before{
  left: -5px;
}
.page-title_s strong:after {
  right: -5px;
}
.page-title_s strong .arrow {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 3px solid #333;
  border-right: 3px solid #333;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  left: 50%;
  margin-left: -5px;
  bottom: 2px;
}
.process > div:hover img{
  animation-name: process_icon;
  transform-origin: center bottom;
  animation-duration: 2s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}
.product_list_s a{
  display: block;
}
.Prd_Swiper .swiper-pagination{
  position: relative;
  bottom: auto;
  left: auto;
}
.info_bg{
  border: 10px solid transparent;
  border-image: url(../images/bg_dot.jpg) 10 round;
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 400;
}
.product_detail .page-title_d{
  font-size: 4vw;
}
.editor p:last-child{
  margin-bottom: 0;
}
.Prd_Swiper .swiper-slide img{
  opacity: 0.4;
  transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
}
.Prd_Swiper .swiper-slide.swiper-slide-active img{
  opacity: 1;
}
.Prd_Swiper .swiper-pagination-bullet-active{
  background: var(--main_color_hover);
  background: rgb(8,90,162);
}
.about_swiper .swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: linear;    /*之前是ease-out*/
  -moz-transition-timing-function: linear;
  -ms-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
  margin: 0 auto;
}
.item_title{
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 5px;
  font-size: 20px;
  font-weight: 400;
  border-right: 2px solid;
  line-height: 1;
}
.item_title h4{
  line-height: 1;
  padding-left: 5px;
}
.item_title span{
  font-size: 14px;
  color: #ccc;
  letter-spacing: initial;
}
.customized h4 span{
  font-size: 16px;
}
.customized .step{
  font-size: 22px;
  font-weight: 500;
  color: rgb(8,90,162);
  color: var(--main_color_hover);
}
.customized .step span:first-child:before{
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 28px;
  height: 2px;
  background: rgb(8,90,162);
  background: var(--main_color_hover);
}
.customized .step span:last-child{
  font-family: Impact, fantasy;
  font-size: 45px;
  letter-spacing: 2px;
}
.customized > div:not(:first-child):before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  width: 30px;
  height: 60px;
  background: url(../images/arrow.svg) center no-repeat;
}
.contact input, .contact textarea {
  background: #eeeeee;
  border: 0;
  border-bottom: 1px solid #000;
  padding: 10px 15px;
}
.contact textarea{
  max-height: 300px;
  min-height: 48px;
}
.contact button{
  background: none;
  border: 0;
  font-size: 30px;
  font-weight: 300;
}
.contact .page_arrow{
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  border-radius: 100%;
  transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
}
.contact button .page_arrow i{
  font-size: 40px;
}
.contact button:hover{
  color: rgb(255,150,0);
  color: var(--menu_txt_hover);
}
.contact button:hover .page_arrow{
  background:rgb(255,150,0);
  background: var(--menu_txt_hover);
  border: 1px solid rgb(255,150,0);
  border: 1px solid var(--menu_txt_hover);
}
.contact button:hover .page_arrow i{
  color: #fff;
}
.contact .info{
  background: url(../images/bg_dot.jpg);
  color: #fff;
}
.contact input.code{
  width: 120px;
}
.process_p .row-title{
  width: 400px;
  height: 400px;
  border: 2px solid rgb(8,90,162);
  border: 2px solid var(--main_color_hover);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.process_p .item_icon{
  color: rgb(8,90,162);
  color: var(--main_color_hover);
}
.process_p .item_icon .item_num{
  font-family: Impact, fantasy;
  font-size: 45px;
  letter-spacing: 2px;
}
.process_p .item_title_{
  font-size: 16px;
  letter-spacing: 2px;
}
.process_p .item_num:before{
  content: '';
  border-bottom: 1px dashed;
  width: calc(100% + 20px);
  height: 1px;
  position: absolute;
  right: calc(-100% - 10px);
  top: calc(50% + 10px);
  transform: rotate(-45deg);
}
.process_p .info_txt{
  position: relative;
  z-index: 1;
  mix-blend-mode: exclusion;
}
.process_p .info_txt p{
  line-height: 2.5;
  letter-spacing: 1.5px;
  font-weight: 500;
  font-size: 18px;
  width: calc(100% + 3rem);
}
.process_p .img{
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.social-icon a:hover .svg circle{
  fill:var(--main_color_hover);
}
/*goTop*/
.goTop {
  position: fixed;
  right: 30px;
  bottom: 50px;
  cursor: pointer;
  z-index: 6;
  display: none;
}
.goTop img {
  width: 50px;
}
.topicon{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  width: 53px;
  height: 53px;
  background: var(--gotop_background) url(../images/up.svg) 50% 15px no-repeat;
  border-radius: 100%;
  padding-top: 15px;
  font-size: 14px;
}
.topicon:hover{
  background: var(--gotop_background_hover) url(../images/up.svg) 50% 15px no-repeat;
}
/*//goTop*/
/* footer */
footer.footer li span:first-child{
  position: relative;
  display: table-cell;
  vertical-align: middle;
  color: #fff;
  line-height: 1.3;
  word-break: break-all;
  padding-bottom: 5px !important;
}
footer.footer li span:first-child:after{
  position: absolute;
  content: '/';
  right: -15px;
  top: 0;
}
/* //footer */
@media only screen and (min-width: 1200px) {
  .index{
    background: url(../images/bg.png) center 55% / 80% no-repeat,
    url(../images/prd_bg.png) left 25% / 100% no-repeat,
    url(../images/cover_bg.png) repeat;
  }
  .fa-angle-down{
    display: none;
  }
  .container{
    width: 1500px !important;
    max-width: 100%;
  }
  .container > .wrap {
    position: relative;
    padding:0px 0 80px;
  }
  .mobile{
  	display: none !important;
  }
  .more{
    font-size: 18px;
    font-weight: 300;
    color: var(--main_color_hover);
    text-align: right;
  }
  /*banner*/
  .banner .swiper-slide .img.bg {
    height: 80vh;
  }
  .banner .swiper-slide{
    text-align: center;
  }
  /*//banner*/
  /*標題*/
  .page-title img{
    display: none;
  }
  .page-title > div{
    position: relative;
    width: 500px;
    margin: 0 auto;
    font-size: 48px;
    font-weight: 400;
  }
  .page-title > div::before{
    position: absolute;
    content: '';
    top: 0;
    left: 20px;
    width: 100px;
    height: 100px;
    background: url(../images/title_leaf.png) no-repeat center center;
  }
  .page-title .main{
    font-size: 44px;
    letter-spacing: 5px;
  }
  /*//標題*/
  /* about */
  .story{
    background: url(../images/story_bg2.png) left top no-repeat,
    url(../images/story_bg1.png) right 25px no-repeat;
  }
  .story .txt{
    font-size: 28px;
    line-height: 2.5;
    font-weight: 350;
  }
  .choose{
    position: relative;
    background: 
    url(../images/ch_bg2.png) right top no-repeat,
    url(../images/ch_bg4.png) left bottom no-repeat,
    url(../images/ch_bg3_s.png) right center repeat-y,
    url(../images/ch-bg1.png) center center repeat;
  }
  .choose .txt {
    display: flex;
    justify-content: space-around;
  }
  .ch_left{
    position: absolute;
    top: -250px;
    left: 0;
  }
  .ch_right{
    position: absolute;
    bottom: 20px;
    right: 300px;
  }
  .choose .left_txt{
    text-align: center;
  }
  .choose .left_txt .row, .choose .right_txt .row{
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .choose .right_txt{
    vertical-align: middle;
    width: 20%;
  }
  .choose .right{
    font-family: "標楷體",  DFKai-sb, BiauKai;
    color: #fff;
    writing-mode: vertical-lr;
    font-size: 36px;
    letter-spacing: 3px;
    padding-left: 55px;
  }
  .left2 img{
    margin-top: 100px;
    margin-left: 250px;
  }
  .about_list{
    padding: 20px;
    line-height: 2.5;
  }
  .about_list h4{
    color: #7f3f00;
    letter-spacing: 3px;
    font-weight: 400;
  }
  .about_list p{
    font-size: 26px;
  }
  /* //about */
  /* store */
  .store-view .store_box .swiper-slide > img{
    width: 75%;
  }
  /* //store */
  /*頁籤*/
  .page-links {
    padding: 0px 0 30px;
    width: 100%;
    display: block;
  }
  .page-links .row{
    margin: 0 -6px !important;
  }
  .page-links .row .col_ {
    display: inline-block;
    margin: 0px 3px 10px 3px;
  }
  .page-links .row .col_ a {
    margin: 2px;
    background: #fff;
    background: var(--page-links_a_background);
    color: #000;
    color: var(--page-links_a_color);
    border: 1px solid #bbbbbb;
    border: var(--page-links_a_border);
    font-weight: 400;
    padding: 10px 15px;
    font-size: 18px;
    display: block;
    min-width: 146px;
    text-align: center;
  }
  .page-links .row .current a,.page-links .row a:hover {
    background: #3e6fa3;
    background: var(--page-links_background_current);
    border: 1px solid #3e6fa3;
    border: 1px solid var(--page-links_background_current);
    color: #fff;
    color: var(--page-links_color_current);
  }
  .page-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
  }
  .page-links ul li {
    float: left;
    text-align: center;
  }
  .page-links li + li {
    margin-left: 12px;
  }
  .page-links ul li:nth-child(n+9) {
    margin-top: 10px;
  }
  .page-links ul li a:hover {
    background: rgba(9,145,163,1) !important;
  }
  /*//頁籤*/
  /*menu*/
  .overlapblackbg{
		display:none;
	}
	.wsmenu{
		position:relative;
		font-size:14px;
		padding:0px;
		margin:0px auto;
		width:100%;
		-webkit-border-radius:0px 0px 0px 0px;
		-moz-border-radius:0px 0px 0px 0px;
		border-radius:0px 0px 0px 0px;
	}
	.wsmenu-list{
		text-align: left;
		display: table;
		margin: 0 auto;
		padding: 0px;
	}
	.wsmenu-list > li{
		text-align:center;
		display: table-cell;
    position: relative;
	}
  .scroll .wsmenu-list > li > a,.scroll .wsmenu-list > li > .wsmenu-click,.scroll .wsmenu-submenu .wsmenu-click,.scroll .wsmenu-submenu li a{
		color: #fff;
    color: var(--menu_txt_scroll);
	}
  .wsmenu-list > li > a,.wsmenu-list > li > .wsmenu-click{
    color: #4b433f;
  }
	.wsmenu-list > li > a{
    position: relative;
		display: block;
		padding: 30px 25px;
		position: relative;
		font-size: 20px;
		letter-spacing: 1px;
		min-width: 100px;
		font-weight: 500;
	}
  .wsmenu-list > li > a img {
    display: none;
  }
  .wsmenu-list > li:not(:last-child) > a:before{
    position: absolute;
    content: '';
    right: 0;
    top: 40%;
    width: 1px;
    height: 20px;
    background: #d8d8d8;
  }
  .wsmenu-list > li > a .wsmenu-click{
    float: right;
    margin: 0 -12px 0 0px;
  }
	.wsmenu-submenu{
		min-width: 140px;
		-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
		-moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	}
	.wsmenu-submenu li{
		position:relative; 
		padding:0px; 
		margin:0px; 
		display:block;
	}
	.wsmenu-list li:hover .wsmenu-submenu{
		display:block;
	}
	.wsmenu-list li > .wsmenu-submenu{
		transform-style: preserve-3d;
		-o-transform-style: preserve-3d;
		-moz-transform-style: preserve-3d;
		-webkit-transform-style: preserve-3d;
		transform: rotateX(-75deg);
		-o-transform: rotateX(-75deg);
		-moz-transform: rotateX(-75deg);
		-webkit-transform: rotateX(-75deg);
		visibility:hidden;
	}
	.wsmenu-list li:hover > .wsmenu-submenu{
		transform: rotateX(0deg);
		-o-transform: rotateX(0deg);
		-moz-transform: rotateX(0deg);
		-webkit-transform: rotateX(0deg);
		opacity: 1;
		visibility:visible;
	}
	.wsmenu-submenu li > .wsmenu-submenu-sub{
		transform-style: preserve-3d;
		-o-transform-style: preserve-3d;
		-moz-transform-style: preserve-3d;
		-webkit-transform-style: preserve-3d;
		transform: rotateX(-75deg);
		-o-transform: rotateX(-75deg);
		-moz-transform: rotateX(-75deg);
		-webkit-transform: rotateX(-75deg);
		visibility:hidden;
	}
	.wsmenu-submenu-sub li > .wsmenu-submenu-sub-sub{
		transform-style: preserve-3d;
		-o-transform-style: preserve-3d;
		-moz-transform-style: preserve-3d;
		-webkit-transform-style: preserve-3d;
		transform: rotateX(-75deg);
		-o-transform: rotateX(-75deg);
		-moz-transform: rotateX(-75deg);
		-webkit-transform: rotateX(-75deg);
		visibility:hidden;
	}
	.wsmenu-submenu-sub li:hover > .wsmenu-submenu-sub-sub{
		transform: rotateX(0deg);
		-o-transform: rotateX(0deg);
		-moz-transform: rotateX(0deg);
		-webkit-transform: rotateX(0deg);
		opacity: 1;
		visibility:visible;
	}
	.wsmenu-list .wsmenu-submenu .wsmenu-submenu-sub{
		min-width:140px;
		-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    	-moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	}
	.wsmenu-list > li > .wsmenu-click{
		position: absolute;
		z-index: 2;
		right: 15px;
		top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
	}
	.wsmenu-submenu .wsmenu-click{
		position: absolute;
		z-index: 2;
		right: 10px;
		top: 50%;
    -moz-transform: translateY(-50%) rotate(270deg);
    -webkit-transform: translateY(-50%) rotate(270deg);
    -o-transform: translateY(-50%) rotate(270deg);
    -ms-transform: translateY(-50%) rotate(270deg);
    transform: translateY(-50%) rotate(270deg);
	}
	.wsmenu-submenu{
		position:absolute;
		z-index:1000;
		margin:0px;
		opacity: 0;
		-o-transform-origin: 0% 0%;
		-ms-transform-origin: 0% 0%;
		-moz-transform-origin: 0% 0%;
		-webkit-transform-origin: 0% 0%;
		-o-transition: -o-transform 0.3s, opacity 0.3s;
		-ms-transition: -ms-transform 0.3s, opacity 0.3s;
		-moz-transition: -moz-transform 0.3s, opacity 0.3s;
		-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	}
  .wsmenu-list > li:hover{
    position: relative;
    background: none;
    background: var(--menu-sub_background_hover);
  }
  .wsmenu-list > li:hover::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background-color: var(--menu_txt_scroll_hover);
  }
  .wsmenu-list > li:hover > a > img {
    display: inline-flex;
  }

	.wsmenu-list > li:hover>a,.wsmenu-list li:hover >.wsmenu-click,.wsmenu-submenu li:hover>a, .wsmenu-submenu li a:hover,.wsmenu-submenu li a:hover .wsmenu-click{
		color: rgb(255,150,0);
    color: var(--menu_txt_hover);
	}
  .scroll .wsmenu-list > li:hover>a,.scroll .wsmenu-list li:hover >.wsmenu-click,.scroll .wsmenu-submenu li:hover>a,.scroll .wsmenu-submenu li a:hover,.scroll .wsmenu-submenu li a:hover .wsmenu-click{
		color: rgb(255,150,0);
    color: var(--menu_txt_scroll_hover);
	}
  
	.wsmenu-submenu li a {
    background: rgba(255, 255, 255, 0.85);
		background: var(--menu-sub_background);
		text-align:center;
		display:block;
		padding: 10px 17px;
		text-transform:none; 
		font-size:15px;
		letter-spacing:normal;
    max-width: 300px;
	}
	.wsmenu-list .wsmenu-submenu .wsmenu-submenu-sub{
		position:absolute; 
		left:100%; 
		top:0; 
		margin:0px; 
		padding:0px;
		opacity: 0;
		z-index: -1;
		-o-transform-origin: 0% 0%;
		-ms-transform-origin: 0% 0%;
		-moz-transform-origin: 0% 0%;
		-webkit-transform-origin: 0% 0%;
		-o-transition: -o-transform 0.4s, opacity 0.4s;
		-ms-transition: -ms-transform 0.4s, opacity 0.4s;
		-moz-transition: -moz-transform 0.4s, opacity 0.4s;
		-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;	
	}
	.wsmenu-list .wsmenu-submenu li:hover .wsmenu-submenu-sub{
		list-style:none;
		display:block;
		transform: rotateX(0deg);
		-o-transform: rotateX(0deg);
		-moz-transform: rotateX(0deg);
		-webkit-transform: rotateX(0deg);
		opacity: 1;
		visibility:visible;
	}
	.wsmenu-list .wsmenu-submenu .wsmenu-submenu-sub .wsmenu-submenu-sub-sub{
		min-width:200px; 
		position:absolute; 
		left:100%; 
		top:0; 
		margin:0px; 
		padding:0px;
		opacity: 0;
		-o-transform-origin: 0% 0%;
		-ms-transform-origin: 0% 0%;
		-moz-transform-origin: 0% 0%;
		-webkit-transform-origin: 0% 0%;
		-o-transition: -o-transform 0.4s, opacity 0.4s;
		-ms-transition: -ms-transform 0.4s, opacity 0.4s;
		-moz-transition: -moz-transform 0.4s, opacity 0.4s;
		-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
	}
	.wsmenu-list .wsmenu-submenu .wsmenu-submenu-sub li:hover .wsmenu-submenu-sub-sub{
		opacity:1;
		list-style:none;
	}
  a.logo{
	  padding: 0;
    display: table-cell;
    text-align: center;
    vertical-align: bottom;
    transform:scale(1,1);
    transition: all 0.5s ease-out;
  }
  header.header {
    background: none;
    background: rgba(255, 255, 255, 0.85);
    position: fixed;
    top: 0;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    left: 0;
    z-index: 5;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .scroll .header {
    height: 90px;
    background: rgba(255,255,255,0.8);
    background: var(--header_background_scroll);
    box-shadow: rgba(149,157,165,0.2) 0px 8px 24px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .row_top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
  }
  .scroll .row_top{
    height: 70px;
  }
  .menu_top_left{
    float: left;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .menu_top_left > div{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .menu_top_left img{
    vertical-align: bottom;
  }
  .menu_top_all{
    float: left;
    position: relative;
  }
  .wsmenu-list > li > a > i{
    display: none;
    font-size:18px !important;
    position: absolute;
    margin-left: 10px;
  }
  .scroll .menu_top_left img{
    max-height: 75px;
  }
  .scroll .logo{
    transform:scale(0.9,0.9);
  }
  .scroll .logo .svg{
    fill: rgb(8, 90, 162);
  }
  .scroll #search .svg,
  .scroll .lang .svg{
    fill: #fff;
    fill: var(--menu_txt_scroll);
  }
  .scroll .lang select{
    color: #fff;
    color: var(--menu_txt_scroll);
  }
  .scroll .menu_top_all{
    margin-top: 0;
  }
  .scroll .wsmenu-submenu li a {
    background: var(--header_background_scroll);
  }
  #search .svg,
  .lang .svg,
  .lang select{
    -moz-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    -webkit-transition: all, 0.3s;
    transition: all, 0.3s;
  }
  /*//menu*/
  /*search*/
  #search-wrap {
    width: 300px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.95);
    color: #666666;
    position: fixed;
    right: 5%;
    top:100px;
    z-index: 9999;
    -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px #ddd solid;
    border-top: 1px #ddd solid;
    display: none;
  }
  #search-wrap form{
    display: flex;
  }
  #search-wrap button {
    border: 0;
    padding: 0;
    width: 32px;
    height: 32px;
    background: #8e8e8e;
  }
  #search-wrap input {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    display: block;
    height: 32px;
    float: left;
    font-size: 14px;
  }
  #search-wrap input:first-child {
    border: 0;
    background: #f0f0f0;
    width:calc(100% - 36px);
    padding-left: 10px;
    border-right: 0;
  }
  #search-wrap input + input {
    border: 0;
    width: 20%;
    background: #1f8936;
    color: #fff;
  }
  .scroll #search-wrap {
    top:70px;
  }
  /*//search*/
  /*footer*/
  footer.footer{
    position: relative;
    float: left;
    width: 100%;
    background: none;
    background: var(--footer_background);
    color: #fff;
    color: var(--footer_color);
    overflow: hidden;
  }
  footer .wrap_all{
    padding: 50px 15px;
    margin: 0 auto;
    width: 900px;
    max-width: 100%;
  }
  footer.footer ul{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 3px;
  }
  footer.footer li{
    list-style-type: none;
    position: relative;
    line-height: 1;
  }
  footer.footer a{
    color:#333;
    color: var(--footer_a_color);
    line-height: 1;
    border-bottom: 1px solid transparent;
    padding-bottom: 5px;
  }
  footer.footer li a:hover{
    color: rgb(8,90,162);
    color: var(--footer_a_color_hover);
    border-bottom: 1px solid;
  }
  footer.footer li img{
    padding-bottom: 5px;
  }
  footer.footer li span:first-child{
    vertical-align: top;
  }
  footer .copy-right{
    background: none;
    background: var(--footer_copy-right_background);
    color: #777;
    color: var(--footer_copy-right_color);
    font-size: 15px;
    position: relative;
  }
  footer .copy-right .design{
    color: #777;
    color: var(--footer_design_color);
  }
  footer .copy-right > .wrap{
    width: 60%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  footer .copy-right a{
    font-size: 15px;
    color: #777;
    color: var(--footer_design_a_color);
  }
  footer .copy-right a:hover{
    border-bottom: 1px solid;
  }
  .footer .btn{
    background: rgb(8,90,162);
    background: var(--main_color_hover);
    color: #fff;
    font-size: 20px;
    border-radius: 0;
  }
  .footer .btn i{
    opacity: 0;
    transform: translateX(-25px);
    transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    position: absolute;
  }
  .footer .btn:hover i{
    opacity: 1;
    transform: translateX(5px);
  }
  .footer .footer-item ul li{
    padding: 0 40px;
  }
  .footer .footer-item ul a{
    font-size: 20px;
  }
  /*//footer*/
  /*banner*/
  .banner .swiper-slide .img.bg{
    height: 100vh;
  }
  /*//banner*/
  /*table-box*/
  .table-box{
    width: 100%;
    display: table;
    margin-bottom: 0;
  }
  .table-box .table-row{
    display: table-row;
  }
  .table-box .table-row .table-td{
    display: table-cell;
    padding: 10px;
    border-bottom: 1px #ddd solid;
    vertical-align: middle;
  }
  .table-box .table-row.title{
    font-size: 16px;
    text-align: center;
    background: #f2f2f2;
  }
  .table-box .table-row.title .table-td{
    border-bottom: 1px #ddd solid;
    border-top: 1px #ddd solid;
  }
  .table-box .table-row .table-td img{
    max-width: 100px;
    margin-right: 10px;
  }
  .table-box .i_del i{
    margin-right: 5px;
  }
  /*//table-box*/
  /*cartInfo-wrap*/
  #cartInfo-wrap {
    width: 450px;
    padding: 20px;
    background: #fff;
    font-size: 15px;
    position: fixed;
    right: 0;
    top: 149px;
    z-index: 6;
    -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    display: none;
  }
  #cartInfo-wrap .row_ {
    position: relative;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;  
  }
  #cartInfo-wrap div.img img {
    width: 50px;
    vertical-align: middle;
  }
  #cartInfo-wrap div.img span {
    text-align: left;
    margin-left: 10px;
    height: 36px;
    line-height: 36px;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 150px;
    vertical-align: middle;
    padding-right: 10px;
  }
  #cartInfo-wrap a.delete {
    background: url(../images/delete.png) center no-repeat;
    width: 18px;
    height: 18px;
    position: absolute;
    right: 0;
    top:0;
  }
  #cartInfo-wrap div.price {
    float: left;
    padding: 0 15px;
  }
  #cartInfo-wrap div.price span{
    display: block;
    line-height: normal;
    margin-top: 10px;
    font-size: 13px;
  }
  #cartInfo-wrap .total {
    text-align: right;
    border-top: 1px solid #dddddd;
    padding-top: 20px;
  }
  #cartInfo-wrap .total span {
    font-size: 15px;
    color: #7b8e42;
    margin-right: 20px;
  }
  #cartInfo-wrap .total > a {
    padding: 8px 30px;
    font-size: 15px;
    text-align: center;
    display: inline-block;
    font-weight: 400;
    border-radius: 5px;
    color: #fff;
    background-color: #942905;
  }
  /*//cartInfo-wrap*/
  .index_service {
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
  }
  .index_service .container{
    width: 1700px !important;
  }
  /*news*/
  .banner_pages{
    position: relative;
    padding: 8vw 0 2vw;
    overflow: hidden;
  }
  .index_news .title{
    font-weight: 500;
    text-align: left;
    font-size: 20px;
  }
  .news_list a p{
    transform: translateX(-50px);
    opacity: 0;
    transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
  }
  .news_list a:hover p{
    transform: translateX(0px);
    opacity: 1;
  }
  .news_list a .img_box .more_btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3vw;
    height: 3vw;
    border-radius: 100%;
    background: rgb(255,150,0);
    background: var(--main_background);
    color: #fff;
    font-size: 25px;
    position: absolute;
    top: 50%;
    right: -1.5vw;
    opacity: 0;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
  }
  .news_list a:hover .img_box .more_btn{
    opacity: 1;
  }
  /*//news*/
  /* og */
  .og_left1{
    position: absolute;
    top: 40%;
    left: 0;
  }
  .og_left2{
    position: absolute;
    top: 45%;
    left: 0;
  }
  .og_left3{
    position: absolute;
    top: 58%;
    left: 0;
  }
  .og_right1{
    position: absolute;
    top: 40%;
    right: 0;
  }
  .og_right2{
    position: absolute;
    top: 50%;
    right: 0;
  }
  .og_right3{
    position: absolute;
    top: 58%;
    right: 0;
  }
  .index_og {
    margin-top: 450px;
  }
  .index_og .title{
    color: #ff7272;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 10px;
  }
  .index_og .info{
    font-size: 18px;
    line-height: 2;
    min-height: 8em;
  }
  .index_og .contain, .choose .contain{
    max-width: 1300px;
    margin: 0 auto;
  }
  /* //og */
  .product_list_s img{
    transform: scale(1);
    transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
  }
  .product_list_s a:hover img{
    transform: scale(1.1);
  }
  .product_list_s a:hover{
    font-weight: 500;
  }
  /* store */
  .store-view .swiper-wrapper .info .name{
    font-weight: bold;
    font-size: 35px;
    border-bottom: 2px solid #d96d00;
  }
  .store-view .store_box .swiper-slide{
    border-radius: 60px;
    justify-content: end;
    position: relative;
    overflow: hidden;
  }
  .store-view .swiper-slide .info{
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg,#fff 10%,#ebebeb 90%);
    z-index: 5;
    min-width: 350px;
    max-width: 500px;
    height: 100%;
    padding: 50px 30px;
    font-size: 22px;
  }
  /* //store */
  .index_news {
    background: url(../images/news_bg1.png) left 20px / 300px no-repeat,
    url(../images/news_bg2.png) right 20px / 680px no-repeat;
  }
  /* product */
  .index_prd{
    background:  url(../images/prd_bg1.png) left 60% / 200px no-repeat,
    linear-gradient(180deg, transparent 60%, rgba(226, 209, 177, 0.8) 40%) center center / 100% 100%;
  }
  .product-detail {
    position: relative;
  }
  .product-detail .thumbsSlider_out .swiper-pagination{
    position: absolute;
    top: 260px;
    right: 0;
    z-index: 2;
  }
  .product-img{
    min-height: 700px;
    position: relative;
  }
  .product-img .product_box{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
  }
  .product-detail .info{
    margin-left: 50px;
  }  
  .product-detail .info .title{
    position: relative;
    font-size: 60px;
    font-weight: 500;
  }
  .product-detail .info .title::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 20px;
    height: 130px;
    background-color: #e6d7ba;
    z-index: -1;
  }
  .product-detail .info .txt{
    font-size: 24px;
    line-height: 2;
  }
  .prd_img {
    width: 50%;
    text-align: right;
  }
  /* //product */
  /*footer-fixed*/
  #right-fixed {
    position: fixed;
    width: 55px;
    text-align: center;
    right: 5px;
    bottom: 10%;
    z-index: 1;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
  }
  #right-fixed .slider-wrap {
    margin-bottom: 20px;
    position: relative;
  }
  #right-fixed .record-silder {
    position: relative;
    background: 0;
  }
  #right-fixed .record-silder .text {
    color: #555;
    width: 100%;
    height: 22px;
    line-height: 22px;
    text-align: center;
    position: absolute;
    left: 0;
    top: -5px;
    z-index: 99;
    position: relative;
  }
  #right-fixed .record-silder .text span {
    padding: 0 5px;
    background: #f9f9f9;
    position: relative;
    z-index: 2;
  }
  #right-fixed .record-silder .text:before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #ddd;
    position: absolute;
    top: 12px;
    z-index: 1;
  }
  #right-fixed .record-silder .slides li {
    height: 220px;
    background: #fff;
  }
  #right-fixed .record-silder .slides li a {
    display: block;
    border-bottom: 1px #ddd solid;
    text-align: center;
    padding: 10px 5px;
  }
  #right-fixed .record-silder .slides li a img {
    width: 70px;
    display: inline-block;
  }
  #right-fixed .record-silder .slides li a p {
    color: #555;
    font-size: 12px;
    padding: 5px 0 0;
  }
  #right-fixed .record-silder .slides li a + a {
    border-top: 0;
  }
  #right-fixed .icons a {
    display: block;
    position: relative;
    margin-bottom: 10px;
  }
  #right-fixed .icons a.refresh{
    color: var(--main_background);
  }
  #right-fixed .icons a:not(:hover):last-child .icon{
    border-bottom-left-radius: 10px;
    overflow: hidden;
  }
  #right-fixed .f_contact .icon{
    background: #2a3d5e;
  }
  #right-fixed .icon,#right-fixed .title{
    background: #2a3d5e;
  }
  #right-fixed a:hover .icon,#right-fixed .title{
    background: var(--main_background);
  }
  #right-fixed .title{
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 10px 15px;
    color: #fff;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    width: 171px;
    position: absolute;
    top: 0;
    height: 100%;
    white-space: nowrap;
    -webkit-transform: rotateY(90deg);
    -moz-transform: rotateY(90deg);
    transform: rotateY(90deg);
    right: 55px;
    -webkit-transition: all .5s ease 0s;
    -moz-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
    -webkit-transform-origin: 100% 0 0;
    -moz-transform-origin: 100% 0 0;
    transform-origin: 100% 0 0;
  }
  #right-fixed a:hover .title,
  #right-fixed .f_contact.on_hover .info_form{
    -webkit-transform: rotateY(0);
    -moz-transform: rotateY(0);
    transform: rotateY(0);
  }
  #right-fixed .f_contact{
    position: relative;
  }
  #right-fixed .info_form{
    color: #000;
    width: 400px;
    position: absolute;
    top: 0;
    height: 100%;
    white-space: nowrap;
    -webkit-transform: rotateY(90deg);
    -moz-transform: rotateY(90deg);
    transform: rotateY(90deg);
    right: 55px;
    -webkit-transition: all .5s ease 0s;
    -moz-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
    -webkit-transform-origin: 100% 0 0;
    -moz-transform-origin: 100% 0 0;
    transform-origin: 100% 0 0;
  }
  #right-fixed .f_contact .icon{
    color: #fff;
    display: block;
    padding: 0px 10px;
    width: 55px;
    height: 140px;
  }
  #right-fixed .f_contact .icon:hover{
    cursor: default;
  }
  #right-fixed .f_contact .icon span{
    display: inline-block;
    width: 15px;
    font-size: 14px;
    line-height: 1.3;
  }
  #right-fixed .f_contact .icon img{
    width: 40px;
  }
  #r_icon_btn{
    background: #2a3d5e;
    width: 55px;
    color: #fff;
    padding: 5px;
    border-top-left-radius: 10px;
    transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
  }
  #r_icon_btn:hover{
    cursor: pointer;
  }
  #right-fixed .info_form form{
    background: #fff;
    padding: 15px;
    border: 1px solid #fff;
    border-radius: 20px;
    overflow: hidden;
  }
  #right-fixed .info_form form .col{
    width: 100%;
    position: relative;
  }
  #right-fixed .info_form form .col label{
    position: absolute;
    left: 35px;
    top:13px;
    color: #333333;
  }
  #right-fixed .info_form form .col label span,
  #right-fixed .info_form form .code label span{
    color:#bb0000;
  }
  #right-fixed .info_form form .code label{
    position: absolute;
    left: 38px;
    top:13px;
    color: #333333;
  }
  #right-fixed .info_form form .col input,
  #right-fixed .info_form form .col textarea,
  #right-fixed .info_form form .col select{
    width: 100%;
    background: #f1f1f1;
    padding: 15px;
    border: 0;
    max-width: 100%;
    min-width: 100%;
    min-height: 49px;
    font-weight: 400;
    border-radius: 5px;
  }
  #right-fixed .info_form form .code input {
    width: 200px;
    max-width: 100%;
    padding: 15px;
    border: 0;
    font-weight: 400;
    background: #f1f1f1;
    border-radius: 5px;
  }
  #right-fixed .info_form form .btn_ input {
    padding: 8px 20px;
    border: 0;
    border-radius: 5px;
    background: var(--main_background);
    color: #fff;
  }
  #right-fixed .info_form form .btn_ input:hover{
    background: rgb(228, 135, 4);
  }
  #r_icon_btn.active + .icons{
    position: absolute;
    right: -55px; 
  }
  #right-fixed.active{
    bottom: 50%;
  }
  #r_icon_btn.active{
    transform: rotate(180deg);
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
  }
  #right-fixed .info_form form #esc_btn{
    position: absolute;
    right: 20px;
    top: 0;
    font-size: 20px;
    line-height: 1;
  }
  #right-fixed .info_form form #esc_btn:hover{
    cursor: pointer;
    color: var(--main_color_hover);
  }
  .goTop{
    right: 5px;
  }
  /*//right-fixed*/
}

@media only screen and (min-width: 670px) and (max-width: 1199px) {
  /*標題*/
  .page-title{
    display: flex;
    align-items: start;
    justify-content: center;
    margin: 0 auto;
    width: 500px;
    min-width: 20%;
    font-size: 40px;
    font-weight: 400;
  }
  .page-title .main{
    font-size: 36px;
    letter-spacing: 5px;
  }
  .in-view .page-title{
    opacity: 1;
    transform: translateX(0%);
  }
  .page-title:after {
    content: attr(data-title);
    position: absolute;
    top: -2px;
    left: 0.8vw;
    font-size: 9.9vw;
    font-weight: 700;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 0.5px #e3e3e3;
  }
  /*//標題*/
  /*頁籤*/
  .page-links {
    padding: 0px 0 30px;
    width: 100%;
    display: block;
  }
  .page-links .row {
    margin: 0 -6px !important;
  }
  .page-links .row .col_ {
    display: inline-block;
    margin: 0px 3px 10px 3px;
  }
  .page-links .row .col_ a {
    margin: 2px;
    background: #fff;
    background: var(--page-links_a_background);
    color: #000;
    color: var(--page-links_a_color);
    border: 1px solid #bbbbbb;
    border: var(--page-links_a_border);
    font-weight: 400;
    padding: 10px 15px;
    font-size: 18px;
    display: block;
    min-width: 146px;
    text-align: center;
  }
  .page-links .row .current a,.page-links .row a:hover {
    background: #3e6fa3;
    background: var(--page-links_background_current);
    border: 1px solid #3e6fa3;
    border: 1px solid var(--page-links_background_current);
    color: #fff;
    color: var(--page-links_color_current);
  }
  .page-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .page-links ul li {
    float: left;
    text-align: center;
  }
  .page-links li + li {
    margin-left: 12px;
  }
  .page-links ul li:nth-child(n+9) {
    margin-top: 10px;
  }
  .page-links ul li a:hover {
    background: rgba(9,145,163,1) !important;
  }
  /*//頁籤*/
  /*banner*/
  .banner .swiper-slide .img.bg{
    height: 100vh;
    min-height: 600px;
  }
  .banner .swiper-slide .container{
    padding: 0 40px;
  }
  /*//banner*/
  /*table-box*/
  .table-box{
    margin-bottom: 0;
  }
  .table-box .table-row.title {
    display: none;
  }
  .table-box .table-row{
    border: 1px #ddd solid;
  }
  .table-box .table-row:not(:last-child){
    margin-bottom: 20px;
  }
  .table-box .table-row .table-td{
    color: #666666;
    background: rgba(255, 255, 255, 0.9);
    min-height: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    border-bottom: 1px #ddd solid;
    vertical-align: middle;
  }
  .table-box .table-row .table-td > div:first-child{
    width: 120px;
    background: #f2f2f2;
    justify-content: center;
  }
  .table-box .table-row .table-td > div{
    width: calc(100% - 120px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 10px;
  }
  .table-box .table-row .table-td img{
    width: 90px;
  }
  .table-box .table-row .table-td:last-child{
    border-bottom: 0;
  }
  .table-box .i_del i{
    margin-right: 5px;
  }
  /*//table-box*/
  .index_news .news_list, .index_og .og_list{
    background-color: #fff;
    margin: 10px;
    min-height: 20em;
  }
  /* og */
  .index_og .title{
    color: #ff7272;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 5px;
  }
  .index_og .contain{
    max-width: 1024px;
    margin: 0 auto;
  }
  /* //og */
}
/*===============================================================================================
    -mobile
===============================================================================================*/
@media only screen and (max-width: 669px) {
  .link_bline{
    font-size: 14px !important;
  }
  .container{
    margin: 0 auto;
  }
  .index.wrap {
    width: 100%;
    padding: 0 10px;
    max-width: 360px;
    margin: 20px auto 40px;
  }
  .container > .wrap {
    position: relative;
    padding: 0px 0 50px;
  }
  .pc, .hide-in-tablet {
    display: none!important;
  }
  .ipad{
    display: none;
  }
  /*標題*/
  .page-title{
    font-size: 28px;
    font-weight: 400;
  }
  /*//標題*/
  /*頁籤*/
  .page-links {
    padding: 0px 0 30px;
    width: 100%;
    display: block;
  }
  .page-links .row {
    margin: 0 -6px !important;
  }
  .page-links .row .col_ {
    display: inline-block;
    margin: 0px 3px 10px 3px;
  }
  .page-links .row .col_ a {
    margin: 2px;
    background: #fff;
    background: var(--page-links_a_background);
    color: #000;
    color: var(--page-links_a_color);
    border: 1px solid #bbbbbb;
    border: var(--page-links_a_border);
    font-weight: 400;
    padding: 5px 8px;
    font-size: 16px;
    display: block;
    min-width: 100px;
    text-align: center;
  }
  .page-links .row .current a,.page-links .row a:hover {
    background: #3e6fa3;
    background: var(--page-links_background_current);
    border: 1px solid #3e6fa3;
    border: 1px solid var(--page-links_background_current);
    color: #fff;
    color: var(--page-links_color_current);
  }
  /*//頁籤*/
  /*banner*/
  .banner .swiper-slide .container{
    width: 80%;
  }
  .swiper-button-next, .swiper-button-prev{
    width: 30px;
  }
  .banner .swiper-button-next:after, .banner .swiper-container-rtl .swiper-button-prev:after,.banner .swiper-button-prev:after, .banner .swiper-container-rtl .swiper-button-next:after{
    font-size: 30px;
  }
  .banner .swiper-slide .img.bg{
    height: 100vh;
    min-height: 300px;
  }
  .banner .swiper-slide .container{
    padding: 0 10px;
  }
  .banner .swiper-pagination-bullet {
    width: 30px;
  }  
  /*//banner*/
  /*table-box*/
  .table-box{
    margin-bottom: 0;
  }
  .table-box .table-row.title {
    display: none;
  }
  .table-box .table-row{
    border: 1px #ddd solid;
  }
  .table-box .table-row:not(:last-child){
    margin-bottom: 20px;
  }
  .table-box .table-row .table-td{
    color: #666666;
    background: rgba(255, 255, 255, 0.9);
    min-height: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    border-bottom: 1px #ddd solid;
    vertical-align: middle;
  }
  .table-box .table-row .table-td > div:first-child{
    width: 120px;
    background: #f2f2f2;
    justify-content: center;
  }
  .table-box .table-row .table-td > div{
    width: calc(100% - 120px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 10px;
  }
  .table-box .table-row .table-td img{
    width: 90px;
  }
  .table-box .table-row .table-td:last-child{
    border-bottom: 0;
  }
  .table-box .i_del i{
    margin-right: 5px;
  }
  /*//table-box*/
}
@media only screen and (max-width: 1199px){
  .index{
    background: url(../images/bg.png) center 40% / contain no-repeat,
    url(../images/prd_bg.png) left 22% / contain no-repeat,
    url(../images/cover_bg.png) repeat;
  }
  .pc{
    display: none !important;
  }
  .more{
    font-size: 18px;
    font-weight: 300;
    color: var(--main_color_hover);
    text-align: right;
  }
  a.logo img {
    max-height: 50px;
    width: auto;
  }
  .page-title img{
    display: inline-block;
  }
  .page-title > div{
    font-weight: 400;
  }
  .page-title > div::before{
    display: none;
  }
  /*search*/
  #search{
    color: #fff;
    color: var(--menu-mobile-icon);
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
  }
  #search-wrap {
    position: fixed;
    width: 100%;
    top: 65px;
    z-index: 3;
    padding: 15px 20px;
    background: #fff;
    -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    display: none;
  }
  #search-wrap form {
    display: flex;
  }
  #search-wrap input[type=search] {
    display: block;
    width: calc(100% - 40px);
    line-height: 40px;
    border: 0;
    background: #f0f0f0;
    padding: 0 10px;
    font-size: 15px;
  }
  #search-wrap button {
    border: 0;
    padding: 0;
    width: 40px;
    height: 40px;
    background: #8e8e8e;
  }
  /*search*/
  /*banner*/
  .banner{
    margin-top: 80px;
  }
  .banner .swiper-slide .banner_txt .banner_title {
    font-size: 70px;
    margin: 0 5% 5% 0;
  }

  .banner .swiper-slide .banner_txt .banner_wtxt {
    font-size: 30px;
    margin-bottom: 40px;
  }

  .banner .swiper-slide .img.bg {
    height: 70vh;
    min-height: 600px;
  }

  .banner .swiper-slide .container {
    padding: 0 40px;
  }
  
/*//banner*/
  /*menu*/
  .wsmenu {
    width: 0px;
    height: 100%;
    position: fixed;
    right: -240px;
    top: 0px;
    margin: 0;
    background-color: #fff;
    z-index: 100;
    padding: 40px 40px 60px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    border: none !important;
  }
  .wsmenu-submenu li{
		position:relative; 
		padding:0px; 
		margin:0px; 
		display:block;
	}
	.wsmenu-submenu li:nth-child(n+2){
		border-top: 1px solid transparent;
	}
	.overlapblackbg{
		display: none;
		left:0;
		z-index:100;
		width:100%;
		height:100%;
		position:fixed;
		top:0;
		display:none;
		background-color:rgba(0, 0, 0, 0.45);
		cursor:pointer;
	}
	.overlapblackbg.menuopen{
		display:block;
	}
	.wsmenu-submenu > li:hover>a{ 
		background-color:#7b7b7b; 
		color:#666666;
	}
	.wsmenu > .wsmenu-list > li > a.active{
		color: #666666; 
		background-color:rgba(0,0,0,0.08);
	}
	.wsmenu > .wsmenu-list > li > a:hover,.wsmenu-list > li:hover>a{
		background-color:rgba(0,0,0,0.08);
	}
  .wsmenu-list > li img{
    display: none;
  }
  
  .wsmenu-list > li:hover >a img, .wsmenu > .wsmenu-list > li > a.active img{
    display: inline-block;
  }
	.wsmenu-list li:hover .wsmenu-submenu .wsmenu-submenu-sub{
		display:none;
	}
	.wsmenu-list .wsmenu-submenu .wsmenu-submenu-sub li:hover .wsmenu-submenu-sub-sub{
		display:none; 
		list-style:none; 
		padding:2px; 
		border:solid 1px #eeeeee;
		background-color:#fff;
	}
  .wsmenu-list > li > a > i{
    display: block;
  }
	.wsmenucontainer{
		overflow: hidden;
		-webkit-backface-visibility: hidden;
		-moz-backface-visibility: hidden;
		-ms-backface-visibility: hidden;
		min-height:800px;
		-webkit-transition:all 0.4s ease-in-out;
		-moz-transition: all 0.4s ease-in-out;
		-o-transition: all 0.4s ease-in-out;
		-ms-transition: all 0.4s ease-in-out;
		transition: all 0.4s ease-in-out;
	}
	.wsmenu-click {
		height:43px;
		position:absolute;
		top:0;
		right:0;
		display:block;
		cursor:pointer;
		width:50px;
		z-index: 2;
	}
	.wsmenu-click i{
		display:block;
		height:23px;
		width:25px;
		margin-top:11px;
		margin-right:10px;
		background-size:25px;
		font-size:21px;
		color:rgba(0,0,0,0.25);
		float:right;
	}
	.wsmenu-rotate{
		-webkit-transform:rotate(180deg);
		-moz-transform:rotate(180deg);
		-ms-transform:rotate(180deg);
		-o-transform:rotate(180deg);
		transform:rotate(180deg);
	}
	.wsmenu-submenu-sub{
		width:100% !important;
		position:static !important;
		left:100% !important;
		top:0 !important;
		display:none;
		margin:0px !important;
		padding:0px !important;
		border:solid 0px !important;
		transform:none !important;
		opacity:1 !important;
		visibility:visible !important;
	}
	.wsmenu-submenu-sub li{
		margin:0px 0px 0px 0px !important;
		padding:0px;
		position:relative;
	}
	.wsmenu-submenu-sub a{
		display:block;
		padding:10px 25px 10px 25px;
		border-bottom:solid 1px #ccc;
	}
	.wsmenu-submenu-sub li a.active{
		color:#000 !important;
	}
	.wsmenu-submenu-sub li:hover>a{
		background-color:#333333 !important;
		color:#fff;
	}
	.wsmenu-list > li > a .fa{
		margin-right:6px;
	}
	.wsmenu-submenu-sub-sub{
		width:100% !important;
		position:static !important;
		left:100% !important;
		top:0 !important;
		display:none;
		margin:0px !important;
		padding:0px !important;
		border:solid 0px !important;
		transform:none !important;
		opacity:1 !important;
		visibility:visible !important;
	}
	.wsmenu-submenu-sub-sub li{
		margin:0px 0px 0px 0px !important;
	}
	.wsmenu-submenu-sub-sub a{
		display:block;
		color:#000;
		padding:10px 25px;
		background:#000 !important;
		border-bottom:solid 1px #ccc;
		font-weight:normal;
	}
	.wsmenu-submenu-sub-sub li a.active{ 
		color:#000 !important;
	}
	.wsmenu-submenu-sub-sub li:hover>a{ 
		background-color:#606060 !important; 
		color:#fff;
	}
	.wsmenu .wsmenu-list{
    opacity: 0;
    width: 350px;
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
    padding: 0px;
	}
	.wsmenu .wsmenu-list > li{
		width:100%;
		padding: 0;
		text-align:center;
		display:block;
		float:none;
		border-right:none;
		background-color:transparent;
		position:relative;
		white-space:inherit;
		border-bottom: 1px solid #ddd;
	}
	.wsmenu > .wsmenu-list > li > a{
		padding:9px 32px 9px 17px;
		font-size:16px !important;
		text-align:left;
		border-right:solid 0px;
		color:#666666 !important;
		line-height:25px;
		border-bottom:1px solid;
		border-bottom-color:rgba(0,0,0,0.13);
		position:static;
		border: 0;
		font-weight: 400;
		display: block;
		letter-spacing: 1px;
	}
	.wsmenu .mobile{
		padding:9px 32px 9px 17px;
		font-size:16px !important;
	}	
	.wsmenu > .wsmenu-list > li > a > .fa{
		font-size: 16px; 
		color:#bfbfbf;
	}
	.wsmenu .wsmenu-list li a .arrow:after{ 
		display:none !important; 
	}
	.wsmenu .wsmenu-list li ul li a .fa.fa-caret-right{ 
		font-size:12px !important; 
		color:#8E8E8E; 
	}
	.mobile-sub .wsmenu-submenu{
		transform:none !important;
		opacity:1 !important;
		display:none;
		position:relative !important;
		top:0px;
		background-color:transparent;
		border:solid 1px #ccc;
		padding:0px;
		visibility:visible !important;
	}
	.mobile-sub .wsmenu-submenu li a{
		display: block;
		line-height: 20px;
		height: 36px;
		background: none!important;
		font-size: 14px !important;
		text-align: left;
		padding: 9px 25px;
		color: #3a3a3a !important;
	}
	.mobile-sub .wsmenu-submenu li a:hover{ 
		background-color:#e7e7e7 !important; 
		color:#666666; 
		text-decoration:underline;
	}
	.mobile-sub .wsmenu-submenu li:hover>a{ 
		background-color:#e7e7e7 !important;
		color:#666666; 
	}
	.mobile-sub .wsmenu-submenu li .wsmenu-submenu-sub li a{
		line-height:20px; 
		height:36px; 
		background:none; 
		border-bottom:none; 
		padding-left:38px;
	}
	.mobile-sub .wsmenu-submenu li .wsmenu-submenu-sub li .wsmenu-submenu-sub-sub li a{
		line-height:20px; 
		height:36px; 
		background:none; 
		border-bottom:none !important; 
		padding-left:38px; 
		color:#8e8e8e;
	}
	.wsmenu {
		width:0px;
		height: 100%;
		position: fixed;
		right: -240px;
		top: 0px;
		margin: 0;
		background-color: #fff;
		z-index:100;
		-webkit-transition: all 0.4s ease-in-out;
		-moz-transition: all 0.4s ease-in-out;
		-o-transition: all 0.4s ease-in-out;
		-ms-transition: all 0.4s ease-in-out;
		transition: all 0.4s ease-in-out;
		border:none !important;
	}
	.wsmenu.menuopen {
		width:100%;
		overflow: hidden;
		right: 0;
		-webkit-transition: all 0.4s ease-in-out;
		-moz-transition: all 0.4s ease-in-out;
		-o-transition: all 0.4s ease-in-out;
		-ms-transition: all 0.4s ease-in-out;
		transition: all 0.4s ease-in-out;
		opacity: 1;
	}
	.wsmenu.menuclose{
		-webkit-transition: all 0.4s ease-in-out;
		-moz-transition: all 0.4s ease-in-out;
		-o-transition: all 0.4s ease-in-out;
		-ms-transition: all 0.4s ease-in-out;
		transition: all 0.4s ease-in-out;
		opacity: 0;
	}
	.wsmenu.menuopen .wsmenu-list{
		opacity: 1;
	}	
	.wsmenu.menuclose .wsmenu-list{
		opacity: 0;
	}
	.wsmenucontent{
		z-index:1;
	}
	.animated-arrow.menuopen{
    right: 80%;
    margin: 12px 20px !important;
	}
	.animated-arrow {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 200;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
	.animated-arrow{
		cursor:pointer;
		padding:13px 23px 16px 0px;
		margin:10px 0 0 15px;
	}
	.animated-arrow span, .animated-arrow span:before, .animated-arrow span:after {
		cursor: pointer;
		height:3px;
		width:23px;
		background: #000;
    background: var(--menu-mobile-icon);
		position: absolute;
		display: block;
		content: '';
	}
  .scroll .animated-arrow span,
  .scroll .animated-arrow span:before,
  .scroll .animated-arrow span:after{
    background:#000;
    background: var(--menu_txt_scroll);
  }
	.animated-arrow.menuopen span:before, .animated-arrow.menuopen span:after {
		background: #000;
	}	
	.animated-arrow span:before{
		top: -7px;
	}
	.animated-arrow span:after {
		bottom: -7px;
	}
	.animated-arrow span, .animated-arrow span:before, .animated-arrow span:after{
		-webkit-transition:all 0.3s;
		-moz-transition: all 0.3s;
		-o-transition: all 0.3s;
		-ms-transition: all 0.3s;
		transition: all 0.3s;
	}
	.animated-arrow.menuopen span{
		background-color: transparent;
	}
	.animated-arrow.menuopen span:before, .animated-arrow.active span:after{
		top:7px;
	}
	.animated-arrow.menuopen span:before {
		transform: rotate(45deg);
		-moz-transform:  rotate(45deg);
		-ms-transform:  rotate(45deg);
		-o-transform:  rotate(45deg);
		-webkit-transform:  rotate(45deg);
		bottom:0px;
	}
	.animated-arrow.menuopen span:after {
		transform: rotate(-45deg);
		-moz-transform:  rotate(-45deg);
		-ms-transform:  rotate(-45deg);
		-o-transform:  rotate(-45deg);
		-webkit-transform:  rotate(-45deg);
	}
	.wsmenu-list li > .wsmenu-submenu{
		transform:none !important;
		-o-transform:none !important;
		-moz-transform: none !important;
		-webkit-transform:none !important;
		transform: none !important;
		-o-transform:none !important;
		-moz-transform: none !important;
		-webkit-transform: none !important;
		visibility:visible !important;
		border:0 !important;
	}	
	.wsmenu-list li:hover > .wsmenu-submenu{
		display:none;
		transform:none !important;
		-o-transform:none !important;
		-moz-transform: none !important;
		-webkit-transform:none !important;
		transform: none !important;
		-o-transform:none !important;
		-moz-transform: none !important;
		-webkit-transform: none !important;
		visibility:visible !important;
	}
	.wsmenu-submenu li > .wsmenu-submenu-sub{
		transform:none !important;
		-o-transform:none !important;
		-moz-transform: none !important;
		-webkit-transform:none !important;
		transform: none !important;
		-o-transform:none !important;
		-moz-transform: none !important;
		-webkit-transform: none !important;
		visibility:visible !important;
	}	
	.wsmenu-submenu li:hover > .wsmenu-submenu-sub{
		transform:none !important;
		-o-transform:none !important;
		-moz-transform: none !important;
		-webkit-transform:none !important;
		transform: none !important;
		-o-transform:none !important;
		-moz-transform: none !important;
		-webkit-transform: none !important;
		visibility:visible !important;
		opacity:1  !important;
	}
	.wsmenu-submenu-sub li > .wsmenu-submenu-sub-sub{
		transform:none !important;
		-o-transform:none !important;
		-moz-transform: none !important;
		-webkit-transform:none !important;
		transform: none !important;
		-o-transform:none !important;
		-moz-transform: none !important;
		-webkit-transform: none !important;
		visibility:visible !important;
		opacity:1  !important;
	}	
	.wsmenu-submenu-sub li:hover > .wsmenu-submenu-sub-sub{
		transform:none !important;
		-o-transform:none !important;
		-moz-transform: none !important;
		-webkit-transform:none !important;
		transform: none !important;
		-o-transform:none !important;
		-moz-transform: none !important;
		-webkit-transform: none !important;
		visibility:visible !important;
		opacity:1  !important;
	}
  header.header {
    background: none;
    background: var(--header_background);
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 7;
  }
  .scroll header.header {
    background: var(--header_background_scroll);
    box-shadow: 1px -2px 15px rgba(0,0,0,0.1);
  }
  .row_top {
    width: 100% !important;
    height: 80px;
    display: flex;
    justify-content: space-between;
  }
  .scroll .logo .svg{
    fill: rgb(8,90,162);
    fill: var(--main_color_hover);
  }
  .scroll #search .svg,
  .scroll .lang .svg{
    fill: #fff;
    fill: var(--menu_txt_scroll);
  }
  .scroll .lang select{
    color: #fff;
    color: var(--menu_txt_scroll);
  }
  a.logo img{
	  max-height: 50px;
    width: auto;
  }
  #navToggle {
    margin: 25px 20px;
  }

  #navToggle i {
    font-size: 22px;
  }

  #close {
    position: absolute;
    right: 0px;
    top: 10px;
  }

  .overlapblackbg.menuopen #close {
    position: absolute;
    right: 250px;
    top: 10px;
  }

  .menu_top_all .link-list li {
    white-space: normal;
  }

  .menu_top_all .link-list li a {
    line-height: 22px !important;
  }

  /* store */
  .store-view .store_box .swiper-slide{
    border-radius: 30px;
    justify-content: end;
    position: relative;
    overflow: hidden;
  }
  .store-view .swiper-slide .info{
    background: linear-gradient(180deg,#fff 10%,#ebebeb 90%);
    padding: 50px 30px;
    font-size: 20px;
  }
  .store-view .swiper-slide{
    flex-direction: column;
  }
  .store-view .swiper-slide .info, .store-view .store_box .swiper-slide > img{
    width: 100%;
  }
  .store-view .store-img .show-box-wrap .swiper-wrapper{
    border-radius: 30px;
  }
  /* //store */
  /*cartInfo-wrap*/
  #cartInfo-wrap {
    width: 100%;
    height: 100%;
    overflow: auto;
    padding-top: 65px;
    font-size: 15px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 3;
    display: none;
  }
  #cartInfo-wrap .wrapper {
    position: relative;
    z-index: 998;
    padding: 15px;
    background: #ffffff;
    color: #333;
    -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  }
  #cartInfo-wrap .row_ {
    position: relative;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #cartInfo-wrap div.img img {
    width: 50px;
    vertical-align: middle;
  }
  #cartInfo-wrap div.img span {
    margin-left: 10px;
    height: 36px;
    line-height: 36px;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 90px;
    vertical-align: middle;
    padding-right: 10px;
    text-align: left;
  }
  #cartInfo-wrap a.delete {
    background: url(../images/delete.png) center no-repeat;
    width: 18px;
    height: 18px;
    background-size: contain;
    position: absolute;
    right: 0;
    top:0;
  }
  #cartInfo-wrap div.price {
    line-height: 36px;
    padding: 0 15px;
  }
  #cartInfo-wrap div.price span{
    display: block;
    line-height: normal;
    margin-top: 5px;
    font-size: 13px;
  }
  #cartInfo-wrap .total {
    text-align: right;
    border-top: 1px solid #dddddd;
    padding-top: 20px;
  }
  #cartInfo-wrap .total span {
    font-size: 15px;
    color: #d90000;
    margin-right: 20px;
  }
  #cartInfo-wrap .total > a {
    padding: 8px 30px;
    font-size: 15px;
    text-align: center;
    display: inline-block;
    font-weight: 400;
    border-radius: 5px;
    color: #fff;
    background-color: #942905;
  }
  /*//cartInfo-wrap*/
  .menu_top_left{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: 20px;
  }
  .menu_top_left > div{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .menu_top_all{
  	margin-top: 45px;
    width: auto;
    float: left;
  }
  .menu_top_right {
    margin-right: 35px;
  }
  /*//menu*/
  .store-view .swiper-wrapper .info .name{
    font-weight: bold;
    font-size: 28px;
    border-bottom: 2px solid #d96d00;
  }
  .og_left1 img, .og_left2 img, .og_left3 img, .og_right1 img, .og_right2 img, .og_right3 img{
    max-width: 200px;
  }
  .og_left1{
    position: absolute;
    top: 30%;
    left: 0;
  }
  .og_left2{
    position: absolute;
    top: 40%;
    left: 0;
  }
  .og_left3{
    position: absolute;
    top: 50%;
    left: 0;
  }
  .og_right1{
    position: absolute;
    top: 35%;
    right: 0;
    text-align: right;
  }
  .og_right2{
    position: absolute;
    top: 45%;
    right: 0;
  }
  .og_right3{
    position: absolute;
    top: 50%;
    right: 0;
  }
  .index_prd{
    background: linear-gradient(180deg, transparent 30%, rgba(226, 209, 177, 0.5) 20%) center 45% / 100% 40% no-repeat;
  }

  .index_prd .thumbsSlider_out .swiper-slide img {
    display: none;
  }
  .index_prd .product_box .swiper-slide{
    align-items: center;
  }
  .product-img{
    min-height: 850px;
    position: relative;
  }
  .product-detail .info{
    line-height: 1.5;
  }
  .product-detail .info .title{
    position: relative;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 6px;
  }
  .product-detail .info .title::before{
    display: none;
  }
  .product-detail .info .txt{
    font-size: 16px;
  }
  .product-detail .swiper-pagination-bullet {
    display: none;
  }
  .index_news .title{
    font-weight: 500;
    text-align: left;
    font-size: 18px;
  }
  /* about */
  .story{
    background: url(../images/story_bg2.png) left top / 180px no-repeat,
    url(../images/story_bg1.png) right 25px / 180px no-repeat;
  }
  .story .txt{
    font-size: 18px;
    line-height: 2.5;
    font-weight: 350;
  }
  .choose{
    position: relative;
    background: 
    url(../images/ch_bg4.png) left bottom / 180px no-repeat,
    url(../images/ch_bg2.png) right 650px / 100px no-repeat,
    url(../images/ch_bg3_s.png) left bottom / 250px repeat-x,
    url(../images/ch-bg1.png) center center repeat;
  }
  .choose .right{
    font-family: "標楷體",  DFKai-sb, BiauKai;
    color: #fff;
    font-size: 30px;
    letter-spacing: 3px;
  }
  .ch_left{
    position: absolute;
    top: -100px;
    left: 0;
  }
  .ch_left img{
    width: 120px;
  }
  .ch_right{
    position: absolute;
    bottom: 20px;
    right: 0;
  }
  .right_txt {
    margin-top: 150px;
  }
  .left2 img{
    margin-top: 25px;
  }
  .about_list{
    padding: 10px;
    line-height: 2.5;
  }
  .about_list h4{
    color: #7f3f00;
    letter-spacing: 3px;
    font-weight: 400;
    font-size: 24px;
  }
  .about_list p{
    font-size: 18px;
  }
  /* //about */
  /*footer*/
  #fixed-bottom {
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
  }
  #fixed-bottom a {
    display: block;
    flex: auto;
    float: left;
    color: #fff;
    color: var(--white);
    text-align: center;
    font-size: 15px;
    padding: 2px 0;
    line-height: 36px;
  }
  #fixed-bottom a img {
    height: 36px;
    margin-right: 10px;
    vertical-align: middle;
  }
  #fixed-bottom a span {
    vertical-align: middle;
    color: #fff !important;
  }
  #fixed-bottom a.fixed_tel{
    background: #00bfff;
  }
  #fixed-bottom a.fixed_line{
    background: #03c302;
  }
  #fixed-bottom a.fixed_mail{
    background: #cb151d;
  }
  footer.footer{
    position: relative;
    float: left;
    width: 100%;
    background: none;
    background: var(--footer_background);
    background-size: cover;
    overflow: hidden;
    color: #fff;
    color: var(--footer_color);
  }
  footer .wrap_all{
    padding: 50px 0;
    margin: 0 auto;
    width: calc(100% - 40px);
  }
  footer.footer ul{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  footer.footer li{
    list-style-type: none;
    padding: 0 20px;
    position: relative;
    line-height: 1;
    margin-bottom: 30px;
  }
  footer.footer a{
    color: #333;
    color: var(--footer_a_color);
    line-height: 1;
    border-bottom: 1px solid transparent;
    padding-bottom: 5px;
  }
  footer.footer li a:hover{
    color: rgb(8,90,162);
    color: var(--footer_a_color_hover);
    border-bottom: 1px solid;
  }
  footer .copy-right {
    background: none;
    background: var(--footer_copy-right_background);
    color: #777;
    color: var(--footer_copy-right_color);
    padding: 20px 0;
    font-size: 15px;
    text-align: center;
    line-height: 1;
    position: relative;
  }
  footer .copy-right .design {
    display: block;
    width: 100%;
    color: #777;
    color: var(--footer_design_color);
    margin: 10px 0 0;
  }
  footer .copy-right > .wrap{
    width: calc(100% - 40px);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  footer .copy-right a{
    color: #777;
    color: var(--footer_design_a_color);
    font-size: 15px;
  }
  .footer .btn{
    background: rgb(8,90,162);
    background: var(--main_color_hover);
    color: #fff;
    font-size: 20px;
    border-radius: 0;
  }
  .footer .btn i{
    opacity: 0;
    transform: translateX(-25px);
    transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    position: absolute;
  }
  .footer .btn:hover i{
    opacity: 1;
    transform: translateX(5px);
  }
  /*//footer*/
  .lang {
    margin-right: 60px;
  }
  .banner_pages{
    position: relative;
    padding: 60px 0 20px;
  }
  footer.footer li span,
  footer.footer li img{
    padding-bottom: 5px !important;
  }
  #right-fixed {
    display: none;
  }
  .goTop {
    right: 10px;
  }
  .index_news {
    background: url(../images/news_bg1.png) left 20px / 180px no-repeat,
    url(../images/news_bg2.png) right 20px / 250px no-repeat;
  }
  /*fixed-bottom_n*/
  #fixed-bottom_n {
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 999;
    background: #e7e7b1;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  #fixed-bottom_n .fixed-box{
    display: flex;
    justify-content: space-between;
  }
  #fixed-bottom_n .fixed-box div{
    text-align: center;
    padding: 8px 2px;
  }
  #fixed-bottom_n .fixed-box div:not(:last-child){
    border-right: 2px solid #fff;
  }
  #fixed-bottom_n .fixed-box div a{
    display: inline-block;
    color: #fff;
    font-size: 14px;
    width: 100%;
    word-break: break-word;
  }
  #fixed-bottom_n .fixed-box div a > span{
    display: block;
  }
  #fixed-bottom_n .fixed-box div a > span:first-child{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 100%;
  }
  #fixed-bottom_n .fixed-box div a:hover > span:first-child{
    background: #fff;
  }
  #fixed-bottom_n .fixed-box div:nth-child(odd) a:hover > span:first-child{
    background: #f7f3ef;
  }
  /*//fixed-bottom_n*/
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .index{
    background: url(../images/bg.png) center 45% / contain no-repeat,
    url(../images/prd_bg.png) left 28% / contain no-repeat #f6f3ea;
  }
  .index_service .container{
    max-width: 98%;
  }
  .product-detail .info .title{
    font-size: 28px;
  }
  .product-detail .info .txt{
    font-size: 20px;
  }
  .banner .swiper-slide .banner_txt .banner_title {
    font-size: 65px;
  }
  .banner .swiper-slide .banner_txt .banner_title_second{
    font-size: 28px;
  }
  .banner .swiper-slide .banner_txt .banner_wtxt {
    font-size: 24px;
  }
  .wsmenu-list > li > a{
    position: relative;
		display: block;
		padding: 30px 8px;
		position: relative;
		font-size: 16px;
		letter-spacing: 1px;
		min-width: 100px;
		font-weight: 400;
	}
  .index_og .info{
    min-height: 100%;
  }
  .og_left1 img, .og_left2 img, .og_left3 img, .og_right1 img, .og_right2 img, .og_right3 img{
    max-width: 250px;
  }
  .og_left1{
    position: absolute;
    top: 35%;
    left: 0;
  }
  .og_left2{
    position: absolute;
    top: 40%;
    left: 0;
  }
  .og_left3{
    position: absolute;
    top: 50%;
    left: 0;
  }
  .og_right1{
    position: absolute;
    top: 35%;
    right: 0;
    text-align: right;
  }
  .og_right2{
    position: absolute;
    top: 45%;
    right: 0;
  }
  .og_right3{
    position: absolute;
    top: 50%;
    right: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1440px) {
  .prd_img{
    width: 55%;
    text-align: right;
  }
  .product-detail .info .title{
    font-size: 50px;
  }
  .product-detail .info .txt{
    line-height: 1.5;
  }
  .index_og{
    margin-top: 300px;
  }
  .choose{
    min-height: 65em;
  }
  .left2 img{
    margin-left: 0;
  }
  .choose .left_txt{
    min-width: 40%;
    text-align: left;
  }
  .choose .right{
    font-family: "標楷體",  DFKai-sb, BiauKai;
    color: #fff;
    writing-mode: vertical-lr;
    font-size: 36px;
    letter-spacing: 3px;
    padding-left: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner .swiper-slide .banner_txt .banner_title{
    font-size: 50px;
  }
  .banner .swiper-slide .banner_txt .banner_title_second{
    font-size: 28px;
  }
  .banner .swiper-slide .banner_txt .banner_wtxt{
    font-size: 20px;
  }
  .bg_title:after{
    opacity: 0;
  }
  .product_detail .page-title_d{
    font-size: 6vw;
  }
  .process_p .img{
    order: 2;
    height: 50vh;
  }
  .process_p .info_txt p{
    width: 100%;
  }
  .index_prd .show-box-wrap .swiper-slide img {
    max-width: 350px;
  }
}
@media only screen and (max-width: 767px){
  .banner .swiper-slide .banner_txt{
    width: 100%;
    max-width: 100%;
  }
  .banner .swiper-slide .banner_txt .banner_title{
    font-size: 30px;
  }
  .banner .swiper-slide .banner_txt .banner_wtxt{
    font-size: 18px;
  }
  .bg_title:before{
    font-size: 15vw;
  }
  .bg_title:after{
    font-size: 15vw;
    right: -5px;
    opacity: 0;
  }
  .index_contact:before{
    font-size: 15vw;
  }
  .index_contact:after{
    font-size: 15vw;
    left: auto;
  }
  .index_contact{
    font-size: 16px;
  }
  h2,.index_contact h2{
    font-size: 1.8rem;
  }
  .index_contact a{
    font-size: 18px;
  }
  .news_list .date_day{
    font-size: 2.5rem;
  }
  .news_list a h3{
    font-size: 1.5rem;
  }
  .process > div:not(:first-child):before{
    content: '\f0d7';
    top: -1.8rem;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    -moz-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    -o-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    color: #000;
  }
  .product_detail .page-title_d{
    font-size: 7vw;
  }
  .item_title h4{
    font-size: 20px;
  }
  .info_bg{
    font-size: 16px;
    border: 8px solid transparent;
    border-image: url(../images/bg_dot.jpg) 8 round;
  }
  .contact button{
    font-size: 24px;
  }
  .contact .page_arrow{
    width: 50px;
    height: 50px;
  }
  .process_p .img{
    order: 2;
    height: 50vh;
  }
  .process_p .row-title{
    width: 300px;
    height: 300px;
  }
  .process_p .info_txt p{
    width: 100%;
  }
  .index_og .title{
    color: #ff7272;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 5px;
  }
  .index_prd .show-box-wrap .swiper-slide img {
    max-width: 200px;
  }
  .product-img{
    min-height: 550px;
    position: relative;
  }
}
@media only screen and (max-width: 575px){
  .index{
    background: url(../images/bg.png) center 30% / contain no-repeat,
    url(../images/prd_bg.png) left 15% / contain no-repeat #f6f3ea;
  }
  .customized > div:not(:first-child):before{
    top: -1.8rem;
    left: 50%;
    -webkit-transform: translate(-50%, 0%) rotate(90deg);
    -moz-transform: translate(-50%, 0%) rotate(90deg);
    -ms-transform: translate(-50%, 0%) rotate(90deg);
    -o-transform: translate(-50%, 0%) rotate(90deg);
    transform: translate(-50%, 0%) rotate(90deg);
  }
  .banner .swiper-slide .banner_txt .banner_title{
    font-size: 40px;
    line-height: 2;
  }
  .banner .swiper-slide .banner_txt .banner_title_second{
    font-size: 22px;
  }
  .banner .swiper-slide .banner_txt .banner_wtxt{
    font-size: 18px;
    line-height: 1.8;
  }
  .product_list .info .title h3{
    font-size: 1.3rem;
  }
  .og_left1 img, .og_left2 img, .og_left3 img, .og_right1 img, .og_right2 img, .og_right3 img{
    max-width: 120px;
  }
  .og_left1{
    position: absolute;
    top: 18%;
    left: 0;
  }
  .og_left2{
    position: absolute;
    top: 30%;
    left: 0;
  }
  .og_left3{
    position: absolute;
    top: 40%;
    left: 0;
  }
  .og_right1{
    position: absolute;
    top: 18%;
    right: 0;
    text-align: right;
  }
  .og_right2{
    position: absolute;
    top: 35%;
    right: 0;
  }
  .og_right3{
    position: absolute;
    top: 40%;
    right: 0;
  }
  .story{
    background: url(../images/story_bg2.png) left top / 120px no-repeat,
    url(../images/story_bg1.png) right 25px / 120px no-repeat;
  }
  .choose .right{
    font-family: "標楷體",  DFKai-sb, BiauKai;
    color: #fff;
    font-size: 20px;
    letter-spacing: 3px;
  }
  .choose .txt{
    min-height: 580px;
  }
  .index_prd .show-box-wrap .swiper-slide img {
    max-width: 150px;
  }
  .product-detail .info{
    line-height: 1.2;
  }
  .product-detail .info .title{
    font-size: 15px;
    letter-spacing: 0px;
  }
  .product-detail .info .txt{
    font-size: 13px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1370px) {
  a.logo .svg{
    width: 200px;
  }
  .wsmenu-list > li > a{
    padding: 20px 0;
    min-width: 120px;
  }
  .story{
    background: url(../images/story_bg2.png) left top / 150px no-repeat,
    url(../images/story_bg1.png) right 25px / 150px no-repeat;
  }
}
@-webkit-keyframes process_icon{
  0% {
    transform: rotate(0deg);
    transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
  }
10% {
    transform: rotate(-12deg);
    transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
}

20% {
    transform: rotate(12deg);
    transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
}

28% {
    transform: rotate(-10deg);
    transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
}

36% {
    transform: rotate(10deg);
    transition-timing-function: cubic-bezier(0.755, .5, .855, .06)
}

42% {
    transform: rotate(-8deg);
    transition-timing-function: cubic-bezier(0.755, .5, .855, .06)
}

48% {
    transform: rotate(8deg);
    transition-timing-function: cubic-bezier(0.755, .5, .855, .06)
}

52% {
    transform: rotate(-4deg);
    transition-timing-function: cubic-bezier(0.755, .5, .855, .06)
}

56% {
    transform: rotate(4deg);
    transition-timing-function: cubic-bezier(0.755, .5, .855, .06)
}

60% {
    transform: rotate(0deg);
    transition-timing-function: cubic-bezier(0.755, .5, .855, .06)
}

100% {
    transform: rotate(0deg);
    transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
}
}@keyframes process_icon{
  0% {
    transform: rotate(0deg);
    transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
  }
10% {
    transform: rotate(-12deg);
    transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
}

20% {
    transform: rotate(12deg);
    transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
}

28% {
    transform: rotate(-10deg);
    transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
}

36% {
    transform: rotate(10deg);
    transition-timing-function: cubic-bezier(0.755, .5, .855, .06)
}

42% {
    transform: rotate(-8deg);
    transition-timing-function: cubic-bezier(0.755, .5, .855, .06)
}

48% {
    transform: rotate(8deg);
    transition-timing-function: cubic-bezier(0.755, .5, .855, .06)
}

52% {
    transform: rotate(-4deg);
    transition-timing-function: cubic-bezier(0.755, .5, .855, .06)
}

56% {
    transform: rotate(4deg);
    transition-timing-function: cubic-bezier(0.755, .5, .855, .06)
}

60% {
    transform: rotate(0deg);
    transition-timing-function: cubic-bezier(0.755, .5, .855, .06)
}

100% {
    transform: rotate(0deg);
    transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
}
}
