/*rest*/
@media (max-width: 767px) {
  .inner-banner {
    background-position: 69% center;
  }
}
.product-box {
  /*hover 效果*/
}
.product-box .nav-pill {
  padding: 4px 0;
}
.product-box .nav-pill > li {
  margin-right: 20px;
}
.product-box .nav-pill > li > a {
  display: block;
  color: #6C6C6C;
}
.product-box .nav-pill > li > a:after {
  content: "";
  display: block;
  margin-top: 1px;
  height: 1px;
  background-color: transparent;
}
.product-box .nav-pill > .active > a {
  color: #1962A0;
}
.product-box .nav-pill > .active > a:after {
  background-color: #1962A0;
}
.product-box .product-container {
  padding-top: 46px;
  background: #F4F4F3;
}

@media (max-width: 767px) {
  .product-box .product-container {
    padding-top: 10px;
  }
}

.product-box .list > li {
  margin-bottom: 30px;
}
.product-box .item-box {
  position: relative;
  border: 1px solid #ECECEB;
  background: #fff;
  text-align: center;
  padding-bottom: 20px;
}
.product-box .item-box > .img-box {
  display: block;
  margin: 18px 0;
  padding-bottom: 52%;
  height: 0;
  margin-top: 0;
}
.product-box .item-box > .img-box img {
  width: 100%;
  height: 189px;
  object-fit: cover;
}

@media (max-width: 767px) {
  .product-box .item-box > .img-box {
    display: block;
    margin: 10px 0;
    padding-bottom: 74%;
    height: 0px;
    overflow: hidden;
  }

  .product-box .item-box > .img-box img {
    width: 100%;
    height: auto;
  }

}

.product-box .item-box .text {
  position: relative;
  display: inline-block;
  padding: 0 14px;
  color: #706D6D;
}
.product-box .item-box .text:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  width: 50px;
  height: 1px;
  background: #CFCFCF;
}
.product-box .item-box .text:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 50px;
  height: 1px;
  background: #CFCFCF;
}

@media (max-width: 767px) {
  .product-box .item-box .text:before,
  .product-box .item-box .text:after {
    display: none;
  }
}

.product-box .item-box .text-hover {
  display: -webkit-flex;
  /* Safari */
  display: flex;
  justify-content: center;
  align-items: center;
  background: #1862A0;
  color: #fff;
}

@media (max-width: 767px) {
  .product-box .item-box .text-hover {
    display: none;
  }
}

.product-box .item-box .text-hover .text-type {
  font: 25px/30px "HELVETICA";
  text-transform: uppercase;
}
.product-box .item-box .text-hover .text-type:after {
  content: "";
  display: block;
  margin-top: 26px;
  position: relative;
  width: 120%;
  left: -10%;
  height: 1px;
  background: #fff;
}
.product-box .item-box .text-hover .name {
  font-size: 16px;
  margin-top: 12px;
  margin-bottom: 30px;
}
.product-box .item-box .text-hover .more {
  display: block;
  margin: 0 auto;
  width: 120px;
  height: 40px;
  line-height: 38px;
  border: 2px solid #fff;
  font-size: 16px;
  border-radius: 20px;
  color: #fff;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
.product-box .item-box .text-hover .more:hover {
  background: #fff;
  color: #1862A0;
}
.product-box .item-box .text-hover {
  opacity: 0;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
.product-box .item-box .text-type,
.product-box .item-box .name,
.product-box .item-box .more {
  opacity: 0;
}
.product-box .item-box:hover .text-hover {
  opacity: 1;
}
.product-box .item-box:hover .text-type {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
.product-box .item-box:hover .name {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
.product-box .item-box:hover .more {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
.product-box .item-box:hover .text-type,
.product-box .item-box:hover .name,
.product-box .item-box:hover .more {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: .2s;
  animation-delay: .2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
