@charset "UTF-8";
.Img img {
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.classNote {
  padding-bottom: 10px;
  line-height: 1.8;
  font-size: 15px;
  color: #222;
  text-align: center;
}

.classNote img {
  max-width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.albumBox {
  margin-right: 30px;
  padding: 0;
}

.albumBox img {
  display: block;
  width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.side_album {
  width: 100%;
  margin: 2px -1px 0;
}

.side_album li {
  float: left;
  width: 16.6%;
  padding: 1px;
  overflow: hidden;
}

.side_album img {
  display: block;
  width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.side_album a {
  display: block;
}

/*產品介紹縮圖文字*/
/*.introBox {*/
/*  overflow: hidden;*/
/*}*/

.introBox .Txt {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: .8px;
  color: #333;
}

.introBox .btn {
  padding-top: 20px;
  text-align: center;
}

.introBox .btn a {
  display: inline-block;
  padding: 10px 15px;
  border-radius: 3px;
  font-size: 15px;
  color: #fff;
}

.share {
  clear: both;
  padding-top: 10px;
  margin-top: 20px;
  border-top: 1px solid #ccc;
}

.share b {
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  color: #666;
}

.share a {
  display: inline-block;
  width: 25px;
  font-size: 18px;
  color: #666;
  text-align: center;
}

.share a:hover {
  opacity: 0.8;
}

.code {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #999;
}

/*767*/
@media (max-width: 767px) {
  .productIntro .albumBox {
    float: none;
    margin: 0 0 30px 0;
  }
}

/*767 end*/
.mainArea.ins > .wrap {
  max-width: 100%;
}

.introBox {
  display: flex;
  position: relative;
  border-bottom: 1px solid #e8e8e8;
}

.introBox > .share {
  /* position: absolute; */
  /* right: 0; */
  /* top: 0; */
  margin-top: 0;
  padding-top: 5px;
  border-top: 0;
  padding-left: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

@media(max-width: 960px) {
    .introBox {
        flex-wrap: wrap;
    }
    .introBox > .share {
        position: absolute;
        right: 0;
        bottom: -35px;
        padding-left: 0;
    }
}

.tabContent {
  border-top: 0;
}

.tab a {
  margin: 0 5px;
}

.tab a.current:hover {
  color: #FFF;
}

.tab a:hover {
  color: #F76300;
}

.itemList {
  padding: 60px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.itemList > li {
  padding: 0 25px;
}

.itemList li:hover .item > h3 a {
  letter-spacing: 1.5px;
  color: #F76300;
}

.itemList li:hover .Img img {
  -webkit-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.15);
}

.itemList li:hover .Txt {
  top: 75%;
  left: 75%;
  -webkit-transform: translate(-20%, -65%);
      -ms-transform: translate(-20%, -65%);
          transform: translate(-20%, -65%);
  opacity: .9;
  z-index: 1;
  pointer-events: auto;
}

.itemList li .item {
  width: 80%;
  max-width: 460px;
}

.item {
  position: relative;
  margin: 0 auto;
  max-width: 180px;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

.item > h3 {
  margin-top: 20px;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 1.1px;
  color: #111;
}

.Img {
  border-radius: 50%;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

.Img img {
  border-radius: 50%;
  -webkit-box-shadow: 0px 1px 25px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 1px 25px 0px rgba(0, 0, 0, 0.1);
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.Txt {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 50%;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

.Txt:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -90px;
  margin-top: -90px;
  width: 100%;
  height: 100%;
  display: block;
  background: -webkit-gradient(linear, left bottom, right top, from(#f76300), to(rgba(247, 99, 0, 0))) #f29c20;
  background: -webkit-linear-gradient(left bottom, #f76300 0%, rgba(247, 99, 0, 0) 100%) #f29c20;
  background: -o-linear-gradient(left bottom, #f76300 0%, rgba(247, 99, 0, 0) 100%) #f29c20;
  background: linear-gradient(to right top, #f76300 0%, rgba(247, 99, 0, 0) 100%) #f29c20;
  border-radius: 50%;
  opacity: .9;
  z-index: -1;
}

.Txt .ellipsis {
  padding-top: 20px;
  max-width: 150px;
  height: 80px;
  font-size: 14px;
  font-weight: 200;
  letter-spacing: .4px;
  line-height: 26px;
  color: #FFF;
  text-align: center;
}

.Txt .moreBtn {
  width: 13px;
  height: 13px;
}

.Txt .moreBtn .icon-cross {
  width: 100%;
  height: 100%;
}

@media (max-width: 1280px) {
  .mainArea.ins > .wrap {
    padding-right: 0;
    padding-left: 0;
  }
}

/*@media (min-width: 641px) {*/
/*  .classLink li:first-child {*/
/*    display: none;*/
/*  }*/
/*  .menu .submenu .submenuWrap a:first-child {*/
/*    display: none;*/
/*  }*/
/*}*/

@media (max-width: 640px) {
  .titleBox,
  .side_menu {
    padding-right: 40px;
    padding-left: 40px;
  }
  .itemList li:hover .Txt {
    left: auto;
    top: auto;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  .itemList li .item > h3 {
    margin-bottom: 20px;
  }
  .itemList li .item > h3 a {
    color: #F76300;
  }
  .itemList li .Txt {
    position: relative;
    left: auto;
    top: auto;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    opacity: .9;
  }
  .itemList li .Txt .ellipsis {
    padding: 10px 0;
  }
}
