@keyframes mymove {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.cur {
  color: var(--dataColor) !important;
}

#product {
  background-color: #000;
}

#product .top {
  margin: 60px 0;
  color: #fff;
}

#product .top h2 {
  font-size: var(--title);
}

#product .top h2::after {
  content: "_";
  display: block;
}

#product .top span {
  font-size: var(--subTitle);
  display: block;
  margin-top: 20px;
}

#product .navigation {
  display: flex;
}

#product .navigation a {
  font-size: 14px;
  color: #B7B7B7;
  width: 60px;
  display: inline-block;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 30px;
}

#product .navigation a:first-child {
  margin-left: 0;
}

#product .navigation a span {
  font-size: 10px;
}

#product .list {
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

#product .list .item {
  text-align: center;
  width: calc(33.33% - 20px);
  padding: 60px 40px;
  box-sizing: border-box;
  margin: 10px;
  background-color: #fff;
}
#product .list .item .slide{
    padding-bottom: 60% !important;
}
#product .list .item .title {
  color: #333;
  margin-top: 60px;
  display: block;
}

#product .list .item .product_img img {
  width: 100%;
}

#productView {
  background-color: #000;
}

#productView .top {
  text-align: center;
  font-size: 12px;
  color: #fff;
}

#productView .top a {
  color: #fff;
}

#productView .list {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}

#productView .list .left {
  width: calc(50% - 10px);
  background-color: #fff;
  padding: 50px;
  box-sizing: border-box;
}

#productView .list .left .swiper-product {
  position: static;
  margin-top: 20px;
}

#productView .list .left .swiper-product .swiper-pagination-bullet {
  width: 60px;
  height: 50px;
  object-fit: cover;
  border-radius: 0;
}

#productView .list .right {
  padding: 50px;
  box-sizing: border-box;
  width: calc(50% - 10px);
  background-color: #fff;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#productView .list .right .home-title b{
    color: #54595F;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f6f6f6;
}
#productView .list .right .home-title p{
    color: #7A7A7A;
}
#productView .bottom {
  margin-top: 20px;
  background-color: #fff;
  padding: 50px;
  box-sizing: border-box;
  font-size: 14px;
  color: #54595F;
}

@media screen and (max-width: 600px) {
  #product .top {
    margin: 20px 0;
  }
  #product .list .item {
    width: calc(50% - 20px);
    padding: 20px;
  }
  #product .list .item .title {
    margin-top: 30px;
  }
  #productView .list {
    flex-direction: column;
  }
  #productView .list .left {
    width: 100%;
    padding: 20px;
  }
  #productView .list .right {
    width: 100%;
    padding: 20px;
  }
  #productView .bottom {
    padding: 20px;
  }
}
