:root {
  --primary-color: #FFE67F;
  --secondary-color: #FFDA34;
  --text-color: #fff;
  --light-gray: #dfe6e9;
  --white: #ffffff;
  --border-color: #262626;
  --text-light: rgba(255, 255, 255, 0.6);
}

.body-loading{
  width: 100vw;
  height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  color: #FFDA34;
}
.body-loading .fa {
  /* animation: loading 3s linear 0s infinite normal forwards; */
}
@keyframes loading {
  form{
    transform: rotate(0deg);
  }
  to{
    transform: rotate(360deg);
  }
}


/* 按钮样式 */
.customer-btn {
  padding: 18px 38px;
  font-size: 16px;
  font-weight: normal;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.customer-btn.primary {
  border: none;
  background: linear-gradient(0deg, #FFE67F 1%, #FFDA34 95%);
  color: #000;
  box-shadow: 0 4px 15px rgba(255, 214, 0, 0.3);
}

.customer-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 214, 0, 0.4);
}

.customer-btn.primary:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(255, 214, 0, 0.3);
}