.customer-service-widget {
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 80;
  font-family: Arial, "Microsoft YaHei", sans-serif;
}

.customer-service-widget a {
  text-decoration: none;
}

.customer-service-button {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 46px;
  padding: 0 16px;
  border-radius: 24px;
  background: #16c45f;
  color: #fff;
  box-shadow: 0 10px 24px rgba(22, 196, 95, .28);
  font-size: 15px;
  font-weight: 600;
}

.customer-service-button:hover {
  background: #12ad53;
}

.customer-service-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  color: #16c45f;
  font-size: 15px;
  line-height: 1;
}

.customer-service-card {
  position: absolute;
  right: 0;
  bottom: 58px;
  width: 214px;
  padding: 14px;
  border: 1px solid #e6edf2;
  background: #fff;
  box-shadow: 0 14px 34px rgba(28, 45, 65, .18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: .18s ease;
}

.customer-service-widget:hover .customer-service-card,
.customer-service-widget:focus-within .customer-service-card,
.customer-service-widget.open .customer-service-card {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.customer-service-card strong {
  display: block;
  margin-bottom: 10px;
  color: #1f3347;
  font-size: 15px;
  text-align: center;
}

.customer-service-card img {
  display: block;
  width: 186px;
  height: 241px;
  object-fit: contain;
  margin: 0 auto;
}

.customer-service-card span {
  display: block;
  margin-top: 9px;
  color: #7c8b99;
  font-size: 12px;
  text-align: center;
}

@media (max-width: 560px) {
  .customer-service-widget {
    right: 12px;
    bottom: 74px;
  }

  .customer-service-button {
    width: 46px;
    padding: 0;
    justify-content: center;
  }

  .customer-service-text {
    display: none;
  }

  .customer-service-card {
    right: -2px;
    width: 198px;
  }

  .customer-service-card img {
    width: 170px;
    height: 220px;
  }
}
