.my-mian {
  width: 72.9167vw;
  height: auto;
  margin: 0 auto;
  padding: 5.2083vw 0;
}

.my-mian .miantop {
  display: flex;
  width: 100%;
  height: auto;
}

.my-mian .text {
  flex: 1;
  width: 100%;
  font-size: 14px;
  line-height: 28px;
  color: #787E80;
}

.my-mian .mianpic {
  width: 29.1667vw;
  height: auto;
  /* margin-top: 2.0833vw; */
  /* 50px */
  margin-right: 2.6042vw;
}

.my-mian .mianpic img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.my-mian .product {
  width: 100%;
  height: auto;
  margin-top: 3.125vw;
}

.my-mian .product .product-tab {
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #EBEBEB;
}

.my-mian .product .product-tab .list {
  position: relative;
  height: 100%;
  line-height: 70px;
  padding: 0 20px;
}

.my-mian .product .product-tab .list::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: #3DB0AD;
  transition: all 0.4s;
}

.my-mian .product .product-tab .active::before {
  width: calc(100% - 40px);
}

.my-mian .product .product-tab .list:hover::before {
  width: calc(100% - 40px);
}

.my-mian .product .product-tab .list::after {
  display: none;
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: #A3ABAD;
}

.my-mian .product .product-tab .list a {
  font-size: 16px;
  color: #787E80;
}

.my-mian .product .product-mian {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 4.1667vw;
}

.my-mian .product .product-mian .left {
  width: 19.7917vw;
  height: auto;
  margin-right: 3.125vw;
}

.my-mian .product .product-mian .left .list a {
  display: block;
  padding: 1.25vw 20px;
  color: #787E80;
  font-size: 14px;
  background-color: #F7F7F7;
  /* 20px */
  margin-bottom: 1.0417vw;
}

.my-mian .product .product-mian .left .list a:hover {
  background-color: #3DB0AD;
  color: #ffffff;
}

.my-mian .product .product-mian .right {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.my-mian .product .product-mian .right .item {
  display: block;
  width: 48%;
  height: auto;
  margin-bottom: 2.0833vw;
}

.my-mian .product .product-mian .right .item .pic {
  width: 100%;
  height: 15.625vw;
  overflow: hidden;
  margin-bottom: 20px;
}

.my-mian .product .product-mian .right .item .pic img {
  width: 100%;
  height: 100%;
  transition: 0.4s;
}

.my-mian .product .product-mian .right .item:hover .pic img {
  transform: scale(1.2);
}

.my-mian .product .product-mian .right .item p {
  text-align: center;
  color: #2B1E1A;
  font-size: 18px;
}

@media (max-width: 960px) {
  .my-mian {
    width: 100%;
    padding: 1.33333333rem 0.4rem;
  }

  .my-mian .miantop {
    display: block;
    /* margin-top: 1.06666667rem; */
  }

  .my-mian .text {
    width: 100%;
    font-size: 0.37333333rem;
    line-height: 0.74666667rem;
    color: #787E80;
  }

  .my-mian .mianpic {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.53333333rem;
  }

  .my-mian .mianpic img {
    width: 100%;
  }

  .my-mian .product {
    margin-top: 1.06666667rem;
  }

  .my-mian .product .product-tab {
    width: 100%;
    height: 1.86666667rem;
    display: flex;
    justify-content: center;
    border-bottom: 0.02666667rem solid #EBEBEB;
  }

  .my-mian .product .product-tab .list {
    line-height: 1.86666667rem;
    padding: 0 0.53333333rem;
  }

  .my-mian .product .product-tab .list::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: #3DB0AD;
    transition: all 0.4s;
  }

  .my-mian .product .product-tab .active::before {
    width: calc(100% - 40px);
  }

  .my-mian .product .product-tab .list:hover::before {
    width: calc(100% - 40px);
  }

  .my-mian .product .product-tab .list::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background: #A3ABAD;
  }

  .my-mian .product .product-tab .list a {
    font-size: 0.42666667rem;
    color: #787E80;
  }

  .my-mian .product .product-mian {
    display: block;
    justify-content: space-between;
    width: 100%;
    margin-top: 0.8rem;
  }

  .my-mian .product .product-mian .left {
    width: 100%;
    height: auto;
    margin-top: 0.8rem;
    margin-right: 0;
  }

  .my-mian .product .product-mian .left .list a {
    display: block;
    padding: 0.64rem 0.53333333rem;
    color: #787E80;
    font-size: 0.37333333rem;
    background-color: #F7F7F7;
  }

  .my-mian .product .product-mian .left .list a:hover {
    background-color: #3DB0AD;
    color: #ffffff;
  }

  .my-mian .product .product-mian .right {
    flex: 1;
    display: block;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .my-mian .product .product-mian .right .item {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 1.06666667rem;
  }

  .my-mian .product .product-mian .right .item .pic {
    width: 100%;
    height: 5.84rem;
    overflow: hidden;
    margin-bottom: 0.53333333rem;
  }

  .my-mian .product .product-mian .right .item .pic img {
    width: 100%;
    height: 100%;
    transition: 0.4s;
  }

  .my-mian .product .product-mian .right .item:hover .pic img {
    transform: scale(1.2);
  }

  .my-mian .product .product-mian .right .item p {
    text-align: center;
    color: #2B1E1A;
    font-size: 0.48rem;
  }
}