.detail {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
}


.detail .product-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.detail .product-flex .product-left {
  flex: 1;
}

.detail .product-flex .product-right {
  width: 30%;
}

.detail img {
  width: 100%;
}

.detail .product-image {
  margin: 0 auto;
  width: 150px;
  width: 200px;
}

.detail .product-sub-title {
  margin-top: 12px;
  margin-bottom: 6px;
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 3px;
}

.detail .product-apply {
  margin-top: 12px;
  margin-bottom: 6px;
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 3px;
}

.detail .product-desc span {
  display: block;
  text-indent: 2rem;
}


.detail .content .spec-content {
  display: block;
}

.detail .content .spec-content .spec-title {
  font-weight: bold;
  font-size: 18px;
}

.detail .content .spec-content .spec-line {
  display: flex;
}

.detail .content .spec-content .spec-line .spec-label {
  flex: 0 0 250px;
  font-weight: 400;
}

.detail .content .spec-content .spec-line .spec-value {
  color: #666;
}

.spec-table .spec-header {
  display: flex;
  width: 100%;
  justify-content: space-around;
  align-items: center;
}

.spec-table .spec-header .spec-th {
  width: 33%;
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  color: #666;
  line-height: 40px;
  height: 40px;
}

.spec-table .spec-tbody .spec-tr {
  display: flex;
  width: 100%;
  justify-content: space-around;
  align-items: center;
}

.spec-table .spec-tbody .spec-tr .td {
  width: 33%;
  text-align: center;
  color: #666;
  line-height: 40px;
  height: 40px;
}

@media only screen and (max-width: 750px) {
  .detail .product-flex {
    display: block;
  }

  .detail .content .spec-content .spec-line {
    display: block;
  }

  .detail .content .spec-content .spec-line .spec-value {
    text-indent: 2rem;
  }

  .spec-table .spec-header .spec-th {
    width: 33%;
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    height: 30px;
  }

  .spec-table .spec-tbody .spec-tr .td {
    width: 33%;
    text-align: center;
    line-height: 30px;
    height: 30px;
  }
}