.zg-qty-quantity__container {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between; /* PC端左右分散 */
  -webkit-box-align: center;
  align-items: center;
  padding: 20px 0;
}

/* 移动端：小于768px */
@media (max-width: 768px) {
  .zg-qty-quantity__container {
    justify-content: center; /* 居中显示 */
    gap: 10px; /* 可选，按钮之间增加间距 */
  }
}

.zg-qty-input {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

theme-input-number {
  width: auto;
}

/* .zg-qty-btn {
  width: 1.5625rem !important;
  height: 1.5625rem !important;
  border-radius: 50%;
  font-size: 1.25rem;
  border: 1px solid #000;
  background: #fff;
  color: #000;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: .1rem;
  transition: background 0.2s ease;
} */
.zg-qty-btn {
  width: 1.5625rem !important;
  height: 1.5625rem !important;
  /* border-radius: 50%; */
  /* border: 1px solid #000; */
  background: #fff;
  color: #000;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  line-height: 1;
  transform: translateZ(0);
  padding-bottom: .2rem;
  -webkit-font-smoothing: antialiased;
}

.zg-qty-btn img{
  width: 1.3625rem !important;
  height: 1.3625rem !important;
}

@media (max-width: 768px) {
  .zg-qty-btn { 
    padding-bottom: .1rem;
    padding-left: 0;
  }
}

/* .zg-qty-btn:hover:not(:disabled) {
  background: #e6e6e6;
} */

.zg-qty-btn:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.zg-qty-input input[type="number"] {
  width: 60px;
  height: 36px;
  text-align: center;
  border: none;
  outline: none;
  font-size: 16px;
  -moz-appearance: textfield;
}

.zg-qty-input input::-webkit-outer-spin-button,
.zg-qty-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
