.product{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  padding: 2rem 0 8rem 0;
  margin: 0;
}
.product .title{
  display: flex;
  flex-direction: column;
  font-size: 2.0rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
}
.product .title span{
  font-size: 2.2rem;
  font-weight: 800;
}
.product .prod_wrap{
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 0;
  margin: 0;
  width: 100%;
}
.product .prod_wrap .prod{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  padding: 0;
  margin: 0;
  /* border-radius: 1.5rem;
  background: rgba(var(--bs-primary-rgb), 0.07); */
}
.product .prod_wrap .prod .tt{
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  padding: 1rem;
  border-radius: 0.5rem;
  background: rgba(var(--bs-primary-rgb), 1);
  width: 100%;
}
.product .prod_wrap .prod .pic{
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  width: 100%;
}
.product .prod_wrap .prod .pic a{
  display:inline-block;
  width: calc(50% - 0.25rem);
  border-radius: 0.5rem;
  padding: 0;
  margin: 0;
  overflow: hidden;
}
.product .prod_wrap .prod .pic a img{
  width: 100%;
}


.bg_com{
  background: rgba(var(--bs-primary-rgb), 0.1);
}
.vod_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
  width: 100%;
  max-width: 1100px;
  padding: 6rem 0;
  margin: 0 auto;
  text-align: center;
  transition: all 0.2s;
}
.vod_wrap .tt_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.vod_wrap .tt_wrap .tt {
  font-weight: 200;
  font-size: 3.8rem;
  /* color: rgba(var(--bs-primary-rgb), 1); */
  line-height: 1.1;
}
.vod_wrap .tt_wrap .tt span {
  font-weight: 800;
}
.vod_wrap .tt_wrap .con {
  font-size: 0.85rem;
  font-weight: 300 !important;
  color: rgba(var(0,0,0), 0.5);
}
.biz_wrap .tt_wrap .con span{
  font-size: 1.0rem;
  font-weight: 600;
}
.vod_wrap video{
  width: 100%;
  border-radius: 0.5rem;
}


@media (max-width: 991.98px) {
  .product{
    padding: 2rem 0 6rem 0;
  }
  .product .prod_wrap{
    flex-direction: column;
    gap: 1.5rem;
  }
  .product .prod_wrap .prod{
    width: 100%;
  }
  .vod_wrap {
    padding: 4rem 20px;
  }
  .vod_wrap .tt_wrap .tt {
    font-size: 2.8rem;
  }
}
@media (max-width: 767.98px) {
  .product{
    padding: 2rem 0 4rem 0;
  }
  .product .title{
    font-size: 1.2rem;
  }
  .product .title span{
    font-size: 1.4rem;
  }
  .product .prod_wrap{
    gap: 0rem;
  }
  .product .prod_wrap .prod .tt{
    font-size: 1.25rem;
  }
  .product .prod_wrap .prod .pic a{
    width: 100%;
  }
  .product .tab{
    font-size: 0.9rem;
  }
  .vod_wrap .tt_wrap .tt {
    font-size: 1.9rem;
  }
  .vod_wrap .tt_wrap .con {
    padding: 0 1.5rem;
  }
}