

/*
====== Zoom effect ======
*/
.mfp-zoom-in {
  /* start state */
  /* animate in */
  /* animate out */
}

.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}

.mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.95;
}

.mfp-zoom-in.mfp-removing .mfp-with-anim {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
}

.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

/*

====== Newspaper effect ======

*/
.mfp-newspaper {
  /* start state */
  /* animate in */
  /* animate out */
}

.mfp-newspaper .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: scale(0) rotate(500deg);
  -ms-transform: scale(0) rotate(500deg);
  transform: scale(0) rotate(500deg);
}

.mfp-newspaper.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.mfp-newspaper.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: scale(1) rotate(0deg);
  -ms-transform: scale(1) rotate(0deg);
  transform: scale(1) rotate(0deg);
}

.mfp-newspaper.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-newspaper.mfp-removing .mfp-with-anim {
  -webkit-transform: scale(0) rotate(500deg);
  -ms-transform: scale(0) rotate(500deg);
  transform: scale(0) rotate(500deg);
  opacity: 0;
}

.mfp-newspaper.mfp-removing.mfp-bg {
  opacity: 0;
}

/*

====== Move-horizontal effect ======

*/
.mfp-move-horizontal {
  /* start state */
  /* animate in */
  /* animate out */
}

.mfp-move-horizontal .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateX(-50px);
  -ms-transform: translateX(-50px);
  transform: translateX(-50px);
}

.mfp-move-horizontal.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.mfp-move-horizontal.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.mfp-move-horizontal.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-move-horizontal.mfp-removing .mfp-with-anim {
  -webkit-transform: translateX(50px);
  -ms-transform: translateX(50px);
  transform: translateX(50px);
  opacity: 0;
}

.mfp-move-horizontal.mfp-removing.mfp-bg {
  opacity: 0;
}

/*

====== Move-from-top effect ======

*/
.mfp-move-from-top {
  /* start state */
  /* animate in */
  /* animate out */
}

.mfp-move-from-top .mfp-content {
  vertical-align: top;
}

.mfp-move-from-top .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transform: translateY(-100px);
  -ms-transform: translateY(-100px);
  transform: translateY(-100px);
}

.mfp-move-from-top.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.mfp-move-from-top.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.mfp-move-from-top.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-move-from-top.mfp-removing .mfp-with-anim {
  -webkit-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  transform: translateY(-50px);
  opacity: 0;
}

.mfp-move-from-top.mfp-removing.mfp-bg {
  opacity: 0;
}

/*

====== 3d unfold ======

*/
.mfp-3d-unfold {
  /* start state */
  /* animate in */
  /* animate out */
}

.mfp-3d-unfold .mfp-content {
  -webkit-perspective: 2000px;
  perspective: 2000px;
}

.mfp-3d-unfold .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: rotateY(-60deg);
  transform: rotateY(-60deg);
}

.mfp-3d-unfold.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.mfp-3d-unfold.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}

.mfp-3d-unfold.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-3d-unfold.mfp-removing .mfp-with-anim {
  -webkit-transform: rotateY(60deg);
  transform: rotateY(60deg);
  opacity: 0;
}

.mfp-3d-unfold.mfp-removing.mfp-bg {
  opacity: 0;
}

/*

====== Zoom-out effect ======

*/
.mfp-zoom-out {
  /* start state */
  /* animate in */
  /* animate out */
}

.mfp-zoom-out .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
}

.mfp-zoom-out.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-zoom-out.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.mfp-zoom-out.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-zoom-out.mfp-removing .mfp-with-anim {
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
  opacity: 0;
}

.mfp-zoom-out.mfp-removing.mfp-bg {
  opacity: 0;
}

/*

====== "Hinge" close effect ======

*/
@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

.mfp-with-fade.mfp-bg, .mfp-with-fade .mfp-content {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-out;
  -o-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
}

.mfp-with-fade.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-with-fade.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-with-fade.mfp-removing.mfp-bg {
  opacity: 0;
}

/* preview styles */
/*header {
  border-bottom: 0;
  background-color: transparent;
}*/

.page_contentwarp {
  position: relative;
  padding-bottom: 130px;
}

.page_content {
  /* padding-top: 140px; */
  margin-top: 0px;
  max-width: none;
  background-color: #fff;
}

.page_content>* {
  opacity: 0;
}

.incolorbox {
  position: absolute;
  top: 23px;
  left: 23px;
  z-index: 51;
  overflow: hidden;
  width: calc(100% - 46px);
  height: calc(100% - 46px);
  -webkit-transform: translate3d(0, 0, 100px) scale(0.9);
  transform: translate3d(0, 0, 100px) scale(0.9);
  /*pointer-events: none;*/
}

.incolorbox>* {
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.incolorbox:hover>* { opacity: 1;}

.line_bg {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  max-width: 1150px;
  width: 100%;
  height: 100%;
}

.line_bg .line {
  position: relative;
  overflow: hidden;
  width: 25%;
  height: 100%;
}

.line_bg .line:before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 1px;
  height: 100%;
  background-color: #ebebeb;
  content: '';
}

#main_slider {
  position: relative;
  display: block;
  overflow: hidden;
  font-family: "Lato", Myriad Pro, Myriad, Microsoft JhengHei, Aria, sans-serif;
}

#main_slider .block {
  position: relative;
  display: block;
  margin: 0 auto;
  max-width: 1160px;
  width: 100%;
  opacity: 0;
}

#main_slider .bx-wrapper .bx-viewport {
  overflow: visible !important;
}

#main_slider .bx-wrapper .bx-controls-direction a {
  top: 50%;
  margin-top: -42px;
  width: 103px;
  height: 90px;
  text-indent: 0;
}

#main_slider .bx-wrapper .bx-controls-direction a:after {
  position: absolute;
  top: 50%;
  margin-top: -3px;
  height: 2px;
  background-color: #333333;
  content: '';
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#main_slider .bx-wrapper .bx-controls-direction a span {
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#main_slider .bx-wrapper .bx-prev {
  position: absolute;
  left: -103px;
  display: block;
}

#main_slider .bx-wrapper .bx-prev:before {
  position: absolute;
  top: 50%;
  left: 50px;
  display: block;
  margin-top: -7.5px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #333333;
  border-left: 2px solid #333333;
  content: '';
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#main_slider .bx-wrapper .bx-prev span {
  position: absolute;
  right: 0;
  display: block;
  padding-right: 17px;
  width: 50px;
  height: 100%;
  text-align: right;
  font-weight: 500;
  font-size: 12px;
}

#main_slider .bx-wrapper .bx-prev:after {
  left: 50px;
  margin-top: -3px;
  width: 0;
}

#main_slider .bx-wrapper .bx-next {
  position: absolute;
  right: -103px;
  display: block;
}

#main_slider .bx-wrapper .bx-next:before {
  position: absolute;
  top: 50%;
  right: 50px;
  display: block;
  margin-top: -7.5px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #333333;
  border-left: 2px solid #333333;
  content: '';
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

#main_slider .bx-wrapper .bx-next span {
  position: absolute;
  left: 0;
  display: block;
  padding-left: 17px;
  width: 50px;
  height: 100%;
  text-align: left;
  font-weight: 500;
  font-size: 12px;
  opacity: 0;
}

#main_slider .bx-wrapper .bx-next:after {
  right: 50px;
  margin-top: -3px;
  width: 0;
}

#main_slider .bg {
  position: relative;
  z-index: 2;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 540px;
  background-position: center;
  background-size: cover;
  opacity: 0;
  -webkit-transition: all 1.5s cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: all 1.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 1.5s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transform: skew(-14deg) scale(1.2);
  -ms-transform: skew(-14deg) scale(1.2);
  transform: skew(-14deg) scale(1.2);
  pointer-events: none;
}

#main_slider .bg.left {
  -webkit-transform: skew(14deg) scale(1) translateX(200px);
  -ms-transform: skew(14deg) scale(1) translateX(200px);
  transform: skew(14deg) scale(1) translateX(200px);
}

#main_slider .bg.right {
  -webkit-transform: skew(-14deg) scale(1) translateX(-200px);
  -ms-transform: skew(-14deg) scale(1) translateX(-200px);
  transform: skew(-14deg) scale(1) translateX(-200px);
}

#main_slider .bg.active {
  opacity: 1;
  -webkit-transform: skew(0) scale(1)translateX(0px);
  -ms-transform: skew(0) scale(1)translateX(0px);
  transform: skew(0) scale(1)translateX(0px);
  pointer-events: all;
}

#main_slider .bg.zindex {
  z-index: 3;
}

#main_slider .bg video {
  position: relative;
  width: 100%;
  height: 100%;
}

#main_slider .bg iframe {
  height: 655px;
  position: relative;
  top: -10px;
}

#main_slider .text {
  position: absolute;
  bottom: 52px;
  left: 60px;
  z-index: 10;
  color: white;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate3d(0, 0, 40px) scale(0.9);
  transform: translate3d(0, 0, 40px) scale(0.9);
  -webkit-transform-origin: top right;
  -ms-transform-origin: top right;
  transform-origin: top right;
}

#main_slider .text.active .title {
  opacity: 1;
}

#main_slider .text.active .memo {
  left: 0;
  opacity: 0.6;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#main_slider .text .title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
  width: 420px;
  height: 80px;
  font-weight: 400;
  font-size: 40px;
  opacity: 0;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}

#main_slider .text .title .t1 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#main_slider .text .memo {
  position: relative;
  left: 25px;
  font-size: 16px;
  opacity: 0;
}

#main_slider .go_down {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 45px auto 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #202020;
  opacity: 0;
  cursor: pointer;
}

#main_slider .go_down:before {
  position: absolute;
  top: -100%;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../images/w_down.png");
  background-position: center;
  background-size: 13px;
  background-repeat: no-repeat;
  content: '';
  -webkit-animation: scrollbefore infinite 1.2s 1.2s;
  animation: scrollbefore infinite 1.2s 1.2s;
}

#main_slider .go_down:after {
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../images/w_down.png");
  background-position: center;
  background-size: 13px;
  background-repeat: no-repeat;
  content: '';
  -webkit-animation: scrollafter infinite 1.2s;
  animation: scrollafter infinite 1.2s;
}

#home_product {
  position: relative;
  margin-top: 110px;
  margin-bottom: 60px;
  font-weight: 900;
  font-size: 30px;
  font-family: "Lato", Myriad Pro, Myriad, Microsoft JhengHei, Aria, sans-serif;
  line-height: 32px;
}

#home_product .title {
  position: relative;
  margin-left: 50%;
  width: 500px;
  letter-spacing: 1px;
  opacity: 0;
}

#home_product .title .name {
  position: relative;
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 12px;
  line-height: 1;
}

#home_product .title .pl_blk {
  margin-bottom: 35px;
  padding-left: 50px;
  border-left: 2px solid #000;
}

#home_product .title .pl_blk>* {
  opacity: 0;
}

#home_product .title h2 {
  position: relative;
  padding-bottom: 75px;
  font-weight: 900;
  font-size: 30px;
  line-height: 32px;
}

#home_product .title .memo {
  position: relative;
  color: #575757;
  font-weight: 600;
  font-size: 14px;
  font-family: "Open Sans", Myriad Pro, Myriad, Microsoft JhengHei, Aria, sans-serif;
  line-height: 18px;
  opacity: 0;
}

#home_product .product_link {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin-right: auto;
  margin-left: auto;
  width: 220px;
  height: 50px;
  color: black;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 14px;
  line-height: 47px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#home_product .home_product {
  position: relative;
  display: block;
  margin: -32px auto 0;
  width: 1000px;
  height: 1040px;
}

#home_product .home_product>* {
  opacity: 0;
}

#home_product .home_product .product_box {
  position: relative;
  display: block;
  opacity: 0;
}

#home_product .home_product .product_box .gray {
  position: absolute;
  top: 0;
  left: 0;
  width: 448px;
  height: 100%;
  background-color: #f6f6f6;
}

#home_product .home_product .product_box.product_box1 {
  position: absolute;
  top: -130px;
  left: 0;
  display: block;
}

#home_product .home_product .product_box.product_box1 .name {
  width: 92%;
}

#home_product .home_product .product_box.product_box1 .gray {
  top: inherit;
  bottom: 0;
  height: 360px;
}

#home_product .home_product .product_box.product_box2 {
  position: absolute;
  top: 135px;
  right: 0;
  display: block;
}

#home_product .home_product .product_box.product_box2 .gray {
  right: 0;
  left: inherit;
}

#home_product .home_product .product_box.product_box3 {
  position: absolute;
  top: 500px;
  left: 0;
  display: block;
}

#home_product .home_product .product_box.long_box {
  height: auto;
}

#home_product .home_product .product_box.long_box .box {
  height: 580px;
}

#home_product .home_product .product_box .box {
  position: relative;
  display: block;
}

#home_product .home_product .product_box .box>img {
  position: relative;
  right: 0;
  bottom: 0;
  display: block;
  z-index: 1;
}

#home_product .home_product .product_box .box .line {
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#home_product .home_product .product_box .box .more {
  position: absolute;
  top: 39px;
  left: 39px;
  z-index: 3;
  overflow: hidden;
  width: calc(100% - 78px);
  height: calc(100% - 78px);
  background-position: center;
  background-size: 486px;
  -webkit-transform: translate3d(0, 0, 100px);
  transform: translate3d(0, 0, 100px);
}

#home_product .home_product .product_box .box .more>* {
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#home_product .home_product .product_box .box .more span {
  position: absolute;
  top: 0;
  left: -10px;
  z-index: 5;
  padding: 2px 30px;
  background-color: #ad5797;
  color: white;
  letter-spacing: 1px;
  font-size: 12px;
  opacity: 0;
  -webkit-transform: rotateX(90deg) rotateY(90deg);
  transform: rotateX(90deg) rotateY(90deg);
  -webkit-transform-origin: 18% 51%;
  -ms-transform-origin: 18% 51%;
  transform-origin: 18% 51%;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#home_product .home_product .product_box .name {
  display: block;
  margin-top: 23px;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
}

#home_uni {
  position: relative;
  display: block;
  margin: 0 auto;
  max-width: 1140px;
  width: 100%;
}

#home_uni .uni_block {
  position: relative;
  z-index: 3;
  display: block;
}

#home_uni .bx-wrapper .bx-pager {
  position: absolute;
  top: 52px;
  right: 99px;
  bottom: auto;
  padding-top: 0;
  width: auto;
  height: auto;
  text-align: right;
  font-size: 0;
}

#home_uni .bx-wrapper .bx-pager .bx-pager-item {
  width: 34px;
}

#home_uni .bx-wrapper .bx-pager.bx-default-pager a {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c3c3c3;
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.55) inset;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.55) inset;
  text-indent: -9999px;
}

#home_uni .bx-wrapper .bx-pager.bx-default-pager a.active {
  background: #9f841b;
  -webkit-box-shadow: 1px 1px 1px transparent inset;
  box-shadow: 1px 1px 1px transparent inset;
}

#home_uni .bx_uni li {
  height: 565px;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

#home_uni .bx_uni li.active .text {
  opacity: 1;
  -webkit-transform: rotateX(0);
  transform: rotateX(0);
  -webkit-transition: all 1.2s ease 0.3s;
  -moz-transition: all 1.2s ease 0.3s;
  -o-transition: all 1.2s ease 0.3s;
  -ms-transition: all 1.2s ease 0.3s;
  transition: all 1.2s ease 0.3s;
}

#home_uni .bx_uni li .text {
  position: absolute;
  top: 30%;
  left: 56px;
  z-index: 10;
  color: white;
  font-weight: bold;
  font-size: 18px;
  line-height: 21px;
  opacity: 0;
  -webkit-transform: rotateY(90deg);
  transform: rotateY(90deg);
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

#home_uni .bx_uni li .text span {
  position: relative;
  display: block;
  margin-bottom: 17px;
}

#home_uni .bx_uni li .text em, #home_uni .bx_uni li .text i {
  position: relative;
  display: block;
  font-style: normal;
}

#home_uni .bx_uni li .memo {
  position: absolute;
  top: 35%;
  right: 60px;
  width: 228px;
  color: white;
  letter-spacing: 1px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  opacity: 0.5;
  opacity: 0;
  -webkit-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

#home_uni .bx_uni li.active .memo {
  opacity: 0.7;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 1.2s ease 0.35s;
  -moz-transition: all 1.2s ease 0.35s;
  -o-transition: all 1.2s ease 0.35s;
  -ms-transition: all 1.2s ease 0.35s;
  transition: all 1.2s ease 0.35s;
}

#home_uni .bx_uni li .glass {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 536px;
  opacity: 0;
  -webkit-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  transform: translateY(-40px);
  -webkit-transition: all 1.6s ease;
  -moz-transition: all 1.6s ease;
  -o-transition: all 1.6s ease;
  -ms-transition: all 1.6s ease;
  transition: all 1.6s ease;
}

#home_uni .bx_uni li .glass img {
  position: relative;
}

#home_uni .bx_uni li.active .glass {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

#home_uni .num {
  position: absolute;
  top: 50px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
}

#home_uni .num div {
  position: relative;
}

#home_uni .num span {
  position: relative;
  top: 6px;
  display: block;
  margin-right: 14px;
  margin-left: 14px;
  width: 25px;
  height: 1px;
  border-top: 1px solid #9a9a9a;
}

#home_uni .word {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#home_uni .word:before {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 80%;
  background-color: #fff;
  content: '';
}

#home_uni .word .bg {
  position: relative;
  top: 100px;
  width: 100%;
  height: 366px;
  -webkit-transition: all 1.2s ease;
  -moz-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  -ms-transition: all 1.2s ease;
  transition: all 1.2s ease;
}

#home_uni .word .img {
  position: absolute;
  bottom: 36px;
  left: 5%;
  overflow: hidden;
  width: 90%;
  height: 155px;
}

#home_uni .word .img img {
  position: relative;
  top: 155px;
}

#home_uni .word .img.active img {
  top: 0;
  -webkit-transition: all 1.2s ease;
  -moz-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  -ms-transition: all 1.2s ease;
  transition: all 1.2s ease;
}

#logo_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  padding-top: 40px;
  padding-bottom: 115px;
  max-width: 1140px;
  width: 100%;
  background-color: #fff;
}

#logo_box:after {
  position: absolute;
  bottom: 65px;
  left: 0;
  background-color: #000;
  content: '';
  width: 100%;
  height: 2px;
}

#logo_box .title {
  position: relative;
  width: 24%;
  font-weight: 800;
  font-size: 30px;
  line-height: 31px;
}

#logo_box .logo_slider {
  position: relative;
  width: 75%;
}

#logo_box .logo_slider .imgs {
  position: relative;
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#logo_box .logo_slider .imgs img {
  position: relative;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#logo_box .bx-wrapper {
  margin-left: 60px !important;
}

#logo_box .bx-controls-direction {
  position: absolute;
  top: 17px;
  right: -218px;
  width: 76px;
  height: 40px;
}

#logo_box .bx-wrapper .bx-controls-direction a {
  width: 38px;
  height: 38px;
  background-image: url("../images/arrow.png");
  background-size: 18px;
  background-repeat: no-repeat;
}

#logo_box .bx-wrapper .bx-prev {
  background-position: right;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

#logo_box .bx-wrapper .bx-next {
  background-position: right;
}



#main_slider.show_while .block .bx-wrapper .bx-prev:after {
  left: 11px;
  width: 44px;
}

#main_slider.show_while .block .bx-wrapper .bx-next:after {
  right: 11px;
  width: 44px;
}

#main_slider.show_while .block .bx-wrapper .bx-prev:before {
  left: 4px;
}

#main_slider.show_while .block .bx-wrapper .bx-next:before {
  right: 4px;
}

@-webkit-keyframes scrollafter {
  0% {
    top: 0;
  }

  100% {
    top: 100%;
  }
}

@keyframes scrollafter {
  0% {
    top: 0;
  }

  100% {
    top: 100%;
  }
}

@-webkit-keyframes scrollbefore {
  0% {
    top: -100%;
  }

  100% {
    top: 0;
  }
}

@keyframes scrollbefore {
  0% {
    top: -100%;
  }

  100% {
    top: 0;
  }
}

@media only screen and (min-width: 1300px) and (max-height: 800px) {
  .page_content {
    margin-top: 140px;
  }

  #logo_box {
    max-width: 850px;
  }

  #logo_box .bx-controls-direction {
    right: -80px;
  }

  #logo_box .logo_slider {
    padding-right: 70px;
    padding-left: 20px;
  }

  #main_slider .block {
    max-width: 850px;
  }

  #main_slider .bg {
    height: 395px;
  }

  #main_slider .go_down {
    margin-top: 25px;
  }

  #home_product {
    margin-top: 55px;
  }

  #home_product .home_product {
    -webkit-transform: scale(.85);
    -ms-transform: scale(.85);
    transform: scale(.85);
  }

  #home_product .home_product .product_box .gray {}

  #home_uni {
    max-width: 850px;
  }

  #home_uni .bx_uni li .memo {
    right: 20px;
  }
}

@media only screen and (min-width: 1025px) {
  .hoverbox.active:hover .incolorbox>* {
    opacity: 1;
  }

  #main_slider.show_while .block .bx-wrapper .bx-controls-direction a span {
    opacity: 1;
  }

  #right_btn .contact_form:hover {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
  }

  #main_slider .block .bx-wrapper .bx-prev:hover:after {
    left: 11px;
    width: 44px;
  }

  #main_slider .block .bx-wrapper .bx-next:hover:after {
    right: 11px;
    width: 44px;
  }

  #main_slider .block .bx-wrapper .bx-prev:hover:before {
    left: 4px;
  }

  #main_slider .block .bx-wrapper .bx-next:hover:before {
    right: 4px;
  }

  #main_slider .block .bx-wrapper .bx-controls-direction a:hover span {
    opacity: 1;
  }

  

  #home_product .home_product .product_box .box:hover .more>* {
    opacity: 1;
  }

  #home_product .home_product .product_box .box:hover .more>* {
    opacity: 1;
  }

  #home_product .home_product .product_box .box .more span {
    left: 0;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  #logo_box .logo_slider .imgs:hover img {
    opacity: 0.3;
  }

}

@media only screen and (max-width: 1150px) {
  header {
    background-color: #fff;
  }

  #main_slider .bg iframe {
    height: 57vw;
  }

  #main_slider {
    padding-top: 0;
  }

  #main_slider .block .bx-wrapper .bx-prev {
    left: 0;
  }

  #main_slider .block .bx-wrapper .bx-next {
    right: 0;
  }

  #main_slider .bg {
    height: 57vw;
  }

  #home_uni {
    width: 100%;
  }

  #home_uni .num {
    right: 20px;
  }

  #home_product {
    padding-right: 40px;
    padding-left: 40px;
  }

  #home_product .title {
    width: 56%;
  }

  #home_product .title .pl_blk {
    padding-left: 35px;
  }

  #home_product .home_product .product_box .gray {
    width: 40vw;
  }

  #home_product .home_product .product_box.product_box1 .name {
    width: 100%;
  }

  #home_product .home_product .product_box.product_box3 {
    top: 420px;
  }

  #home_product .home_product {
    height: 900px;
  }

  #home_product .home_product .product_box .box .line {
    opacity: 1;
  }

  #home_product .home_product .product_box .box .more span {
    left: 0;
    opacity: 1;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  #home_product .home_product {
    width: 100%;
  }

  #home_product .home_product .product_box .box .more {
    display: none;
  }

  #logo_box {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 30px;
    width: calc(100% - 60px);
  }

  #logo_box .title {
    width: 20%;
    font-size: 18px;
  }

  #logo_box .logo_slider {
    width: 80%;
  }

  #logo_box .bx-wrapper {
    margin-left: auto !important;
  }

  #logo_box .bx-controls-direction {
    right: 0;
    -webkit-transform: translateX(140%);
    -ms-transform: translateX(140%);
    transform: translateX(140%);
  }
}

@media only screen and (max-width: 1024px) {
  .page_content {
    margin-top: 90px;
    /* margin-top: 0; */
    padding-top: 0px;
  }

  #home_product {
    margin-top: 90px;
  }

  #main_slider .go_down {
    margin-top: 25px;
    margin-bottom: 25px;
  }

  #home_product .home_product .product_box.long_box .box {
    height: 300px;
  }

  #home_product .home_product .product_box .box>img {
    width: 350px;
    width: 37vw;
  }

  #logo_box {
    width: calc(100% - 60px);
    border-bottom: 0;
  }

  #logo_box .bx-wrapper {
    margin-left: auto !important;
  }

  #logo_box .title {
    padding-bottom: 40px;
    width: 100%;
    line-height: 18px;
  }

  #logo_box:after {
    top: 90px;
    bottom: inherit;
  }

  #logo_box .logo_slider {
    width: 100%;
    border-bottom: 0;
  }

  #main_slider .block .bx-wrapper .bx-prev:before {
    left: 4px;
  }

  #main_slider .block .bx-wrapper .bx-next:before {
    right: 4px;
  }

  #main_slider .block .bx-wrapper .bx-prev:after {
    left: 11px;
    width: 44px;
  }

  #main_slider .block .bx-wrapper .bx-next:after {
    right: 11px;
    width: 44px;
  }

  #main_slider .bx-wrapper .bx-controls-direction a {
    top: inherit;
    bottom: 0;
    margin-top: 0;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
  }

  #main_slider .block .bx-wrapper .bx-controls-direction {
    position: relative;
    margin: 0 auto;
    max-width: 300px;
    width: calc(100% - 66px);
  }

  #logo_box .bx-wrapper {
    width: calc(100% - 70px);
  }

  #logo_box .bx-controls-direction {
    right: 0;
    width: 100%;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  #logo_box .bx-wrapper .bx-prev {
    left: -45px;
  }

  #logo_box .bx-wrapper .bx-next {
    right: -45px;
  }

}

@media only screen and (max-width: 850px) {
  #home_product {
    margin-top: 70px;
  }

  #home_product .home_product .product_box.product_box3 {
    top: 300px;
  }

  #home_product .home_product {
    height: 720px;
  }

  #home_uni .word .img {
    bottom: 44px;
  }

  .line_bg {
    display: none;
  }
}

@media only screen and (max-width: 650px) {
  .page_content {
    margin-top: 60px;
    /* margin-top: 0; */
    padding-top: 0px;
  }

  #main_slider.show_while .block .bx-wrapper .bx-controls-direction a span {
    opacity: 0;
  }

  #main_slider .bg iframe {
    width: 176vw;
    height: 100vw;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
  }

  #main_slider .go_down {
    margin-top: 25px;
    margin-bottom: 25px;
  }

  #home_product {
    margin-bottom: 45px;
    padding-right: 24px;
    padding-left: 24px;
  }

  #main_slider .bg {
    height: 100vw;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  #main_slider .text {
    bottom: 0;
    left: 0;
    padding-top: 18px;
    padding-bottom: 18px;
    padding-left: 30px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.81);
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  #main_slider .text .title {
    margin-bottom: 15px;
    height: 40px;
  }

  #main_slider .text .title .t1 {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 45%;
    font-size: 19px;
  }

  #home_product .title {
    margin-left: 0;
    padding-left: 0;
    width: 100%;
  }

  #home_product .title .pl_blk {
    padding-left: 30px;
  }

  #home_product .title h2 {
    padding-bottom: 30px;
    font-size: 18px;
    line-height: 1;
  }

  #home_product .title .memo {
    left: 0;
  }

  #home_product .home_product {
    margin-top: 30px;
    height: auto;
  }

  #home_product .home_product .product_box .gray, #home_product .home_product .product_box.product_box2 .gray {
    /* left: 3%; */
    left: 0;
    width: 100%;
  }

  #home_product .home_product .product_box.product_box1 .gray {
    height: 100%;
  }

  #home_product .home_product .product_box.long_box .box {
    height: auto;
    height: 70vw;
    text-align: center;
  }

  #home_product .home_product .product_box {
    margin-bottom: 55px;
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 25px);
  }

  #home_product .home_product .product_box.product_box1 {
    position: relative;
    top: 0;
  }

  #home_product .home_product .product_box.product_box2 {
    position: relative;
    top: inherit;
  }

  #home_product .home_product .product_box.product_box3 {
    position: relative;
    top: inherit;
  }

  #home_product .home_product .product_box .box>img {
    width: 100%;
    max-width: 320px;
  }

  #home_product .home_product .product_box.product_box1 .box>img {
    width: 105%;
  }

  #home_product .product_link {
    position: relative;
    margin-top: 50px;
  }

  #home_uni .bx_uni li .glass {
    position: relative;
    max-width: 340px;
    width: 100%;
  }

  #home_uni .bx_uni li .memo {
    position: relative;
    top: inherit;
    right: 0;
    padding-right: 33px;
    padding-left: 33px;
    width: 100%;
  }

  #home_uni .bx_uni li .text {
    position: relative;
    top: inherit;
    left: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-right: 33px;
    padding-left: 33px;
  }
  #home_uni .bx_uni li .text em, #home_uni .bx_uni li .text i {
    width: 60px;
  }
  #home_uni .bx-wrapper .bx-pager {
    top: inherit;
    right: 0;
    bottom: 50px;
    left: 0;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  #home_uni .num {
    display: none;
  }

  #home_uni .word .bg {
    top: 70px;
    height: 465px;
  }

  #home_uni .word .img {
    display: none;
  }


  #logo_box {
    margin-top: 20px;
    padding-bottom: 60px;
  }

  #logo_box .bx-wrapper .bx-prev {
    left: -32px;
  }

  #logo_box .bx-wrapper .bx-next {
    right: -32px;
  }
}
