.balance-card {
  background: linear-gradient(135deg, #00a6ff 0%, #0080ff 100%);
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(0, 166, 255, 0.3);
}

.balance-label {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 12px;
}

.balance-amount {
  font-size: 36px;
  font-weight: 600;
}

/* 添加余额详情样式 */
.balance-detail {
  display: flex;
  justify-content: space-around;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 13px;
  opacity: 0.9;
}

.withdraw-form {
  background-color: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.currency {
  position: absolute;
  left: 12px;
  font-size: 18px;
  color: #999;
}

.input-wrapper input {
  padding-left: 32px;
}

.btn-all {
  margin-top: 8px;
  padding: 8px 16px;
  background-color: #e3f2fd;
  color: #00a6ff;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-all:hover {
  background-color: #bbdefb;
}

.withdraw-tips {
  background-color: #fff9e6;
  padding: 16px;
  border-radius: 8px;
  margin: 20px 0;
  border-left: 4px solid #ffc107;
}

.withdraw-tips p {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}

.withdraw-tips ul {
  list-style: none;
  padding: 0;
}

.withdraw-tips li {
  font-size: 13px;
  color: #666;
  margin-bottom: 6px;
  padding-left: 16px;
  position: relative;
}

.withdraw-tips li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ffc107;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background-color: #00a6ff;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-submit:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}

/* 添加提现记录样式 */
.withdraw-history {
  margin-top: 32px;
  background-color: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.withdraw-history h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
  color: #333;
}

.withdrawal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.withdrawal-item {
  padding: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s;
}

.withdrawal-item:hover {
  border-color: #00a6ff;
  box-shadow: 0 2px 8px rgba(0, 166, 255, 0.1);
}

.withdrawal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.withdrawal-amount {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

.withdrawal-status {
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.status-pending {
  background-color: #fff3cd;
  color: #856404;
}

.status-approved {
  background-color: #d4edda;
  color: #155724;
}

.status-rejected {
  background-color: #f8d7da;
  color: #721c24;
}

.status-paid {
  background-color: #d1ecf1;
  color: #0c5460;
}

.withdrawal-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: #666;
}

.withdrawal-info div {
  display: flex;
  justify-content: space-between;
}

.empty-message {
  text-align: center;
  color: #999;
  padding: 32px 0;
  font-size: 14px;
}
