@charset "UTF-8";
.primary-btn[data-v-c76cd7e3] {
  width: 100%;
  height: 1.47rem;
  border: none;
  border-radius: 1.08rem;
  background: linear-gradient(157deg, #05e7ae 0%, #027a5c 100%);
  color: #fff;
  font-size: 0.5rem;
  font-weight: 500;
  font-family: "HONOR Sans CN", sans-serif;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* 内嵌高光边框效果 */
  box-shadow: inset 0.5px 0.5px 0px 0px rgba(242, 242, 242, 0.8), inset -0.5px -0.5px 0px 0px rgba(255, 255, 255, 0.5);
}
html[data-theme=light] .primary-btn[data-v-c76cd7e3] {
  background: var(--c-brand);
  box-shadow: none;
}
.primary-btn.primary-btn--no-shadow[data-v-c76cd7e3] {
  box-shadow: none;
}
.primary-btn[data-v-c76cd7e3]::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.34px;
  background: linear-gradient(135deg, rgba(242, 242, 242, 0.8) 0%, rgba(255, 255, 255, 0) 44.5%, rgba(255, 255, 255, 0.5) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
html[data-theme=light] .primary-btn[data-v-c76cd7e3]::before {
  display: none;
}
.primary-btn[data-v-c76cd7e3]:active:not(:disabled) {
  opacity: 0.92;
  transform: scale(0.985);
}
.primary-btn--disabled[data-v-c76cd7e3] {
  opacity: 0.5;
  cursor: not-allowed;
}
.primary-btn__text[data-v-c76cd7e3] {
  position: relative;
  z-index: 1;
}
.primary-btn__spinner[data-v-c76cd7e3] {
  position: relative;
  z-index: 1;
  width: 0.48rem;
  height: 0.48rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  margin-right: 0.24rem;
  animation: btn-spin-c76cd7e3 0.6s linear infinite;
}
@keyframes btn-spin-c76cd7e3 {
to {
    transform: rotate(360deg);
}
}