/* 仅补充原站 CSS 未覆盖的少量样式，不覆盖 publish / mine 原站类名 */

.auth-error {
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 10px;
  padding: 10px 12px;
  margin: 0 0 14px;
  font-size: 14px;
}

.my-goods-list-item {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
  text-decoration: none;
  color: inherit;
}

.my-goods-list-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  background: #f1f5f9;
}

.my-goods-list-item h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.my-goods-list-item p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
}

.my-goods-order-tag--pending_audit,
.my-goods-order-tag--listed,
.my-goods-order-tag--rejected,
.my-goods-order-tag--offline,
.my-goods-order-tag--leasing,
.my-goods-order-tag--completed,
.my-goods-order-tag--refunded {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 999px;
}

.my-goods-order-tag--pending_audit { background: #fff7ed; color: #c2410c; }
.my-goods-order-tag--listed { background: #ecfdf5; color: #047857; }
.my-goods-order-tag--rejected { background: #fef2f2; color: #b91c1c; }
.my-goods-order-tag--offline { background: #f1f5f9; color: #64748b; }
.my-goods-order-tag--leasing { background: #eff6ff; color: #1d4ed8; }
.my-goods-order-tag--completed { background: #f0fdf4; color: #15803d; }
.my-goods-order-tag--refunded { background: #faf5ff; color: #7e22ce; }

/* 资金明细独立卡片，不改动原站 .mine-card--balance 布局 */
.mine-wallet-panel {
  padding: 12px 14px !important;
}
.mine-wallet-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
}
.mine-wallet-stats > div {
  background: #f8fafc;
  border-radius: 10px;
  padding: 10px 6px;
  text-align: center;
  min-width: 0;
  box-sizing: border-box;
}
.mine-wallet-stats span {
  display: block;
  font-size: 12px;
  color: #64748b;
  margin-bottom: 4px;
  white-space: nowrap;
}
.mine-wallet-stats strong {
  display: block;
  font-size: 14px;
  color: #0f172a;
  font-weight: 600;
  word-break: break-all;
}
.mine-menu-item {
  position: relative;
}
.mine-menu-badge {
  position: absolute;
  top: 2px;
  right: 8px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #2563eb;
  color: #fff;
  font-size: 11px;
  line-height: 18px;
  text-align: center;
  padding: 0 5px;
}
.goods-verify-badge {
  display: inline-block;
  margin: 4px 0 0;
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  font-size: 12px;
  padding: 2px 8px;
}
.goods-verify-badge--lg {
  margin: 8px 0 12px;
  font-size: 13px;
  padding: 4px 10px;
}
.goods-freeze-badge {
  display: inline-block;
  margin: 4px 0 0 6px;
  background: #fff7ed;
  color: #c2410c;
  border-radius: 999px;
  font-size: 12px;
  padding: 2px 8px;
}
.error-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
