.product_info{
  width: 100%;
  padding: 0 0 2rem 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.product_info img{
  width: 100%;
}

.product_wrap{
  width: 100%;
  padding: 2rem 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.product_wrap .tab{
  display: flex;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  margin: 1rem 0 -2rem 0;
  padding: 0;
}
.product_wrap .tab a{
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: .5rem 1rem;
  color: #222;
  text-align: center;
  border: 1px solid #eeeeee;
  transition: all .3s;
}
.product_wrap .tab a:hover{
  background-color: var(--color-main);
  color: #fff;
}

.product_wrap .prod{
  width: 100%;
  padding: 5rem 0 8rem 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  border-bottom: 1px solid var(--bs-gray-200);
}
.product_wrap .prod>div{
  width: calc(50% - 1.5rem);
  padding: 0;
  margin: 0;
}
.product_wrap .pic_wrap{
  width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.product_wrap .pic_wrap>div{
  width: 100%;
}
.product_wrap .pic_wrap img{
  width: 100%;
  /* border: 1px solid var(--bs-gray-200); */
}
.product_wrap .tt_wrap{
  width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.product_wrap .tt_wrap .name{
  font-size: 1.6rem;
  font-weight: 800;
  color:  var(--color-main);
  text-align: center;
  border-radius: 2rem;
  padding: .5rem 1rem;
}
.product_wrap .tt_wrap .sub{
  font-size: 1rem;
  color: var(--bs-gray-700);
  text-align: center;
}
.product_wrap .spec_wrap table{
  width: 100%;
}
.product_wrap .spec_wrap thead{
  border-top: 2px solid var(--bs-gray-700);
  border-bottom: 1px solid var(--bs-gray-200);
}
.product_wrap .spec_wrap th{
  width: 20%;
  text-align: center;
  font-weight: 600;
  font-size: .7rem;
  padding: .5rem;
  background-color: var(--bs-gray-200);
  border-right: 1px solid var(--bs-gray-100);
}
.product_wrap .spec_wrap th:last-child{
  border-right: none;
}
.product_wrap .spec_wrap tbody tr{
  border-bottom: 1px solid var(--bs-gray-200);
}
.product_wrap .spec_wrap tbody tr:hover{
  background-color: var(--bs-gray-100);
}
.product_wrap .spec_wrap td{
  font-family: 'Roboto';
  font-size: .7rem;
  word-break: keep-all;
  word-wrap: break-word;
  padding: .2rem .5rem;
  border-right: 1px solid var(--bs-gray-200);
}
.product_wrap .spec_wrap td:last-child{
  border-right: none;
}
.product_wrap .spec_wrap .cnt{
  text-align: right !important;
}


@media (max-width: 991.98px) {
  .product_wrap .prod{
    flex-direction: column;
  }
  .product_wrap .prod>div{
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .product_wrap .prod{
    padding: 2rem 0 5rem 0;
    border-bottom: 1px solid var(--bs-gray-400);
  }
}