.banner {
  width: 100%;
  height: 37.5rem;
  position: relative;
}
.product {
  display: flex;
  gap: 10rem;
  padding: 4.5rem 0;
}
.product .cover-wrap {
  width: 28.5rem;
  height: 28.5rem;
  border: 1px solid #FF5200;
  padding: 1.75rem;
  border-radius: 0.75rem;
}
.product .cover-wrap .cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product .detail {
  flex: 1;
  padding: 2.5rem 0;
  display: flex;
  flex-direction: column;
}
.product .detail .title {
  font-size: 1.875rem;
  color: #000000;
}
.product .detail .desc {
  flex: 1;
  margin-top: 3.5rem;
  font-size: 1.125rem;
  color: #4B5563;
  white-space: pre-line;
}
.product .detail .more {
  cursor: pointer;
  width: 8.5rem;
  height: 2.5rem;
  background-color: #FF5200;
  border-radius: 0.25rem;
  color: #ffffff;
  font-size: 0.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.product-detail {
  padding: 2rem 0;
}
.product-detail h2 {
  font-size: 2rem;
  color: #000000;
}
.product-detail .detail-content {
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid #FF5200;
}
#main {
  position: relative;
}
#main .bg-logo {
  position: absolute;
  width: 42rem;
  right: 1.75rem;
  top: 20rem;
}
@media screen and (max-width: 768px) {
  .banner {
    height: 20rem;
  }
  .product {
    padding: 1rem 0;
    gap: 1rem;
    flex-direction: column;
  }
  .product .cover-wrap {
    margin: 0 auto;
    width: 25rem;
    height: 25rem;
  }
  .product .detail {
    padding: 1rem 0;
  }
  .product .detail .desc {
    margin-top: 1rem;
  }
  .product .detail .more {
    margin-top: 1rem;
  }
  .product-detail {
    padding: 1rem 0;
  }
}
