html,body {
  margin:  0;
  padding: 0;
}
/* 骨架屏样式 */
.skeleton-container {
  display: flex;
  justify-content: center;
  min-height: 100vh;
  background-color: #f5f5f5;
  padding: 20px;
}

.skeleton-page {
  font-family: system-ui, sans-serif;
  width: 100%;
  padding: 15px 16px;
  max-width: 450px;
  background-color: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.skeleton-box {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 4px;
}

/* 订单号 */
.skeleton-order-number {
  height: 30px;
  margin-bottom: 20px;
  width: 100%;
  border-radius: 20px;
}

/* 金额部分 */
.skeleton-amount-section {
  margin-bottom: 25px;
  padding: 15px;
  background-color: #f8f8f8;
  border-radius: 10px;
}

.skeleton-amount-title {
  height: 24px;
  width: 70%;
  margin-bottom: 15px;
}

.skeleton-amount-value {
  height: 36px;
  width: 50%;
  margin-bottom: 15px;
}

.skeleton-fee-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.skeleton-fee-label {
  height: 20px;
  width: 40%;
}

.skeleton-fee-value {
  height: 20px;
  width: 20%;
}

/* 支付方式 */
.skeleton-payment-method {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.skeleton-payment-logo {
  height: 50px;
  width: 120px;
  border-radius: 6px;
}

/* 钱包账号部分 */
.skeleton-wallet-section {
  margin-bottom: 20px;
}

.skeleton-wallet-label {
  height: 24px;
  width: 60%;
  margin-bottom: 15px;
}

.skeleton-wallet-input {
  height: 45px;
  width: 100%;
  border-radius: 6px;
  margin-bottom: 10px;
}

.skeleton-wallet-hint {
  height: 18px;
  width: 80%;
  margin-bottom: 20px;
}

.skeleton-pay-button {
  height: 50px;
  width: 100%;
  border-radius: 6px;
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* 当 Vue 应用加载完成后隐藏骨架屏 */
#app:not(:empty) + .skeleton-container {
  display: none;
}
