.mb_formbtn {
  position: fixed;
  display: none;
  width: 50px;
  height: 50px;
  background-image: url(../images/mail.png);
  background-position: center;
  background-size: 23px;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 51;
  right: 0;
  top: 40%;
  outline: 0;
  border: 2px solid #202020;
  border-right: 0;
  background-color: #fff;
}

.gallery-top {
  max-width: 1140px;
  margin: 0 auto 40px;
  opacity: 1;
  width: 100%;
  height: 595px;
}

.gallery-top .swiper-slide {
  position: relative;
  background-color: #fff;
  background-size: cover;
  max-height: 595px;
  width: 100%;
  height: 595px;
}

.gallery-top .swiper-slide .img {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.gallery-top .swiper-slide img {
  opacity: 0;
}

.gallery-thumbs {
  position: relative;
  width: 100%;
  height: 100px;
  max-width: 1150px;
  margin: 0 auto;
  opacity: 1;
}

.gallery-thumbs .swiper-container {
  width: 960px;
  margin: 0 auto;
}

.gallery-thumbs .swiper-slide {
  position: relative;
  width: 184px;
  height: 96px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: red;
  cursor: pointer;
  -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;
}

.gallery-thumbs .swiper-slide.active {
  opacity: 1;
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

.gallery-thumbs .swiper-slide.active:after {
  opacity: 1;
}

.gallery-thumbs .swiper-slide:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  border: 4px solid #000;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  opacity: 0;
  border-image-source: linear-gradient(130deg, #af5797 15%, #2765a9 38%, #ecb831 72%, #15957c 96%);
  border-image-slice: 20;
  width: 100%;
  height: 100%;
  -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;
}

.gallery-thumbs .swiper-button-next {
  background-color: #000;
  right: -50px;
}

.gallery-thumbs .thumb_prev {
  font-size: 12px;
  font-family: Myriad Pro;
  font-weight: 700;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  left: 0;
  top: 50%;
  margin-top: -51px;
  background-position: center;
  background-image: url("../images/album_arr.png");
  background-size: 12px;
  background-repeat: no-repeat;
  cursor: pointer;
  width: 95px;
  height: 100px;
  -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;
}

.gallery-thumbs .thumb_prev:before {
  position: relative;
  left: 0;
  content: '';
  background-color: rgba(0, 0, 0, 0.8);
  width: 0px;
  height: 2px;
  -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;
}

.gallery-thumbs .thumb_prev:after {
  content: 'PREV ONE';
  position: absolute;
  font-family: "Lato", Myriad Pro, Myriad, Microsoft JhengHei, Aria, sans-serif;
  top: 15px;
  right: 15px;
  width: 30px;
  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;
}

.gallery-thumbs .thumb_next {
  font-size: 12px;
  font-family: Myriad Pro;
  font-weight: 700;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  right: 0;
  top: 50%;
  margin-top: -51px;
  background-position: center;
  background-image: url("../images/album_arr.png");
  background-size: 12px;
  background-repeat: no-repeat;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  cursor: pointer;
  width: 95px;
  height: 100px;
  -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;
}

.gallery-thumbs .thumb_next:before {
  content: '';
  position: relative;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  width: 0px;
  height: 2px;
  -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;
}

.gallery-thumbs .thumb_next:after {
  content: 'NEXT ONE';
  position: absolute;
  font-family: "Lato", Myriad Pro, Myriad, Microsoft JhengHei, Aria, sans-serif;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  bottom: 15px;
  right: 15px;
  width: 30px;
  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;
}

.gallery-thumbs .swiper-button-disabled {
  display: none;
}

.phototitle {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.05em;
  padding: 0 30px;
  background-color: rgba(0, 0, 0, 0.6);
}

.loop2 .owl-nav { position: absolute; top:30px; left: -220px; width: 50px; z-index: 11;}
.loop2 .owl-prev, .loop2 .owl-next { position:absolute; z-index:100; top:calc(50% - 0px); width: 22px; height: 22px; line-height: 22px !important; text-align: center; background: #00aadb !important; margin: 0 !important;transition: all 0.4s ease-out 0s;}
.loop2 .owl-prev { left:0px;}
.loop2 .owl-next { right:0px;}
.loop2 .owl-prev:before, .loop2 .owl-next:before { font-family:'Font Awesome 5 Free'; font-weight: 900 !important; font-size:20px; color: #fff; }
.loop2 .owl-prev:before { content:"\f104";}
.loop2 .owl-next:before { content:"\f105";}
.loop2 .owl-prev:hover, .loop2 .owl-next:hover { background: #e60012 !important;}
.loop2 .owl-item:hover .products-list-pto img { transform: scale(1.05);}
.loop2 .owl-dots { margin-top: 40px;}
.loop2 .owl-nav.disabled + .owl-dots { margin-top: 50px !important;}
.loop2 .owl-dots .owl-dot.active span, .loop2 .owl-dots .owl-dot:hover span { background: #ee7a00 !important;}

.related-box { border-width: 0 !important; padding-bottom: 0;}

@media only screen and (min-width: 1025px) {
  .gallery-thumbs .thumb_next:hover:after {
    opacity: 1;
  }

  .gallery-thumbs .thumb_next:hover:before {
    width: 43px;
    left: -14px;
  }

  .gallery-thumbs .thumb_prev:hover:after {
    opacity: 1;
  }

  .gallery-thumbs .thumb_prev:hover:before {
    width: 43px;
    left: -14px;
  }

  .gallery-thumbs .thumb_next:hover {
    background-position: 0 center;
  }

  .gallery-thumbs .thumb_prev:hover {
    background-position: 0 center;
  }
}

@media only screen and (max-width: 1300px) {
  #contact_area {
    padding: 24px;
  }

  .mb_formbtn {
    display: block;
    opacity: 0;
    transform: translateX(100%);
  }

  .mb_formbtn.active {
    opacity: 1;
    transform: translateX(0%);
  }
}

@media only screen and (max-width: 1150px) {
  .gallery-top {
    height: 100%;
  }

  .gallery-top .swiper-slide {
    height: calc(55vw + 50px);
  }

  .gallery-thumbs .swiper-slide {
    width: 155px;
    height: 77px;
  }

  .gallery-thumbs {
    width: calc(100% - 70px);
    height: 77px;
    margin: 0 auto;
    padding: 0 60px;
  }

  .gallery-thumbs .swiper-container {
    width: 100%;
  }

  .gallery-thumbs .thumb_next, .gallery-thumbs .thumb_prev {
    margin-top: 0;
    width: 50px;
    height: 77px;
    top: 0;
  }
}

@media only screen and (max-width: 650px) {
  .phototitle {
    position: relative;
    height: 50px;
  }

  .gallery-top .swiper-slide .img {
    height: calc(100% - 50px);
  }

  .gallery-top .swiper-slide img {
    opacity: 0;
  }

  .gallery-thumbs {
    width: calc(100% - 48px);
    height: 53px;
    margin: 0 auto;
    padding: 0 30px;
  }

  .gallery-thumbs .swiper-slide {
    width: 101px !important;
    height: 53px;
  }

  .gallery-thumbs .thumb_next, .gallery-thumbs .thumb_prev {
    top: 0;
    margin-top: 0;
    background-size: 6px;
    width: 30px;
    height: 53px;
  }

  .gallery-thumbs .thumb_prev:after {
    display: none;
  }
}

#contact_area, #contact_ok {
  top: 0;
  left: 0;
  z-index: 999;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  DISPLAY: FLEX;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#contact_form_ok {
  position: relative;
  display: block;
  padding: 80px;
  color: white;
  font-family: Microsoft JhengHei, Myriad Pro, Myriad, Aria, sans-serif;
}

#contact_form_ok .send {
  position: relative;
  z-index: 2;
  overflow: hidden;
  height: 100%;
  text-align: center;
  font-family: Myriad Pro, Microsoft JhengHei, Myriad, Aria, sans-serif;
  line-height: 46PX;
  WIDTH: 100%;
  BACKGROUND-COLOR: TRANSPARENT;
  FONT-WEIGHT: BOLD;
  LETTER-SPACING: 2PX;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#contact_form_ok .send:BEFORE {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid white;
  content: '';
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#contact_form_ok .name {
  text-align: center;
  font-size: 30px;
  line-height: 1.4em;
}

.form_close {
  position: absolute;
  top: 24px;
  right: 26px;
  z-index: 10;
  overflow: hidden;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.form_close:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 1px;
  background-color: #808080;
  content: '';
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}

.form_close:after {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 1px;
  background-color: #808080;
  content: '';
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}

.form_close span {
  position: relative;
}

#contact_form {
  position: relative;
  display: block;
  padding-top: 125px;
  padding-right: 80px;
  padding-left: 80px;
  width: 1003px;
  height: 660px;
  color: white;
  font-family: Microsoft JhengHei, Myriad Pro, Myriad, Aria, sans-serif;
}

#contact_form .boder_line {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

#contact_form .name {
  position: relative;
  margin-bottom: 85px;
  font-weight: bold;
  font-size: 30px;
  font-family: Myriad Pro, Microsoft JhengHei, Myriad, Aria, sans-serif;
}

#contact_form .tip {
  position: absolute;
  top: 138px;
  right: 80px;
  color: #a8a8a8;
  font-size: 12px;
}

#contact_form .tip:before {
  margin-right: 9px;
  color: #cabc8f;
  content: '*';
}

#contact_form .form_block {
  position: relative;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#contact_form .form_block .box {
  position: relative;
  width: 380px;
}

#contact_form .form_block .box .field {
  position: relative;
  display: inline-block;
  margin-bottom: 18px;
  width: 100%;
  height: auto;
  border-bottom: 1px solid gray;
  color: #c5c5c5;
  font-size: 14px;
  line-height: 40px;
  -webkit-transition: border-color 0.6s;
  -o-transition: border-color 0.6s;
  transition: border-color 0.6s;
}

#contact_form .form_block .box .field.error {
  border-color: red;
}

#contact_form .form_block .box .field .title {
  position: absolute;
}

#contact_form .form_block .box .field .title:after {
  margin-left: 10px;
  color: #cabc8f;
  content: '*';
}

#contact_form .form_block .box .field .must {
  position: absolute;
}

#contact_form .form_block .box .field .inputbox {
  position: relative;
  float: right;
  width: 62%;
  height: 40px;
  outline: 0;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  color: white;
}

#contact_form .form_block .box .field .textarea {
  position: relative;
  float: right;
  padding-top: 9px;
  width: 75%;
  height: 101px;
  outline: 0;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  color: white;
  line-height: 18px;
}

#contact_form .form_block .box .field .select {
  position: relative;
}

#contact_form .form_block .box .field .select select {
  position: relative;
  float: right;
  width: 66%;
  height: 40px;
  outline: none;
  border: 0;
  background-color: transparent;
  color: white;
  -webkit-appearance: none;
  font-family: Microsoft JhengHei, Myriad Pro, Myriad, Aria, sans-serif;
}

#contact_form .form_block .box .field option {
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-appearance: none;
}

#contact_form .form_block .box .code_field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#contact_form .form_block .box .code_field .title {
  position: relative;
  width: 42%;
}

#contact_form .form_block .box .code_field .inputbox {
  position: relative;
  width: 26%;
}

#contact_form .form_block .box .code_field img {
  position: relative;
  top: -7px;
  width: 132px;
  height: 34px;
}

#contact_form .button {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  font-size: 14PX;
  width: 190PX;
  height: 43PX;
  margin: 50px AUTO;
}

#contact_form .button .send {
  position: relative;
  z-index: 2;
  overflow: hidden;
  font-family: Myriad Pro, Microsoft JhengHei, Myriad, Aria, sans-serif;
  WIDTH: 100%;
  HEIGHT: 100%;
  BACKGROUND-COLOR: TRANSPARENT;
  TEXT-ALIGN: CENTER;
  LINE-HEIGHT: 40px;
  FONT-WEIGHT: BOLD;
  LETTER-SPACING: 2PX;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /* modify:2019/5/16 */
  color: #808080;
}

#contact_form .button .send:BEFORE {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid white;
  content: '';
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (min-width: 1025px) {
  #contact_form .form_close:hover:before {
    top: 12px;
    left: -14px;
    background-color: white;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 70% 70%;
    -ms-transform-origin: 70% 70%;
    transform-origin: 70% 70%;
  }

  #contact_form .form_close:hover:after {
    top: 30px;
    right: -8px;
    background-color: white;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: 70% 70%;
    -ms-transform-origin: 70% 70%;
    transform-origin: 70% 70%;
  }

  #contact_form .button:hover .send:BEFORE {
    border-color: transparent;
    color: white;
  }
}

@media only screen and (max-width: 1024px) {
  #contact_form {
    padding: 80px 30px 40px;
    width: 100%;
    height: 80%;
  }

  #contact_form .name {
    font-size: 24px;
  }

  #contact_form .form_block {
    height: calc(100% - 200px);
  }

  #contact_form .form_block .box {
    width: 100%;
  }

  #contact_form .form_block .box .code_field .title {
    width: 100%;
  }

  #contact_form .form_block .box .code_field {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 650px) {
  #contact_form .form_block .box .code_field {
    padding-bottom: 0;
    border-bottom: 0;
    text-align: center;
  }

  #contact_form .form_block .box .code_field .inputbox {
    margin-bottom: 10px;
    padding-bottom: 5px;
    width: 100%;
    border-bottom: 1px solid gray;
  }

  #contact_form .form_block .box .code_field img {
    top: 0;
    margin: 0 auto;
  }

  #contact_form .form_block .box .field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  #contact_form .form_block .box .field .textarea {
    width: 100%;
  }

  #contact_form .form_block .box .field .must {
    position: relative;
    margin-right: 15px;
  }

  #contact_form .form_block .box .field .inputbox.cpname {
    width: 100%;
  }

  #contact_form .form_block .box .field .select {
    -webkit-box-flex: 2;
    -ms-flex: 2 1 auto;
    flex: 2 1 auto;
  }

  #contact_form .form_block .box .field .select select {
    width: 100%;
  }
}

/*
====== 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;
}

.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;
}

.sec_album {
  max-width: 1140px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 2px solid black;
}

/* preview styles */
#logo_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 70px auto 65px;
  padding-bottom: 50px;
  max-width: 1140px;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

#logo_box .btn_toggle_3 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 2;
  -ms-flex: 2 1 auto;
  flex: 2 1 auto;
  width: 50%;
}

#logo_box .icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

#logo_box .icon_h {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

#logo_box .flexbtn {
  margin-right: 50px;
  margin-bottom: 40px;
}

#logo_box .swiper-container {
  margin-right: 30px;
}

#logo_box .swiper-slide {
  width: auto!important;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}

#logo_box .swiper-slide img {
  opacity: 0;
  display: block;
  -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_next, #logo_box .logo_prev {
  position: relative;
  -ms-flex-item-align: center;
  align-self: center;
  min-width: 50px;
  outline: 0;
  background-image: url("../images/arrow.png");
  background-position: center;
  background-size: 15px;
  background-repeat: no-repeat;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

#logo_box .logo_prev {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

#logo_box .swiper-button-disabled {
  opacity: 0.3;
}

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

.product_numblk.fixlist {
  display: none;
}

@media only screen and (min-width: 1300px) {
  .product_numblk.fixlist {
    display: block;
    position: fixed;
    right: -60px;
    height: calc(100vh - 130px);
    top: inherit;
    bottom: 0;
    opacity: 0;
    visibility: 0;
    pointer-events: none;
  }

  .product_numblk.fixlist.unlock {
    opacity: 1;
    right: 0px;
    visibility: visible;
    pointer-events: all;
  }
}

@media only screen and (min-width: 1025px) {
  #logo_box .swiper-slide:hover img {
    opacity: 0;
  }

  #logo_box .swiper-slide:hover .icon {
    opacity: 0;
  }

  #logo_box .swiper-slide:hover .icon_h {
    opacity: 1;
  }
}

@media only screen and (max-width: 1300px) {
  #logo_box .swiper-slide .icon {
    opacity: 1;
  }

  #logo_box .swiper-slide .icon_h {
    opacity: 0;
  }
}

@media only screen and (max-width: 1150px) {
  #logo_box {
    padding-left: 40px;
    padding-right: 40px;
    margin-top: 60px;
  }

  #logo_box .btn_toggle_3 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
  }

  #logo_box .swiper-container {
    margin: 0 auto;
    width: calc(100% - 120px);
  }

  #logo_box .flexbtn {
    margin-bottom: 30px;
  }

  #logo_box .logo_prev {
    position: absolute;
    bottom: 20px;
    left: 0;
    margin-left: 0;
  }

  #logo_box .logo_next {
    position: absolute;
    right: 0;
    bottom: 20px;
  }
}

@media only screen and (max-width: 650px) {
  #logo_box {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    border-top: 0;
    border-bottom: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  #logo_box .flexbtn {
    margin-right: 0;
    margin-bottom: 0;
  }

  #logo_box .swiper-container {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    margin-top: 30px;
    margin-bottom: 30px;
    width: calc(100% - 80px);
  }

  #logo_box .swiper-slide {
    width: 45% !important;
    text-align: center;
    background-size: contain;
  }

  #logo_box .swiper-slide img {
    display: inline-block;
  }

  #logo_box .logo_prev {
    top: 40px;
    bottom: inherit;
  }

  #logo_box .logo_next {
    top: 40px;
    bottom: inherit;
  }
}

body {
  background-color: #f6f6f6;
}

section {
  position: relative;
}

.sec_album>* {
  opacity: 0;
}

.page_content {
  /* padding-top: 130px; */
  margin-top: 130px;
  max-width: none;
}

.page_content>* {
  opacity: 0;
}

.fixblk>* {
  opacity: 0;
}

p {
  font-size: 14px;
  line-height: 18px;
}

h2 {
  font-weight: 800;
  font-size: 30px;
  line-height: 32px;
}

h2.num {
  opacity: 0.8;
}

h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 22px;
}

h3.t2 {
  margin-bottom: 20px;
}

.sec1 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 100%;
  width: 100%;
  min-height: 800px;
  height: calc(100vh - 130px);
}

.sec1.unlock {
  margin-bottom: 0;
}

.sec1_swiper {
  position: relative;
  margin-right: initial;
  margin-left: initial;
  width: 50%;
  height: 100%;
  background-color: #fff;
}

.sec1_swiper .swiper-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.sec1_swiper .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background-color: #e3e3e3;
  -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;
  opacity: 0.8;
}

.sec1_swiper .swiper-pagination-bullet-active {
  background-color: #9f841b;
  -webkit-box-shadow: unset;
  box-shadow: unset;
}

.sec1_swiper .swiper-pagination-bullets {
  bottom: 45px;
}

.product_numblk {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 51;
  padding-top: 65px;
  padding-right: 20px;
  padding-left: 30px;
  width: 165px;
  height: 100%;
  background-color: #fff;
  background-image: -moz-linear-gradient(62deg, #8e488f 0%, #2b599f 31%, #ecb831 80%, #15957c 100%);
  background-image: -webkit-linear-gradient(62deg, #8e488f 0%, #2b599f 31%, #ecb831 80%, #15957c 100%);
  background-image: -ms-linear-gradient(62deg, #8e488f 0%, #2b599f 31%, #ecb831 80%, #15957c 100%);
  -webkit-box-shadow: inset 0 1px 5px 0 rgba(0, 0, 0, 0.43);
  box-shadow: inset 0 1px 5px 0 rgba(0, 0, 0, 0.43);
  color: #fff;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}

.product_numblk .numblk_t {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 14px;
}

.product_numblk .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.product_numblk .swiper-button-next, .product_numblk .swiper-button-prev {
  display: none;
}

.product_numblk .swiper-slide {
  margin-bottom: 11px;
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 12px;
}

.product_numblk .swiper-slide.active {
  font-weight: 700;
}

.product_numblk .swiper-slide:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.product_numblk #right_btn {
  position: absolute;
  top: 70px;
  left: 0;
  opacity: 0;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.product_numblk #right_btn.active {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 1;
}

.product_numblk #right_btn .arrow {
  display: block;
  background-image: url("../images/mail_w.png");
  background-size: 17px;
}

.product_numblk #right_btn .contact_form {
  display: block;
  background-image: url("../images/arrow.png");
  background-size: 13px;
}

.product_numblk #right_btn .contact_form.open:before {
  left: 0;
}

.product_numblk #right_btn .contact_form.open:after {
  left: -100px;
}

.product_numblk #right_btn .contact_form:before {
  position: absolute;
  left: 100px;
  display: block;
  content: 'CLOSE';
  letter-spacing: 1px;
  font-weight: bold;
  font-size: 12px;
  font-family: "Lato", Myriad Pro, Myriad, Microsoft JhengHei, Aria, sans-serif;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: 7px 28px;
  -ms-transform-origin: 7px 28px;
  transform-origin: 7px 28px;
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  -ms-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.product_numblk #right_btn .contact_form:after {
  position: absolute;
  left: 0;
  display: block;
  width: 160px;
  content: 'PRODUCT LINES';
  letter-spacing: 1px;
  font-weight: bold;
  font-size: 12px;
  font-family: "Lato", Myriad Pro, Myriad, Microsoft JhengHei, Aria, sans-serif;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: 7px 28px;
  -ms-transform-origin: 7px 28px;
  transform-origin: 7px 28px;
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  -ms-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.prodcut_info {
  position: relative;
  -webkit-box-flex: 2;
  -ms-flex: 2 1 auto;
  flex: 2 1 auto;
  padding: 60px;
  width: 50%;
  background-color: #fff;
}

.prodcut_info .scroll_bar {
  position: relative;
  /* height: calc(100% - 320px); */
}

.product_list {
  position: absolute;
  top: 0;
  right: 0;
  background: #8e488f;
  background: -moz-linear-gradient(37deg, #8e488f 0%, #8e488f 7%, #2b599f 44%, #ecb831 63%, #15957c 80%, #15957c 100%);
  background: -webkit-linear-gradient(37deg, #8e488f 0%, #8e488f 7%, #2b599f 44%, #ecb831 63%, #15957c 80%, #15957c 100%);
  background: -webkit-linear-gradient(53deg, #8e488f 0%, #8e488f 7%, #2b599f 44%, #ecb831 63%, #15957c 80%, #15957c 100%);
  background: -o-linear-gradient(53deg, #8e488f 0%, #8e488f 7%, #2b599f 44%, #ecb831 63%, #15957c 80%, #15957c 100%);
  background: linear-gradient(37deg, #8e488f 0%, #8e488f 7%, #2b599f 44%, #ecb831 63%, #15957c 80%, #15957c 100%);
  width: 160px;
  height: 100%;
}

.product_head {
  margin-bottom: 25px;
}
/*.product_head h2 {
  font-weight: 200;
  font-size: 24px;
  line-height: 26px;
}*/
.product_head h1 {
  font-weight: 800;
  font-size: 26px;
  line-height: 26px;
}

.product_ul {
  margin-bottom: 45px;
  padding-left: 1.5em;
  color: #575757;
  list-style-position: outside;
  list-style-type: disc;
  font-size: 14px;
  line-height: 18px;
}

.specbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 570px;
}

.category {
  margin-bottom: 30px;
  width: calc(570px / 3);
}

.category .name {
  margin-bottom: 14px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  color: #000;
  font-weight: 800;
  font-size: 14px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.category p {
  width: calc(100% - 20px);
  font-size: 14px;
  color: #575757;
}

.scroll_area {
  position: absolute;
  bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 125px;
  color: #575757;
  font-size: 14px;
  cursor: pointer;
}

.scroll_area .circle {
  position: relative;
  border-radius: 50%;
  background-color: #202020;
  width: 41px;
  height: 41px;
  overflow: hidden;
}

.scroll_area .circle:before {
  position: absolute;
  top: 0;
  background-image: url("../images/arr_w.png");
  background-position: center;
  background-size: 13px;
  background-repeat: no-repeat;
  content: '';
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.scroll_area .circle:after {
  position: absolute;
  top: -100%;
  background-image: url("../images/arr_w.png");
  background-position: center;
  background-size: 13px;
  background-repeat: no-repeat;
  content: '';
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.slash {
  position: relative;
  left: 15px;
  margin-top: 15px;
  margin-bottom: 15px;
  background-color: #000;
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
  -webkit-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  transform-origin: left bottom;
  width: 2px;
  height: 45px;
}

.pattern {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto 75px;
  max-width: 1150px;
  width: 100%;
  opacity: 0;
}

.pattern>* {
  /* opacity: 0; */
}

.pattern p {
  max-width: 470px;
  color: #575757;
  letter-spacing: 0.05em;
  font-size: 14px;
  line-height: 18px;
}

.flexbtn {
  font-weight: 800;
  font-size: 30px;
  line-height: 32px;
}

.circle_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 60px;
  padding-bottom: 40px;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.pattern_circle {
  margin-right: 50px !important;
  margin-bottom: 20px;
  width: 150px;
  opacity: 0;
}
@media only screen and (width:1024px){
  .pattern_circle {
    margin-right: 45px !important; }
  .pattern_circle:nth-of-type(5n){
    margin-right: 0 !important;
  }
}
@media only screen and (min-width:1150px){
  .pattern_circle:nth-of-type(6n){
  margin-right: 0 !important;
}
}

@media only screen and (max-height: 800px) and (min-width: 1300px) {
  .pattern_circle:nth-of-type(5n){
    margin-right: 0 !important;
  }
  .pattern_circle:nth-of-type(6n){
    margin-right: 50px !important;
  }
}
@media only screen and (max-width:800px){
  .pattern_circle {
    margin-right: 2% !important;}
  .pattern_circle:nth-of-type(4n){
    margin-right: 0 !important;
  }
}
.pattern_circle:last-child {
  /* margin-right: 0; */
}

.circle_img {
  margin-bottom: 25px;
  text-align: center;
}

.circle_inlineblk {
  width: 108px;
  height: 108px;
  display: inline-block;
  overflow: hidden;
  background-position: center;
  -webkit-background-size: cover;
  background-size: cover;
  border-radius: 50%;
}

.circle_name {
  text-align: center;
  font-weight: 700;
  font-size: 14px;
}

.circle_name span {
  display: inline-block;
  text-align: left;
  line-height: 1.3em;
}

.sec_market {
  margin: 0 auto;
  max-width: 1150px;
  width: 100%;
}

.sec_market>* {
  opacity: 0;
}

.sec_market p {
  margin: 0 auto 70px;
  max-width: 500px;
  color: #575757;
  text-align: center;
  font-size: 14px;
  line-height: 18px;
}

.sec_market .flexbtn {
  position: relative;
  margin-bottom: 35px;
  padding-bottom: 60px;
  text-align: center;
  font-weight: 900;
}

.sec_market .flexbtn:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  background-color: #000;
  content: '';
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 42px;
  height: 2px;
}

.sec_mac {
  margin: 65px auto 65px;
  padding-bottom: 65px;
  max-width: 1140px;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.sec_mac .flexbtn {
  margin-bottom: 30px;
}

.macblk {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.macblk ul {
  width: 44%;
  letter-spacing: 0.05em;
  font-size: 14px;
}

.macblk ul li {
  margin-bottom: 17px;
  padding-bottom: 20px;
  border-bottom: 1px solid #000;
}

.macblk ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.macblk p {
  width: 470px;
  color: #575757;
}

.sec_appsharing {
  position: relative;
  margin: 0 auto 65px;
  max-width: 1140px;
  width: 100%;border-bottom: 1px solid rgba(0, 0, 0, 0.25);padding-bottom: 65px;
}

.sec_appsharing .flexbtn {
  margin-bottom: 60px;
}

.sec_appsharing .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sec_appsharing .swiper-pagination {
  top: 0;
  right: 0;
  bottom: initial;
  left: initial;
  width: 150px;
  text-align: right;
}

.sec_appsharing .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  -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;
}

.sec_appsharing .swiper-pagination-bullet-active {
  background-color: #9f841b;
  -webkit-box-shadow: unset;
  box-shadow: unset;
}

.sec_appsharing .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 10px;
}

.sec_appsharing .swiper-pagination-bullets .swiper-pagination-bullet:last-child {
  margin-right: 0;
}

.sec_appsharing .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 50%;
  transition: padding 0.5s;
}

/* .sec_appsharing .item:nth-child(even) {
  padding-right: 0;
  padding-left: 80px;
  border-left: 1px solid rgba(0, 0, 0, 0.19);
} */
.sec_appsharing .item.swiper-slide-next {
  padding-right: 0;
  padding-left: 80px;
  border-left: 1px solid rgba(0, 0, 0, 0.19);
}

.sec_appsharing .item .img {
  margin-right: 35px;
  max-width: 168px;
  max-height: 168px;
  font-size: 0;
  overflow: hidden;
}

.sec_appsharing .item p {
  max-width: 280px;
  font-weight: 800;
  font-size: 14px;
  line-height: 22px;
  padding-right: 15px;
  flex: 2 1 auto;
  width: 50%;
}

.backlist {
  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;
  margin: 40px auto 90px;
  border: 2px solid #000;
  letter-spacing: 0.1em;
  font-weight: 800;
  font-size: 14px;
  width: 195px;
  height: 51px;
  -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;
}

.backlist span {
  background-color: #f6f6f6;
}
.product__iquery {
  text-align: center;
  margin-top: 10px;
}
.product__iquery a{
  background-color: #333;
  color: #fff;
  padding: 10px 15px;
  border-radius: 15px;
  transition: all .3s;
  width: 160px;
  display: block;
}
.product__iquery a:hover{ 
  background-color: #565656;
  color: #fff;
}
@media only screen and (max-width:768px){
 
}
@media only screen and (max-width:450px){

}
@media only screen and (max-width:375px){

}
@-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 (max-height: 800px) and (min-width: 1300px) {
  .page_content {
    margin-top: 80px;
  }
  #content {
    padding-top: 80px;
  }
  header #inner .menu .block .has_sub:before {
    top: 55px;
  }
  .inquiry {
    margin-top: 23px;}
  header #inner .menu {
    height: 80px;
  }

  header #inner .logo {
    height: 80px;
  }

  header #inner .more_info {
    height: 80px;
  }

  header #inner .menu .block .link {
    margin-top: 25px;
  }

  header #inner .logo img {
    margin: 26px auto;
  }

  header #inner .more_info .lang-select {
    margin-top: 22px;
  }

  header #inner .more_info .link {
    margin-top: 25px;
  }

  header #inner .sub_link {
    top: 80px;
  }

  header #inner .menu .block .has_sub:before {
    top: 55px;
  }

  .sec_appsharing .item.swiper-slide-next {
    padding-left: 30px;
  }

  .sec_appsharing .item .img {
    max-width: 130px;
    max-height: 130px;
  }

  h2, .product_head h1 {
    font-weight: 800;
    font-size: 24px;
    line-height: 26px;
  }

  .sec1 {
    min-height: 570px;
    height: calc(100vh - 80px);
  }

  .prodcut_info {
    padding: 25px 68px 20px 29px;
  }
  
  .prodcut_info h3 {padding: 0 0px 10px 0px;}

  .slash {
    height: 14px;
    left: 3px;
    margin-top: 2px;
    margin-bottom: 2px;
    width: 2px;
  }

  .product_head {
    margin-bottom: 18px;
  }

  h3.t2 {
    margin-bottom: 13px;
    font-size: 18px;
    line-height: 20px;
  }

  .product_ul {
    margin-bottom: 20px;
  }

  .category .name {
    margin-bottom: 8px;
    padding-bottom: 8px;
  }

  .category {
    margin-bottom: 16px;
  }

  .scroll_area {
    /* display: none; */
  }

  /*#right_btn {
    width: 45px;
  }*/

  .product_numblk #right_btn .contact_form:after,
  .product_numblk #right_btn .contact_form:before {
    -webkit-transform-origin: 2px 26px;
    -ms-transform-origin: 2px 26px;
    transform-origin: 2px 26px;
  }

  .gallery-top .swiper-slide {
    max-height: 470px;
    width: 100%;
    height: 470px;
  }

  .gallery-top {
    height: 470px;
    max-width: 850px;
    margin-bottom: 17px;
  }

  .gallery-thumbs .swiper-container {
    width: 750px;
  }

  .sec_album {
    max-width: 850px;
  }

  .gallery-thumbs .thumb_next:after{
    bottom: 0;
  }

  .gallery-thumbs .thumb_prev:after{
    top: 0;
  }

  .gallery-thumbs .thumb_prev:hover:before{
    width: 18px;
    left: -2px;
  }
  .gallery-thumbs .thumb_next:hover:before{
    width: 18px;
    left: -2px;
  }

  .pattern, #logo_box, .sec_mac, .sec_appsharing {
    max-width: 850px;
  }

  .gallery-thumbs .swiper-slide {
    width: 142px;
    height: 80px;
  }

  .gallery-thumbs .thumb_next, .gallery-thumbs .thumb_prev {
    width: 50px;
    height: 82px;
  }

  .pattern_circle {
    width: 130px;
  }

  .macblk p {
    width: 50%;
  }

  .macblk ul {
    width: 42%;
  }
}

@media only screen and (min-width: 1300px) {
  .product_link:hover {
    color: white;
  }

  .fixblk {
    position: fixed;
    top: 0;
    z-index: -1;
    margin-top: 250px;
    width: 100%;
  }

  .fixblk.unlock {
    position: relative;
    margin-top: 110px;
    z-index: 5;
  }

  .scroll_area .circle:before {
    top: 100%;
    -webkit-animation: scrollbefore infinite 1.2s 1.2s;
    animation: scrollbefore infinite 1.2s 1.2s;
  }

  .scroll_area .circle:after {
    top: 0;
    -webkit-animation: scrollafter infinite 1.2s;
    animation: scrollafter infinite 1.2s;
  }

  .gallery-thumbs .thumb_next:hover {
    background-position: 0 center;
  }

  .gallery-thumbs .thumb_prev:hover {
    background-position: 0 center;
  }

  .more_button:hover:before {
    opacity: 1;
  }
}

@media only screen and (max-width: 1300px) {
  .page_content {
    margin-top: 90px;
    padding-top: 0;
    background-color: #f6f6f6;
  }

  body {
    background-color: #fff;
  }

  .sec1 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 60px;
    height: auto;
  }

  .sec1_swiper {
    width: 100%;
    height: calc(60vw / 7 * 8);
  }

  .product_numblk #right_btn {
    display: none;
  }

  .product_numblk.fixlist.unlock {
    display: none;
    width: 0;
  }

  .product_numblk {
    position: relative;
    padding: 0;
    width: 100%;
    height: auto;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  .product_numblk .numblk_t {
    display: none;
  }

  .product_numblk .swiper-container {
    margin-right: auto;
    margin-left: auto;
    width: calc(100% - 100px);
  }

  .product_numblk .swiper-wrapper {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .product_numblk .swiper-button-next, .product_numblk .swiper-button-prev {
    display: block;
    background-image: url("../images/arrow_w.png");
    background-size: 7px;
  }

  .product_numblk .swiper-button-prev {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .product_numblk .swiper-slide {
    position: relative;
    margin-bottom: 0;
    padding: 25px;
    width: auto;
    border-bottom: 0;
    font-size: 17px;
  }

  .product_numblk .swiper-slide:last-child {
    padding-right: 0;
    padding-bottom: 25px;
  }

  .product_numblk .swiper-slide:last-child:last-child:after {
    display: none;
  }

  .product_numblk .swiper-slide:after {
    position: absolute;
    top: calc(50% - 4px);
    right: 0;
    background-color: #fff;
    content: '';
    width: 1px;
    height: 11px;
  }

  .prodcut_info {
    padding: 45px;
    width: 100%;
  }
  .prodcut_info h3 {padding: 0 0px 20px 0px;}

  .prodcut_info .scroll_bar {
    height: auto;
    margin-bottom: 55px;
  }
}

.spec_title {
  display: none;
}

@media only screen and (max-width: 1150px) {
  .sec_appsharing .item {
    padding-right: 40px;
  }

  .sec_appsharing .item:nth-child(even) {
    padding-left: 40px;
  }

  .sec_appsharing {
    margin-right: auto;
    margin-left: auto;
    width: calc(100% - 80px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    padding-bottom: 65px;
  }

  .sec_appsharing .item p {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }
	.loop2  { padding:20px 33px;}
}

@media only screen and (max-width: 1024px) {
  .product_numblk #right_btn .contact_form:after, .product_numblk #right_btn .contact_form:before {
    display: none;
  }

  .category {
    margin-bottom: 20px;
  }

  .pattern {
    margin-bottom: 50px;
    margin-top: 50px;
    padding-right: 40px;
    padding-left: 40px;
  }

  .circle_list {
    padding-bottom: 40px;
  }

  .sec_market {
    padding-top: 0;
  }

  .sec_mac {
    padding-right: 40px;
    padding-left: 40px;
  }

  .sec_mac h2 {
    margin-bottom: 40px;
  }

  .macblk p {
    width: 47%;
  }
}

@media only screen and (max-width: 650px) {
  .circle_list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .remove_m {
    display: none;
  }

  .page_content {
    margin-top: 60px;
  }

  .sec1 {
      margin-bottom: 0;
          /*float: left;*/
          display: block;
  }
  .fixblk {
      float: left;
      display: block;
      width: 100%;
  }

  .sec1_swiper {
    height: calc(100vw / 7 * 8);
  }

  .sec1_swiper .swiper-pagination-bullets {
    bottom: 20px;
  }

  .product_head {
    padding-right: 33px;
    padding-left: 33px;
  }

  .prodcut_info {
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
  }
  
  .prodcut_info h3 {padding: 0 33px 20px 33px;}

  h3.t2 {
    padding-right: 33px;
    padding-left: 33px;
  }

  .product_ul {
    padding-right: 33px;
    padding-left: calc(33px + 1.5em);
    width: calc(100% - 1.5em);
  }

  .spec_title {
    display: block;
    margin-bottom: 0;
    padding: 25px 33px;
    border-top: 1px solid rgba(0, 0, 0, 0.14);
    border-bottom: 1px solid rgba(0, 0, 0, 0.14);
    font-weight: 800;
    font-size: 18px;
  }

  .specbox {
    padding: 25px 33px;
    width: 100%;background-color: #f6f6f6;
  }

  .category {
    width: 100%;
  }

  .scroll_area {
    display: none;
  }

  .product_head h2 {
    font-size: 30px;
  }

  h2 {
    font-size: 18px;
  }

  .flexbtn {
    padding: 25px 33px;
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.14);
    border-bottom: 1px solid rgba(0, 0, 0, 0.14);
    background-color: #fff;
    font-size: 18px;
    line-height: 1;
  }

  .prodcut_info .scroll_bar {
    margin-bottom: 0;
  }

  .pattern {
    margin-top: -1px;
    margin-bottom: 0;
    padding: 0;
  }

  #logo_box, .sec_market {
    margin-top: -1px;
  }

  .pattern p {
    padding: 20px 33px;
  }

  .pattern_head h2 {
    width: 100%;
  }

  .pattern_circle {
    margin-right: 0 !important;
    width: 33%;
  }

  .sec_market .flexbtn {
    margin-bottom: 0;
    padding-top: 25px;
    padding-bottom: 25px;
    text-align: left;
  }

  .sec_market .flexbtn:after {
    display: none;
  }

  .sec_market p {
    margin-bottom: 20px;
    padding: 20px 33px;
  }

  .sec_mac {
    margin-top: -1px;
    margin-bottom: 0;
    padding: 0;
    border-bottom: 0;
  }

  .sec_mac .flexbtn {
    margin-bottom: 0;
  }

  .macblk {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 20px 33px;
  }

  .macblk p {
    margin-bottom: 35px;
    width: 100%;
  }

  .macblk ul {
    width: 100%;
  }

  .sec_appsharing {
    margin-top: -1px;
    margin-bottom: 0px; padding-bottom: 0; border-width: 0;
    padding-right: 0;
    padding-left: 0;
    width: 100%; 
  }

  .sec_appsharing .flexbtn {
    margin-bottom: 0;
  }

  .sec_appsharing .swiper-container {
    margin-top: 30px;
    padding: 0 33px;
    height: 300px;
  }

  .sec_appsharing .swiper-pagination {
    position: relative;
    top: inherit;
    bottom: inherit;
    margin: 30px auto;
    text-align: center;
  }

  .sec_appsharing .item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    margin-bottom: 20px;
    padding-right: 0;
    padding-bottom: 20px;
    width: 100%;
    height: 130px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.21);
  }

  .sec_appsharing .item .img {
    margin-right: 15px;
    width: 32%;
  }

  .sec_appsharing .item .img img {
    display: block;
  }

  .sec_appsharing .item p {
    -webkit-box-flex: 2;
    -ms-flex: 2 1 auto;
    flex: 2 1 auto;
    width: calc(68% - 15px);
    letter-spacing: 0.01em;
  }

  .sec_appsharing .item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    padding-left: 0;
    border-left: 0;
  }

  .sec_appsharing .item:nth-child(even) {
    padding-bottom: 0;
    padding-left: 0;
    /* border-bottom: 0; */
    border-left: 0;
  }

  .sec_album {
    padding-bottom: 50px;
    border-bottom: 0;
  }
}
@media only screen and (max-width:414px){
  .pattern_circle {
    width: 50%;
  }
}