/* 卡片容器 */
.wm-withdraw-form {
  max-width: 400px;              /* 宽度可根据需要调 */
  margin: 2em auto;              /* 居中并上下留白 */
  padding: 2em;                  /* 内边距 */
  background: #fff;              /* 白色背景 */
  border-radius: 8px;            /* 圆角 */
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  font-family: inherit;
  text-align: center;            /* 标题和按钮居中 */
}

/* 标题 */
.wm-withdraw-form h2 {
  margin-top: 0;
  margin-bottom: 1em;
  font-size: 1.5rem;
  color: #333;
}

/* 每行字段 */
.wm-withdraw-form p {
  margin-bottom: 1.2em;
  text-align: left;              /* 标签与输入左对齐 */
}

/* 输入框、文件选择 */
.wm-withdraw-form input[type="text"],
.wm-withdraw-form input[type="email"],
.wm-withdraw-form input[type="tel"],
.wm-withdraw-form input[type="number"],
.wm-withdraw-form input[type="file"] {
  width: 100%;
  padding: .75em 1em;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 1rem;
}

/* 文件框文本 */
.wm-withdraw-form input[type="file"] {
  padding: .4em;
}

/* 提交按钮 */
.wm-withdraw-form button,
.wm-withdraw-form input[type="submit"] {
  display: inline-block;
  background: #2ecc71;
  color: #fff;
  border: none;
  padding: .75em 2em;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: background .2s;
  text-transform: uppercase;
}

/* 悬停效果 */
.wm-withdraw-form button:hover,
.wm-withdraw-form input[type="submit"]:hover {
  background: #27ae60;
}

/* 小屏幕下全宽 */
@media (max-width: 480px) {
  .wm-withdraw-form {
    margin: 1em;
    padding: 1.2em;
  }
}

/* 整体卡片容器 */
.wm-withdraw-history-card {
  max-width: 800px;
  margin: 2em auto;
  padding: 1.5em 2em;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  font-family: inherit;
}

/* 标题 */
.wm-withdraw-history-card h2 {
  margin-top: 0;
  margin-bottom: 1em;
  font-size: 1.4rem;
  color: #333;
}

/* 表格基础 */
.wm-withdraw-history-card table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

/* 表头 */
.wm-withdraw-history-card thead {
  background-color: #f5f5f5;
}
.wm-withdraw-history-card thead th {
  padding: 0.75em 1em;
  text-align: left;
  border-bottom: 2px solid #ddd;
  color: #333;
}

/* 行样式 */
.wm-withdraw-history-card tbody tr {
  border-bottom: 1px solid #eee;
  transition: background-color .2s;
}
.wm-withdraw-history-card tbody tr:hover {
  background-color: #fafafa;
}

/* 单元格 */
.wm-withdraw-history-card td {
  padding: 0.6em 1em;
  color: #555;
}

/* 小屏幕横向滚动 */
@media (max-width: 600px) {
  .wm-withdraw-history-card {
    padding: 1em;
  }
  .wm-withdraw-history-card table {
    display: block;
    overflow-x: auto;
  }
}

/* 提示文字居中 */
.wm-withdraw-notice {
  text-align: center;
  font-size: 1rem;
  margin: 2em 0;
}

/* LOGIN 链接变成蓝色 */
.wm-withdraw-notice .wm-login-link {
  color: #007bff;      /* 你想要的蓝色 */
  text-decoration: none;
}
.wm-withdraw-notice .wm-login-link:hover {
  text-decoration: underline;
}

/* 通用提示，居中显示 */
.wm-withdraw-notice {
  text-align: center;
  margin: 1.5em 0;
  font-size: 1rem;
}

/* 错误提示，加个红色醒目一点 */
.wm-withdraw-error {
  color: #e74c3c; /* 你喜欢的警告红色 */
}
