.product {
  padding: 80px 20px;
}
.product .product-wrap {
  max-width: 1100px;
  display: flex;
  align-items: center;
  gap: 60px;
  margin: 0 auto 80px;
}
.product .product-image,
.product .product-content {
  flex: 1;
}
.product .product-image {
  text-align: center;
}
.product .product-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 20px;
  text-align: center;
}
.product .product-title {
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.product .product-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}
.product .download {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 10px;
}
.product .download img {
  width: 160px;
  height: 45px;
}
@media (max-width: 768px) {
  .product .product-wrap {
    flex-direction: column;
    gap: 30px;
  }
  .product .product-title {
    font-size: 32px;
  }
}
.galaxy-wrap {
  width: 52px;
  height: 52px;
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: not-allowed;
}
.galaxy-wrap .galaxy {
  width: 52px;
  height: 52px;
  display: block;
}
.galaxy-wrap::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 10;
  background: rgba(128, 128, 128, 0.7);
  pointer-events: none;
  border-radius: 15px;
  width: 42px;
  height: 42px;
}
/*# sourceMappingURL=style.css.map */