@charset "UTF-8";
@keyframes imgbg {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(5deg);
  }
}
.container-100 {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.d-flex {
  display: flex;
  flex-wrap: wrap;
}

section.page, section.up {
  position: relative;
  z-index: 2;
}

.w100 {
  width: 100px;
}

.f18 {
  font-size: 18px !important;
}

.border-bottom {
  border-bottom: solid 1px #000000;
}

.btn, .btn_back {
  position: relative;
  background: #07A95B;
  color: #FFF;
  display: flex;
  align-items: center;
  padding: 10px 50px;
  border-radius: 25px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.btn:hover img, .btn_back:hover img {
  transform: translateX(10px);
}
.btn img, .btn_back img {
  margin-left: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.btn_back:hover img {
  transform: translateX(-10px);
}
.btn_back img {
  margin-right: 10px;
}

.btn_reset {
  background: #b2b2b2 !important;
  border: solid 1px #b2b2b2 !important;
  border-radius: 20px !important;
  color: #FFF !important;
}
.btn_reset:hover {
  background: #505050 !important;
  border: solid 1px #505050 !important;
  border-radius: 20px !important;
}

.btn_submit {
  background: #07A95B !important;
  border: solid 1px #07A95B !important;
  border-radius: 20px !important;
  color: #FFF !important;
}
.btn_submit:hover {
  background: #505050 !important;
  border: solid 1px #505050 !important;
  border-radius: 20px !important;
}

.l-h {
  line-height: 26px;
}

.color01 {
  color: #07A95B;
}

.color02 {
  color: #046537;
}

.color_gray {
  color: #505050;
}

.color_w {
  color: #FFF !important;
}

.top-member {
  padding: 10% 0;
}

.top-alla {
  padding: 5% 0;
}

.top-allb {
  padding: 5% 0 8% 0;
}

.top-allc {
  padding: 5% 0 0;
}

.push {
  padding-top: 120px;
}

.frame {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.062745098);
  background: #FFF;
  padding: 40px 20px;
  border-radius: 20px;
}

.contact-info {
  padding: 30px 20px;
  display: flex;
  flex-wrap: wrap;
}

.contact-info .title_line h3, .contact-form .title_line h3 {
  font-size: 22px;
  color: #07A95B;
}

.contact-form {
  background: #f0f0f0;
  padding: 30px 40px;
  border-radius: 20px;
}

.info-box {
  margin-left: 40px;
}
.info-box p {
  font-size: 18px;
  margin-bottom: 10px;
  position: relative;
}
.info-box p:hover a {
  opacity: 0.5;
}
.info-box p::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  top: calc(50% - 12px);
  left: -36px;
  width: 24px;
  height: 24px;
}
.info-box p.tel::after {
  background-image: url(../img/tel.svg);
}
.info-box p.fax::after {
  background-image: url(../img/fax.svg);
}
.info-box p.mail::after {
  background-image: url(../img/mail.svg);
}
.info-box p.add::after {
  background-image: url(../img/add.svg);
}

.bg01 {
  position: relative;
  background: url(../img/bg01.png);
  background-size: cover;
  background-position-y: bottom;
}

.bg02 {
  position: relative;
  background: url(../img/bg02.png);
  background-size: cover;
  background-position-y: top;
}

.bg03 {
  position: relative;
  background: url(../img/bg03.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.bg_page {
  position: relative;
}
.bg_page::after {
  content: "";
  position: absolute;
  background: url(../img/page.jpg);
  background-size: cover;
  background-position-y: top;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.bg_page2 {
  position: relative;
}
.bg_page2::after {
  content: "";
  position: absolute;
  background: url(../img/page2.jpg);
  background-size: cover;
  background-position-y: top;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.banner-all img {
  width: 100%;
  display: block;
}

.maker {
  background: #07A95B;
  color: #ffffff;
  padding: 8px 25px;
  width: fit-content;
}

/*BANNER */
.banner {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.banner .swiper-banner {
  width: 100%;
}
.banner .swiper-banner .swiper-slide {
  cursor: pointer;
  position: relative;
  display: block;
  overflow: hidden;
  height: 0;
  width: 100%;
  padding-bottom: 40%;
}
.banner .swiper-banner .swiper-slide a img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  top: 50%;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.banner .swiper-banner .swiper-button-next, .banner .swiper-banner .swiper-button-prev {
  color: #fff;
}
.banner .swiper-banner .swiper-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background: transparent;
  border: solid 2px #b2b2b2;
}
.banner .swiper-banner .swiper-pagination .swiper-pagination-bullet-active {
  border: solid 2px #ffffff;
}

main .bn {
  position: relative;
  display: block;
  overflow: hidden;
  height: 0;
  width: 100%;
  padding-bottom: 20%;
}
main .bn img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  top: 50%;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
main .page-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
main .page-title h2 {
  display: block;
  font-size: 28px;
  font-weight: 600;
  position: relative;
  font-weight: 600;
  letter-spacing: 2px;
  color: #000;
}
main .page-title h4 {
  font-size: 60px;
  font-weight: 300;
  letter-spacing: 6px;
  color: rgba(0, 0, 0, 0.2);
}

/*大標*/
.title {
  position: relative;
  display: flex;
  align-items: center;
}
.title h2 {
  font-size: 30px;
  font-weight: 600;
  color: #000;
  position: relative;
}
.title h2::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -60%;
  width: 50%;
  height: 1px;
  background: #07A95B;
}
.title h4 {
  font-size: 60px;
  font-weight: 300;
  color: #07A95B;
}

.title_group {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.title_line hr {
  background: #E8E8E8;
  height: 2px;
  position: relative;
}
.title_line h3, .title_line h4 {
  font-size: 25px;
}

.index-about {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  margin: 40px auto;
}
.index-about .imgbox {
  cursor: pointer;
  position: relative;
  display: block;
  overflow: hidden;
  height: 0;
  width: 100%;
  cursor: auto;
  border-radius: 20px;
  padding-bottom: 33%;
}
.index-about .imgbox img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  top: 50%;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.index-feature {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.index-feature .featurebox {
  display: flex;
  align-items: center;
  background: #EFEFEF;
  color: #07A95B;
  padding: 12px 40px;
  border-radius: 10px;
}
.index-feature .featurebox img {
  width: 32px;
  max-width: 100%;
  margin-right: 10px;
}

.index-service {
  margin: 20px auto;
}

.service, .service02 {
  margin-bottom: 20px;
}
.service .imgbox, .service02 .imgbox {
  cursor: pointer;
  position: relative;
  display: block;
  overflow: hidden;
  height: 0;
  width: 100%;
  border-radius: 10px 10px 0 0;
}
.service .imgbox img, .service02 .imgbox img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  top: 50%;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  height: 100%;
}
.service .textbox, .service02 .textbox {
  background-color: #FFF;
  padding: 20px;
  border-radius: 0 0 10px 10px;
  text-align: center;
}

.service .imgbox {
  cursor: auto;
  padding-bottom: 60%;
}

.service02 {
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}
.service02 .imgbox {
  padding-bottom: 100%;
}
.service02:hover .textbox h3 {
  color: #07A95B;
}
.service02:hover .imgbox img {
  transform: translate(-50%, -50%) scale(1.1);
}

.index-case {
  margin: 40px auto 0;
}
.index-case .textwrapper {
  width: 80%;
  margin: auto 0 auto auto;
}
.index-case .imgwrapper {
  padding: 0;
}
.index-case .imgbox {
  cursor: pointer;
  position: relative;
  display: block;
  overflow: hidden;
  height: 0;
  width: 100%;
  padding-bottom: 53%;
  border-radius: 20px 0 0 0;
  cursor: auto;
}
.index-case .imgbox img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  top: 50%;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.casetitlebox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.index-contact {
  display: flex;
  align-items: center;
  padding: 40px;
  background: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}
.index-contact .info-box {
  position: relative;
  padding-right: 20px;
}
.index-contact .info-box::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 1px;
  height: 100%;
  background: #000;
}
.index-contact .info-box p {
  display: flex;
  align-items: center;
}
.index-contact .btnbox {
  margin-left: 20px;
}

.stitle p {
  color: #000;
}
.stitle h2 {
  color: #07A95B;
  font-size: 22px;
}

.servicedetail .imgbox {
  cursor: pointer;
  position: relative;
  display: block;
  overflow: hidden;
  height: 0;
  width: 100%;
  padding-bottom: 70%;
  cursor: auto;
}
.servicedetail .imgbox img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  top: 50%;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  height: 100%;
}

.case:hover .textbox i {
  transform: translateX(10px);
}
.case:hover .textbox h3 {
  color: #07A95B;
}
.case:hover .imgbox img {
  transform: translate(-50%, -50%) scale(1.1);
}
.case .imgbox {
  cursor: pointer;
  position: relative;
  display: block;
  overflow: hidden;
  height: 0;
  width: 100%;
  padding-bottom: 70%;
}
.case .imgbox img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  top: 50%;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  height: 100%;
}
.case .textbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0;
  padding: 10px 10px 20px 10px;
  border-bottom: 1px solid #000;
}
.case .textbox h3 {
  width: 80%;
}
.case .textbox i {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.morepic, .morepic01 {
  margin-top: 30px;
  text-align: center;
}
.morepic p, .morepic01 p {
  word-wrap: break-word;
  font-weight: 600;
  margin-top: 10px;
}
.morepic .imgbox, .morepic01 .imgbox {
  cursor: pointer;
  position: relative;
  display: block;
  overflow: hidden;
  height: 0;
  width: 100%;
  padding-bottom: 130%;
}
.morepic .imgbox:hover img, .morepic01 .imgbox:hover img {
  transform: translate(-50%, -50%) scale(1.1);
}
.morepic .imgbox img, .morepic01 .imgbox img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  top: 50%;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  height: 100%;
}

.morepic01 {
  margin-top: 15px;
}
.morepic01 .imgbox {
  cursor: pointer;
  position: relative;
  display: block;
  overflow: hidden;
  height: 0;
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  padding-bottom: 71%;
}
.morepic01 .imgbox::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.morepic01:hover .imgbox {
  border-radius: 10px;
}
.morepic01:hover .imgbox::after {
  opacity: 1;
}
.morepic01:hover .imgbox .more-icon {
  opacity: 1;
  z-index: 1;
}

.more-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.more-icon::before {
  content: "";
  position: absolute;
  background: url(../img/more-icon.png) center center/contain no-repeat;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ctitle h2 {
  color: #07A95B;
  margin-top: 10px;
}

/*產品 */
.product__carousel {
  display: block;
  max-width: 700px;
  margin: 1em auto 3em;
}
.product__carousel a {
  display: block;
  margin-bottom: 15px;
}
.product__carousel .gallery-top {
  margin-bottom: 5px;
  height: 420px !important;
}
.product__carousel .gallery-top .swiper-slide {
  position: relative;
  overflow: hidden;
}
.product__carousel .gallery-top .swiper-slide a {
  position: relative;
  display: -webkit-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.product__carousel .gallery-top .swiper-slide a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.product__carousel .gallery-top .swiper-slide .easyzoom-flyout img {
  min-width: 100%;
  min-height: 100%;
}
.product__carousel .swiper-button-next.swiper-button-white, .product__carousel .swiper-button-prev.swiper-button-white {
  color: #E6E6E6;
}
.product__carousel .gallery-thumbs .swiper-slide {
  position: relative;
  -webkit-transition: border 0.15s linear;
  transition: border 0.15s linear;
  border: 1px solid #E6E6E6;
  cursor: pointer;
  overflow: hidden;
  height: calc(100% - 2px);
  margin-top: 5px;
}
.product__carousel .gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
  border-color: #07A95B !important;
}
.product__carousel .gallery-thumbs .swiper-slide img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 100%;
}

ul.tabs {
  margin: 0;
  padding: 0;
  float: left;
  list-style: none;
  height: 50px;
  border-bottom: 1px solid #07A95B;
  width: 100%;
}
ul.tabs li {
  float: left;
  margin: 0;
  cursor: pointer;
  padding: 10px 30px;
  height: 50px;
  line-height: 31px;
  font-size: 20px;
  font-weight: 600;
  color: #333;
  overflow: hidden;
  position: relative;
  background: #ebebeb;
  border-bottom: 1px solid #07A95B;
}

ul.tabs li:hover {
  opacity: 0.9;
}
ul.tabs li.active {
  background: #07A95B;
  color: #FFF;
  display: block;
}

.tab_container {
  clear: both;
  float: left;
  width: 100%;
  background: #fff;
  overflow: auto;
}

.tab_content {
  padding: 20px;
  display: none;
}

.tab_drawer_heading {
  display: none;
}

@media screen and (max-width: 1680px) {
  .contact .col-lg-5 .info-box {
    margin-left: 0;
  }
  .contact .col-lg-5 .info-box p {
    font-size: 16px;
    margin: 12px 0 12px 30px;
  }
  .contact .col-lg-5 .info-box p span {
    display: block;
    margin: 4px 0 0 -30px;
  }
  .contact .col-lg-5 .info-box p::after {
    top: 0px;
    left: -30px;
  }
}
@media screen and (max-width: 1440px) {
  .f18 {
    font-size: 17px !important;
  }
  .bg::before {
    top: 0;
    left: 14px;
    width: 150px;
    height: 186px;
  }
}
@media screen and (max-width: 1366px) {
  /*產品 */
  .product__carousel .gallery-top {
    height: 400px !important;
  }
}
@media screen and (max-width: 1200px) {
  .btn, .btn_back {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  /*產品 */
  .product__carousel .gallery-top {
    height: 300px !important;
  }
}
@media screen and (max-width: 991px) {
  main .bn {
    padding-bottom: 40%;
  }
  main .bn img {
    height: 100%;
  }
  main .page-title h4 {
    font-size: 30px;
  }
  main .page-title h2 {
    font-size: 24px;
  }
  /*大標*/
  .title h2, .title02 h2 {
    font-size: 22px;
  }
  .title h4, .title02 h4 {
    font-size: 50px;
  }
  .f18 {
    font-size: 16px !important;
  }
  .banner .swiper-banner .swiper-button-next::after {
    font-size: 20px;
    width: 25px;
    height: 30px;
    right: 0px;
  }
  .banner .swiper-banner .swiper-button-prev::after {
    font-size: 20px;
    width: 25px;
    height: 30px;
    left: 0px;
  }
  .banner .swiper-banner .swiper-pagination {
    display: none;
  }
  .index-about {
    margin: 0 auto;
  }
  .index-about .imgbox {
    padding-bottom: 66%;
    margin-top: 10px;
  }
  .index-feature {
    margin-top: 20px;
  }
  .index-feature .featurebox {
    padding: 8px 12px;
    margin-bottom: 10px;
  }
  .service .textbox {
    padding: 5px;
  }
  .service02 .textbox {
    padding: 10px 0;
  }
  .casetitlebox {
    display: block;
  }
  .index-case .textwrapper {
    width: 100%;
    margin: 0 auto;
  }
  .bg03 {
    background-position-x: right;
  }
  .index-contact {
    display: block;
    padding: 20px;
  }
  .contact .form-box {
    margin-left: 0px;
    padding: 40px 20px;
  }
  .title_line hr::before {
    width: 90px;
  }
  .title_line h3, .title_line h4 {
    font-size: 20px;
  }
  .index-contact p {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .btn {
    padding: 10px 15px 10px 25px;
  }
  .btn_back {
    padding: 10px 25px 10px 15px;
  }
  .frame {
    padding: 20px 15px;
  }
  .index-about .linkbox .linkbox01:nth-child(2) {
    transform: translateX(0px);
  }
}
@media screen and (max-width: 667px) {
  .push {
    padding-top: 100px;
  }
  .top-member {
    padding: 40% 0 50px 0;
  }
  /*產品 */
  .product__carousel {
    display: none;
  }
  .products-img {
    display: block;
  }
}
@media screen and (max-width: 575px) {
  /*大標*/
  .title h2, .title02 h2 {
    font-size: 22px;
  }
  .title h4, .title02 h4 {
    font-size: 42px;
  }
  .title02 h4 {
    color: rgba(250, 250, 250, 0.4);
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.4);
  }
  main .page-title h4 {
    font-size: 24px;
  }
  main .page-title h2 {
    font-size: 18px;
  }
  .top-alla {
    padding: 10% 0;
  }
  p.sort {
    font-size: 22px !important;
  }
  .title_group {
    flex-direction: column;
  }
  .title_group .btnbox {
    margin-top: 20px;
  }
  .ctitle h2 {
    font-size: 20px;
  }
  .contact-info {
    padding: 30px 10px;
  }
  .contact-form {
    padding: 30px 20px;
  }
  .index-about .linkbox .linkbox01 {
    padding: 8% 10%;
  }
  .index-about .linkbox .linkbox01:nth-child(1) h4::before, .index-about .linkbox .linkbox01:nth-child(2) h4::before {
    width: 30px;
    height: 30px;
  }
  .index-about .linkbox .linkbox01 h4 {
    font-size: 16px;
  }
}/*# sourceMappingURL=all.css.map */