/* 全局变量定义 - 仅保留一份 */
:root {
  --color-primary: #1E40AF;
  --color-primary-light: rgba(30, 64, 175, 0.9);
  --color-primary-extra-light: rgba(30, 64, 175, 0.3);
  --color-secondary: #3B82F6;
  --color-accent: #F59E0B;
  --color-danger: #EF4444;
  --color-success: #10B981;
  --color-warning: #FBBF24;
  --color-neutral-100: #F3F4F6;
  --color-neutral-200: #E5E7EB;
  --color-neutral-300: #D1D5DB;
  --color-neutral-400: #9CA3AF;
  --color-neutral-500: #6B7280;
  --color-neutral-600: #4B5563;
  --color-neutral-700: #374151;
  --color-neutral-800: #1F2937;
  --color-neutral-900: #111827;
  --color-blue-50: #eff6ff;
  --color-blue-100: #dbeafe;
  --color-white: #ffffff;
  --color-green-500: #10B981;
  --color-info: #3B82F6;
  --color-light: #f9fafb;
}

/* 全局基础样式 */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'system-ui', sans-serif;
  margin: 0;
  padding: 0;
}

/* 登录页面样式 */
.login-body {
  background-color: var(--color-neutral-100);
  min-height: 100vh;
}

.login-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.login-layout {
  display: flex;
  flex: 1;
  width: 100%;
}

.brand-section {
  display: none;
  width: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  padding: 2rem 3rem;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  background-color: var(--color-white);
}

.circle-1 {
  top: 2.5rem;
  left: 2.5rem;
  width: 10rem;
  height: 10rem;
}

.circle-2 {
  bottom: 5rem;
  right: 5rem;
  width: 15rem;
  height: 15rem;
}

.circle-3 {
  top: 33%;
  right: 25%;
  width: 5rem;
  height: 5rem;
}

.brand-content {
  position: relative;
  z-index: 10;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.logo-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--color-white);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.logo-icon i {
  color: var(--color-primary);
  font-size: 1.5rem;
}

.logo-text {
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 700;
}

.brand-title {
  color: var(--color-white);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.brand-description {
  color: var(--color-blue-100);
  max-width: 28rem;
  margin-bottom: 2rem;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-icon {
  color: var(--color-accent);
  margin-top: 0.25rem;
}

.feature-text {
  color: var(--color-blue-50);
}

.brand-footer {
  position: relative;
  z-index: 10;
  color: var(--color-blue-100);
  font-size: 0.875rem;
}

.login-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.login-wrapper {
  width: 100%;
  max-width: 28rem;
}

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.mobile-logo {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--color-primary);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-logo i {
  color: var(--color-white);
  font-size: 1.25rem;
}

.mobile-logo-text {
  color: var(--color-primary);
  font-size: 1.25rem;
  font-weight: 700;
}

/* 通用卡片样式 */
.card {
  background-color: var(--color-white);
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  padding: 2rem;
  transition: all 0.3s;
}

.card:hover {
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
  transform: translateY(-0.25rem);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-neutral-800);
  margin-bottom: 1.5rem;
}

.card-subtitle {
  color: var(--color-neutral-500);
  margin-bottom: 1.5rem;
}

/* 通用表单样式 */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-neutral-700);
  margin-bottom: 0.375rem;
}

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

.input-prefix {
  position: absolute;
  left: 0.875rem;
  display: flex;
  align-items: center;
  pointer-events: none;
  color: var(--color-neutral-400);
}

.input-suffix {
  position: absolute;
  right: 0.875rem;
  display: flex;
  align-items: center;
  color: var(--color-neutral-400);
  cursor: pointer;
  transition: color 0.3s;
}

.input-suffix:hover {
  color: var(--color-neutral-600);
}

.form-input, .form-control {
  width: 100%;
  padding: 0.625rem 1rem;
  border: 1px solid var(--color-neutral-300);
  border-radius: 0.5rem;
  background-color: var(--color-white);
  transition: all 0.2s;
}

.form-input:focus, .form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(30, 64, 175, 0.2);
  outline: none;
}

.input-group:hover .form-input {
  border-color: rgba(30, 64, 175, 0.3);
}

.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.remember-me {
  display: flex;
  align-items: center;
}

.checkbox {
  height: 1rem;
  width: 1rem;
  color: var(--color-primary);
  border-color: var(--color-neutral-300);
  border-radius: 0.25rem;
}

.checkbox-label {
  margin-left: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-neutral-700);
  cursor: pointer;
}

/* 通用按钮样式 */
.link-button {
  font-size: 0.875rem;
  color: var(--color-primary);
  background: none;
  border: none;
  cursor: pointer;
}

.link-button:hover {
  color: rgba(30, 64, 175, 0.8);
  text-decoration: underline;
}

/* 输入优化 */
.chinese-input {
  ime-mode: active;
  font-family: system-ui, -apple-system, "Microsoft YaHei", "PingFang SC", sans-serif;
}

.composing {
  background-color: rgba(59, 130, 246, 0.05);
  border-color: var(--color-secondary);
}

.form-actions {
  padding-top: 0.5rem;
}

.submit-button, .btn-primary {
  width: 100%;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 500;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: none;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
}

.submit-button:hover, .btn-primary:hover {
  background-color: rgba(30, 64, 175, 0.9);
  transform: translateY(-2px);
}

/* 学员信息页面样式 */
.bg-gray-50 {
  background-color: var(--color-neutral-100);
}

.min-h-screen {
  min-height: 100vh;
}

.text-gray-800 {
  color: var(--color-neutral-800);
}

/* 顶部导航栏 */
header {
  background-color: var(--color-white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: all 0.3s;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.space-x-3 > * + * {
  margin-left: 0.75rem;
}

.w-10 {
  width: 2.5rem;
}

.h-10 {
  height: 2.5rem;
}

.bg-primary {
  background-color: var(--color-primary);
}

.rounded-lg {
  border-radius: 0.5rem;
}

.shadow-md {
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.text-white {
  color: var(--color-white);
}

.text-xl {
  font-size: 1.25rem;
}

.font-bold {
  font-weight: 700;
}

.space-x-4 > * + * {
  margin-left: 1rem;
}

.text-gray-600 {
  color: var(--color-neutral-600);
}

.hover:text-primary {
  transition: color 0.2s;
}

.hover:text-primary:hover {
  color: var(--color-primary);
}

.p-2 {
  padding: 0.5rem;
}

.rounded-full {
  border-radius: 9999px;
}

.hover:bg-gray-100:hover {
  background-color: var(--color-neutral-100);
}

.hidden {
  display: none;
}

.sm\:flex {
  display: flex !important;
}

.ml-1 {
  margin-left: 0.25rem;
}

.md\:inline {
  display: inline !important;
}

/* 主内容区 */
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.md\:py-8 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.p-4 {
  padding: 1rem;
}

.sm\:p-5 {
  padding: 1.25rem !important;
}

.md\:p-6 {
  padding: 1.5rem !important;
}

.lg\:p-8 {
  padding: 2rem !important;
}

.border {
  border-width: 1px;
}

.border-gray-200 {
  border-color: var(--color-neutral-200);
}

.rounded-xl {
  border-radius: 0.75rem;
}

.card-shadow {
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.transition-all {
  transition: all 0.3s;
}

.animate-fadeIn {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.md\:grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.lg\:grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.gap-5 {
  gap: 1.25rem;
}

.md\:gap-6 {
  gap: 1.5rem !important;
}

.lg\:col-span-1 {
  grid-column: span 1 / span 1;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.md\:space-y-5 > * + * {
  margin-top: 1.25rem !important;
}

.bg-light {
  background-color: var(--color-light);
}

.card-hover:hover {
  box-shadow: 0 4px 6px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.section-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-neutral-800);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.text-primary {
  color: var(--color-primary);
}

.mr-2 {
  margin-right: 0.5rem;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gap-3 {
  gap: 0.75rem;
}

.bg-secondary {
  background-color: var(--color-secondary);
}

.hover\:bg-secondary\/90:hover {
  background-color: rgba(59, 130, 246, 0.9);
}

.py-2.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.btn-hover:hover {
  transform: translateY(-2px);
}

.shadow-sm {
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.col-span-2 {
  grid-column: span 2 / span 2;
}

.bg-success {
  background-color: var(--color-success);
}

.hover\:bg-success\/90:hover {
  background-color: rgba(16, 185, 129, 0.9);
}

.bg-warning {
  background-color: var(--color-warning);
}

.hover\:bg-warning\/90:hover {
  background-color: rgba(251, 191, 36, 0.9);
}

.bg-gray-200 {
  background-color: var(--color-neutral-200);
}

.hover\:bg-gray-300:hover {
  background-color: var(--color-neutral-300);
}

.text-gray-700 {
  color: var(--color-neutral-700);
}

.bg-info {
  background-color: var(--color-info);
}

.hover\:bg-info\/90:hover {
  background-color: rgba(59, 130, 246, 0.9);
}

.bg-accent {
  background-color: var(--color-accent);
}

.hover\:bg-accent\/90:hover {
  background-color: rgba(245, 158, 11, 0.9);
}

.max-h-\[200px\] {
  max-height: 200px;
}

.overflow-y-auto {
  overflow-y: auto;
}

.pr-1 {
  padding-right: 0.25rem;
}

.w-4 {
  width: 1rem;
}

.h-4 {
  height: 1rem;
}

.rounded {
  border-radius: 0.25rem;
}

.focus\:ring-primary:focus {
  ring-color: var(--color-primary);
  ring-width: 2px;
  ring-offset-width: 0;
}

.ml-2 {
  margin-left: 0.5rem;
}

.text-sm {
  font-size: 0.875rem;
}

.mt-4 {
  margin-top: 1rem;
}

.bg-gray-600 {
  background-color: var(--color-neutral-600);
}

.hover\:bg-gray-700:hover {
  background-color: var(--color-neutral-700);
}

/* 身份证读取区域 */
.sm\:flex-row {
  flex-direction: row !important;
}

.gap-6 {
  gap: 1.5rem;
}

.flex-1 {
  flex: 1;
}

.flex-col {
  flex-direction: column;
}

.justify-start {
  justify-content: flex-start;
}

.pt-0 {
  padding-top: 0;
}

.sm\:w-auto {
  width: auto !important;
}

.bg-blue-100 {
  background-color: #dbeafe;
}

.hover\:bg-blue-200:hover {
  background-color: #bfdbfe;
}

.text-blue-700 {
  color: #1d4ed8;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.border-blue-200 {
  border-color: #bfdbfe;
}

.text-5xl {
  font-size: 3rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.text-blue-600 {
  color: #2563eb;
}

.text-base {
  font-size: 1rem;
}

.bg-yellow-100 {
  background-color: #fef3c7;
}

.hover\:bg-yellow-200:hover {
  background-color: #fde68a;
}

.text-yellow-700 {
  color: #b45309;
}

.border-yellow-200 {
  border-color: #fde68a;
}

.text-yellow-600 {
  color: #d97706;
}

.bg-red-100 {
  background-color: #fee2e2;
}

.hover\:bg-red-200:hover {
  background-color: #fecaca;
}

.text-red-700 {
  color: #b91c1c;
}

.border-red-200 {
  border-color: #fecaca;
}

.text-red-600 {
  color: #dc2626;
}

.border-2 {
  border-width: 2px;
}

.border-gray-300 {
  border-color: var(--color-neutral-300);
}

.overflow-hidden {
  overflow: hidden;
}

.cursor-pointer {
  cursor: pointer;
}

.hover\:border-blue-500:hover {
  border-color: #3b82f6;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.h-20 {
  height: 5rem;
}

.resize-none {
  resize: none;
}

.bg-gray-100 {
  background-color: var(--color-neutral-100);
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.bg-gray-50 {
  background-color: #f9fafb;
}

/* 弹窗样式 */
#queryResultsModal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  opacity: 0;
  transition: opacity 0.3s;
}

#queryResultsModal.show {
  opacity: 1;
}

#queryResultsModalContentWrapper {
  background-color: var(--color-white);
  border-radius: 0.5rem;
  padding: 1rem;
  max-width: 6xl;
  width: 100%;
  margin: 0 1rem;
  transform: scale(0.95);
  opacity: 0;
  transition: all 0.3s;
}

#queryResultsModal.show #queryResultsModalContentWrapper {
  transform: scale(1);
  opacity: 1;
}

#queryResultsList tr:hover {
  background-color: #f9fafb;
  cursor: pointer;
}

/* 滚动条美化 */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* 影像资料弹窗 */
#imageModal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.8);
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

#imageModal .bg-white {
  border-radius: 0.5rem;
  max-width: 5xl;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  transition: all 0.3s;
}

#imageModal .border-b {
  border-bottom-width: 1px;
}

#imageModal .p-4 {
  padding: 1rem;
}

#imageModal .justify-between {
  justify-content: space-between;
}

#imageModal .text-lg {
  font-size: 1.125rem;
}

#imageModal .font-semibold {
  font-weight: 600;
}

#imageModal .hover:bg-gray-200:hover {
  background-color: var(--color-neutral-200);
}

#imageModal .flex-1 {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow: hidden;
  background-color: #f9fafb;
  position: relative;
}

#imageModal .relative {
  position: relative;
}

#imageModal .p-6 {
  padding: 1.5rem;
}

#imageModal .max-w-full {
  max-width: 100%;
}

#imageModal .max-h-\[65vh\] {
  max-height: 65vh;
}

#imageModal .min-h-\[40vh\] {
  min-height: 40vh;
}

#imageModal .group:hover .absolute {
  opacity: 1;
}

#imageModal .absolute {
  position: absolute;
}

#imageModal .bottom-6 {
  bottom: 1.5rem;
}

#imageModal .right-6 {
  right: 1.5rem;
}

#imageModal .w-14 {
  width: 3.5rem;
}

#imageModal .h-14 {
  height: 3.5rem;
}

#imageModal .shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

#imageModal .hover:scale-105:hover {
  transform: scale(1.05);
}

#imageModal .border-t {
  border-top-width: 1px;
}

#imageModal .mb-3 {
  margin-bottom: 0.75rem;
}

#imageModal .text-gray-500 {
  color: var(--color-neutral-500);
}

#imageModal .overflow-x-auto {
  overflow-x: auto;
}

#imageModal .pb-2 {
  padding-bottom: 0.5rem;
}

#imageModal .scrollbar-thin {
  scrollbar-width: thin;
}

#imageModal .scrollbar-thumb-gray-300 {
  scrollbar-color: var(--color-neutral-300) transparent;
}

#imageModal .mt-4 {
  margin-top: 1rem;
}

#imageModal .px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

#imageModal .hover:bg-gray-100:hover {
  background-color: var(--color-neutral-100);
}

/* 被顶掉提示模态框 */
#kickedModal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  display: none;
}

#kickedModal .bg-white {
  border-radius: 0.5rem;
  padding: 1.5rem;
  max-width: 28rem;
  width: 100%;
  margin: 0 1rem;
}

#kickedModal .text-center {
  text-align: center;
}

#kickedModal .w-16 {
  width: 4rem;
}

#kickedModal .h-16 {
  height: 4rem;
}

#kickedModal .bg-danger\/20 {
  background-color: rgba(239, 68, 68, 0.2);
}

#kickedModal .mx-auto {
  margin-left: auto;
  margin-right: auto;
}

#kickedModal .mb-4 {
  margin-bottom: 1rem;
}

#kickedModal .text-2xl {
  font-size: 1.5rem;
}

#kickedModal .text-danger {
  color: var(--color-danger);
}

#kickedModal .mb-2 {
  margin-bottom: 0.5rem;
}

#kickedModal .mb-6 {
  margin-bottom: 1.5rem;
}

#kickedModal .px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

#kickedModal .py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* 日期编辑弹窗 */
#dateEditModal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  display: none;
}

#dateEditModal .bg-white {
  border-radius: 0.5rem;
  width: 100%;
  max-width: 42rem;
  margin: 0 1rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  transition: all 0.3s;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

#dateEditModal .p-5 {
  padding: 1.25rem;
}

#dateEditModal .text-xl {
  font-size: 1.25rem;
}

#dateEditModal .grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

#dateEditModal .col-span-12 {
  grid-column: span 12 / span 12;
}

#dateEditModal .py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

#dateEditModal .space-x-3 > * + * {
  margin-left: 0.75rem;
}

#dateEditModal .focus:outline-none:focus {
  outline: none;
}

#dateEditModal .focus:ring-2:focus {
  ring-width: 2px;
}

#dateEditModal .focus:ring-gray-200:focus {
  ring-color: var(--color-neutral-200);
}

#dateEditModal .focus:ring-primary\/50:focus {
  ring-color: rgba(30, 64, 175, 0.5);
}

/* 响应式适配 */
@media (min-width: 768px) {
  .brand-section {
    display: flex;
  }
  
  .login-section {
    width: 50%;
    padding: 3rem;
  }
  
  .mobile-brand {
    display: none;
  }
}

@media (max-width: 768px) {
  .chinese-input {
    font-size: 16px;
  }
}

/* 表格样式 */
table {
  min-width: 100%;
  border-collapse: collapse;
}

thead {
  background-color: #f9fafb;
}

th {
  padding: 0.75rem 0.25rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-neutral-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

td {
  padding: 0.75rem 0.25rem;
  white-space: nowrap;
  border-top: 1px solid #e5e7eb;
}

.sm\:table-cell {
  display: table-cell !important;
}

.md\:table-cell {
  display: table-cell !important;
}

/* 页脚样式 */
footer {
  background-color: var(--color-white);
  border-top: 1px solid var(--color-neutral-200);
  margin-top: 2rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.text-center {
  text-align: center;
}

/* 错误提示样式 */
.text-danger {
  color: var(--color-danger);
}

#phoneError {
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: none;
}

#phoneError.hidden {
  display: none;
}