product.scss 975 Bytes
.product_company {
  display: flex;
  line-height: 30px;
  margin: 10px 0px;
}
.product_wrap {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 10px;
  font-size: 14px;
  .btn_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .product_name{
    font-size: 20px;
    font-weight: bold;
    line-height: 30px;
    margin-bottom: 10px;
    color: #323232;
  }
  .limit_dsc {
    font-size: 14px;
    margin-bottom: 10px;
    color: #969696;
  }
  .limit_num {
    font-size: 32px;
    line-height: 40px;
  }
  .product_dsc {
    padding-left: 15px;
    position: relative;
    span {
      font-size: 18px;
      padding: 0 5px;
    }
    .font_red {
      color: #F84133;
    }
  }
  .product_dsc:before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #ffffff;
    border-radius: 3px;
    left: 0px;
    top: 50%;
    transform: translate(0%, -50%)
  }
}