
/* Welcome to Compass.
 * In this file you should write your main styles. (or centralize your imports)
 * Import this file using the following HTML or equivalent:
 * <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
@import url(css.css);
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

html {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
body { overflow-x: hidden}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

.nav > li > a:hover,
.nav > li > a:focus {
  background: none;
}
.nav > li.active > a,
.nav > li.active > a:hover,
.nav > li.active > a:focus {
  background: none;
}

.nav > li > a {
  color: #000;
  display: inline-block;
}
.oswald {font-family:"Oswald" !important;}
.maitree {font-family: "Maitree" !important;}
.card {
  background: none;
  border: none;
}

.row-no-padding {
  margin-left: 0;
  margin-right: 0;
}
.row-no-padding > [class*='col-'] {
  padding-right: 0;
  padding-left: 0;
}

a[href]:after {
  content: "";
}

.navbar {
  margin-bottom: 0;
  border-radius: 0;
}

a {
  color: #333;
}
a:focus, a:hover, a:active {
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
a:hover, a:link, a:visited {
  color: #333;
}

.breadcrumb {
  background: none;
  padding: 15px 0;
  margin: 0;
  display: inline-flex;
}
.breadcrumb a {
  text-decoration: none;
}
.breadcrumb > li + li:before {
  content: none;
  padding: 0;
}
.breadcrumb > li > span {
  padding: 0;
}
.breadcrumb li .divider {
  padding: 0 10px;
}
.breadcrumb li .divider:first-child {
  padding: 0;
}

label {
  font-weight: normal;
}

.pager li > a,
.pager li > span {
  border-radius: 0;
}
.pager li a:hover {
  border: 1px solid #ccc;
  background: #fff;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #fff;
  background-image: url("/static/image/bg.jpg");
  background-size:cover ;
  background-attachment: fixed;
  color: #333;
  font-size: 14px;
  background-repeat: no-repeat;
   background-position: center;
  
}
.maincontent {background-color: white; padding-bottom: 40px}
h1 .site-title,
h2 .site-title,
h3 .site-title,
h4 .site-title,
h5 .site-title,
h6 .site-title {
  font-weight: 300;
  color: #000;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

.btn-primary {
  background: #bbb;
  border: none;
}
.btn-primary:hover {
  background: #aaa;
}

#header {
  /*background: rgba(0,0,0,.3);*/
  height: 120px;
}

.header {
  position: relative;
  height: 120px;
}

.logo {
  width: 150px;
  height: 80px;
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0px;
  top: 20px;
  background: url(../image/logo.png) no-repeat;
  z-index: 999;
  background-size: 150px;
}
.logo a {
  display: block;
  height: 80px;
}
.logo a span {
  position: absolute;
  top: -1000px;
  z-index: 999;
}

.mainmenu {
  position: absolute;
  right: 40px;
  top: 50px;
  font-size: 14px;
  background-color: #FFFFFF;
  box-shadow: 2px 3px 2px 0px rgba(0,0,0,0.5);
  padding: 0 10px;
}
.mainmenu .nav > li {
  /*padding: 0 0 20px 0;*/
}
.mainmenu .nav > li:hover {
  background-color: rgba(206,32,38,0.5) !important;
  transition: .5s;
}
.mainmenu .nav > li.active {
  background-color: rgba(206,32,38,1);
}
.mainmenu .nav > li > a {
  color: #333;
  padding: 10px 10px;
  margin: 0 15px;
  text-transform: uppercase;
  font-family: Oswald;
  font-weight: 500;
}

/*主選單下拉選單(沒有下拉選單可刪掉) */
.mainmenu ul li:hover ul {
  position: absolute;
  padding: 0;
  margin: 20px 0 0 0px;
  transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -webkit-transition: opacity 0.5s ease-in-out;
  opacity: 1;
  z-index: 99;
  /*li:hover {
      ul {
          display: block;
          position: absolute;
          //top: -15px;
          transition: opacity 0.5s ease-in-out;
          -moz-transition: opacity 0.5s ease-in-out;
          -webkit-transition: opacity 0.5s ease-in-out;
          li {
              opacity: 1;
              transition: opacity 0.5s ease-in-out;
              -moz-transition: opacity 0.5s ease-in-out;
              -webkit-transition: opacity 0.5s ease-in-out;
          }
      }
  }*/
}
.mainmenu ul li ul {
  position: absolute;
  opacity: 0;
  min-width: 150px;
  z-index: -1;
}
.mainmenu ul li ul li {
  display: block;
  position: relative;
  padding: 0;
}
.mainmenu ul li ul li:hover a {
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  zoom: 1;
  /*動作*/
  transition: 0.3s linear;
}
.mainmenu ul li ul li.active a, .mainmenu ul li ul li.active:hover a {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
}
.mainmenu ul li ul li a {
  display: block;
  padding: 15px;
  text-decoration: none;
  white-space: nowrap;
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
}
.mainmenu ul li ul li a:after {
  content: none;
}
.mainmenu ul li ul li ul {
  transform: translateX(150px);
}
.mainmenu ul li ul li ul li {
  opacity: 0;
}

nav.mainmenu a {
  position: relative;
  display: inline-block;
  outline: none;
  text-decoration: none;
}
nav a:hover, nav a:focus {
  outline: none;
}

.cl-effect-17 a {
  text-shadow: none;
  padding: 10px 0;
}

.cl-effect-17 a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: #fff;
  opacity: 0;
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  pointer-events: none;
}

.cl-effect-17 a:hover::after,
.cl-effect-17 a:focus::after,
.cl-effect-17 li.active a:after {
  opacity: 0;
  -webkit-transform: translateY(21px);
  -moz-transform: translateY(21px);
  transform: translateY(21px);
}

.language {
  position: absolute;
  right: 45px;
  top: 10px;
}

.language-btn-m {
  position: absolute;
  right: 55px;
  top: 17px;
}

.langChoose {
  background: url(../image/language-btn.svg) no-repeat !important;
  margin: 0 !important;
  padding: 0 !important;
  text-indent: -999px;
  display: block;
  width: 40px;
  height: 20px;
  cursor: pointer;
}

@media (min-width: 768px) {
  .langChoose {
    background: url(../image/language-btn.svg) no-repeat !important;
  }
}
@media (min-width: 992px) {
  .langChoose {
    background: url(../image/language-btn.svg) no-repeat !important;
  }
}

.lang-block {
  padding: 10px 15px 10px 20px !important;
  background: #eee !important;
  left: -28px !important;
}
.lang-block li {
  padding: 5px 0;
}
.lang-block li a:hover {
  color: #666 !important;
}

.langList {
  width: 20px;
  height: 20px;
}

.trangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #eee transparent;
  margin-left: 2px;
  margin-top: 10px;
}

.left {
  margin-top: 70px;
}
.left .module-header {
  padding: 20px 10px;
  font-size: 25px;
  text-align: left;
  letter-spacing: 3px;
  color: #777777;
  line-height: 140%;
}
.left .je_acc ul > li a {
  font-size: 16px;
  border-left: 4px solid #eee;
  text-align: left;
  padding: 20px 0 20px 15px;
  line-height: 150%;
  zoom: 1;
  /*動作*/
  transition: 0.3s linear;
}
.left .je_acc ul > li a:hover {
  border-left: 4px solid #000;
  color: #000;
  zoom: 1;
  /*動作*/
  transition: 0.3s linear;
}
.left .je_acc ul > li.active > a {
  border-left: 4px solid #E40011;
  color: #000;
}
.left .je_acc ul > li ul > li.active a {
  border-left: 4px solid #eee;
}
.left .je_acc ul > li ul > li a:hover {
  border-left: 4px solid #eee;
}
.left .je_acc ul > li ul > li.active a {
  color: #000;
}
.left .je_acc ul > li ul > li a {
  padding: 10px 0 10px 40px;
  color: #666666;
  background: url('') no-repeat 19px 22px;
  zoom: 1;
  /*動作*/
  transition: 0.3s linear;
}
.left .je_acc ul > li ul > li a:hover {
  color: #000;
  zoom: 1;
  /*動作*/
  transition: 0.3s linear;
}
.left .je_acc .holder {
  zoom: 1;
  /*動作*/
  transition: 0.3s linear;
}
.left .je_acc .holder:before {
  content: none;
}

#left-wrap {
  display: none;
}

.left-title {
  background: #999999;
  padding: 15px;
  color: #fff;
  text-align: center;
  width: 100%;
  margin: 50px 15px 0 15px;
}

.mobileleft {
  width: 100%;
  margin: 0 15px;
}

.m-left {
  background: #EEEEEE;
}
.m-left .module-header {
  display: none;
}
.m-left ul li {
  border-bottom: 1px solid #ccc !important;
}
.m-left ul li:last-child {
  border: 0 !important;
}
.m-left ul li ul li {
  border: 0 !important;
}
.m-left ul li ul li.active a {
  color: #fff;
  background: rgba(236, 0, 0, 0.5);
}
.m-left ul li ul li a:hover {
  color: #fff;
  background: rgba(236, 0, 0, 0.5);
}

.search-btn {
  position: absolute;
  right: 15px;
  top: 15px;
}

.search-btn-m {
  position: absolute;
  right: 15px;
  top: 15px;
}
.subbanner{
  height: 19px;
  overflow: hidden;
  background-color:rgb(206,32,38) ;
  box-shadow: 0 2px 1px 0px rgba(0,0,0,0.6);;
}
@media (max-width: 768px) {
  .slider {
    margin-top: 50px;
  }
  .item-page table{ width:100% !important;}
  .item-page table td{display:block !important; width:100% !important; text-align:center;}
}
.slider .info-wrap {
  padding: 30px 20px !important;
  background: rgba(0, 0, 0, 0.85);
  color: #E40011;
  line-height: 200% !important;
  margin: 0 20px 20px 0 !important;
}
@media (max-width: 768px) {
  .slider .info-wrap {
    display: none;
  }
}
.slider .info-wrap .slider-desc {
  font-weight: 400;
  display: inline-block;
}
@media (max-width: 768px) {
  .slider .info-wrap .slider-desc {
    font-size: 15px;
  }
}
@media (min-width: 768px) {
  .slider .info-wrap .slider-desc {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .slider .info-wrap .slider-desc {
    font-size: 32px;
  }
}
@media (min-width: 1200px) {
  .slider .info-wrap .slider-desc {
    font-size: 40px;
  }
}

.subbanner img {
  max-width: 100%;
}

.submenu li {
  float: none;
  display: inline-block;
  display: inline;
  /*ie7 fix*/
  zoom: 1;
  /* hasLayout ie7 trigger */
  vertical-align: top;
}
.submenu h3 {
  font-size: 50px;
  border: none;
}
.submenu .nav > li {
  padding: 0 20px;
  margin-bottom: 20px;
  font-size: 18px;
  border-right: 1px solid #333;
}
.submenu .nav > li a {
  padding: 5px;
  letter-spacing: 5px;
  border-bottom: 2px solid #F6F6F6;
}
.submenu .nav > li.active > a, .submenu .nav > li:hover > a {
  border-bottom: 2px solid #E9360A;
}
.submenu .nav > li:last-child {
  margin: 0;
  border-right: none;
  /* 去掉最後的border */
}

.fullblock h3 {
  text-align: center;
  border: none;
  font-size: 50px;
  padding: 40px 0 30px 0;
  font-family: lato, "微軟正黑體", Arial, Helvetica, sans-serif;
}

.product {
  position: relative;
  background: #fff;
}
@media (max-width: 576px) {
  .product {
    padding: 30px 35px;
  }
}
@media (min-width: 576px) {
  .product {
    padding: 30px 40px;
  }
}
@media (min-width: 768px) {
  .product {
    padding: 30px 40px;
  }
}
@media (min-width: 992px) {
  .product {
    padding: 30px 50px;
  }
}
@media (min-width: 1200px) {
  .product {
    padding: 30px 80px 50px 80px;
  }
}
.product .container {
  width: 95%;
}
.product h2 {
  font-size: 30px;
  color: #555;
  text-align: center;
  display: block;
  padding: 50px 0;
}
.product .kkcontent-carousel-controls {
  margin-top: 40px;
}
.product .kkcontent-carousel-controls .controls-left,
.product .kkcontent-carousel-controls .controls-right {
  position: absolute;
  top: 20%;
  bottom: 20%;
  height: 100px;
  width: 25px;
  text-indent: -9999px;
}
.product .kkcontent-carousel-controls .controls-left {
  left: -4%;
  background: url(../image/nav-prev.png) no-repeat left center !important;
}
@media (max-width: 576px) {
  .product .kkcontent-carousel-controls .controls-left {
    background-size: 18px !important;
    left: -15%;
  }
}
@media (min-width: 576px) {
  .product .kkcontent-carousel-controls .controls-left {
    background-size: 18px !important;
    left: -6%;
  }
}
@media (min-width: 768px) {
  .product .kkcontent-carousel-controls .controls-left {
    background-size: 20px !important;
    left: -6%;
  }
}
@media (min-width: 992px) {
  .product .kkcontent-carousel-controls .controls-left {
    background-size: 25px !important;
    left: -5%;
  }
}
@media (min-width: 1200px) {
  .product .kkcontent-carousel-controls .controls-left {
    background-size: 25px !important;
    left: -4%;
  }
}
.product .kkcontent-carousel-controls .controls-right {
  background: url(../image/nav-next.png) no-repeat left center !important;
}
@media (max-width: 576px) {
  .product .kkcontent-carousel-controls .controls-right {
    background-size: 18px !important;
    right: -15%;
  }
}
@media (min-width: 576px) {
  .product .kkcontent-carousel-controls .controls-right {
    background-size: 18px !important;
    right: -6%;
  }
}
@media (min-width: 768px) {
  .product .kkcontent-carousel-controls .controls-right {
    background-size: 20px !important;
    right: -6%;
  }
}
@media (min-width: 992px) {
  .product .kkcontent-carousel-controls .controls-right {
    background-size: 25px !important;
    right: -5%;
  }
  ._banner{ display: none}
}
@media (min-width: 1200px) {
  .product .kkcontent-carousel-controls .controls-right {
    background-size: 25px !important;
    right: -4%;
  }
}
.product .item {
  text-align: center;
  position: relative;
  display: block;
  cursor: pointer;
}
@media (max-width: 768px) {
  .product .item {
    margin-bottom: 20px;
  }
}
.product .item a h4 {
  zoom: 1;
  /*動作*/
  transition: 0.3s linear;
  padding: 10px 20px;
  display: inline-block;
  margin-top: 30px;
  border-radius: 20px;
}
.product .item a:hover {
  zoom: 1;
  /*動作*/
  transition: 0.3s linear;
}
.product .item a:hover h4 {
  border-radius: 20px;
  background: #E40011;
  color: #fff;
  padding: 10px 20px;
  display: inline-block;
}
.product .item .owl-theme .owl-controls {
  margin: 0;
}

.home-about {
  height: 500px;
  position: relative;
  color: #fff;
  padding: 50px 0;
  font-size: 16px;
  line-height: 180%;
}
@media (max-width: 768px) {
  .home-about {
    height: auto;
  }
}
.home-about h2 {
  font-size: 30px;
  text-align: center;
  display: block;
  padding: 50px 0;
  color: #E40011;
}
.home-about .background {
  background: url("../image/home-about-bg.jpg") repeat-y #eee;
  position: absolute;
  height: 200%;
  width: 100%;
  z-index: -1;
}
.home-about .more {
  text-align: center;
  margin-top: 60px;
}
.home-about .more a {
  color: #fff;
  padding: 5px 20px;
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.6);
  zoom: 1;
  /*動作*/
  transition: 0.3s linear;
}
.home-about .more a:hover {
  zoom: 1;
  /*動作*/
  transition: 0.3s linear;
  background: rgba(255, 255, 255, 0.2);
}
.home-about .more a:hover:after {
  zoom: 1;
  /*動作*/
  transition: 0.3s linear;
  transform: translateX(5px);
}
.home-about .more a:after {
  zoom: 1;
  /*動作*/
  transition: 0.3s linear;
  content: ">";
  display: inline-block;
  padding: 0 10px;
}

.home-news, .kkcontent-news-wrap {
  background: #777777;
  padding: 50px 0;
}
.home-news h2, .kkcontent-news-wrap h2 {
  font-size: 30px;
  text-align: center;
  display: block;
  padding: 50px 0;
  color: #fff;
}
.home-news .wrap, .kkcontent-news-wrap .wrap {
  background: #fff;
  padding: 15px 15px 15px 0;
  margin-bottom: 30px;
}
.home-news .wrap .left, .kkcontent-news-wrap .wrap .left {
  margin: 0;
}
.home-news .wrap .date, .kkcontent-news-wrap .wrap .date {
  display: inline-block;
  padding: 10px;
  background: #333;
  line-height: 150%;
  color: #fff;
  text-align: center;
}
.home-news .wrap .date .year, .kkcontent-news-wrap .wrap .date .year {
  font-size: 20px;
}
.home-news .wrap .date .day, .kkcontent-news-wrap .wrap .date .day {
  font-size: 16px;
}
.home-news .wrap .title, .kkcontent-news-wrap .wrap .title {
  font-size: 20px;
  padding: 10px 0;
  display: block;
  color: #333;
  line-height: 130%;
  zoom: 1;
  /*動作*/
  transition: 0.3s linear;
}
.home-news .wrap .title:hover, .kkcontent-news-wrap .wrap .title:hover {
  color: #000;
  zoom: 1;
  /*動作*/
  transition: 0.3s linear;
}
.home-news .wrap .desc, .kkcontent-news-wrap .wrap .desc {
  font-size: 15px;
  line-height: 150%;
  color: #666;
}
.home-news .more, .kkcontent-news-wrap .more {
  text-align: right;
  padding: 20px 15px 0 0;
}
.home-news .more a, .kkcontent-news-wrap .more a {
  color: #E40011;
  background: url(../image/news-arrow.png) no-repeat 95% center;
  padding: 10px 25px 10px 0;
  zoom: 1;
  /*動作*/
  transition: 0.3s linear;
}
.home-news .more a:hover, .kkcontent-news-wrap .more a:hover {
  zoom: 1;
  /*動作*/
  transition: 0.3s linear;
  opacity: 0.7;
  background: url(../image/news-arrow.png) no-repeat 100% center;
}
.home-news .more_articles, .kkcontent-news-wrap .more_articles {
  text-align: center;
  margin-top: 50px;
}
.home-news .more_articles a, .kkcontent-news-wrap .more_articles a {
  color: #fff;
  padding: 12px 23px;
  display: inline-block;
  background: #E40011;
  border: 1px solid transparent;
  zoom: 1;
  /*動作*/
  transition: 0.3s linear;
}
.home-news .more_articles a:hover, .kkcontent-news-wrap .more_articles a:hover {
  zoom: 1;
  /*動作*/
  transition: 0.3s linear;
  background: none;
  border: 1px solid #fff;
}
.home-news .more_articles a:hover:after, .kkcontent-news-wrap .more_articles a:hover:after {
  zoom: 1;
  /*動作*/
  transition: 0.3s linear;
  transform: translateX(5px);
}
.home-news .more_articles a:after, .kkcontent-news-wrap .more_articles a:after {
  zoom: 1;
  /*動作*/
  transition: 0.3s linear;
  content: ">";
  display: inline-block;
  padding: 0 10px;
}

.home-contact {
  padding: 80px 0;
  text-align: center;
  line-height: 180%;
  background: #EEE;
}
.home-contact .button a {
  display: inline-block;
  background: #E40011;
  padding: 50px 20px;
  color: #fff;
  border-radius: 100px;
  font-size: 24px;
  zoom: 1;
  /*動作*/
  transition: 0.3s linear;
}
.home-contact .button a:hover {
  opacity: 0.8;
  zoom: 1;
  /*動作*/
  transition: 0.3s linear;
}

.floating {
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(8%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
.breadcrumbs-wrap {
  font-size: 13px;
  padding-top: 30px;
}
.breadcrumbs-wrap a {
  color: #999;
  font-size: 13px;
}

.breadcrumbs > .active {
  color: #000;
}

footer {
  padding-top: 50px;
  color: rgb(160, 160, 159);
  background: rgb(47,46,46);
}
footer .right {
  float: right;
}
footer .left {
  float: left;
  margin: 0;
}
footer .bbox h2 {
  color: rgb(160, 160, 159);
  padding-bottom: 15px;
  line-height: 150%;
  font-size: 18px;
  font-family: Arial;
}
footer .bbox p{
  line-height: 20px;
  font-size: 14px;
  font-family: barlow-extralight,barlow,sans-serif;
  color: rgb(160,160,159);
}
footer .bbox h2 em,footer .bbox p em{
  font-style: normal;
  display: block;
}
footer .bbox ul {
  display: block;
  margin-bottom: 15px;
}
footer .bbox ul li {
  line-height: 180%;
  background: url(../image/bbox-li.jpg) no-repeat left 15px;
  padding-left: 13px;
  font-size: 14px;
  color: rgb(160,160,159);
  font-family: barlow-extralight,barlow,sans-serif;
}
footer .bbox ul li a {
  font-size: 14px;
  color: rgb(137, 137, 136);
  zoom: 1;
  /*動作*/
  transition: 0.3s linear;
}
footer .bbox ul li a:hover {
  opacity: 0.8;
  zoom: 1;
  /*動作*/
  transition: 0.3s linear;
}

.footnav {
  padding-top: 30px;
}
.footnav li {
  float: none;
  display: inline-block;
  display: inline;
  zoom: 1;
  vertical-align: top;
}
.footnav li a {
  font-size: 14px;
  color: rgb(137, 137, 136);
  padding: 0 10px;
  border-left: 1px solid #ccc;
  zoom: 1;
  /*動作*/
  transition: 0.3s linear;
}
.footnav li a:hover {
  opacity: 0.8;
  zoom: 1;
  /*動作*/
  transition: 0.3s linear;
}
.footnav li:first-child a {
  padding-left: 0;
  border: 0;
}
.footnav .nav {
  display: block;
}

.copyright {
  line-height: 180%;
  font-size: 14px;
  font-weight: 300;
  color: rgb(137, 137, 136);
}
.copyright a {
  color: rgb(137, 137, 136);
}

.content-bottom .module {
  border-top: 1px solid #333;
}

.subheading-category {
  line-height: 150%;
  font-size: 30px;
  text-align: center;
  margin: 60px 0;
  display: block;
  color: #000;
}

.item-page {
  font-size: 16px;
  line-height: 180%;
}
.item-page h2 {
  line-height: 150%;
  font-size: 30px;
  color: #000;
  margin: 60px 0 30px 0;
  text-align: center;
  /*font-family: playfair display,serif;*/
  font-weight: 700;
}
.item-page .create,
.item-page .createdby {
  color: #999;
  font-size: 15px;
  font-style: italic;
  padding-right: 10px;
  margin-bottom: 20px;
  display: inline;
}

.articleBody a {
  text-decoration: none;
  color: #00698C;
  border-bottom: 1px solid #00698C;
  padding-bottom: 5px;
  zoom: 1;
  /*動作*/
  transition: 0.3s linear;
}
.articleBody a:hover {
  border-bottom: 1px solid #fff;
  opacity: 0.8;
  zoom: 1;
  /*動作*/
  transition: 0.3s linear;
}
.articleBody img {
  max-width: 100%;
  height: auto !important;
}
.articleBody ul {
  list-style: disc;
}
.articleBody ul li {
  /*margin-left: 40px;*/
}
.articleBody ol {
  list-style: decimal;
}
.articleBody ol li {
  margin-left: 40px;
}

h3.page-header,
.submenu h3.module-header {
  font-size: 50px;
  border: none;
  font-family: lato, "微軟正黑體", Arial, Helvetica, sans-serif;
  font-weight: 300;
  color: #000;
  text-transform: uppercase;
  margin: 40px 0 20px;
}

.content-links {
  display: none;
}

/*客製樣式有layout或是module的樣式請寫下面*/
.product-page .kkcontent-category h2 {
  margin: 60px 0;
  text-align: center;
  font-size: 30px;
}
.product-page .kkcontent-category img {
  max-width: 100%;
  margin-bottom: -2px;
}
.product-page .kkcontent-category .category-desc {
  margin-bottom: 50px;
  line-height: 130%;
  text-align: center;
}
.product-page .product-list {
  text-align: center;
  display: block;
  margin-bottom: 30px;
  zoom: 1;
  /*動作*/
  transition: 0.3s linear;
}
.product-page .product-list:hover {
  opacity: 0.8;
  zoom: 1;
  /*動作*/
  transition: 0.3s linear;
}
.product-page .product-list h3 {
  text-align: center;
  background: #eee;
  width: 100%;
  z-index: 99;
  font-size: 16px;
  padding: 15px 0;
  color: #333;
}

.kcg-slider {
  margin-bottom: 30px;
}
.kcg-slider .item {
  margin: 50px 0;
}
.kcg-slider .item img {
  margin: 0 auto;
}
.kcg-slider .owl-carousel .owl-item img {
  max-width: 100%;
}
.kcg-slider .owl-carousel .owl-stage {
  margin: 0 auto;
}

.thumbnail-slider .owl-stage {
  margin: 0 auto;
}
.thumbnail-slider .owl-item .item {
  border: 2px solid #ccc;
  border-radius: 10px;
  margin-right: 15px;
}
.thumbnail-slider .owl-item .item .content {
  padding: 10px;
}
.thumbnail-slider .owl-item .item.currentSelected {
  border: 2px solid #000;
  border-radius: 10px;
}
.thumbnail-slider .owl-item .item img {
  margin: 0 auto;
}

.see-table {
  display: inline-block;
  background: #eee;
  padding: 10px 15px;
  margin-bottom: 25px;
  position: relative;
}
.see-table:after {
  position: absolute;
  bottom: -13px;
  left: 70px;
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13.0px 7.5px 0 7.5px;
  border-color: #eee transparent transparent transparent;
}

.cwgallery {
  margin: 0 -15px;
}
.cwgallery .gallery a {
  border-bottom: 0;
}
@media (max-width: 992px) {
  .cwgallery .gallery a {
    width: 50% !important;
  }
  #about .col-md-7,#about .col-md-5{  float: none; max-width: 100%; margin-bottom: 20px}
  #about .col-md-5 img{ max-width: 100%; height: auto}
  ._banner{
    height: 300px; display: block;
    /*background: url("/static/image/bg.jpg") no-repeat; background-size: cover*/

  }
  ._subbanner {display: none}
}
.cwgallery .gallery a > span {
  border: 0 !important;
}
.cwgallery a {
  margin-bottom: 30px;
}
.cwgallery a span.enlarge {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.cwgallery a span.enlarge:before {
  content: "";
  position: absolute;
  background: none;
  width: 40px;
  height: 40px;
  z-index: 99;
  opacity: 0;
  zoom: 1;
  /*動作*/
  transition: 0.3s linear;
}
.cwgallery a span.enlarge:hover:before {
  opacity: 1;
  background: url(../image/enlarge.png) no-repeat;
  zoom: 1;
  /*動作*/
  transition: 0.3s linear;
}
.cwgallery a span {
  padding: 0 15px;
}

.inquiry {
  padding: 60px 0;
}
.inquiry input {
  width: 65px;
  border: none;
  text-align: center;
  margin: 0 30px 0 0;
}
@media (max-width: 768px) {
  .inquiry input {
    margin: 0 5px 10px 0;
  }
}

.cartForm td {
  padding: 10px 0;
}
.cartForm td.quantity-wrap {
  text-align: right;
}
.cartForm td.quantity-wrap input {
  width: 100px;
  padding: 7px 0;
  background: #eee;
}
.cartForm a.qtyUpdate, .cartForm a.qtyUnset {
  background: #E7AF1D;
  padding: 10px 20px;
  margin: 0 10px;
  color: #fff;
}
.cartForm a.qtyUpdate:hover, .cartForm a.qtyUnset:hover {
  background: #DF9711;
  zoom: 1;
  /*動作*/
  transition: 0.3s linear;
}
@media (max-width: 768px) {
  .cartForm a.qtyUpdate, .cartForm a.qtyUnset {
    padding: 5px 10px;
    margin: 0 5px;
  }
}
.cartForm .inquiry-title {
  text-align: center;
  padding: 10px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  margin-bottom: 30px;
  color: #333333;
  font-size: 16px;
}

.kkCart {
  text-align: center;
  padding: 20px;
  z-index: 999;
}
@media (max-width: 768px) {
  .kkCart {
    padding: 10px;
    background: none;
  }
}
.kkCart a {
  background: #FF9326;
  padding: 5px 20px;
  color: #fff;
  display: inline-block;
}
@media (max-width: 768px) {
  .kkCart a {
    padding: 0px 10px;
    font-size: 13px;
  }
}
.kkCart a:hover {
  background: #DF9711;
  zoom: 1;
  /*動作*/
  transition: 0.3s linear;
  color: #fff;
}
.kkCart input {
  padding-left: 10px;
  width: 70px;
  display: inline-block;
  margin: 0 0 10px 0;
}
@media (max-width: 768px) {
  .kkCart input {
    width: 55px;
    font-size: 13px;
    display: none;
  }
}
.kkCart span {
  padding-left: 5px;
}
@media (max-width: 768px) {
  .kkCart span {
    display: none;
  }
}

.contact {
  background: url(../image/contact-bg.jpg) no-repeat top center #000;
  margin-bottom: -80px;
}
.contact h2 {
  color: #fff;
}

.blog {
  line-height: 160%;
  margin-bottom: 50px;
}
.blog h3 {
  font-size: 18px;
  color: #000;
}
.blog img {
  width: 100%;
  height: auto;
}
.blog .kkcontent-blog-item {
  padding: 0 5px;
}
.blog .item-wrap {
  display: block;
  margin-bottom: 30px;
  padding: 10px;
  zoom: 1;
  /*動作*/
  transition: 0.3s linear;
}
.blog .item-wrap:hover {
  zoom: 1;
  /*動作*/
  transition: 0.3s linear;
  background: #EFEFEF;
}
.blog .blog-date {
  font-size: 13px;
  font-style: italic;
  color: rgba(0, 0, 0, 0.5);
  display: block;
  padding: 5px 0;
}

.kkcontent-news-wrap {
  padding: 0;
  background: none;
}
.kkcontent-news-wrap .wrap {
  background: #EEEEEE;
}

/*联系*/
/*.message_box {padding-top: 30px;}*/
.message_box h4 {font-size: 18px;color: #000;font-weight: 600;margin: 0 0 25px;}
.message_box .title_m {position: relative;height: 45px;line-height: 45px;width: 180px;margin: 0 auto 35px;text-align: center;}
.message_box .title_m .line {border-bottom: 2px solid #000;height: 21px;position: absolute;z-index: 4;top: 3px;left: 0;width: 100%;}
.message_box .title_m h5 {font-size: 14px;color: #000;font-weight: 600;position: relative;z-index: 5;margin: 0;text-align: center;line-height: 45px;background: #f7f7f7;display: inline-block;margin: 0 auto;padding: 0 10px;}
.message_box li{display: block;margin: 0 1% 15px;border-radius: 3px;height: 40px;line-height: 40px;font-size: 0;background-color: #fff;}
.message_box li:nth-child(n+5),.message_box li:nth-child(n+6){width: 98%;}
.message_box li i{display: inline-block;font-size: 12px;color:#5b5b5b;padding:0 13px;}
.message_box li span{display: inline-block;font-size: 12px;color: #5b5b5b;width: calc(100% - 50px);}
.message_box li input{height: 100%;width: 100%;border: solid 1px #ccc; text-indent:10px;outline: none;line-height: 35px; vertical-align:middle; font-size:14px;}
.message_box li input:focus,.message_box li.li4 textarea:focus{ border: solid 1px red; background-color: #ffd7c6
}
.message_box li.li4{height: auto;line-height: normal;}
.message_box li.li4 i{display: block;line-height: 35px;padding: 0;}
.message_box li.li4 span{width: 100%;}
.message_box li.li4 textarea{outline: none;border: solid 1px #ccc;width: 100%;height: 120px; font-size:14px;text-indent:10px;}
.message_box .col-sub{text-align: right;padding:0 13px;}
.message_box .col-sub button{font-size: 14px;background: rgba(206,32,38,1);border: 0 none;height: 30px;line-height: 30px;padding: 0 25px;color: #fff;cursor: pointer;border-radius: 2px;margin:0 auto;}
.message_box .col-sub button:hover{background: rgba(206,32,38,.7);}
.message_box .col-sub button i{font-family: iconfont;}
.message_box li.li5{background:none;}
.message_box li.li5 input{width:50%; background:#fff;}
.message_box li.li5 img{vertical-align:middle; margin-right:10px;}
.message_box li.li5 a{font-size:14px;}

#contact .col-md-4,#contact .col-md-8 {float: left}

/*服务*/
.services .col-md-4 h3{
  font-size: 23px;
  color: #BA1321;
  font-family: Arial, Helvetica, sans-serif;
  /*font-family: playfair display,serif;*/
  text-align: center;
  letter-spacing: 0.05em;
  height: 56px;
}
.services .col-md-4 p{
  display: block;
  margin-top: 50px;
  font-size: 15px;
  line-height: 25px;
  color: #666;
  font-family: Arial, Helvetica, sans-serif;
  /*font-family: avenir-lt-w01_35-light1475496,avenir-lt-w05_35-light,sans-serif;*/
}
.services .col-md-4 .img { text-align: center;  margin-bottom: 10px}

.contact_bar { background-color: rgb(206,32,38); padding: 40px 0;}
.contact_bar .col-md-4 {float: left; border-right: solid 1px rgb(238,166,169)}
.contact_bar .col-md-4:last-child{border: none}
.contact_bar h3 {font-size: 18px; color: white; letter-spacing: 0.05em; font-weight: 400; margin-bottom: 10px}
.contact_bar p {font-size: 14px; color: rgb(238,166,169);font-family: avenir-lt-w01_35-light1475496,avenir-lt-w05_35-light,sans-serif,sans-serif; }

.foot_icon {margin-top: 50px}
.foot_bot {background-color: rgb(36 35 35);  font-family: barlow-extralight,barlow,sans-serif; color: rgb(160,160,159); text-align: center; margin-top: 20px; padding: 10px 0}

#product .inbox { width: 100%; max-height: 90px; border: solid 1px #cccccc; overflow: hidden; padding: 1px; margin-bottom: 20px;}
#product .inbox:hover { border: solid 1px #333; }
#product .inbox img {max-width: 100%; height: auto}
#about {margin-top: 100px;font-size: 16px;}

#about .more{ width: 312px; background-color:rgba(206,32,38,1); color: white; font-size: 14px; height: 50px; line-height: 50px; display: block; text-align: center}
#about .more:hover {background-color:rgba(206,32,38,.8);}

#service {background-color: rgb(238 240 228); text-align: center; margin-top: 60px; padding-bottom: 30px}
#service h2 {font-size: 34px; padding-top: 50px;padding-bottom: 30px; display: block; font-weight: bold;}
#service h3 {font-family: Arial; font-size: 18px; color: #333; font-weight: bold}
.banner,._banner {font-family: fredericka the great,fantasy; color: white; font-size:35px; letter-spacing: 0.05em; font-weight: bold;text-align: center;  position: relative;}
.banner .text,._banner .text{width: 100%; left: 50%;top: 50%;text-shadow: 2px 2px 2px rgba(24,118,200,1); position: absolute; text-transform: uppercase; transform: translate(-50%, -50%);/*自己的50% */}
.index_banner {font-family: fredericka the great,fantasy; color: #EEF0E4; font-size: 38px; font-weight: bold; text-align: center;}
#product h2{ text-align: center; font-size: 28px; /*font-family: kelly slab,fantasy; */  padding: 50px 0; font-weight: 700}
.services .col-md-4 .img img {max-width: 80px; height: auto;}

.title_font {font-family: playfair display,serif; font-size: 28px; letter-spacing: 0.05em; font-weight: 700}
.content_font { font-family: didot-w01-italic,serif; font-size: 18px; color: #666666}
.content_font1 {font-family: kelly slab,fantasy; font-size: 16px; color: #000}
/*******************************************************************************/
/*# sourceMappingURL=template.css.map */
@media (min-width: 1200px){
  .container {
    width: 980px !important;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .services .col-md-4 { float: left; padding: 20px 40px}
  .services .col-md-4:nth-child(4){clear: both}
}

@media (max-width: 768px) {
  .langChoose {
    background: url(../image/language-btn.svg) no-repeat !important;
  }
  .footer-left .col-6 { width: 100% !important; max-width: none; float: none; flex: auto; padding: 10px 30px}
  footer .bbox h2 em, footer .bbox p em{ display: inline !important;}
  /*body {background: none !important;}*/
  .message_box { margin-top: 30px}
  .contact_bar {padding: 20px 0}
  .contact_bar .col-md-4 {float: none; border-right:none; margin: 20px 0}
  .contact_bar .col-md-4 p{text-indent: 20px}

  #product .col-md-3 {width: 50% !important;}
  #service .col-md-4 {width: 50% !important; float: left; margin-bottom: 15px}
  #services .col-md-4 img{ max-width: 60px;height: auto;}
  /*.banner {display: none !important;}*/
  .contact_bar h3 {font-size: 18px}
  .contact_bar p {font-size: 16px}
  footer .bbox p,footer .bbox ul li {font-size: 16px;}
  footer .bbox h2 {font-size: 22px}
  #about,#service { margin-top: 30px !important;}
  #about .more {width: 100% !important;}
  .banner .text, ._banner .text{ top: 60% !important;}
}

.diy.on {border: dashed 2px red;position: relative;}
.diy .toolbar {z-index: 9999; height: 28px;line-height: 28px !important;text-align: center; position: absolute;color: white; right:0; top: 0; width: 50px; background: rgba(0,0,0,0.8)}
.diy .toolbar a {font-size: 12px; line-height: 28px !important; color: white; font-weight: normal !important;text-decoration: none}

.pagination-bar{text-align:center; margin: 20px auto}
.pagination-bar a{margin-right: 6px;border: solid 1px #ccc;font-size: 14px;background:#fff;color: #666666;height:35px;min-width:35px;display:inline-block;line-height:35px;text-align:center;transition:ease all 0.4s;-webkit-transition:ease all 0.4s;-moz-transition:ease all 0.4s;-o-transition:ease all 0.4s;display: inline-block}
.pagination-bar span,.pagination-bar a:hover{margin-right: 6px;font-size: 14px;background:#0093DD;color:#fff;border: solid 1px #0093DD;height:35px;min-width:35px;display:inline-block;line-height:35px;text-align:center;}
