@charset "utf-8";
/** bootstrap **/
@import url(bootstrap.css);
/** 手機選單 **/
@import url(slicknav.css) screen and (max-width:1020px);
/** google font **/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700&display=swap');
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  width: 100%;
  height: auto;
}
body {
  background: #ffffff;
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  font-size: medium;
  font-family: 'Noto Sans TC', sans-serif;
  word-break: break-word;
}
a, a:hover {
  text-decoration: none;
  transition: all 0.5s ease 0s;
  cursor: pointer;
}
img {
  border: 0;
  vertical-align: middle;
  max-width: 100%;
}
input {
  vertical-align: middle;
  border-radius: 0;
}
input:focus, select:focus, textarea:focus, button:focus {
  outline: 0;
}
/** 取消ios按鈕樣式 **/
input[type="button"], input[type="submit"], input[type="reset"], button[type="button"], button[type="submit"], button[type="reset"], a[type="button"], a[type="submit"], a[type="reset"], textarea {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.slicknav_menu {
  display: none;
}
/** 表單預設文字顏色設定 **/ ::-webkit-input-placeholder {
  color: #999999;
}
::-moz-placeholder {
  color: #999999;
}
:-ms-input-placeholder {
  color: #999999;
}
input:-moz-placeholder {
  color: #999999;
}
#field2::-webkit-input-placeholder {
  color: #999999;
}
#field3::-webkit-input-placeholder {
  color: #999999;
  background: lightgreen;
  text-transform: uppercase;
}
#field4::-webkit-input-placeholder {
  font-style: italic;
  text-decoration: overline;
  letter-spacing: 3px;
  color: #999999;
}
#field2::-moz-placeholder {
  color: #999999;
}
#field3::-moz-placeholder {
  color: #999999;
  background: lightgreen;
  text-transform: uppercase;
}
#field4::-moz-placeholder {
  font-style: italic;
  text-decoration: overline;
  letter-spacing: 3px;
  color: #999999;
}
.writing-mode-vertical {
  writing-mode: tb-lr;
  -ms-writing-mode: tb-lr;
  -webkit-writing-mode: vertical-lr;
  -moz-writing-mode: vertical-lr;
  -ms-writing-mode: vertical-lr;
  writing-mode: vertical-lr;
}
/** 手機選單、選單 色塊-變色 **/
.b-color, .slicknav_menu {}
.slicknav_icon-bar {
  background-color: #fff;
}
.b-color > li:hover, .b-color > li > ul > li > a:hover, .slicknav_nav .slicknav_row:hover, .slicknav_nav a:hover {
  background: #fff;
}
.border-color {
  border-left: 7px #A0A0A0 solid;
}
.slicknav_nav .slicknav_arrow {
  position: absolute;
  top: 13px;
  right: 10px;
}

.social-media-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}
.social-media-container a {
  display: block;
  margin-bottom: 10px;
}
.social-media-container img {
  width: 50px;
  height: 50px;
}



/** 上版 **/
header {
  padding: 0 15px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  transition: .5s;
}
.head-main {
  display: flex;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  justify-content: center;
}
.head-main .logo {
  width: auto;
  display: flex;
  position: absolute;
  left: 0;
  top: 26px;
}

.header-height {
  background: #000;
}

@media screen and (max-width:1020px) {
  header {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    position: inherit;
  }
  .head-main .logo {
    position: fixed;
    top: 11px;
    left: 10px;
    padding: 0;
    z-index: 10000;
    margin: 0;
  }
  .head-main .logo .logo001 {
    width: 100px;
  }
  .header-height .head-main .logo .logo001 {
    width: 100px;
  }
}
/** 主選單與下拉 **/
nav {
  /*
  flex: 1;
  margin: 0 0 0 18vw;
*/
}
.menu {
  padding: 0;
  list-style: none;
  margin: 0 auto;
  display: flex;
}
.menu > li {
  color: #fff;
  font-size: 16px;
  text-align: center;
  position: relative;
  cursor: pointer;
  padding: 0;
}
.menu > li:before {
  content: "";
  display: block;
  width: 65px;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.menu > li > a {
  color: #fff;
  display: block;
  padding: 34px 15px 5px 15px;
  margin: 0;
  overflow: hidden;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.menu > li > a:hover {
  color: #fff;
  transform: translateY(3px);
}
.menu > li:hover {}
.menu > li:hover:before {
  bottom: 0;
  transition: all 0.5s ease 0s;
  opacity: 1;
  visibility: visible;
}
.menu > li.sub > ul.sub-menu {
  background: rgba(255, 255, 255, .88);
  display: none;
  position: static;
  z-index: 999;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px #cccccc solid;
}
.menu > li.sub:hover ul.sub-menu {
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  top: 130px;
}
.menu > li.sub > ul.sub-menu > li {
  display: block;
  border-bottom: 1px #cccccc solid;
}
.menu > li.sub > ul.sub-menu > li:last-of-type {
  border-bottom: 0;
}
.menu > li.sub > ul.sub-menu > li > a {
  display: block;
  color: #000000;
  padding: 5px 10px;
  margin: 0;
}
.menu > li.sub > ul.sub-menu > li > a:hover {
  background: #761000;
  color: #ffffff;
}
.header-height .menu > li:hover:before {
  bottom: 20px;
}
.header-height .menu > li:before {
  height: 2px;
}
.header-height .menu > li > a {
  padding: 30px 20px;
}
.header-height .menu > li.sub:hover ul.sub-menu {
  top: 90.73px;
}
@media screen and (max-width:1400px) {
  nav {
    margin: 0 0 0 15px;
  }
  .menu > li > a {
    padding: 20px;
  }

  .menu > li.sub:hover ul.sub-menu {
    top: 101px;
  }
  .menu > li {
    margin-left: 10px;
  }
    
    .head-main .logo{
        top: 25px;
    }
}
@media screen and (max-width:1150px) {
    .head-main{
        justify-content: flex-end;
    }    
    
  .menu > li > a {
    padding: 20.745px 5px;
  }
  .menu > li:after {
    height: 10px;
  }
  .menu > li.sub:hover ul.sub-menu {
    top: 90px;
  }
  .menu > li > a:hover {
    transform: translateY(0);
  }
}
@media screen and (max-width:1020px) {
  #menu {
    display: none;
  }
  .slicknav_menu {
    display: block;
    background: #000;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .2);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
  }
    
    #header .head-main .logo{
        top: 15px;
    }
}
/** edm輪播 **/
/*尺寸設定*/
.swiper {
  width: 100%;
  height: auto;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*切換點尺寸樣式*/
.swiper .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  opacity: 1;
  background: #fff;
}
.swiper .swiper-pagination-bullet-active {
  background: #45B035;
  padding: 2px;
  position: relative;
}
.swiper .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px !important;
}
.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 20px !important;
}

@media screen and (max-width:576px){
    .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
      bottom: 5px !important;
    }
    
    .swiper .swiper-pagination-bullet {
      width: 10px;
      height: 10px;
    }
}

/** 配置 **/
.warpper {}
.main {}
.i-title-main {
  margin: 0 0 50px 0;
  position: relative;
  z-index: 2;
}
.i-title-main h2 {
  position: relative;
  width: 100%;
}
.i-title-main h2:after, .i-title-main h2:before {
  content: "";
  position: absolute;
  top: 50%;
  background: #E0E0E0;
  height: 1px;
  width: 42%;
}
.i-title-main h2:after {
  left: 0;
}
.i-title-main h2:before {
  right: 0;
}
.i-title-main h3.i-title-en {
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 0;
}
.i-title-main h2.i-title-cn {
  font-weight: 500;
  font-size: 24px;
  color: #282828;
  text-align: center;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
}

.i-title-main2 {
  margin: 0 0 25px 0;
}

.i-title-main2 h3.i-title-en {
  font-weight: 600;
  font-size: 60px;
  line-height: 50px;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

.i-title-main2 h2.i-title-cn {
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  color: #282828;
  letter-spacing: 0.4em;
  margin-bottom: 0;
}

.i-more {
  text-align: center;
}

.i-more a {
  display: inline-block;
  padding: 10px 75px;
  border: 1px solid #2D3A35;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.15em;
  color: #2D3A35;
  position: relative;
  transition: .5s;
}

.i-more a::before{
    content: "";
    position: absolute;
    width: 64px;
    height: 1px;
    background: #2D3A35;
    right: -28px;
    top: 50%;
    transition: .5s;
    opacity: 1;
}

.i-more a:hover::before{
    right: -50%;
    opacity: 0;
}

.i-more a:hover {
   background: #282828;
   color: #fff;
}

@media screen and (max-width:1200px) {
  .i-title-main4 h2.i-title {
    font-size: 40px;
  }
  .i-title-main4 h2.i-title span {
    font-size: 18px;
  }
}

@media screen and (max-width:976px){
    .i-title-main h2:after, .i-title-main h2:before{
        width: 38%;
    }
}

@media screen and (max-width:767px) {
  .i-title-main {
    margin: 0 0 20px 0;
  }
  .i-title-main h2.i-title, .i-title-main2 h2.i-title, .i-title-main3 h2.i-title {
    font-size: 42px;
  }
}

@media screen and (max-width:576px){
    .i-title-main h2:after, .i-title-main h2:before{
        width: 25%;
    }
}



/* 首頁最新消息 */
.i-agent-main {
  margin: 50px 0;
  position: relative;
}
.i-agent {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}
.i-agent > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  justify-content: space-evenly;
}
.i-agent > ul > li {
  padding: 0;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  width: calc(100% / 3 - 20px);
}

.i-agent > ul > li .i-agent-photo-main .i-agent-photo img {
  width: 100%;
}
.i-agent > ul > li .i-agent-info {
  font-size: 16px;
  color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}
.i-agent > ul > li:hover .i-agent-info {
  background: linear-gradient(0deg, #000000 -2.74%, rgba(18, 18, 18, 0.2) 24.15%);
  backdrop-filter: blur(4px);
}
.i-agent > ul > li .i-agent-info .i-agent-title{
  position: relative;
  z-index: 1;
  transition: .5s;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 124px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.i-agent > ul > li:hover .i-agent-info .i-agent-title {
  transform: translateY(-50px);
  background: rgba(0, 0, 0, 0.00);
}
.i-agent > ul > li:hover .i-agent-info .agent-more {
  opacity: 1;
  transform: translateY(-50px);
}
.i-agent > ul > li .i-agent-info .agent-more {
  position: absolute;
  bottom: 80px;
  display: block;
  padding: 10px 38px;
  border: 1px solid #fff;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  transition: .5s;
  opacity: 0;
}
.i-agent > ul > li .i-agent-info .agent-more:hover {
  background: #fff;
  color: #282828;
}

@media screen and (max-width:1020px) {
    .i-agent > ul > li .i-agent-info .i-agent-title img{
        width: 140px;
    }
}

@media screen and (max-width:976px){
    .i-agent > ul > li{
        width: calc(100% / 2 - 10px);
        margin-bottom: 20px;
    }
    
    
}

@media screen and (max-width:767px) {

    

    
}

@media screen and (max-width:576px) {
     .i-agent > ul > li{
        width: calc(100% / 1 - 10px);
        margin-bottom: 20px;
    }
    
     .i-agent > ul{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

/* 精選商品 */
.i-pro-main {
    margin-bottom: 68px;
}
.i-pro {
  max-width: 1300px;
  margin: 0 auto;
}
.i-pro > ul {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.i-pro > ul > li {
  padding: 0;
  margin: 0 10px;
  width: calc(100%/4 - 20px);
}
.i-pro > ul > li a {
  display: block;
  position: relative;
}
.i-pro > ul > li a:hover {

}

.i-pro > ul > li .i-pro-photo-main {
    height: 300px;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #F1F1F1;
    overflow: hidden;
}

.i-pro > ul > li .i-pro-photo-main img{
    transition: .5s;
}

.i-pro > ul > li:hover .i-pro-photo-main img{
    transform: scale(110%);
}
  

.i-pro > ul > li .i-pro-info {
  font-size: 16px;
  color: #282828;
}
.i-pro > ul > li .i-pro-info .i-pro-title {
  padding-top: 16px;
  margin: 0;
  line-height: 1.4;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-align: center;
}

@media screen and (max-width:1020px) {
  .i-pro > ul > li {
    width: calc(100%/3 - 20px);
  }
}
@media screen and (max-width:767px) {
  .i-pro > ul > li {
    width: calc(100%/2 - 10px);
    margin: 5px;
  }
  .i-pro > ul > li .i-pro-info .i-pro-title {
    font-size: 16px;
  }
}
@media screen and (max-width:575px) {
    .i-pro{
        padding: 0 10px;
    }
    
    .i-pro > ul > li {
    width: calc(100%/2 - 10px);
  }
    
    .i-pro > ul > li .i-pro-photo-main{
        height: 180px;
    }
    
    .i-pro > ul > li .i-pro-info .i-pro-title{
        font-size: 12px;
        padding-top: 10px;
    }
    
    
    
}
@media screen and (max-width:374px) {

}
/** 首頁公司介紹 **/
.i-about-main {
  padding-bottom: 163px;
    margin-bottom: 50px;
  position: relative;
  display: flex;
  justify-content: center;
  background: url("../images/about-bg.png");
    background-position: bottom;
    background-repeat: no-repeat;
    background-size:contain;
}
.i-about {
  max-width: 1280px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 1;
}

.i-about-img {
  position: relative;
  left: 0;
  max-width: 774px;
  display: flex;
  flex: 1;
  margin-right: 90px;
}

.i-about-img img{
  width: 25%;
  height: auto;
  position: relative;
  object-fit: contain;
}

.i-about-img img:nth-child(1){
    top: 33px;
}

.i-about-img img:nth-child(2){
    top: 62px;
}

.i-about-img img:nth-child(3){
    top: 45px;
}

.i-about-img img:nth-child(4){
    top: 18px;
}

.i-about-img img:not(:last-child) {
  margin-right: 20px;
}

.i-about-info {
  max-width: 580px;
}
.i-about-info .i-about-content {
  font-family: "Noto Sans TC", sans-serif;
  color: #353535;
  font-size: 16px;
  line-height: 2;
  word-wrap: break-word;
  text-align: justify;
  position: relative;
  margin-bottom: 50px;
  letter-spacing: 0.05em;
}

.i-about-content .i-about-slogan{
    font-weight: 500;
    font-size: 36px;
    text-align: justify;
    letter-spacing: 0.05em;
    line-height: 53px;
    margin-bottom: 30px;
}

.i-about-content p{
    padding-right: 50px;
    margin-bottom: 24px;
}

@media screen and (max-width:1200px) {    
    .i-about-img{
        margin-right: 60px;
    }
    
    .i-about-content .i-about-slogan{
        font-size: 30px;
        line-height: 40px;
    }
    
    .i-about-info {
        max-width: 500px;
        padding: 0 15px;
    }
    
    .i-about-img img:not(:last-child) {
      margin-right: 10px;
    }
}
@media screen and (max-width:976px) {
  .i-about::before {
    width: 100%;
  }
  .i-about-info {
    max-width: 100%;
  }
    
    .i-about-main{
        flex-direction: column-reverse;
        align-items:center;

    }
    
        
    .i-about-img{
        margin-right: 0;
        justify-content: center;
        max-width: 650px;
    }
}
@media screen and (max-width:767px) {
  .i-about:after {
    width: 100%;
    top: 12px;
    left: 12px;
  }

  .i-about-info .i-about-note {
    font-size: 17px;
  }
  .i-about-more {
    bottom: -12px;
    right: -12px;
  }
    
    .i-about-img{
        max-width: 520px;
    }

    
}
@media screen and (max-width:575px) {
    .i-about-img{
        display: none;
    }
    
    .i-about-main{
        padding-bottom: 0;
        background: none;
    }
    
    .i-about-content .i-about-slogan{
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .i-about-content p{
        padding-right: 0;
        margin-bottom: 20px;
    }
}

/* 最新消息 */
.i-news-main {
    margin-bottom: 68px;
}
.i-news {
  max-width: 1300px;
  margin: 0 auto;
}


.i-news > ul {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  z-index: 1;
}

.i-news > ul > li {
  width: calc(100%/4 - 20px);
  margin: 0 10px;
  padding: 0;
  border-radius: 5px;
  border: 1px #2D3A35 solid;
  position: relative;
    z-index: 1;
}

.i-news > ul > li a {
  display: block;
}
/*
.i-news > ul > li a:hover {
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .2);
}
*/
.i-news > ul > li .i-news-content{
    padding: 15px 15px 30px;
}

.i-news > ul > li .i-news-title{
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.05em;
  color: #303233;
  font-weight: 700;
  margin-bottom: 14px;
}

.i-news > ul > li .i-news-date{
    font-size: 12px;
    line-height: 14px;
    color: #707070;
}

.i-news > ul > li .i-news-photo-main {
  overflow: hidden;
}

.i-news-detaile-title {
  font-size: 24px;
  color: #8a1c01;
  padding: 0 0 10px 0;
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 1.4;
  border-bottom: 1px #8a1c01 solid;
  margin-top: 10px;
}

.i-news > ul > li .i-news-photo-main img {
  background-color: #ffffff;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: scale(1);
  transition: all 0.5s ease 0s;
  width: 100%;
  min-height: 200px;
  object-fit: cover;
  border-radius: 5px 5px 0 0;
}
.i-news > ul > li:hover .i-news-photo-main img {
  transform: scale(1.1);
  transition: all 0.5s ease 0s;
}

.news-more{
    position: absolute;
    padding: 5px 40px;
    border: 1px solid #2D3A35;
    background: #fff;
    color: #2D3A35;
    bottom: -15px;
    right: 15px;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.15em;
    border-radius: 15px;
    z-index: 20;
}

.news-more:hover{
    color: #fff;
    background: #282828;
}

@media screen and (max-width:767px) {
  .i-news > ul > li {
    width: calc(100%/2 - 10px);
    margin: 5px;
    margin-bottom: 30px;
  }
    
    .i-news > ul > li .i-news-title{
        font-size: 16px;
    }
}
@media screen and (max-width:575px) {
    .i-news > ul{
        justify-content: center;
    }    
    
  .i-news > ul > li {
    width: calc(100%/1 - 20px);
  }
}





/** 內頁banner **/
.inside-banner {
  background: #ffffff url("../images/banner.jpg")no-repeat center 50%;
  background-size: cover;
  padding: calc(80px + 8vw) 15px 5vw 15px;
  position: relative;
}
.inside-banner .banner-title {
  max-width: 1280px;
  font-size: 30px;
  color: #ffffff;
  margin: 0 auto;
  padding: 0;
  line-height: 1.4;
  font-weight: 500;
  text-align: center
}
.inside-banner .banner-title .banner-title-ch {
  font-size: 36px;
  color: #fff;
  padding: 0;
  margin: 0;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 8px;
  position: relative;
  z-index: 1;
}
.inside-banner .banner-title .banner-title-en {
  font-size: 20px;
}
@media screen and (max-width:1150px) {
  .inside-banner {
    padding: calc(56.73px + 5vw) 15px 5vw 15px;
  }
}
@media screen and (max-width:1020px) {
  .inside-banner {
    padding: calc(47px + 5vw) 15px 5vw 15px;
  }
}
@media screen and (max-width:767px) {
  .inside-banner .banner-title .banner-title-ch {
    font-size: 30px;
  }
}
/** Breadcrumb **/
nav[aria-label="breadcrumb"] {
  flex: initial;
  margin: 0;
  padding: 0 15px;
  margin: 30px 0;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  background-color: transparent;
  border-radius: 0;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.breadcrumb-item {
  padding-left: 0;
}
.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #C5C5C5;
  content: "/";
}
.breadcrumb-item a {
  display: inline-block;
  text-decoration: none;
  color: #C5C5C5;
}
.breadcrumb-item a:hover {
  color: #7baa4e;
  text-decoration: none;
}
.breadcrumb-item.active {
  color: #000;
}

@media screen and (max-width:1020px){
    nav[aria-label="breadcrumb"]{
        margin-top: 80px;
    }
}
/** 內頁架構 **/
.content-body-main {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
/*
.content-body-main:after {
  content: "";
  display: block;
  width: 105%;
  height: 74px;
  background: #eee;
  position: absolute;
  right: -50%;
  bottom: 0;
  z-index: -1;
}
*/
.content-body {
  max-width: 1280px;
  margin: 0 auto;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
}

.content-body2 {
  max-width: 1280px;
  margin: 0 auto;
  margin-bottom: 60px;
}

.page-title {
  font-size: 28px;
  color: #282828;
  padding-left: 20px;
  padding-top: 80px;
  padding-bottom: 40px;
}


.inner-body{
    margin: 60px 0;
}

.page-title-cn{
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0.4em;
    position: relative;
}

.page-title-cn::before{
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    left: -20px;
    top: 17px;
    background: #45B035;
}

.page-title-en{
    font-weight: 700;
    font-size: 60px;
    line-height: 40px;
    letter-spacing: 0.05em;
    position: relative;
}

.page-title-en::before{
    content: "";
    position: absolute;
    width: 25%;
    height: 1px;
    background: #E0E0E0;
    bottom: 15px;
    left: 250px;
}

.page-title-en.left::before{
    left:320px;
}

.page-main {
  padding: 0;
  font-size: 16px;
  color: #222222;
}
.page-main a {
  color: #8A1C01;
}
.page-main a:hover {
  color: #7baa4e;
}
/*
.content-main {
  display: flex;
}
.content-main .content-font {
  flex: 1.2;
}
.content-main .content-photo {
  flex: 1;
  margin: 0 0 0 8vmin;
  position: relative;
  height: 100%
}
.content-main .content-photo:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 1px #8a1c01 solid;
  position: absolute;
  top: -10px;
  left: -10px;
}
*/

.font001 {
  font-weight: 500;
  font-size: 24px;
  line-height: 25px;
  letter-spacing: 0.2em;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid #F0F0F0;
  position: relative;
}

.font001::before{
    content: "";
    position: absolute;
    width: 80px;
    height: 1px;
    background: #45B035;
    bottom: 0;
}

.font001::after{
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background: #45B035;
    left: -15px;
    top: 0;
}

.font001.font-bold{
    font-weight: 700;
    font-size: 32px;
}


.font002 {
  color: #222222;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  margin: 0 0 20px 0;
  padding: 0 0 10px 0;
  position: relative;
  z-index: 1;
}
.font002 span {
  color: #8a1c01;
  font-size: 18px;
}
.font002:after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #8a1c01;
  position: absolute;
  bottom: 0;
  left: calc(50% - 30px);
}
.font002 a {
  display: inline-block;
  color: #222222;
}
.font002 a:hover {
  text-decoration: none;
}
.font002 i {
  color: #7baa4e;
  font-size: 16px;
}

.content-font{
    margin-bottom: 40px;
}

.content-font p{
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
}

.content-list{
    list-style: none;
    padding: 0;
}

.content-list li{
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 5px;
}

.content-list li:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  margin-bottom: 2px;
  background-color: #45B035;
}

.list-description{
    margin-bottom: 20px;
    margin-left: 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

@media screen and (max-width:767px) {
  .page-title {
    font-size: 24px;
    padding: 0 35px 0 0;
    margin: 80px 0 40px 30px;
  }
  .page-title span {
    font-size: 12px;
  }
  .page-title:after {
    width: 20px;
    height: 3px;
    bottom: 8px;
  }
    
    .page-title-en{
        font-size: 50px;
        line-height: 30px;
    }    
    
    .page-title-cn{
        font-size: 20px;
    }
    
    .page-title-en::before{
        left: 200px;
    }
    
  .content-main {
    display: block;
  }
  .content-main .content-font {
    flex: initial;
    width: 100%
  }
  .content-main .content-photo {
    flex: initial;
    margin: 25px 0 0 0;
  }
    
        
    .font001::after{
        display: none;
    }
    
    .page-title-en.left::before{
        left: 260px;
    }
}
@media screen and (max-width:575px) {
  .content-main .content-photo:before {
    top: -5px;
    left: -5px;
  }
    
    .font001{
        font-size: 20px;
    }

    

}
/** 左邊分類 **/
.left-menu-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #F0F0F0;
  letter-spacing: 0.2em;
}
.in-left-menu {
  margin-right: 40px;
}
.in-left-menu > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.in-left-menu > ul > li {
  width: 100%;
  font-size: 16px;
  padding: 0;
  margin-bottom: 20px;
}
.in-left-menu > ul > li > a {
  background: #ffffff;
  color: #282828;
  display: block;
  position: relative;
  transition: .3s;
  letter-spacing: 0.05em;
}
.in-left-menu > ul > li > a:hover {
  text-decoration: underline;
  color: #45b035;
}

.in-left-menu > ul > li > .current {
  text-decoration: underline;
}
.in-left-menu > ul > li ul {
  margin: 5px 0 0 30px;
  padding: 0;
  list-style: square;
}
.in-left-menu > ul > li ul li {
  border-top: 1px #CCC dotted;
  padding: 5px 5px 5px 0;
}
.in-left-menu > ul > li ul li a {
  font-size: 13px;
  color: #666;
  display: block;
}
.in-left-menu > ul > li ul li a:hover {
  color: #71743D;
}

.news-menu > ul > li {
  width: calc(100%/7);
}
.news-menu > ul > li > a {
  padding: 10px 6px;
}
.cases-menu > ul > li {
  width: calc(100%/7);
}
.cases-menu > ul > li > a {
  padding: 10px 6px;
}
.left-beautify img {
  width: 100%;
  height: auto;
  margin-top: 0px;
}
.m_classLink {
  display: none;
}
@media screen and (max-width:767px) {
  .classBox {
    padding: 0 0 6vmin 0;
  }
  ul.classLink {
    display: none;
  }
  .m_classLink {
    display: block;
    position: relative;
    background-color: #ffffff;
    border: 1px solid #45b035;
  }
  .m_classLink a.main {
    display: block;
    background: none;
    font-size: 16px;
    color: #222222;
    position: relative;
    padding: 8px 49.59px 8px 8px;
  }
  .m_classLink a.main i {
    display: block;
    font-size: 16px;
    background: #45b035;
    width: 41.59px;
    height: 100%;
    text-align: center;
    color: #FFF;
    line-height: 41.59px;
    position: absolute;
    right: 0;
    top: 0;
  }
  .m_classLink a.main b {
    font-weight: 400;
  }
  .m_classLink ul {
    display: none;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    background: #FFF;
    border: 1px solid #45b035;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 99;
    box-sizing: border-box;
  }
  .m_classLink ul li {
    margin: 0;
    padding: 0;
  }
  .m_classLink ul li a {
    display: block;
    padding: 8px;
    border-top: 1px solid #45b035;
    font-size: 16px;
    color: #222222;
  }
  .m_classLink ul li:first-child a {
    border: none;
  }
  .m_classLink ul li a:hover {
    background: #f3f3f3;
  }
  .m_classLink ul li ul {
    display: block;
    margin: 0 10px 10px 10px;
    padding: 0;
    list-style: none;
    width: calc(100% - 20px);
    background: #FFF;
    border: 1px solid #45b035;
    position: inherit;
    left: inherit;
    top: inherit;
    z-index: 999;
    box-sizing: border-box;
  }
  .left-menu-title {
    display: none;
  }
  .in-left-menu {
    margin: 0;
    border-bottom: 0;
    border-top: 0;
  }
  .left-beautify {
    display: none;
  }
}
/** 最新消息 **/
.news{}
.news>ul{margin:0; padding:0; list-style:none;display: flex;flex-wrap: wrap;}
.news>ul>li{padding: 0;margin: 10px;width: calc(100%/2 - 20px);}
.news>ul>li a{color:#333; display:flex; align-items:center; padding:0;}
.news>ul>li a:hover{background:#ffffff;box-shadow: 0 8px 15px 0 rgba(0,0,0,.1);}
.news>ul>li .news-date{width:80px; color:#327F26; font-size:16px; text-align:center; margin:0;border: 1px #327F26 solid;background: #ffffff;}
.news>ul>li .news-date .news-day{color:#327F26; font-size:30px;font-weight: 500;}
.news>ul>li .news-date .news-year{color:#ffffff; font-size:12px;background: #327F26;letter-spacing:0;padding: 3px 5px;text-transform: uppercase;}
.news>ul>li h3.news-title{flex:1; font-size:16px; color:#222222;padding:0 15px;margin: 0;line-height: 1.4;font-weight: 400;overflow: hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;}
.news-detail-date{background: #327F26;color:#ffffff; font-size:14px; padding:3px 15px;;margin: 0 0 15px 0;display: table; font-style: italic;border-radius: 3px;}
@media screen and (max-width:767px){
	.news>ul>li{margin: 10px 0;width: calc(100%/1 - 0px);}
    .news>ul>li .news-date{width:70px;}
    .news>ul>li .news-date .news-year{padding: 3px 3px;}
}

/** 相關連結 **/
.link {
  margin: 0 0 6vmin 0;
}
.link .link-title {
  font-size: 24px;
  color: #7baa4e;
  padding: 0 0 10px 0;
  margin: 0 0 20px 0;
  font-weight: 400;
  line-height: 1.4;
  border-bottom: 1px #7baa4e solid;
}
.link > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.link > ul > li {
  padding: 0;
  margin: 10px;
  width: calc(100%/2 - 20px);
}
.link > ul > li a {
  color: #222222;
  display: flex;
  padding: 0;
  border-bottom: 1px #cccccc dashed;
  border-right: 5px #7baa4e solid;
  border-radius: 5px;
  overflow: hidden;
}
.link > ul > li a:hover {
  box-shadow: 0 8px 15px 0 rgba(0, 0, 0, .1);
  color: #7baa4e;
}
.link > ul > li .link-icon {
  width: 50px;
  font-size: 24px;
  text-align: center;
  padding: 10px;
  background: #7baa4e;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.link > ul > li .link-dep {
  flex: 1;
  font-size: 16px;
  color: #222222;
  padding: 10px 15px;
}
.link > ul > li:hover .link-dep {
  color: #7baa4e;
}
@media screen and (max-width:767px) {
  .link .link-title {
    font-size: 22px;
    margin: 0 0 10px 0;
  }
  .link > ul > li {
    margin: 10px 0;
    width: calc(100%/1 - 0px);
  }
}
@media screen and (max-width:575px) {
  .link > ul > li .link-icon {
    width: 40px;
    font-size: 20px;
  }
}

/** 現貨商品列表 **/
.projects {}
.projects > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.projects > ul > li {
  width: calc(100%/4 - 20px);
  margin: 10px;
  padding: 0;
      
}
.projects > ul > li a {
  display: block;
  padding: 10px;
border: 1px #eeeeee solid;
  background: #ffffff;
}

.projects > ul > li .projects-title {
  padding-top: 16px;
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.05em;
    text-align: center;
    color: #282828;
}
.projects-content {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-align: justify;
  font-size: 14px;
  color: #464646;
  margin-bottom: 0;
}
.projects > ul > li .projects-photo-main {
  overflow: hidden;
}

.projects > ul > li .projects-photo-main img {
  background-color: #ffffff;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: scale(1);
  transition: all 0.5s ease 0s;
}
.projects > ul > li:hover .projects-photo-main img {
  transform: scale(1.1);
  transition: all 0.5s ease 0s;
}
@media screen and (max-width:767px) {
  .projects > ul > li {
    width: calc(100%/3 - 10px);
    margin: 5px;
  }
}
@media screen and (max-width:575px) {
  .projects > ul > li {
    width: calc(100%/2 - 10px);
  }
}
/** 現貨商品明細 **/
.pro-detail-title {
    font-weight: 500;
    font-size: 32px;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}
.pro-detail-box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 5vmin 0;
}
.pro-detail-photo-box {
  max-width: 400px;
  margin: 0 30px 0 0;
  height: auto;
  flex: 1;
  display: flex;
/*  align-items: center;*/
  justify-content: center;
    padding: 20px;
}

.pro-detail-photo-box img{
    object-fit: contain;
}

.pro-detail-spe-box {
  flex: 1;
  position: relative;
  padding: 0px;
  height: 100%;
}

.pro-detail-spe-box ul {
  list-style: none;
  padding: 0;
}

.pro-detail-spe-box ul li p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}
.projects-info {
  padding: 0;
  margin: 0;
}
.projects-info > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.projects-info > ul > li {
  padding: 0;
  margin: 8px 0;
  display: flex;
}
.projects-info > ul > li .projects-info-title {
  width: 110px;
  background: #7baa4e;
  padding: 5px 15px;
  border-radius: 3px;
  color: #ffffff;
  text-align: center;
}

@media screen and (max-width:767px) {
  .pro-detail-title {
    font-size: 22px;
    margin: 25px 0 15px 0;
  }
  .pro-detail-box {
    display: block;
  }
  .pro-detail-photo-box {
    width: 100%;
    margin: 0 0 5vmin 0;
  }
  .pro-detail-spe-box {
    width: 100%;
    padding-bottom: 0;
  }
  .projects-info > ul > li .projects-info-title {
    width: 100px;
    padding: 5px 10px;
  }
}
/* 群群案例列表 */
.cases {}
.cases > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.cases > ul > li {
  width: calc(100%/4 - 20px);
  margin: 10px;
  padding: 0;
}
.cases > ul > li a {
  display: block;
  padding: 10px;
  border: 1px #eeeeee solid;
  background: #ffffff;
}
.cases > ul > li a:hover {
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .2);
}
.cases > ul > li .cases-title {
  font-size: 16px;
  color: rgb(34, 34, 34);
  line-height: 20px;
  font-weight: 500;
  margin: 8px 0;
  text-align: center;
}
.cases-content {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-align: justify;
  font-size: 14px;
  color: #464646;
  margin-bottom: 0;
}
.cases > ul > li .cases-photo-main {
  overflow: hidden;
  border-bottom: 3px #8a1c01 solid;
}
.cases > ul > li .cases-photo-main img {
  background-color: #ffffff;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: scale(1);
  transition: all 0.5s ease 0s;
}
.cases > ul > li:hover .cases-photo-main img {
  transform: scale(1.1);
  transition: all 0.5s ease 0s;
}
@media screen and (max-width:767px) {
  .cases > ul > li {
    width: calc(100%/3 - 10px);
    margin: 5px;
  }
}
@media screen and (max-width:575px) {
  .cases > ul > li {
    width: calc(100%/2 - 10px);
  }
  .cases > ul > li a {
    padding: 5px;
  }
}
/** 群群案例明細 **/
.cases-detail-title {
  font-size: 24px;
  color: #8a1c01;
  padding: 0 0 10px 0;
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 1.4;
  border-bottom: 1px #8a1c01 solid;
}
.cases-detail-box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 5vmin 0;
}
.cases-detail-photo-box {
  width: 55%;
  margin: 0 4vmin 0 0;
  height: 100%;
}
.cases-detail-spe-box {
  flex: 1;
  position: relative;
  padding: 0px;
  height: 100%;
}
.cases-detail .cases-photo-box img {
  width: 100%;
  height: auto;
}
.cases-info > ul > li {
  padding: 0;
  margin: 8px 0;
  display: flex;
}
.cases-info > ul > li .cases-info-title {
  width: 110px;
  background: #7baa4e;
  padding: 5px 15px;
  border-radius: 3px;
  color: #ffffff;
  text-align: center;
}
.cases-info > ul > li .cases-info-dep {
  flex: 1;
  margin: 0 0 0 15px;
  padding: 5px 0;
}
.cases-introduce {
  background: #999;
  font-weight: normal;
  border-left: 5px #111111 solid;
  padding: 8px 10px;
  font-size: 20px;
  color: #fff;
  margin: 25px 0 15px 0;
}
.cases-content {
  padding: 0px 0;
  font-size: 16px;
  color: #333;
  clear: both;
}
@media screen and (max-width:767px) {
  .cases-detail-title {
    font-size: 22px;
    margin: 25px 0 15px 0;
  }
  .cases-detail-box {
    display: block;
  }
  .cases-detail-photo-box {
    width: 100%;
    margin: 0 0 5vmin 0;
  }
  .cases-detail-spe-box {
    width: 100%;
    padding-bottom: 0;
  }
  .cases-info > ul > li .cases-info-title {
    width: 100px;
    padding: 5px 10px;
  }
}
/* 代理品牌 */
.agent {}
.agent > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-bottom: 120px;
}
.agent > ul > li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin: 20px;
  width: calc(100%/5 - 40px);
  position: relative;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  height: 180px;
  background: #fff;
  transition: .3s;
}
.agent > ul > li:hover {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
}
.agent > ul > li a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.agent-photo-main {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.agent > ul > li:hover .agent-photo-main img {
  transform: scale(1.1);
  transition: all 0.5s ease 0s;
}
@media screen and (max-width:1020px) {
  .agent > ul > li {
    width: calc(100%/4 - 40px);
  }
}
@media screen and (max-width:767px) {
  .agent > ul > li {
    width: calc(100%/3 - 10px);
    margin: 5px;
  }
}
@media screen and (max-width:575px) {
  .agent > ul > li {
    width: calc(100%/2 - 10px);
  }
  .agent > ul > li a {
    padding: 5px;
  }
}
/** 聯絡我們 **/
.contact-info ul{
    list-style: none;
    padding: 0;
}

.contact-info ul li{
    color: #000;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-info ul li a{
    color: #000;
}

.contact-info ul li img{
    margin-right: 10px;
}

@media screen and (max-width:767px) {
  
}
@media screen and (max-width:575px) {
  
}

/** 表單欄位 **/
.form-box{
    border: 1px solid #EAEAEA;
    padding: 30px 20px 30px 20px;
}


.form-box input, .form-box img {
  vertical-align: middle;
}
.opinion-main {
  display: flex;
  margin-bottom: 16px;
}
.opinion {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  margin-right: 30px;
}

.opinion:nth-child(2){
    margin-right: 0;
}

.opinion-left01 {
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.input-main-style01 {
  flex: 1;
  width: 100%;
  border: 1px solid #C5C5C5;
  margin: 0;
  font-size: 14px;
  min-height: 30px;
}
.input-main-style02 {
  background: #f3f3f3;
  flex: 1;
  width: 100%;
  border: 0;
  margin: 0;
  padding: 8px 15px;
  font-size: 16px;
  color: #222222;
  min-height: 42px;
}
.input-main-style03 {
  background: #f3f3f3;
  flex: 1;
  width: 100%;
  border: 0;
  margin: 5px 0 0 0;
  padding: 8px 15px;
  font-size: 16px;
  color: #222222;
  min-height: 42px;
}
.input-main-select {
  background: none;
  flex: 1;
  width: 100%;
  border: 0;
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: #222222;
  display: flex;
  flex-wrap: wrap;
}
.input-main-select select {
  flex: 1;
  margin: 0;
  /*  padding: 8px 15px;*/
  line-height: 1.8;
  border: 0;
  font-size: 16px;
  color: #999;
  min-height: 42px;
}
.select-style {
  background: #8a6e0c;
  font-size: 16px;
  color: #ffffff;
  line-height: 20px;
  padding: 5px 10px;
  border: 0;
}
.input-style01 {
  background: #f4f8fb;
  flex: 1;
  width: 100%;
  border: 0;
  margin: 0;
  padding: 5px 15px;
  font-size: 16px;
  color: #222222;
  min-height: 42px;
}
input:disabled {
  background-color: #fff;
  color: #2d7fb9;
  cursor: no-drop;
}
.btn.openlink {
  margin: 3px 0;
  padding: 0 10px;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  font-weight: bold;
  background-color: #2d7fb9;
  color: #fff;
  border-radius: 5px;
}
.btn.openlink:hover {
  background-color: #ffbe00;
}
img.code {
  width: 100px;
  height: 42px;
  margin: 0;
  vertical-align: middle;
  display: inline-block;
}
.pay-main {
  padding: 0;
  font-size: 16px;
  color: #333333;
  border-radius: 0;
  margin: 15px 0;
}
.input-main-style01, .input-main-style02, .input-main-style03, .input-main-select select {
  transition: .5s;
  font-family: 'Oswald', 'Noto Sans TC', sans-serif;
}
.input-main-style01:focus, .input-main-style02:focus, .input-main-style03:focus, .input-main-select select:focus {
  background: #ffffff;
  box-shadow: 0 0 0 1px #45b035;
  position: relative;
  z-index: 1;
}
@media screen and (max-width:767px) {
  .opinion-main {
    display: block;
  }
 
    .opinion{
        margin-right: 0;
    }
}
@media screen and (max-width:575px) {
  .opinion-left01 {
    width: 100%;
  }
  .input-main-style02 {
    width: calc(100% - 100px);
  }
}
/** 按鈕 **/
.cart-btn {
  padding: 0;
  text-align: center;
  margin: 2vmin 0 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.cart-btn i {
  margin: 0 10px 0 0;
}
.btn-send {
  font-size: 13px;
}
a.btn-send {
  padding: 5px 20px;
  text-align: center;
  font-size: 16px;
  color: #ffffff;
  min-width: 100px;
  margin: 5px;
  border-radius: 3px;
  background: #45b035;
}
a.btn-send:hover {
  background: #333333;
}
a.btn-reset {
  background: #999999;
  padding: 5px 20px;
  text-align: center;
  font-size: 16px;
  color: #ffffff;
  min-width: 100px;
  margin: 5px;
  border-radius: 3px;
}
a.btn-reset:hover {
  background: #666666;
}
a.btn-send-over {
  background: #7ea2c5;
  padding: 5px 20px;
  text-align: center;
  font-size: 16px;
  color: #fff;
  min-width: 100px;
  margin: 5px;
  border-radius: 3px;
}
a.btn-send-over:hover {
  background: #96b9dc;
}
@media screen and (max-width:575px) {
  a.btn-send {
    padding: 5px 10px;
    width: calc(50% - 10px);
  }
  a.btn-reset {
    padding: 5px 10px;
    width: calc(50% - 10px);
  }
  a.btn-send-over {
    padding: 5px 10px;
    width: calc(50% - 10px);
  }
}
/** 送出訊息 **/
.jump-window-box {
  max-width: 600px;
  margin: 0 auto;
  border: 1px #ccc solid;
  padding: 4vmin;
  border-radius: 5px;
  box-shadow: 0 8px 15px 0 rgba(0, 0, 0, .1);
  background: #ffffff;
}
/** 頁次 **/
.page {
  font-size: 14px;
  color: #222222;
  text-align: center;
  clear: both;
  margin: 4vmin 0 0 0;
}
.page a {
  display: inline-block;
  background: #45b035;
  color: #fff;
  padding: 2px 10px;
  margin: 8px 5px;
}
.page a:hover {
  background: #222222;
  color: #fff;
}
.page br {
  display: none;
}
@media screen and (max-width:767px) {
  .page br {
    display: block;
  }
}
/** 下版 **/
footer {
  background: #000;
  padding: 40px 0 10px 0;
  position: relative;
}

footer .footer {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


h2.f-title {
  font-size: 20px;
  line-height: 30px;
  color: #333333;
  font-weight: 500;
  margin-bottom: 14px;
}

.f-info{
    margin-bottom: 30px;
}

  .f-info .f-logo {
    text-align: center;
  }

.sitemap{margin-bottom: 30px;}
.sitemap>ul{list-style: none;padding: 0;margin: 0;display: flex; flex-wrap: wrap; justify-content: center;}
.sitemap>ul>li{padding: 0; margin: 0 15px; margin-bottom: 10px;}
.sitemap>ul>li a{display: block;color: #ffffff; font-weight: 500; font-size: 16px; line-height: 24px; letter-spacing: 0.05em;}
.sitemap>ul>li a:hover{color: #45b035;}


.f-contact{margin-bottom: 10px; }
.f-contact > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 494px;
  margin-left: 30px;
}

.f-contact > ul > li {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  color: #fff;
  margin-bottom: 10px;
}

.f-contact > ul > li:nth-child(even){
    width: 274px;
}

.f-contact > ul > li:nth-child(odd){
    width: 137px;
    margin-right: 83px;
}

.f-contact > ul > li a {
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}
.f-contact > ul > li a:hover {
  color: #45B035;
}

.f-contact > ul > li img{
    margin-right: 10px;
}

.copyright {
  color: #fff;
  text-align: center;
  border-top: 1px solid #515151;
  padding-top: 8px;
  font-weight: 300;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.05em;
}
.copyright a {
  color: #fff;
}
.copyright a:hover {
  color: #45B035;
}

@media screen and (max-width:767px) {}
@media screen and (max-width:575px) {
    .f-contact > ul{
        margin-left: 0;
    }
    
    .f-contact > ul > li:nth-child(odd){
        margin-right: 40px;
    }
    
    .sitemap{
        margin-bottom: 10px;
    }
}
@media screen and (max-width:500px) {
  .f-contact > ul > li {
    width: 100%;
    margin: 5px 0;
  }
    
    .f-contact > ul{
        flex-direction: column;
    }
}