.customer-service {
  position: fixed;
  right: 12px;
  bottom: 20%;
  z-index: 2000;
}

.customer-service .service-button {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 2px 10px 6px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: 0px 0px 28px 0px rgba(15, 56, 104, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.customer-service .service-button i {
  font-size: 28px;
  background: linear-gradient(to bottom, #6067FF, #1A25FF);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.customer-service .service-button span {
  font-size: 12px;
  color: #333333;
  text-align: center;
}

.customer-service .service-button:hover {
  transform: scale(1.1);
}

.customer-service-popover .qr-container {
  text-align: center;
}

.customer-service-popover .qr-container .qr-image {
  display: inline-block;
}

.customer-service-popover .qr-container .qr-image img {
  width: 120px;
  height: 120px;
  display: block;
}

.customer-service-popover .qr-container .qr-text {
  font-size: 14px;
  color: #333333;
  text-align: center;
}