@charset "utf-8";
img{
  max-width: 100%;
}
/* CSS Document */
.pageHeader{ width:100%; margin:0 auto 0 auto; padding:10px 2%; height:auto; position: relative; 
display: flex;
  justify-content: space-between; align-items: center; 
}
.pageHeader h1{ padding:0 0px 0 0; }
.pageHeader h1 img{ height:60px; }
.ovhe{-webkit-transition: all 0.5s ease; transition: all 0.5s ease;}
.pageHeader h1 img.ovhe{ height:45px; -webkit-transition: all 0.5s ease; transition: all 0.5s ease;}
.pageHeader .menubox{
display: flex;
  justify-content: flex-end; align-items: center;
}
.pageHeader .menubox .menu{
display: flex;
  justify-content: flex-end; align-items: center;
}
.pageHeader .menubox .smenu{
display: flex;
  justify-content: flex-end; align-items: center;
}
.pageHeader .menubox .menu li{ margin:0 0px 0px 0; padding:0 20px; list-style:none; font-size: 20px; color:#000; line-height:2; 
  display: inline-block; font-weight: bold;
}
.pageHeader .menubox .menu li a{ color:#000; }
.pageHeader .menubox .menu li a:hover{ color:#277037; }
.pageHeader .menubox .drop {
  padding: 0px 0 0 0px;
  margin: 0 0 0 0px;
}

.pageHeader .menubox .dropdown {
  float:right;
}

.pageHeader .menubox .dropdown .dropbtn {
  font-size: 15px;
  color: #000; font-weight: bold;
  border: none;
  outline: none;
  padding: 0px 0px 0px 30px;
  margin: 0 0 0 0px; 

  display: flex;
  justify-content: flex-start; align-items: center;
}
.pageHeader .menubox .dropdown .dropbtn a{
  color: #000; 
}
.pageHeader .menubox .dropdown .dropbtn img {
  margin: 0 5px 0 0; 
}

.pageHeader .menubox .dropdown .dropdown-content {
  display: none;
  position: absolute;
  min-width: 120px; 
  z-index: 3;
  margin: 0px 0px 0 0px;
  padding: 0px 0px 0px 0px;
}

.pageHeader .menubox .dropdown .dropdown-content a {
  color: black;
  padding: 5px 0px 5px 53px;
  text-decoration: none;
  display: block;
  text-align: left;
  font-size: 15px;
  color: #000; font-weight: bold;
}

.pageHeader .menubox .dropdown .dropdown-content a:hover {
  color: #277037;
}

.pageHeader .menubox .dropdown:hover .dropdown-content {
  display: block;
}

/* -search-*/
.search {
  width: 160px;
  height: auto;
  overflow: hidden;
  padding: 0px 0 0 0px;
  margin: 0 0 0 22px;
  border-bottom: 1px solid #cdcdcd;
  float:right;
}
.search .shbox {
  padding: 0px 0px;
  width: 100%;
  height: auto;
  overflow: hidden;
  border: none;
  background: none;
}

.search .shbox .sbox {
  display: block;
  margin: 0;
  width: calc(100% - 30px);
  font-size: 14px;
  color: rgba(0, 0, 0, 0.9);
  line-height: 36px;
  height: 36px;
  padding: 0px 0px 0px 0px;
  border: none;
  float: left;
  outline: none;
  background: none;
}

.search .shbox input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: rgba(0, 0, 0, 0.4);
  opacity: 1; /* Firefox */
}

.search .shbox input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: rgba(0, 0, 0, 0.4);
}

.search .shbox input::-ms-input-placeholder { /* Microsoft Edge */
  color: rgba(0, 0, 0, 0.4);
}

.search .shbox .sbtn {
  background: url(../images/search.png) no-repeat;
  width: 16px;
  height: 16px;
  display: block;
  float: left;
  margin: 8px 0px 0px 0px;
  padding: 0px 0px;
  font: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

@media only screen and (min-width: 0px) and (max-width: 1100px) {
.pageHeader .menubox{
display: none; 
}
.pageHeader .menubox .menu li{ padding:0 16px; 
}
}

@media only screen and (min-width: 0px) and (max-width: 600px) {
.pageHeader h1 img{ height:50px; }
}

/* -mobile menu-*/
.mobile_menu{ display: none;}
@media only screen and (min-width: 0px) and (max-width: 1100px){
.mobile_menu{ display: block;}
/*hamburger menu*/
.hamburger-menu {
  z-index:99999999;
  position: absolute;
    top: 15px;
    right: 5%;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.bar,
.bar:after,
.bar:before {
  width: 40px;
  height: 3px;
}

.bar {
  position: relative;
  transform: translateY(25px);
  background-color: #083a6a;
  transition: all 0ms 300ms;
}

.bar.animate {
  background: rgba(255, 255, 255, 0); 
}

.bar.animate:before {
  background-color: #fff;
}

.bar.animate:after {
  background-color: #fff;
}

.bar:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 10px;
  background-color: #083a6a;
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar:after {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  background-color: #083a6a;
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar.animate:after {
  top: 0;
  transform: rotate(45deg);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);;
}

.bar.animate:before {
  bottom: 0;
  transform: rotate(-45deg);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);;
}
/*nav menu*/
.show {
  left:0%;
  opacity:1;
  transition: .3s ease;
}

.hide {
  opacity:0;
  left:100%;
  transition: .3s ease;
}

.mobile-nav {
  background: rgba(8,58,106,0.9);
  position:fixed;
  top:0;
  padding: 90px 0px 0 0px;
  width:100%;
  height:100%;
  overflow-y: auto;
  transition: .3s ease;
  z-index: 99;
  /*  transition: opacity .5s ease;
  -moz-transition: opacity .5s ease;
  -webkit-transition: opacity .5s ease;
  transition:left .5s ease-in-out;*/
}
}

.lau-btn {
    width: 100%;
    margin: 20px 0px; padding: 0 0 0 0px;
    display: flex;
  justify-content: center;
}
.lau-btn a {
    color: #4b966f;
    font-size: 15px;
    border: 1px solid #4b966f;
    padding: 9px 4%;
    margin: 0 1%;
    text-align: center;
}
.lau-btn .current {
    background-color: #4b966f;
    color: #fff;
    border: none;
}

#m-search{
    position: relative;
    width: 100%;
    margin: 0 auto 10px auto;
    padding: 0 0px 0 0px;
}
#m-search .ico-search{
    position: absolute;
    left: 20px;
    z-index: 10;
    top: 15px;
}
#m-search label{
    display: none;
}
#m-search input[type=search] {
    background-position-x: 7px;
    background-position-y: 11px;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
    padding-left: 38px;
    background: rgba(255, 255, 255, 0.2);
    cursor: auto;
    padding: 15px 10px 15px 10px;
    opacity: 1;
    padding-left: 50px;
    border: none;
    border-radius: 0;
    left: calc(50% - 140px );
    color: #fff;
    font-size: 1em;
}

#m-search input:-moz-placeholder {
    color: transparent;
}
#m-search input::-webkit-input-placeholder {
  color: transparent;
}
  
/* -首頁------------------------------------------------------------------------------------------------------*/
/* service */
.ind_ser_bg{ margin:0px 0 0px 0px; padding:8% 0px; width: 100%; 
background: #c7e799; /* Old browsers */
background: -moz-linear-gradient(top, #c7e799 0%, #4b966f 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #c7e799 0%,#4b966f 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #c7e799 0%,#4b966f 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c7e799', endColorstr='#4b966f',GradientType=0 ); /* IE6-9 */
}
.ind_serbox{ margin:0px auto; padding:0px 0px 0px 0px; max-width:1720px; width: 90%;}
.ind_serbox .ind_ser{ margin:0px 0px 0px 0px; padding:0px; width: 100%;}
.ind_serbox .ind_ser .pic{ width: 47%; float: left; padding:0px 0px 18px 0px;}
.ind_serbox .ind_ser .pic img{ width:100%; box-shadow: 10px 8px rgba(255,255,255,0.3);}
.ind_serbox .ind_ser .txtbox{ width: 47%; float: right; padding:8% 0px 0px 0px; }
.ind_serbox .ind_ser .txtbox h2{ width: 100%; font-weight: bold; font-size: 30px; color: #fff; margin:0px 0px 20px 0px;}
.ind_serbox .ind_ser .txtbox p{ width: 100%; font-size: 18px; color:rgba(255,255,255,0.8); line-height: 1.5; margin:0px 0px 40px 0px;
overflow:hidden;
white-space: nowrap;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
white-space: normal;
}
@media only screen and (min-width: 0px) and (max-width: 1200px) {
.ind_ser_bg{ padding:8% 0px 90px 0px;}
} 
@media only screen and (min-width: 0px) and (max-width: 900px) {
.ind_serbox .ind_ser .pic{ width:calc(100% - 10px); }
.ind_serbox .ind_ser .txtbox{ width: 100%; }
}

.shortcut {  width:calc(100% - 340px); margin: 40px auto 0 auto; padding:0px 0 0px 0;}
.shortcut .slick-prev:before, .shortcut .slick-next:before { font-family: 'Font Awesome 5 Free';
  font-weight: 900; color: #fff; opacity: 1; font-size: 24px;}
.shortcut .slick-prev:before{ content: "\f104" }
.shortcut .slick-next:before{ content: "\f105" }
.shortcut .slick-prev{ width: 56px; height: 81px; top: 40%; border: 2px solid #fff; left: -170px;}
.shortcut .slick-next{ width: 56px; height: 81px; top: 40%; border: 2px solid #fff; right: -170px;}
@media only screen and (min-width: 0px) and (max-width: 1500px) {
.ind_serbox .ind_ser .txtbox{ padding:3% 0px 0px 0px; }
}  
@media only screen and (min-width: 1280px) and (max-width: 1680px) {
.shortcut {  width:calc(98% - 160px); }
.shortcut .slick-prev{ left: -80px;}
.shortcut .slick-next{ right: -80px;}
}
@media only screen and (min-width: 0px) and (max-width: 1279px) {
.shortcut { width:100%; }
}

.shortcut .slick-list, .shortcut .slick-track {
  height: 100%;
}

.shortcut .slick-item {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.shortcut .slick-dots {
  bottom: -60px;
  display: flex;
  justify-content: center;
}

.shortcut .slick-dots li {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  width: auto;
  height: auto;
}

.shortcut .slick-dots li+li {
  margin-left: 15px;
}

.shortcut .slick-dots li button {
  background-color: #fff;
  opacity: 1;
  display: block;
  width: 13px;
  height: 13px;
  border: none;
  padding: 0;
  border-radius: 50%;
}

.shortcut .slick-dots li.slick-active button {
  background-color: #ffea00;
  opacity: 1;
}

.shortcut .slick-dots li button:before {
  font-size: 0;
}
@media only screen and (min-width: 0px) and (max-width: 900px) {
.shortcut .slick-prev:before, .shortcut .slick-next:before{ display: none; }
}

/* news */
.ind_newsbox {
  width: 100%;
  background: url(../images/news_bg.jpg) no-repeat top left;
  padding: 7% 0 6% 0; height:auto; overflow: hidden;
  background-size: cover;
  background-attachment: fixed;
}
.ind_news{ margin:0px 0 0px 0px; width:100%; }
.ind_news ul{ margin:30px 0 0px 0px; padding: 0; width:100%; list-style:none;
display: flex;
  justify-content: space-between;
}
.ind_news li{ margin:20px 0px 0px 0px; padding:0px 0px 20px 0px; width:calc(100% / 3 - 4%); list-style:none; transition: all 0.6s;}
.ind_news li:hover {transform: translate(0px, -20px); }
.ind_news li .pic{ margin:0px 0px 0px 0px; padding:0px 0px 8px 0px; width:100%; position: relative;}
.ind_news li .pic img{ width:100%; box-shadow: 10px 8px rgba(0,0,0,0.1);}

.ind_news li .date{ width:100%; height:auto; margin:15px auto 0px auto; font-size: 15px; color: #277037; font-weight: bold;}
.ind_news li p{ width:100%; height:auto; font-size: 18px; color: #000; padding:0px 0px 0 0px; margin:10px auto 0px auto; font-weight: bold; line-height: 1.5;
overflow:hidden;
white-space: nowrap;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
white-space: normal;
}
.ind_news li p a{ color: #494949;}
.ind_news li p a:hover{ color: #e68395; }
@media only screen and (min-width: 830px) and (max-width: 1000px) {
.ind_news li{ width:calc(100% / 3 - 3%); }
}
@media only screen and (min-width: 0px) and (max-width: 829px) {
.ind_news ul{ display: block;}
.ind_news li{ width:100%; }
}

/* 定義區塊 */
.box-1{ max-width:1400px; width: 90%; margin:0px auto; padding:0px 0;}
.box-2{ max-width:1380px; width: 90%; margin:0px auto; padding:0px 0; height:auto; }
.box-3{ max-width:1220px; width: 90%; margin:0px auto; padding:0px 0; height:auto; }
.content { width: 100%; margin: 6% auto; height: auto; overflow: hidden;}
.left{ width:280px; margin:0px 0px 0px 0; float:left; }
.right{ width:calc(100% - 340px); margin:0px 0px 0px 60px; float:right; }
.main_top{
  height:auto; overflow: hidden; padding: 85px 0px 0px 0px;
}
@media only screen and (min-width: 0px) and (max-width: 600px) {
.main_top{
  padding: 75px 0px 0px 0px;
} 
}
@media only screen and (min-width: 0px) and (max-width: 1200px) {
.box-1{ width: 100%; }
}
@media only screen and (min-width: 0px) and (max-width: 1100px) {
.left{ opacity: 0;
position: fixed;
pointer-events: none; }
.right{ width:100%; margin:0px 0px 0px 0px;}
}

.user_editor{ width:100%; height:auto; overflow: hidden; position: static !important;}
.user_editor img{ max-width:100% !important; height:auto !important;  }
.user_editor table{ width:100% !important;  }
.line-height{ line-height:2;}

.text_center{text-align:center;}
.text_right{text-align:right;}

.title01{
  margin:0px 0px 0px 0px;
  padding: 0 0px;
  width: 100%;
  font-weight: bold;

  display: flex;
  justify-content: space-between;
  align-items: center;
}
.title01 span{
  font-size: 46px; color: #083a6a; letter-spacing: 1px; padding: 0 0px;
}
.title01 em{
  width: 28%;
  height: 3px;
  background: #083a6a;
}

.title02{
  margin:0px 0px 0px 0px;
  padding: 0 0px;
  width: 100%;
  font-weight: bold;

  display: flex;
  justify-content: space-between;
  align-items: center;
}
.title02 span{
  font-size: 46px; color: #083a6a; letter-spacing: 1px; padding: 0 0px;
}
.title02 em{
  width: 40%;
  height: 3px;
  background: #083a6a;
}
@media only screen and (min-width: 0px) and (max-width: 1340px) {
.title01 span, .title02 span{
  font-size: 40px; 
}
}
@media only screen and (min-width: 0px) and (max-width: 1024px) {
.title01 em, .title02 em{
  display: none;
}
}

.title04 {
    width: 100%;
    font-size: 34px;
    font-weight: 600;
    color: #000;
    padding-bottom: 0px;
    margin-bottom: 25px;
    border-bottom: 1px solid #cdcdcd;
}

h2.title03 span {
  font-size: 28px; font-weight: normal; margin: 0px 0px 10px 0px; padding: 0; font-weight: bold;
}
h2.title03 span em{
  color: #277037; font-style: normal;
}

.title05{
  margin:0px 0px 25px 0px;
  padding: 0 0px;
  width: 100%;
  font-weight: bold;


  position: relative;
}
.title05 span{
  font-size: 38px; color: #000; letter-spacing: 1px; padding: 0 30px 0px 0px; background: #fff;
}
.title05 em{
  width: 100%;
  height: 3px;
  background: #000; top: 50%;
  position: absolute;
}

.title06 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    position: relative;
}
.title06:before {
    content: "";
    position: absolute;
    width: 60px;
    border-top: 2px solid #000;
    bottom: -15px;
}

/* banner */
.index-banner {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin: auto;
  padding: 0px 0 0 0;
}

.index-banner img {
  width: 100%;
}

.index-banner .for_PC {
  display: block;
  width: 100%;
}

.index-banner .for_mobile {
  display: none;
}

.index-banner .for_PC img, .index-banner .for_mobile img {
  width: 100%;
}

.index-banner .index-banner-slick {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.index-banner .index-banner-slick .slick-list, .index-banner .index-banner-slick .slick-track {
  height: 100%;
}

.index-banner .index-banner-slick .slick-item {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.index-banner .index-banner-slick .slick-dots {
  bottom: 60px;
  display: flex;
  justify-content: center;
}

.index-banner .index-banner-slick .slick-dots li {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  width: auto;
  height: auto;
}

.index-banner .index-banner-slick .slick-dots li+li {
  margin-left: 15px;
}

.index-banner .index-banner-slick .slick-dots li button {
  background-color: #fff;
  opacity: 1;
  display: block;
  width: 13px;
  height: 13px;
  border: none;
  padding: 0;
  border-radius: 50%;
}

.index-banner .index-banner-slick .slick-dots li.slick-active button {
  background-color: #ffea00;
  opacity: 1;
}

.index-banner .index-banner-slick .slick-dots li button:before {
  font-size: 0;
}


.index-banner .index-banner-slick .slick-prev:before, .index-banner .index-banner-slick .slick-next:before { font-family: 'Font Awesome 5 Free';
  font-weight: 900; color: #fff; opacity: 1; font-size: 24px;}
.index-banner .index-banner-slick .slick-prev:before{ content: "\f104" }
.index-banner .index-banner-slick .slick-next:before{ content: "\f105" }
.index-banner .index-banner-slick .slick-prev{ width: 56px; height: 81px; top: 40%; left: 0; background: rgba(0,0,0,0.0); z-index: 9;}
.index-banner .index-banner-slick .slick-next{ width: 56px; height: 81px; top: 40%; right: 0; background: rgba(0,0,0,0.0); z-index: 9;}

@media only screen and (min-width: 0px) and (max-width: 899px) {
  .index-banner .for_PC {
    display: none;
  }
  .index-banner .for_mobile {
    display: block;
    width: 100%;
  }
.index-banner .index-banner-slick .slick-prev, .index-banner .index-banner-slick .slick-next{ width: 40px; height: 58px; }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .index-banner .index-banner-slick .slick-dots {
    bottom: 15px;
  }
  .index-banner .index-banner-slick .slick-dots li+li {
    margin-left: 10px;
  }
  .index-banner .index-banner-slick .slick-dots li button {
    width: 10px;
    height: 10px;
  }
}

.page-banner {
  background-size: cover;
  position: relative;
  width: 100%;
  margin-top: 0;
  padding: 0;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-banner:before {
  content: '';
  position: absolute;
  bottom: 0px;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0px 0px 0px 0px;
  background: rgba(0, 0, 0, 0.25);
}

.page-banner h2 {
  color: #fff;
  text-align: center;
  font-size: 46px;
  line-height: 2;
  font-weight: bold;
  letter-spacing: 2px;
  position: absolute;
  top: 45%;
}

@media only screen and (min-width: 0px) and (max-width: 1000px) {
  .page-banner {
    
  }
}

/* 麵包屑 */
.breadbox {
  margin: 0px 0 0px 0;
  padding: 10px 0 10px 0;
  width: 100%;
background: #4b966f; /* Old browsers */
background: -moz-linear-gradient(left, #4b966f 0%, #c7e799 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(left, #4b966f 0%,#c7e799 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right, #4b966f 0%,#c7e799 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4b966f', endColorstr='#c7e799',GradientType=1 ); /* IE6-9 */
}

.breadbox .bread-crumbs {
  max-width:1380px; width: 90%;
  margin: 0px auto;
}

.breadbox .bread-crumbs li {
  display: inline-block;
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  font-weight: 900;
}

.breadbox .bread-crumbs li a {
  color: #fff;
}

.breadbox .bread-crumbs li a:hover {
  color: #ffea00;
}

.breadbox .bread-crumbs li:after {
  content: "/";
  margin: 0 5px 0 10px;
}

.breadbox .bread-crumbs li:last-child:after {
  display: none;
}

/* 分類 */
.classLink {
  margin: 0px 0 30px 0;
  padding: 0;
  list-style: none; text-align: center;
}

.classLink li {
  display: inline-block;
  margin: 10px 0 10px 0;
}

.classLink li a {
  display: block;
  margin: 0 5px 0px 5px;
  font-size: 16px;
  padding: 10px 20px;
  line-height: 1;
  color: #222;
  font-weight: 900;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}

.classLink li a.current {
  color: #fff;
  background: #a51801;
}

.classLink li a:hover {
  color: #fff;
  background: #a51801;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .classLink li a {
    font-size: 15px;
    padding: 10px 10px;
  }
}

/* -NEWS-----------------------------------------------------------------------------------------------------*/
.news{ margin:0px 0 0px 0px; width:100%; }
.news ul{ margin:30px 0 0px 0px; padding: 0; width:100%; list-style:none;
display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.news ul:after {
    content: "";
    width:calc(100% / 3 - 4%);
}
.news li{ margin:20px 0 0px 0; padding:0px 0px 20px 0px; width:calc(100% / 3 - 4%); list-style:none; transition: all 0.6s;}
.news li:hover {transform: translate(0px, -20px); }
.news li .pic{ margin:0px 0px 0px 0px; padding:0px 0px 8px 0px; width:100%; position: relative;}
.news li .pic img{ width:calc(100% - 10px); box-shadow: 10px 8px rgba(0,0,0,0.1);}

.news li .date{ width:100%; height:auto; margin:15px auto 0px auto; font-size: 15px; color: #277037; font-weight: bold;}
.news li p{ width:100%; height:auto; font-size: 18px; color: #000; padding:0px 0px 0 0px; margin:10px auto 0px auto; font-weight: bold; line-height: 1.5;
overflow:hidden;
white-space: nowrap;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
white-space: normal;
}
.news li p a{ color: #494949;}
.news li p a:hover{ color: #e68395; }
@media only screen and (min-width: 830px) and (max-width: 1000px) {
.news li{ width:calc(100% / 3 - 3%); }
}
@media only screen and (min-width: 0px) and (max-width: 829px) {
.news ul{ display: block;}
.news li{ width:100%; }
}

.news_view{ width:100%; height:auto; overflow: hidden; margin:0px 0px 30px 0px;}
.news_view .title{
  border-bottom: 3px solid #000; height:auto; overflow: hidden; 
  width:100%; padding:15px 0px 15px 0px; margin:0 0 20px 0;
  list-style:none; line-height:1.5; 
}
.news_view .title .date{
  width:100%; margin:5px 0px 0 0; 
color: #277037; font-weight: bold;
}
.news_view .title .tt{
  width:100%;
  font-size: 30px;
  color: #000;
  font-weight: bold;
}

/* -PRODUCT SERVICE------------------------------------------------------------------------------------------*/
.pd{ margin:0px 0 0px 0px; width:100%; }
.pd ul{ margin:30px 0 0px 0px; padding: 0; width:100%; list-style:none;
display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.pd ul:after {
    content: "";
    width:calc(100% / 3 - 2%);
}
.pd li{ margin:20px 0 0px 0; padding:0px 0px 20px 0px; width:calc(100% / 3 - 2%); list-style:none; transition: all 0.6s;}
.pd li:hover {transform: translate(0px, -20px); }
.pd li .pic{ margin:0px 0px 0px 0px; padding:0px 0px 8px 0px; width:100%; position: relative;}
.pd li .pic img{ width:calc(100% - 10px); box-shadow: 10px 8px rgba(0,0,0,0.1);}
.pd li p{ width:100%; height:auto; font-size: 20px; color: #000; padding:0px 0px 0 0px; margin:10px auto 0px auto; font-weight: bold; line-height: 1.5;
overflow:hidden; text-align: center;
white-space: nowrap;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
white-space: normal;
}
.pd li p a{ color: #494949;}
.pd li p a:hover{ color: #e68395; }
@media only screen and (min-width: 0px) and (max-width: 829px) {
.pd ul{ display: block;}
.pd li{ width:100%; }
}

.pd_search{ margin:0px 0 0px 0px; width:100%; }
.pd_search ul{ margin:30px 0 0px 0px; padding: 0; width:100%; list-style:none;
display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.pd_search ul:after {
    content: "";
    width:calc(100% / 4 - 2%);
}
.pd_search li{ margin:20px 0 0px 0; padding:0px 0px 20px 0px; width:calc(100% / 4 - 2%); list-style:none; transition: all 0.6s;}
.pd_search li:hover {transform: translate(0px, -20px); }
.pd_search li .pic{ margin:0px 0px 0px 0px; padding:0px 0px 8px 0px; width:100%; position: relative;}
.pd_search li .pic img{ width:calc(100% - 10px); box-shadow: 10px 8px rgba(0,0,0,0.1);}
.pd_search li p{ width:100%; height:auto; font-size: 20px; color: #000; padding:0px 0px 0 0px; margin:10px auto 0px auto; font-weight: bold; line-height: 1.5;
overflow:hidden; text-align: center;
white-space: nowrap;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
white-space: normal;
}
.pd_search li p a{ color: #494949;}
.pd_search li p a:hover{ color: #e68395; }
@media only screen and (min-width: 830px) and (max-width: 1025px) {
.pd_search ul:after {
    content: "";
    width:calc(100% / 3 - 2%);
}.pd_search li{ width:calc(100% / 3 - 2%); }
}
@media only screen and (min-width: 0px) and (max-width: 829px) {
.pd_search ul{ display: block;}
.pd_search li{ width:100%; }
}

/* -內頁-*/
.proview_topbox{
  width:100%;
  height:auto; overflow: hidden;
  margin:0px 0px 30px 0px;
  }
.proview_topbox .left_img{
  width:400px; 
  float:left;
  margin:0px 0px 0px 0px; padding:0; list-style:none;
  }

/* -產品照片-*/
ul.product-slick{
  width:100%; margin:0px 0px 0px 0px; padding:0; list-style:none;
  }
.product-slick li{
  width:100%; margin:0px 0px 0px 0px; padding:0; list-style:none;
  }
.product-slick li img{
  width:100%;
  }
ul.product-nav{
  width:calc(100% + 10px); margin:10px -5px 0px -5px; padding:0; list-style:none;
}
.product-nav {
  width:100%;
  margin:0px 0px 0px 0px; 
}
.product-nav li {
  width:calc(100% / 3 - 10px);
  margin:0px 5px 5px 5px; padding:0;
  list-style:none;


  cursor: pointer;
}
.product-nav li img{
  width:100%;
  }

/* -右邊資訊-*/
.proview_topbox .right_info{
  width:calc(100% - 400px - 3%);
  padding:0px 0px 0px 3%;
  float:right;
  height:auto; overflow: hidden;
  }
.proview_topbox .right_info .name{
  width:100%;
  padding:0px 0px; 
  font-size: 32px; color: #000;
  font-weight: 900; line-height:1.5;
}
.proview_topbox .right_info .txt{
  width:100%;
  padding:20px 0px 0px 0px;
  font-size: 18px; color: #000; line-height:1.5;
}

.proview_topbox .right_info .info_list{
  width:100%; 
  margin:5px 0px 5px 0px;
  } 
.proview_topbox .right_info .info_list .dtt{
  width:100%; padding:0px 0px 10px 0px; 
  font-size: 20px; color: #277037; line-height:1.5; font-weight: bold;
  }
.proview_topbox .right_info .info_list .spec{
  width:100%; 
  margin:0px 0px 0px 5px; padding:0px 0px; font-size: 18px; color: #000; line-height:1.5;
  }

.proview_topbox .right_info .info_line{
  width:100%; 
  padding:0px 0px 0px 0px;
  margin:20px 0px 20px 0px;
  border-top:1px solid #cfcfcf;
  }
@media only screen and (min-width: 0px) and (max-width: 900px){
.proview_topbox .left_img{
  width:100%;
  }
.proview_topbox .right_info{
  width:100%;
  padding:0px 0px 0px 0px;
  }
}

.proview_topbox02{
  width:100%;
  padding:20px 0px 30px 0;
  height:auto; overflow: hidden; border-top: 1px solid #cfcfcf;
  }
.proview_topbox02 .dtt{
  width:100%; padding:0px 0px 10px 0px; 
  font-size: 20px; color: #277037; line-height:1.5; font-weight: bold;
  }

.download{ margin:0px 0 0px 0px; width:100%; }
.download ul{ margin:0px 0 0px 0px; padding: 0; width:100%; list-style:none;
display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.download ul:after {
    content: "";
    width:calc(100% / 2 - 1%);
}
.download li{ margin:0px 0 1% 0; padding:10px; width:calc(100% / 2 - 1%); list-style:none; transition: all 0.6s; border: 1px solid #cfcfcf; background: #fff;}
.download li:hover {transform: translate(0px, -20px); }
.download li .pic{ margin:0px 0px 0px 0px; padding:0px 0px 0px 0px; width:100px; position: relative; float: left;}
.download li .pic img{ width:100%; }

.download li p{ width:calc(100% - 100px); height:auto; font-size: 18px; color: #000; padding:0px 0px 0 10px; margin:10px auto 0px auto; line-height: 1.5; float: left;
overflow:hidden;
white-space: nowrap;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
white-space: normal;
}
.download li p a{ color: #494949;}
.download li p a:hover{ color: #e68395; }
@media only screen and (min-width: 0px) and (max-width: 855px){
.download ul:after {
    width:100%;
}
.download li{ width:100%; margin:0px 0 10px 0; }
}

/* -CONTACT--------------------------------------------------------------------------------------------------*/
.store{ margin:0px 0 0px 0px; padding:0; width:100%; height:auto; overflow: hidden;}
.store ul{ margin:0px 0 0px 0px; padding:0px; list-style:none;
display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.store ul:after {
    content: "";
    width:calc(100% / 3 - 3%);
}
.store ul li { width:calc(100% / 3 - 3%); background:#f1f1f1; padding:3%; margin:0px 0px 3% 0px; list-style:none;}
.store ul li .sbox{ width: 100%; margin:0px 0px 10px 0px; padding:0px 0px 0px 0px; font-size: 18px; color:#333; line-height:1.5; height:auto; overflow: hidden;}
.store ul li .sbox h2 a{ color:#666;}
.store ul li .sbox a{ color:#333;}
.store ul li .sbox a:hover{ color:#277037;}
@media only screen and (min-width: 651px) and (max-width: 1250px){
.store ul:after {
    width:calc(100% / 2 - 3%);}
.store ul li { width:calc(100% / 2 - 3%);}
}

@media only screen and (min-width: 0px) and (max-width: 650px){
.store ul:after {
    width:100%;
}
.store ul li { width:100%;}
}

/* -button---------------------------------------------------------------------------------------------------*/
.btn-style01 {
  padding: 12px 40px;
  margin: 0px 0px 0px 0px;
  width: auto;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid #fff;
  letter-spacing: 1px;
}
.btn-style01:hover {
  background: #277037;
}

.btn-style02 {
  padding: 12px 40px;
  margin: 0px 0px 0px 0px;
  width: auto;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  border: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #277037; 
  letter-spacing: 1px;
}
.btn-style02:hover {
  background: #083a6a;
}

.btn-style03 {
  padding: 12px 40px;
  margin: 0px 5px 0px 0px;
  width:calc(50% - 5px);
  text-align: center;
  text-decoration: none;
  display: block; float: left;
  font-size: 18px;
  font-weight: bold;
  color: #000;
  border: 2px solid #d9d9d9;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #fff; 
  letter-spacing: 1px;
}
.btn-style03:nth-child(2) {
  margin: 0px 0px 0px 5px;
  width:calc(50% - 5px);
}
.btn-style03:hover {
  background: #083a6a; color: #fff;
  border: 2px solid #083a6a;
}

/*page*/
div.page {
  font-size: 16px;
  padding: 0px;
  margin: 30px 0px 0px 0px;
  text-align: center;
  width: 100%;
  height: auto;
  overflow: hidden;
}

div.page a {
  padding: 4px 8px;
  margin: 2px;
  color: #000;
  background: #fff;
  text-decoration: none;
  display: inline-block;
  border: 1px solid #000;
}

div.page a:hover {
  color: #fff;
  background: #277037;
  border: 1px solid #277037;
}

div.page .current {
  padding: 4px 8px;
  color: #fff;
  background: #277037;
  border: 1px solid #277037;
}

/*404*/
.e404box {
  width: 90%;
  max-width: 700px;
  background: #FFF;
  padding: 50px 30px;
  margin: 10% auto 0 auto;
  display: block;
  border-radius: 5px;
  -moz-box-shadow: 3px 3px 2px rgba(0%, 0%, 0%, 0.1);
  -webkit-box-shadow: 3px 3px 2px rgba(0%, 0%, 0%, 0.1);
  box-shadow: 0 0 40px rgba(0%, 0%, 0%, 0.1)
}

.e404 {
  width: 100%;
  display: block;
  padding: 0;
  height: auto;
  overflow: hidden;
  text-align: center;
}

.e404 .pic {
  width: 100%;
}

.e404 .pic img {
  width: 180px;
}

.e404 .textbox {
  width: 100%;
  margin: 10px 0px 0px 0px;
  height: auto;
  overflow: hidden;
}

.e404 .textbox dd {
  width: 100%;
  display: block;
  margin: 5px 0px;
  padding: 0;
  list-style: none
}

.e404 .textbox dd.error {
  font-family: Helvetica, sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #333;
  margin: 25px 0 0;
  vertical-align: top
}

.e404 .textbox dd.text {
  font-size: 15px;
  color: #333;
  line-height: 2
}

.e404 .textbox dd.text a {
  color: #277037
}

.e404 .textbox dd.topbtn {
  vertical-align: top;
  margin: 18px 0;
}

.e404 .textbox dd a.btn {
  outline: none;
  border-radius: 3px;
  font-size: 15px;
  text-align: center;
  color: #ffF;
  padding: 5px 10px;
  border: 1px solid #277037;
  text-decoration: none;
  vertical-align: top;
  background: #277037;
}

.e404 .textbox dd .btn:hover {
  background: #083a6a;
  border: 1px solid #083a6a;
}

/*隱私權*/
.priv_all {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: rgba(8, 58, 106, 0.8);
  padding: 25px 0;
  transition: bottom 0.8s;
  overflow: hidden;
  z-index: 999999;
  box-sizing: border-box;
}

.priv_wrap {
  width: 100%;
  display: flex;
  justify-content: space-between; align-items: flex-start;
}

.priv_text {
  font-size: 18px;
  line-height: 1.5;
  color: #ffffff;
}
.priv_text a {
  color:#C7E799;
  transition: all 0.4s;
}

.priv_text > a:hover {
  color:#277037; text-decoration:underline;
  transition: all 0.4s;
}
.priv_accept {
  width: 40%; padding: 0 0 0 40px;
}
.priv_close {
  width: 100%;
  font-size: 18px;
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  padding: 12px 12px;
  overflow: hidden;
  z-index: 1;
  display: block;
background: #c7e799; /* Old browsers */
background: -moz-linear-gradient(left, #c7e799 0%, #4b966f 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(left, #c7e799 0%,#4b966f 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right, #c7e799 0%,#4b966f 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c7e799', endColorstr='#4b966f',GradientType=1 ); /* IE6-9 */
}
.priv_close:hover {
background: #C7E799; 
}
@media screen and (max-width: 1024px) {
.priv_wrap {
  display: block;
}
.priv_text {
  width: 100%;
}
.priv_accept {
  width: auto; padding: 10px 0 0 0px;
}
.priv_close {
  width: 30%;
}
}