.act_content_scene {
  margin-bottom: 16px;
}

.scene_product {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 100px;
}

.scene_product_list {
  width: 49.375%;
  margin-bottom: 32px;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #F2F3F5;
  background: #FFF;
  box-shadow:  0px 0px 8px 0px rgba(0, 0, 0, 0.05);
}

.scene_image {
  position: relative;
  height: 0;
  padding-bottom: 72.125%;
  margin-bottom: 12px;
  overflow: hidden;
}

.scene_image img {
  width: 100%;
  display: block;
  border-radius: 4px;
}

.scene_point {
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.32);
  position: absolute;
  border-radius: 50%;
  display: block;
  border: 2px solid rgba(224, 224, 224, 0.5);
  transition: border-color 250ms ease-in-out, opacity 250ms ease-in-out, visibility 250ms ease-in-out;
}

.scene_point:after {
  content: '';
  width: 12px;
  height: 12px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-6px) translateY(-6px);
  z-index: 1;
  background: #FFFFFF;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
  border-radius: 50%;
  transition: width 0.2s ease-in-out, height 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.scene_point:hover {
  border: 2px solid rgba(224, 224, 224, 1);
  background-color: rgba(0, 0, 0, 0.8);
}

.scene_point:hover:after {
  width: 8px;
  height: 8px;
  transform: translateX(-4px) translateY(-4px);
}

.scene_point.on,
.scene_point.on:hover {
  border: 2px solid rgba(220, 47, 47, 0.65);
}

.scene_point.on:after {
  width: 8px;
  height: 8px;
  background: #DC2F2F;
  transform: translateX(-4px) translateY(-4px);
}

.scene_swiper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 16px;
}

.scene_swiper .swiper-wrapper {
  height: auto;
}

.scene_swiper .swiper-pagination-progressbar {
  display: block;
  top: auto;
  bottom: 0;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 4px;
  overflow: hidden;
  height: 4px;
  background: #F2F3F5;
}

.scene_swiper .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background-color: #C9CDD4;
}

.scene_item {
  padding: 12px 12px 16px 12px;
  border-radius: 4px;
  border: 1px solid #F2F3F5;
  background: #fff;
  box-shadow:  0px 0px 12px 0px rgba(0, 0, 0, 0.05);
}

.scene_item.on {
  border-color: #DC2F2F;
  border-width: 2px;
}

.scene_p_img {
  margin-bottom: 16px;
}

.scene_p_img a {
  display: block;
  height: 0;
  padding-bottom: 100%;
  position: relative;
}

.scene_p_img img {
  display: block;
  width: 100%;
}

.scene_p_soldout {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 130%;
  text-align: center;
  z-index: 2;
}

.scene_p_info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.scene_p_price {
  color: #2b2b2b;
  font-size: 16px;
  font-weight: 600;
  line-height: 130%;
}

.scene_p_price span {
  font-size: 24px;
}

.scene_p_cart {
  display: flex;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: #DC2F2F;
}

.scene_p_cart a {
  display: block;
  width: 100%;
  height: 100%;
}
.scene_p_cart i {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(https://cdn.aosomcdn.com/upload/tem/new_ui/images/act-cart-white.svg);
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center center;
}
.scene_p_cart_none {
  opacity: 0;
  visibility: hidden;
}

@media only screen and (max-width: 1600px) {
  .scene_item {
    padding: 12px;
  }

  .scene_p_price {
    font-size: 14px;
  }

  .scene_p_price span {
    font-size: 16px;
  }

  .scene_p_cart {
    width: 28px;
    height: 28px;
  }
}

@media only screen and (max-width: 900px) {
  .scene_p_price {
    font-size: 14px;
  }

  .scene_p_price span {
    font-size: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .act_content_scene {
    margin-bottom: 8px;
  }

  .scene_product_list {
    width: 100%;
    margin-bottom: 12px;
    padding: 12px;
    border-width: 0.5px;
  }

  .scene_image {
    margin-bottom: 8px;
  }

  .scene_swiper {
    padding-bottom: 12px;
  }

  .scene_item {
    border-radius: 4px;
    border-width: 0.5px;
    box-shadow:  0px 0px 8px 0pxrgba(0, 0, 0, 0.05);
  }

  .scene_item.on {
    border-width: 1.5px;
  }

  .scene_p_img {
    margin-bottom: 12px;
  }

  .scene_p_soldout {
    font-size: 14px;
  }

  .scene_p_price {
    font-size: 12px;
  }
}