.img {
  position: relative;
  display: flex;
  width: 100%;
}

.img img {
  width: 100%;
}

.img .product {
  display: block;
  position: absolute;
  top: 30.5%;
  left: 20%;
  width: 16%;
  height: 14%;
}

.img .news1 {
  position: absolute;
  top: 21%;
  left: 16%;
  width: 6%;
  height: 3%;
}

.img .news2 {
  position: absolute;
  top: 27%;
  left: 16%;
  width: 45%;
  height: 10%;
}

.product-desc {
  width: 65%;
}

.product-container {
  background: url(../images/new/product-diwen.png) no-repeat;
  background-size: 100%;
}

.product-container .product-main {
  background-color: white;
  box-shadow: 0 0 16px 0 rgba(86, 86, 86, 0.1);
  padding: 70px;
  margin-bottom: 200px;
}

.product-container .product-main .tablist {
  display: flex;
  margin-bottom: 30px;
}

.product-container .product-main .tablist .item {
  position: relative;
  display: block;
  font-family: 'Source Han Sans CN';
  padding: 15px 30px;
  border: 1px solid #CACACA;
  font-size: 18px;
  color: #101010;
  margin-right: 50px;
  transition: all .2s;
}

.product-container .product-main .tablist .item:last-child {
  margin-right: 0;
}

.product-container .product-main .tablist .item:hover {
  background-color: #8CCD45;
  border-color: #8CCD45;
  color: white;
}

.product-container .product-main .tablist .item.active {
  background-color: #8CCD45;
  border-color: #8CCD45;
  color: white;
}

.product-container .product-main .tablist .item.active::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 0;
  height: 0;
  border: 14px solid transparent;
  border-bottom-width: 21px;
  border-bottom-color: #F6F6F6;
}

.product-container .product-main .tabcontent {
  position: relative;
  padding: 30px 0;
  background-color: #F6F6F6;
}

.product-container .product-main .tabcontent .item {
  display: none;
}

.product-container .product-main .tabcontent .item .detail {
  box-sizing: border-box;
  width: 50%;
  padding: 0 45px;
  border-right: 1px solid #CACACA;
  float: left;
}

.product-container .product-main .tabcontent .item .detail:last-child {
  border: 0;
}

.product-container .product-main .tabcontent .item .detail h6 {
  font-size: 16px;
  margin-bottom: 20px;
}

.product-container .product-main .tabcontent .item .detail p {
  font-size: 16px;
  color: #737373;
  line-height: 35px;
}

.product-container .product-main .product-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 70px;
}

.product-container .product-main .product-list:after {
  content: '';
  width: 310px;
}

.product-container .product-main .product-list .item {
  display: block;
  width: 310px;
  margin-top: 35px;
  text-align: center;
}

.product-container .product-main .product-list .item .thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 300px;
  margin-bottom: 20px;
}

.product-container .product-main .product-list .item .thumb img {
  width: 100%;
  height: 100%;
}

.product-container .product-main .product-list .item a {
  display: block;
  font-size: 18px;
  color: #555;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.product-detail-wrapper {
  max-width: 1680px;
  margin: auto;
  padding: 70px 0 0;
}

.product-detail-wrapper .breadcrumb-link {
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #ECECEC;
  padding-left: 15px;
  margin-bottom: 70px;
}

.product-detail-wrapper .breadcrumb-link:before {
  content: '';
  position: absolute;
  top: calc(50% - 5px);
  left: 0;
  transform: translateY(-50%);
  width: 5px;
  height: 20px;
  background-color: #8CCD45;
}

.product-detail-wrapper .breadcrumb-link b {
  font-size: 16px;
  color: #101010;
}

.product-detail-wrapper .breadcrumb-link a {
  font-size: 16px;
  color: #666666;
  margin: 0 10px;
}

.product-detail-wrapper .product-detail-info {
  display: flex;
  align-items: center;
  margin-bottom: 100px;
}

.product-detail-wrapper .product-detail-info .product-thumbs {
  width: 355px;
  margin-right: 60px;
}

.product-detail-wrapper .product-detail-info .product-thumbs .product-current-thumb {
  width: 355px;
  height: 355px;
}

.product-detail-wrapper .product-detail-info .product-thumbs .product-current-thumb img {
  width: 100%;
  height: 100%;
}

.product-detail-wrapper .product-detail-info .product-thumbs .product-thumb-list {
  position: relative;
  padding: 10px 25px;
}

.product-detail-wrapper .product-detail-info .product-thumbs .product-thumb-list .left, .product-detail-wrapper .product-detail-info .product-thumbs .product-thumb-list .right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #ADADAD;
}

.product-detail-wrapper .product-detail-info .product-thumbs .product-thumb-list .left {
  left: 0;
}

.product-detail-wrapper .product-detail-info .product-thumbs .product-thumb-list .right {
  right: 0;
}

.product-detail-wrapper .product-detail-info .product-thumbs .product-thumb-list .product-thumb-item {
  display: block;
  width: 78px;
  height: 78px;
  border: 2px solid transparent;
}

.product-detail-wrapper .product-detail-info .product-thumbs .product-thumb-list .product-thumb-item.active {
  border: 2px solid #8CCD45;
}

.product-detail-wrapper .product-detail-info .product-thumbs .product-thumb-list .product-thumb-item img {
  width: 100%;
  height: 100%;
}

.product-detail-wrapper .product-detail-info .product-desc h2 {
  font-size: 24px;
  font-weight: bold;
  color: #0F0F0F;
  margin-bottom: 30px;
}

.product-detail-wrapper .product-detail-info .product-desc .detail {
  font-size: 18px;
  color: #737373;
  margin-bottom: 30px;
}

.product-detail-wrapper .product-detail-info .product-desc .detail p {
  margin-bottom: 15px;
}

.product-detail-wrapper .product-detail-info .product-desc .phone {
  font-size: 18px;
  margin-bottom: 50px;
}

.product-detail-wrapper .product-detail-info .product-desc .phone b {
  color: #8CCD45;
  font-size: 24px;
}

.product-detail-wrapper .product-detail-info .product-desc .btn-contact {
  display: block;
  width: 190px;
  height: 50px;
  border: 1px solid #8CCD45;
  border-radius: 100px;
  color: #8CCD45;
  text-align: center;
  line-height: 50px;
  font-size: 18px;
}

.product-detail-wrapper .product-describe-container .product-column {
  border-bottom: 1px solid rgba(153, 153, 153, 0.5);
  padding-left: 4px;
}

.product-detail-wrapper .product-describe-container .product-column span {
  position: relative;
  display: block;
  width: 135px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background-color: #8CCD45;
  color: white;
  font-size: 20px;
}

.product-detail-wrapper .product-describe-container .product-column span::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 4px;
  height: 40px;
  background-color: #0065BC;
}

.product-detail-wrapper .product-describe-container .product-describe {
  flex: 4;
  border-right: 1px solid rgba(153, 153, 153, 0.2);
  padding: 55px 45px;
}

.product-detail-wrapper .product-describe-container .recommend {
  flex: 1;
  text-align: center;
  padding: 35px 45px;
}

.product-detail-wrapper .product-describe-container .recommend h2 {
  font-size: 24px;
  font-weight: bold;
}

.product-detail-wrapper .product-describe-container .recommend .item {
  display: block;
  width: 260px;
  margin-top: 50px;
}

.product-detail-wrapper .product-describe-container .recommend .item img {
  width: 260px;
  height: 175px;
  margin-bottom: 10px;
}

.product-detail-wrapper .product-describe-container .recommend .item p {
  font-size: 12px;
  color: #737373;
}

.column {
  padding: 80px 0 40px 0;
}

.column h6 {
  display: inline-block;
  padding-left: 20px;
  font-size: 18px;
  color: #999999;
  background: url(../images/new/flash.png) 0 3px no-repeat;
  background-size: 11px 16px;
  margin-bottom: 15px;
}

.column h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 15px;
}

.column p {
  font-size: 18px;
  color: #999999;
}

.column .more {
  color: #8CCD45;
}

.clearfix::before, .clearfix::after {
  content: '';
  display: table;
}

.clearfix::after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

@media all and (max-width:750px) {
  .product-container .product-main{
    padding: 20px 10px;
    
  }
  .container.product-main.wow.fadeInUp>.tablist{
    display: flex;
    justify-content: space-between;
  }
  .container.product-main.wow.fadeInUp>.tablist>a{
    padding: 6px 10px;
    font-size: 14px;
    margin-right: 0;
    text-align: center;
  }
  .product-container .product-main .tabcontent .item .detail{
    width: 100%;
    border-right: 0px;
    padding: 10px 10px;
    line-height: 1px;
    border-bottom: #E1E1E8 solid 1px;
  }
  .product-container .product-main .tabcontent .item .detail p{
    line-height: 24px;
  }
  .product-container .product-main .tabcontent{
    padding: 10px 10px;
  }
  .product-container .product-main .tabcontent .item .detail h6{
    margin-bottom: 10px;
  }

  .top{
    margin-bottom: 30px !important;
  }
  .top b{
    margin-left: -5px;
  }
  .top b,.top a{
    font-size: 12px !important;
  }
  .product-detail-wrapper .breadcrumb-link:before{
    width: 3px;height: 12px;
    top: 12px;
  }
  .outside{
    margin-right: 0;margin-left: 0;
  }
  .container{
    min-width: 100%;
  }
  .product-detail-wrapper .product-detail-info{
    margin-bottom: 30px;
    align-items: flex-start;
  }
  .product-detail-wrapper .product-detail-info .product-thumbs{
    margin-right: 20px;
    
  }
  .product-detail-wrapper .product-detail-info .product-thumbs{
    width: auto;
  }
  .product-detail-wrapper .product-detail-info .product-thumbs .product-current-thumb{
    width: 150px;height: 150px;
  }
  .product-detail-wrapper .product-detail-info .product-thumbs .product-thumb-list .product-thumb-item{
    width: 30px;height: 30px;
  }
  .product-detail-wrapper .product-detail-info .product-thumbs .product-thumb-list>a{
    font-size: 14px !important;
  }
  
  
  .product-detail-wrapper .product-detail-info .product-desc h2{
    font-size: 14px;
    margin-bottom: 8px;
  }
  .product-detail-wrapper .product-detail-info .product-desc .detail{
    font-size: 13px;
    color: #737373;
    margin-bottom: 10px;
    line-height: 1;
  }
  .product-detail-wrapper .product-detail-info .product-desc .detail p{
    margin-bottom: 2px;
  }
  .product-detail-wrapper .product-detail-info .product-desc .phone{
    font-size: 14px ;
    margin-bottom: 10px;
    margin-top: 8px;
  }
  .product-detail-wrapper .product-detail-info .product-desc .phone b{
    font-size: 13px
  }
  .product-detail-wrapper .product-detail-info .product-desc .btn-contact{
    display: none;
  }
  .product-detail-wrapper .product-describe-container .product-column span{
    width: 80px;height: 30px;
    font-size: 16px;
    line-height: 30px;
  }
  .product-detail-wrapper .product-describe-container .product-column span::before{
    height: 30px;
  }
  .d-flex.contain{
    display: block !important;
  }
  
  .product-detail-wrapper .product-describe-container .product-describe{
    padding: 10px;
  }
  .product-detail-wrapper .product-describe-container .product-describe p{
    line-height: 1.5em !important;
  }
  .product-detail-wrapper .product-describe-container .product-describe p span{
    line-height: 2em;
    font-size: 12px !important;
    font-weight: bold;
  }
  
  .product-detail-wrapper .product-describe-container .recommend{
    text-align: left;
    padding: 10px;
  }
  .product-detail-wrapper .product-describe-container .recommend h2{
    font-size: 16px
  }
  .product-detail-wrapper .product-describe-container .recommend .item{
    margin-top: 20px;margin-right: 25px;
    width: 220px;
  }
  .product-detail-wrapper .product-describe-container .recommend .item img{
    width: 220px;
  }
  .product-detail-wrapper .product-describe-container .product-describe{
    border-right: 0;
  }
}
