/* 移动端优先基础样式重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 移动端滚动优化 */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

*::-webkit-scrollbar {
  width: 4px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background: rgba(22, 119, 255, 0.3);
  border-radius: 2px;
}

*::-webkit-scrollbar-thumb:hover {
  background: rgba(22, 119, 255, 0.5);
}

/* 顶部导航栏 */
.main-header {
  background: linear-gradient(135deg, #1677ff 0%, #4096ff 100%);
  box-shadow: 0 2px 12px rgba(22, 119, 255, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text {
  color: white;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-login-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.header-login-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* 银行卡表单验证样式 */
.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e1e6ea;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: white;
  outline: none;
}

.form-input:focus {
  border-color: #1677ff;
  box-shadow: 0 0 0 3px rgba(22, 119, 255, 0.1);
}

.form-input.valid {
  border-color: #52c41a;
  background: #f6ffed;
}

.form-input.valid:focus {
  border-color: #52c41a;
  box-shadow: 0 0 0 3px rgba(82, 196, 26, 0.1);
}

.form-input.error {
  border-color: #ff4d4f;
  background: #fff2f0;
}

.form-input.error:focus {
  border-color: #ff4d4f;
  box-shadow: 0 0 0 3px rgba(255, 77, 79, 0.1);
}

.form-error {
  color: #ff4d4f;
  font-size: 14px;
  margin-top: 6px;
  display: block;
  min-height: 20px;
  line-height: 1.4;
  transition: all 0.3s ease;
}

.form-error.success {
  color: #52c41a;
  font-weight: 500;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
  font-size: 14px;
}

.form-label.required::after {
  content: ' *';
  color: #ff4d4f;
}

/* 银行卡号输入框特殊样式 */
.bank-card-input {
  font-family: 'Courier New', monospace;
  letter-spacing: 1px;
  font-size: 18px;
  padding: 16px;
}

/* 验证成功图标 */
.form-input.valid::after {
  content: '✓';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #52c41a;
  font-weight: bold;
  pointer-events: none;
}

/* 验证失败图标 */
.form-input.error::after {
  content: '✗';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff4d4f;
  font-weight: bold;
  pointer-events: none;
}

/* 实时验证提示 */
.validation-hint {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
  opacity: 0.8;
}

.validation-hint.success {
  color: #52c41a;
}

.validation-hint.error {
  color: #ff4d4f;
}

/* 银行卡表单专用样式 */
.bank-card-form {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bank-card-form .form-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 24px;
  text-align: center;
}

.bank-card-form .form-subtitle {
  font-size: 14px;
  color: #666;
  text-align: center;
  margin-bottom: 32px;
}

/* 保存按钮样式 */
.save-bank-card-btn {
  width: 100%;
  padding: 16px;
  background: #1677ff;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 24px;
}

.save-bank-card-btn:hover:not(:disabled) {
  background: #4096ff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(22, 119, 255, 0.3);
}

.save-bank-card-btn:disabled {
  background: #d9d9d9;
  color: #999;
  cursor: not-allowed;
  opacity: 0.6;
}

/* 表单验证动画 */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

@keyframes success-bounce {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

.form-input.error {
  animation: shake 0.5s ease-in-out;
}

.form-input.valid {
  animation: success-bounce 0.3s ease-in-out;
}

/* 输入进度指示器 */
.form-group::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, #52c41a, #73d13d);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.form-group.valid::before {
  width: 100%;
}

.form-group.error::before {
  width: 100%;
  background: linear-gradient(90deg, #ff4d4f, #ff7875);
}

/* 实时验证状态图标 */
.form-group {
  position: relative;
}

.form-group .validation-icon {
  position: absolute;
  right: 12px;
  top: 38px;
  font-size: 16px;
  opacity: 0;
  transition: all 0.3s ease;
}

.form-group.valid .validation-icon {
  opacity: 1;
  color: #52c41a;
}

.form-group.error .validation-icon {
  opacity: 1;
  color: #ff4d4f;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .header-content {
    padding: 0 16px;
    height: 56px;
  }
  
  .logo-text {
    font-size: 16px;
  }
  
  .header-login-btn {
    padding: 6px 12px;
    font-size: 13px;
  }
  
  .header-login-btn svg {
    width: 14px;
    height: 14px;
  }
}

/* 单页面理赔申请样式 */
.single-claim-container {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.claim-title-section {
  background: linear-gradient(135deg, #1677ff 0%, #4096ff 100%);
  padding: 24px;
  text-align: center;
  color: white;
}

.title-icon {
  margin-bottom: 12px;
}

.claim-title-section h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.claim-title-section p {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
}

/* 进度指示器样式 */
.progress-indicators {
  display: flex;
  justify-content: space-between;
  padding: 20px 24px;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
}

.progress-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 16px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: #e9ecef;
  z-index: 1;
}

.progress-step.active:not(:last-child)::after {
  background: #1677ff;
}

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e9ecef;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  position: relative;
  z-index: 2;
}

.progress-step.active .step-circle {
  background: #1677ff;
  color: white;
}

.progress-step span {
  font-size: 12px;
  color: #666;
  text-align: center;
}

.progress-step.active span {
  color: #1677ff;
  font-weight: 500;
}

/* 表单样式 */
.claim-form {
  padding: 24px;
}

.form-section {
  margin-bottom: 32px;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0f0f0;
}

.section-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1677ff;
  background: white;
  box-shadow: 0 0 0 4px rgba(22, 119, 255, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #f5222d;
  background: #fff2f0;
}

.field-error {
  color: #f5222d;
  font-size: 12px;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* 文件上传区域 */
.upload-area {
  border: 2px dashed #d9d9d9;
  border-radius: 12px;
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fafafa;
}

.upload-area:hover {
  border-color: #1677ff;
  background: #f6f8ff;
}

.upload-area.drag-over {
  border-color: #1677ff;
  background: #f6f8ff;
  transform: scale(1.02);
}

.upload-placeholder p {
  font-size: 14px;
  color: #666;
  margin: 12px 0 4px 0;
}

.upload-placeholder small {
  color: #999;
  font-size: 12px;
}

/* 文件列表 */
.file-list {
  margin-top: 16px;
}

.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 8px;
}

.file-info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.file-name {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.file-size {
  font-size: 12px;
  color: #999;
}

.remove-file {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.remove-file:hover {
  color: #f5222d;
  background: #fff2f0;
}

/* 表单按钮 */
.form-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding-top: 24px;
  border-top: 1px solid #f0f0f0;
}

.btn-primary,
.btn-secondary {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  min-width: 100px;
}

.btn-primary {
  background: linear-gradient(135deg, #1677ff 0%, #4096ff 100%);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0958d9 0%, #1677ff 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(22, 119, 255, 0.3);
}

.btn-primary:disabled {
  background: #d9d9d9;
  color: #999;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-secondary {
  background: #f8f9fa;
  color: #666;
  border: 1px solid #d9d9d9;
}

.btn-secondary:hover {
  background: #e9ecef;
  border-color: #adb5bd;
}

/* 成功页面样式 */
.success-container {
  text-align: center;
  padding: 48px 24px;
  max-width: 400px;
  margin: 0 auto;
}

.success-icon {
  margin-bottom: 24px;
}

.success-container h2 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0 0 8px 0;
}

.success-container p {
  color: #666;
  margin: 0 0 24px 0;
}

.claim-number {
  background: #f6f8ff;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 32px;
}

.claim-number span {
  color: #666;
  font-size: 14px;
}

.claim-number strong {
  color: #1677ff;
  font-size: 16px;
  font-weight: 600;
}

.success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* 移动端优化 */
@media (max-width: 768px) {
  .single-claim-container {
    margin: 0;
    border-radius: 0;
    min-height: 100vh;
  }
  
  .progress-indicators {
    padding: 16px 20px;
  }
  
  .progress-step span {
    font-size: 11px;
  }
  
  .claim-form {
    padding: 20px;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}

body {
  font-family: 'Roboto', 'Noto Sans CJK SC', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* CSS变量 - 安卓Material Design优化 */
:root {
  --primary-color: #1677ff;
  --primary-dark: #0958d9;
  --primary-light: #69b1ff;
  --success-color: #52c41a;
  --warning-color: #faad14;
  --error-color: #f5222d;
  --purple-color: #722ed1;
  --orange-color: #fa8c16;
  --pink-color: #eb2f96;
  --gray-color: #8c8c8c;
  --light-blue: #e6f4ff;
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-pressed: 0 1px 4px rgba(0, 0, 0, 0.2);
  --ripple-color: rgba(22, 119, 255, 0.12);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-standard: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 全屏覆盖层设计 */
.fullscreen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-standard);
  overflow: hidden;
}

.fullscreen-overlay.show {
  opacity: 1;
  visibility: visible;
}

.fullscreen-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f8f9fa;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform var(--transition-standard);
}

.fullscreen-overlay.show .fullscreen-container {
  transform: translateY(0);
}

.fullscreen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: white;
  border-bottom: 1px solid #f0f0f0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 10;
}

.fullscreen-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #262626;
  margin: 0;
}

.fullscreen-close {
  width: 32px;
  height: 32px;
  border: none;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: #666;
}

.fullscreen-close:hover {
  background: #e6f4ff;
  color: var(--primary-color);
}

.fullscreen-close:active {
  transform: scale(0.95);
}

.fullscreen-content {
  flex: 1;
  overflow-y: auto;
  padding: 0;
  background: #f8f9fa;
}

/* 个人中心专用样式 */
.profile-content {
  padding: 0;
  background: #f8f9fa;
  min-height: 100%;
}

.profile-section {
  background: white;
  margin: 0;
  padding: 20px;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 8px solid #f8f9fa;
}

.profile-section:last-child {
  border-bottom: none;
}

/* 基本信息界面 */
.basic-info-container {
  padding: 20px;
  background: white;
  min-height: calc(100vh - 80px);
}

.basic-info-form {
  max-width: none;
  margin: 0;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  padding: 16px;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  font-size: 16px;
  background: #f8f9fa;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.form-group input:focus {
  outline: none;
  border-color: #4285f4;
  background: white;
  box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
}

.form-group input:disabled {
  background: #f1f3f4;
  color: #666;
  cursor: not-allowed;
}

.info-tip {
  background: #e3f2fd;
  border: 1px solid #bbdefb;
  border-radius: 12px;
  padding: 16px;
  margin: 16px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.info-tip-icon {
  color: #1976d2;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-tip-text {
  font-size: 14px;
  color: #1565c0;
  line-height: 1.4;
}

.save-btn {
  width: 100%;
  padding: 16px;
  background: #4285f4;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-top: 20px;
}

.save-btn:hover {
  background: #3367d6;
}

.save-btn:disabled {
  background: #dadce0;
  cursor: not-allowed;
}

/* 实名验证界面 */
.verification-container {
  padding: 20px;
  background: white;
  min-height: calc(100vh - 80px);
}

.verification-status {
  background: linear-gradient(135deg, #4caf50, #45a049);
  color: white;
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 20px;
}

.verification-status.pending {
  background: linear-gradient(135deg, #ff9800, #f57c00);
}

.verification-status.rejected {
  background: linear-gradient(135deg, #f44336, #d32f2f);
}

.verification-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
}

.verification-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.verification-subtitle {
  font-size: 14px;
  opacity: 0.9;
}

.verification-details {
  background: white;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e1e5e9;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e1e5e9;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  font-size: 14px;
  color: #666;
}

.detail-value {
  font-size: 16px;
  font-weight: 600;
  color: #000000 !important;
}

/* 银行卡绑定界面 */
.bank-card-container {
  padding: 20px;
  background: white;
  min-height: calc(100vh - 80px);
}

.bank-status {
  background: linear-gradient(135deg, #4caf50, #45a049);
  color: white;
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 20px;
}

.bank-card-display {
  background: linear-gradient(135deg, #2196f3, #1976d2);
  color: white;
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(33, 150, 243, 0.3);
}

.bank-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.bank-name {
  font-size: 18px;
  font-weight: 600;
}

.card-number {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.card-holder {
  font-size: 14px;
  opacity: 0.9;
}

.update-bank-btn {
  width: 100%;
  padding: 16px;
  background: transparent;
  color: #666;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.update-bank-btn:hover {
  border-color: #4285f4;
  color: #4285f4;
}

/* 我的理赔界面 */
.claims-container {
  padding: 20px;
  background: #f8f9fa;
  min-height: calc(100vh - 80px);
}

.claims-header {
  text-align: center;
  margin-bottom: 20px;
}

.claims-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.claims-count {
  font-size: 14px;
  color: #666;
}

.claim-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.claim-header {
  background: linear-gradient(135deg, #2196f3, #1976d2);
  color: white;
  padding: 16px 20px;
  border-radius: 12px;
  margin: -20px -20px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.claim-number {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
}

.claim-status {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.2);
}

.claim-info {
  margin-bottom: 12px;
}

.claim-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.claim-info-label {
  font-size: 14px;
  color: #666;
}

.claim-info-value {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.claim-amount {
  color: #f44336 !important;
  font-weight: 600;
}

/* 账号安全界面 */
.security-container {
  padding: 0;
  background: #f8f9fa;
  min-height: calc(100vh - 80px);
}

.security-header {
  background: linear-gradient(135deg, #673ab7, #512da8);
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.security-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 32px;
}

.security-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.security-subtitle {
  font-size: 16px;
  opacity: 0.9;
}

.security-content {
  padding: 20px;
}

.security-item {
  background: white;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.security-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.security-item-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.security-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
}

.security-item-icon.password {
  background: linear-gradient(135deg, #2196f3, #1976d2);
}

.security-item-icon.phone {
  background: linear-gradient(135deg, #4caf50, #45a049);
}

.security-item-icon.identity {
  background: linear-gradient(135deg, #4caf50, #45a049);
}

.security-item-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}

.security-item-info p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.security-item-action {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.security-item-action.modify {
  background: #e3f2fd;
  color: #1976d2;
}

.security-item-action.verified {
  background: #e8f5e8;
  color: #2e7d32;
}

.security-item-action:hover {
  transform: translateY(-1px);
}

.security-status {
  background: #e8f5e8;
  border: 1px solid #c8e6c9;
  border-radius: 8px;
  padding: 12px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.security-status-icon {
  color: #2e7d32;
  font-size: 16px;
}

.security-status-text {
  font-size: 14px;
  color: #2e7d32;
}

.security-tips {
  background: white;
  border-radius: 16px;
  padding: 20px;
  margin-top: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.security-tips h3 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.security-tip-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.security-tip-item:last-child {
  border-bottom: none;
}

.security-tip-icon {
  color: #ff9800;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.security-tip-text {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

/* 移动端优化 */
@media (max-width: 768px) {
  .profile-section {
    padding: 16px;
  }
  
  .basic-info-container,
  .verification-container,
  .bank-card-container,
  .claims-container {
    padding: 16px;
  }
  
  .security-content {
    padding: 16px;
  }
  
  .security-header {
    padding: 32px 16px;
  }
  
  .form-group input {
    padding: 14px;
    font-size: 16px;
  }
  
  .save-btn {
    padding: 14px;
  }
  
  .claim-card {
    padding: 16px;
  }
  
  .claim-header {
    margin: -16px -16px 12px;
    padding: 12px 16px;
  }
  
  .security-item {
    padding: 16px;
  }
}

/* 全屏内容容器统一样式 */
.profile-container,
.rules-container,
.help-container, 
.advice-container,
.about-container,
.contact-container,
.basic-info-container,
.verification-container,
.security-container {
  padding: 24px;
  background: #fafafa;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.profile-container .info-section,
.rules-container .rules-section,
.help-container .help-section,
.advice-container .advice-section,
.about-container .about-section,
.contact-container .contact-section {
  background: white;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* 主容器 */
.main-container {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  min-height: 100vh;
}

/* 顶部横幅 */
.top-banner {
  background: linear-gradient(135deg, #e6f4ff 0%, #bae7ff 50%, #91d5ff 100%);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  margin: 0 auto;
  gap: 1.5rem;
}

.banner-left {
  flex: 1;
  min-width: 0;
}

.banner-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1677ff;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.banner-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.tag {
  background: white;
  color: #1677ff;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}

.banner-description {
  color: #555;
  font-size: 0.875rem;
  line-height: 1.5;
}

.banner-right {
  flex-shrink: 0;
  width: 180px;
  height: 120px;
  position: relative;
}

.banner-image {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.banner-image:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.3s ease;
  opacity: 1;
}

.banner-image img.loading {
  opacity: 0;
}

.banner-image img.loaded {
  opacity: 1;
}

.banner-image:hover img {
  transform: scale(1.02);
}

/* Banner image loading state */
.banner-image::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid #1677ff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.banner-image.loading::before {
  opacity: 1;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Fallback icon for no image */
.banner-image .fallback-icon {
  font-size: 2rem;
  color: #1677ff;
  opacity: 0.6;
  display: none;
}

.banner-image.no-image .fallback-icon {
  display: block;
}

/* 主要功能卡片 */
.main-cards {
  padding: 0 2rem;
  margin-bottom: 2rem;
}

.card-row {
  display: flex;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.function-card {
  flex: 1;
  background: white;
  border: 2px solid;
  border-radius: 12px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.claim-card {
  border-color: #52c41a;
}

.query-card {
  border-color: #1677ff;
}

.function-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

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

.card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.card-icon.green {
  background: #52c41a;
}

.card-icon.blue {
  background: #1677ff;
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.card-subtitle {
  color: #666;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.card-status {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #52c41a;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* 平台服务 */
.platform-services {
  padding: 0 2rem;
  margin-bottom: 2rem;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #e6f4ff;
  padding: 1rem 1.5rem;
  border-radius: 12px 12px 0 0;
  border-bottom: 1px solid #d9d9d9;
}

.section-icon {
  width: 20px;
  height: 20px;
  color: #1677ff;
}

.section-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #333;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: white;
  border: 1px solid #d9d9d9;
  border-top: none;
  border-radius: 0 0 12px 12px;
}

.service-item {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: var(--transition-fast);
  border-right: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  min-height: 120px;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.service-item:nth-child(3n) {
  border-right: none;
}

.service-item:nth-child(n+4) {
  border-bottom: none;
}

.service-item:hover {
  background: #f8f9fa;
}

.service-item:active {
  transform: scale(0.98);
  background: rgba(22, 119, 255, 0.1);
}

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.service-icon.purple {
  background: #722ed1;
}

.service-icon.orange {
  background: #fa8c16;
}

.service-icon.red {
  background: #f5222d;
}

.service-icon.pink {
  background: #eb2f96;
}

.service-icon.gray {
  background: #8c8c8c;
}

.service-icon.blue {
  background: #1677ff;
}

.service-icon svg {
  width: 20px;
  height: 20px;
}

.service-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: #333;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.025em;
}

/* 理赔申请流程 */
.claims-process {
  background: #e6f4ff;
  padding: 2rem;
  margin: 2rem;
  border-radius: 12px;
}

.process-header {
  text-align: center;
  margin-bottom: 2rem;
}

.process-icon {
  width: 48px;
  height: 48px;
  background: #1677ff;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.process-icon svg {
  width: 24px;
  height: 24px;
}

.process-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.process-subtitle {
  color: #666;
  font-size: 0.875rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.process-step {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.step-icon {
  width: 32px;
  height: 32px;
  background: #1677ff;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.step-icon svg {
  width: 16px;
  height: 16px;
}

.step-title {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.step-description {
  color: #666;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* 页脚 */
.footer {
  background: #f8f9fa;
  padding: 1.5rem 2rem;
  border-top: 1px solid #e9ecef;
  margin-top: 2rem;
}

.footer-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-text {
  color: #666;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.footer-copyright {
  color: #999;
  font-size: 0.75rem;
}



/* 通知组件 */
.notification {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow-hover);
  border-left: 4px solid #1677ff;
  z-index: 99999;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.notification.show {
  opacity: 1;
  pointer-events: auto;
}

.notification.success {
  border-left-color: var(--success-color);
}

.notification.warning {
  border-left-color: var(--warning-color);
}

.notification.error {
  border-left-color: var(--error-color);
}

/* 模态框样式 */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 0;
  border-radius: 16px;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.close {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.close span {
  color: #666;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.close:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.close:hover span {
  color: #333;
}

.close:active {
  transform: scale(0.95);
}

/* 移动端关闭按钮优化 */
@media (max-width: 768px) {
  .close {
    top: 8px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  
  .close span {
    color: white;
    font-size: 16px;
    font-weight: 300;
  }
  
  .close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
  }
  
  .close:hover span {
    color: white;
  }
}

/* 移动端认证界面样式 */
.mobile-auth-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #1677ff 0%, #4096ff 100%);
  display: flex;
  flex-direction: column;
}

.mobile-auth-header {
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  color: white;
}

.brand-section {
  margin-bottom: 2rem;
}

.brand-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.brand-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.brand-subtitle {
  font-size: 0.9rem;
  opacity: 0.9;
}

.mobile-tab-section {
  padding: 0 1.5rem;
  margin-bottom: 2rem;
}

.mobile-tab-container {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 4px;
  display: flex;
  position: relative;
}

.tab-indicator {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  background: white;
  border-radius: 8px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mobile-tab-btn {
  flex: 1;
  padding: 0.75rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
}

.mobile-tab-btn.active {
  color: var(--primary-color);
  font-weight: 600;
}

.mobile-tab-btn:not(.active):hover {
  color: white;
}

.mobile-form-section {
  flex: 1;
  background: white;
  border-radius: 24px 24px 0 0;
  padding: 2rem 1.5rem;
  min-height: 60vh;
}

.mobile-auth-form {
  display: none;
}

.mobile-auth-form.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* 模态框动画增强 */
.modal.show {
    display: flex;
    opacity: 0;
    animation: modalFadeIn 0.3s ease forwards;
}

.modal.modal-visible {
    opacity: 1;
}

.modal.modal-closing {
    animation: modalFadeOut 0.3s ease forwards;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(4px);
    }
}

@keyframes modalFadeOut {
    from {
        opacity: 1;
        backdrop-filter: blur(4px);
    }
    to {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
}

.modal-content {
    transform: translateY(-20px) scale(0.95);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.modal-visible .modal-content {
    transform: translateY(0) scale(1);
}

.modal.modal-closing .modal-content {
    transform: translateY(-20px) scale(0.95);
}

/* 无障碍访问改进 */
.close {
    cursor: pointer;
    outline: none;
    transition: all 0.2s ease;
}

.close:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.close:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

/* 表单验证增强样式 */
.form-field-error {
    border-color: #ff4d4f !important;
    box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.2) !important;
}

.form-field-success {
    border-color: #52c41a !important;
    box-shadow: 0 0 0 2px rgba(82, 196, 26, 0.2) !important;
}

.error-message {
    color: #ff4d4f;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.success-message {
    color: #52c41a;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* 加载状态样式 */
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 简化联系客服样式 */
.simple-contact-modal .modal-content {
    max-width: 480px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
}

.simple-contact-container {
    padding: 2rem;
    text-align: center;
}

.contact-header {
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-header p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-action {
    margin-bottom: 2rem;
}

.human-service-btn {
    background: linear-gradient(135deg, var(--primary-color), #4c9eff);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(22, 119, 255, 0.3);
}

.human-service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(22, 119, 255, 0.4);
}

.human-service-btn:active {
    transform: translateY(0);
}

.btn-icon {
    font-size: 1.5rem;
}

.btn-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-subtitle {
    font-size: 0.85rem;
    opacity: 0.9;
}

.service-info {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: #555;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.mobile-input-group {
  margin-bottom: 1.5rem;
}

.input-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

.mobile-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  transition: all 0.3s;
}

.mobile-input-wrapper:focus-within {
  border-color: var(--primary-color);
  background: white;
  box-shadow: 0 0 0 3px rgba(22, 119, 255, 0.1);
}

.country-prefix {
  padding: 0 0.75rem;
  color: #666;
  font-weight: 500;
  border-right: 1px solid #e9ecef;
}

.mobile-input {
  flex: 1;
  padding: 0.875rem;
  border: none;
  background: transparent;
  font-size: 1rem;
  outline: none;
}

.input-status-indicator {
  width: 20px;
  height: 20px;
  margin-right: 0.75rem;
  border-radius: 50%;
  transition: all 0.3s;
}

.input-status-indicator.valid {
  background: #52c41a;
}

.input-status-indicator.error {
  background: #f5222d;
}

.input-clear-btn,
.password-visibility-btn {
  padding: 0.5rem;
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.2s;
}

.input-clear-btn:hover,
.password-visibility-btn:hover {
  background: #f5f5f5;
}

.mobile-error-msg {
  display: none;
  color: #f5222d;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  padding-left: 0.5rem;
}

.mobile-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.mobile-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.mobile-checkbox input {
  display: none;
}

.checkbox-mark {
  width: 20px;
  height: 20px;
  border: 2px solid #d9d9d9;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s;
}

.mobile-checkbox input:checked + .checkbox-mark {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.mobile-checkbox input:checked + .checkbox-mark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.forgot-password-btn {
  background: none;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  font-size: 0.875rem;
}

.mobile-submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.mobile-submit-btn:hover:not(:disabled) {
  background: #0056d3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(22, 119, 255, 0.3);
}

.mobile-submit-btn:disabled {
  background: #d9d9d9;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-loading {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.loading-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* 增强表单验证样式 */
.field-error {
  border-color: #ff4d4f !important;
  box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.2) !important;
  background-color: rgba(255, 77, 79, 0.05) !important;
}

.simple-error-message {
  color: #ff4d4f;
  font-size: 0.75rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
  padding: 0.375rem 0.5rem;
  background: rgba(255, 77, 79, 0.1);
  border-radius: 4px;
  border-left: 3px solid #ff4d4f;
  animation: errorSlideIn 0.3s ease-out;
  opacity: 1;
  transition: opacity 0.3s ease-out;
  position: static;
  width: 100%;
  box-sizing: border-box;
}

.simple-error-message.fade-out {
  opacity: 0;
}

/* 错误容器样式 - 防止布局破坏 */
.error-container {
  min-height: 0;
  width: 100%;
  box-sizing: border-box;
}

/* 密码强度指示器增强样式 */
.password-strength {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  position: static;
  width: 100%;
  box-sizing: border-box;
}

.password-strength-bar {
  width: 100%;
  height: 4px;
  background: #e8e8e8;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0.25rem;
}

.password-strength-fill {
  height: 100%;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.password-strength-fill.weak {
  background: linear-gradient(90deg, #ff4d4f, #ff7875);
}

.password-strength-fill.medium {
  background: linear-gradient(90deg, #faad14, #ffc53d);
}

.password-strength-fill.strong {
  background: linear-gradient(90deg, #52c41a, #73d13d);
}

.password-strength-text {
  color: #666;
  font-weight: 500;
}

.password-strength.weak .password-strength-text {
  color: #ff4d4f;
}

.password-strength.medium .password-strength-text {
  color: #faad14;
}

.password-strength.strong .password-strength-text {
  color: #52c41a;
}

.field-error-tooltip::before {
  content: '⚠';
  font-size: 0.875rem;
  margin-right: 0.25rem;
}

.field-error-tooltip.fade-out {
  opacity: 0;
  transform: translateY(-5px);
}

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

.field-error-message::before {
  content: '⚠';
  font-size: 0.875rem;
}

@keyframes errorSlideIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.field-success {
  border-color: #52c41a !important;
  box-shadow: 0 0 0 2px rgba(82, 196, 26, 0.2) !important;
  background-color: rgba(82, 196, 26, 0.05) !important;
}

.field-success-message {
  color: #52c41a;
  font-size: 0.75rem;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.field-success-message::before {
  content: '✓';
  font-size: 0.875rem;
}

/* 密码强度指示器 */
#password-strength {
  margin-top: 0.5rem;
  padding: 0.5rem;
  background: #f8f9fa;
  border-radius: 6px;
  border: 1px solid #e9ecef;
}

.password-strength-bar {
  height: 4px;
  background: #f0f0f0;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.password-strength-fill {
  height: 100%;
  transition: width 0.3s ease, background-color 0.3s ease;
  border-radius: 2px;
}

.password-strength-fill.weak {
  background: linear-gradient(90deg, #ff4d4f, #ff7875);
}

.password-strength-fill.medium {
  background: linear-gradient(90deg, #faad14, #ffc53d);
}

.password-strength-fill.strong {
  background: linear-gradient(90deg, #52c41a, #73d13d);
}

.password-strength-text {
  font-size: 0.75rem;
  color: #666;
  font-weight: 500;
}

.password-strength {
  margin-top: 0.5rem;
}

.strength-meter {
  height: 4px;
  background: #f0f0f0;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0.25rem;
}

.strength-fill {
  height: 100%;
  transition: all 0.3s;
  border-radius: 2px;
}

.strength-fill.level-1 {
  background: #f5222d;
}

.strength-fill.level-2 {
  background: #faad14;
}

.strength-fill.level-3 {
  background: #52c41a;
}

.strength-text {
  font-size: 0.75rem;
  color: #666;
}

.mobile-agreement {
  margin-bottom: 2rem;
}

.agreement-link {
  background: none;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  text-decoration: underline;
}

/* 表单样式 */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(22, 119, 255, 0.1);
}

/* 日期格式提示样式 */
.date-format-hint {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: #666;
  font-style: italic;
}

/* 自定义日期选择器样式 */
.custom-date-picker {
  position: relative;
  display: inline-block;
  width: 100%;
}

.custom-date-picker input {
  width: 100%;
  padding: 0.75rem 3rem 0.75rem 0.75rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  background: white;
  cursor: pointer;
}

.custom-date-picker input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(22, 119, 255, 0.1);
}

.date-picker-icon {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}

.date-picker-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  margin-top: 4px;
  padding: 1rem;
}

.date-picker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.nav-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  color: #666;
  transition: background-color 0.2s;
}

.nav-btn:hover {
  background: #f5f5f5;
  color: var(--primary-color);
}

.current-month {
  font-weight: 600;
  font-size: 1rem;
  color: #333;
}

.date-picker-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 0.5rem;
}

.weekday {
  text-align: center;
  padding: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #666;
}

.date-picker-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.day {
  text-align: center;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: all 0.2s;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.day:hover:not(.disabled) {
  background: #f0f7ff;
  color: var(--primary-color);
}

.day.other-month {
  color: #ccc;
}

.day.today {
  background: #e6f4ff;
  color: var(--primary-color);
  font-weight: 600;
}

.day.selected {
  background: var(--primary-color);
  color: white;
  font-weight: 600;
}

.day.disabled {
  color: #ddd;
  cursor: not-allowed;
}

.date-picker-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid #eee;
}

.date-action {
  background: none;
  border: 1px solid #ddd;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  flex: 1;
}

.today-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.clear-btn:hover {
  border-color: #ff4d4f;
  color: #ff4d4f;
}

/* 移动端优化 */
@media (max-width: 768px) {
  .date-picker-dropdown {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 320px;
    right: auto;
  }

  .day {
    min-height: 40px;
    font-size: 1rem;
  }

  .date-picker-actions {
    margin-top: 1.5rem;
  }

  .date-action {
    padding: 0.6rem 1rem;
    font-size: 1rem;
  }
}

.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.btn-primary,
.btn-secondary {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background: #0056d3;
  transform: translateY(-1px);
}

.btn-secondary {
  background: #f5f5f5;
  color: #666;
}

.btn-secondary:hover {
  background: #e9e9e9;
}

.full-width {
  width: 100%;
}

/* 移动端统一设计规范 */
@media (max-width: 768px) {
  /* 主容器 - 简洁背景 */
  .main-container {
    background: #ffffff;
    padding: 0;
  }

  /* 顶部横幅 - 清晰层次 */
  .top-banner {
    background: linear-gradient(135deg, #1677ff 0%, #4096ff 100%);
    border-radius: 0;
    margin-bottom: 0;
    padding: 2rem 1.5rem 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
  }

  .banner-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .banner-left {
    flex: 1;
    margin: 0;
    order: 2;
  }

  .banner-right {
    width: 300px;
    height: 300px;
    flex-shrink: 0;
    order: 1;
  }

  .banner-image {
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  }

  /* 标题层次优化 */
  .banner-title {
    font-size: 1.6rem;
    color: white;
    font-weight: 800;
    margin-bottom: 0.8rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.02em;
  }

  .banner-tags {
    margin-bottom: 0.8rem;
  }

  .tag {
    background: rgba(255, 255, 255, 1);
    color: #1677ff;
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    margin-right: 0.5rem;
    margin-bottom: 0.3rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }

  .banner-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.5;
  }

  /* 统一按钮设计规范 */
  .action-buttons {
    padding: 1.5rem;
    gap: 1rem;
    background: white;
  }

  .action-btn {
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
  }

  .action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  }

  .action-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  }

  /* 统一内容区域设计 */
  .platform-services {
    padding: 0;
    margin-bottom: 1rem;
    background: white;
  }

  .section-header {
    background: #f8f9fb;
    padding: 1.5rem;
    border: none;
    border-bottom: 1px solid #eef1f4;
  }

  .section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.01em;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
  }

  .service-item {
    background: white;
    padding: 2rem 1.5rem;
    min-height: 120px;
    gap: 1rem;
    border: none;
    border-bottom: 1px solid #eef1f4;
    border-right: 1px solid #eef1f4;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-item:hover {
    background: #f8fafe;
    transform: none;
  }

  .service-icon {
    width: 48px;
    height: 48px;
    box-shadow: none;
    border-radius: 12px;
    margin-bottom: 0.5rem;
  }

  .service-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0;
  }

  /* 统一边距和留白 */
  .card-row {
    flex-direction: column;
    gap: 1rem;
    padding: 0;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }

  .main-cards {
    padding: 0;
    gap: 1rem;
  }

  .claims-process {
    margin: 1rem 0;
    padding: 0;
    background: white;
  }

  .process-step {
    padding: 1.5rem;
    margin-bottom: 0;
    border-radius: 0;
    border-bottom: 1px solid #eef1f4;
    background: white;
  }

  .process-step:last-child {
    border-bottom: none;
  }
}

  /* 统一模态框和关闭按钮设计 */
  .modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
  }

  .modal-header {
    background: linear-gradient(135deg, #1677ff 0%, #4096ff 100%);
    color: white;
    border: none;
    padding: 1.5rem;
    position: relative;
  }

  .modal-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
  }

  .btn-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
  }

  .btn-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
  }

  .btn-close:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
  }

  .modal-body {
    padding: 1.5rem;
    background: white;
  }

  .modal-footer {
    padding: 1rem 1.5rem;
    background: #f8f9fb;
    border: none;
  }

@media (max-width: 480px) {
  /* 极小屏幕完全重新设计 */
  .main-container {
    background: #ffffff;
  }

  .top-banner {
    background: linear-gradient(135deg, #1677ff 0%, #4096ff 100%);
    padding: 1.5rem 1rem;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
  }

  .top-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    pointer-events: none;
  }

  .banner-content {
    position: relative;
    z-index: 1;
  }

  .banner-title {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .tag {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }

  .platform-services {
    padding: 0 0.5rem;
    margin-bottom: 1rem;
  }

  .section-header {
    padding: 0.75rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafe 100%);
    border: 1px solid #e8f0fe;
  }

  .section-title {
    font-size: 1rem;
    background: linear-gradient(135deg, #1677ff, #722ed1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    background: transparent;
    border-radius: 0 0 16px 16px;
    padding: 0.5rem;
  }

  .service-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafe 100%);
    padding: 1.5rem 1.25rem;
    min-height: 90px;
    border-radius: 16px;
    border: 1px solid #e8f0fe;
    box-shadow: 0 4px 20px rgba(22, 119, 255, 0.08);
    position: relative;
    overflow: hidden;
  }

  .service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
      var(--purple-color) 0%, 
      var(--primary-color) 25%, 
      var(--orange-color) 50%, 
      var(--pink-color) 75%, 
      var(--gray-color) 100%);
  }

  .service-item:nth-child(1)::before { background: var(--purple-color); }
  .service-item:nth-child(2)::before { background: var(--orange-color); }
  .service-item:nth-child(3)::before { background: var(--pink-color); }
  .service-item:nth-child(4)::before { background: var(--gray-color); }

  .service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(22, 119, 255, 0.15);
  }

  .service-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, currentColor 0%, rgba(255,255,255,0.9) 100%);
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    position: relative;
  }

  .service-icon::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: inherit;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.3) 100%);
  }

  .service-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
  }

  /* 移动端登录区域优化 */
  .floating-login {
    position: static;
    margin: 0;
    border-radius: 0;
    background: #1677ff;
    box-shadow: none;
    overflow: hidden;
    transform: translateZ(0);
  }

  .floating-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
  }

  @keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
  }

  /* 移动端输入框完全重设计 */
  .form-control, .form-select, .btn {
    border-radius: 16px;
    border: 2px solid rgba(22, 119, 255, 0.1);
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
  }

  .form-control:focus, .form-select:focus {
    border-color: #1677ff;

/* 个人中心风格的理赔进度查询界面 */
.progress-query-profile-style {
  padding: 0;
  background: #f8f9fa;
  min-height: 100%;
}

/* 查询方法选择标签页 - 优化样式 */
.query-method-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.method-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border: 2px solid #e1e5e9;
  background: #f8f9fa;
  color: #6c757d;
  font-size: 14px;
  font-weight: 500;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  min-height: 60px;
}

.method-tab.active {
  background: white;
  color: #4285f4;
  border-color: #4285f4;
  box-shadow: 0 2px 8px rgba(66, 133, 244, 0.15);
}

.method-tab:hover:not(.active) {
  background: white;
  border-color: #d1d5db;
  color: #374151;
}

/* 节区头部样式 */
.section-header {
  margin-bottom: 20px;
}

.section-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: #262626;
  margin-bottom: 4px;
}

.section-header p {
  font-size: 14px;
  color: #8c8c8c;
  margin: 0;
}

/* 查询结果的详细行样式 */
.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e1e5e9;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-row .label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.detail-row .value {
  font-size: 14px;
  color: #333;
  font-weight: 600;
  text-align: right;
  max-width: 60%;
  word-break: break-word;
}

.detail-row .value.approved {
  color: #52c41a;
}

.detail-row .value.status-submitted {
  color: #1677ff;
}

.detail-row .value.status-reviewing {
  color: #faad14;
}

.detail-row .value.status-approved {
  color: #52c41a;
}

.detail-row .value.status-rejected {
  color: #f5222d;
}

.detail-row .value.status-paid {
  color: #722ed1;
}

/* 按钮加载状态 */
.btn-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.loading-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* 移动端适配 */
@media (max-width: 768px) {
  .query-method-tabs {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .method-tab {
    padding: 14px;
    font-size: 14px;
    min-height: 56px;
  }
  
  .detail-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 10px 0;
  }
  
  .detail-row .value {
    text-align: left;
    max-width: 100%;
  }
}

.results-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 16px;
  border: 1px solid rgba(22, 119, 255, 0.1);
}

.results-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #1677ff 0%, #4096ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
}

.results-header h3 {
  color: #1677ff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.results-header p {
  color: #666;
  font-size: 0.9rem;
}

.claim-result-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid #e8f0fe;
  box-shadow: 0 4px 20px rgba(22, 119, 255, 0.08);
  transition: all 0.3s ease;
}

.claim-result-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(22, 119, 255, 0.15);
}

.claim-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f0f4f8;
}

.claim-number h3 {
  color: #1677ff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.claim-type {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  color: #1677ff;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(22, 119, 255, 0.1);
}

.claim-status-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-dot.status-submitted {
  background: #fbbf24;
}

.status-dot.status-reviewing {
  background: #3b82f6;
}

.status-dot.status-approved {
  background: #10b981;
}

.status-dot.status-rejected {
  background: #ef4444;
}

.status-dot.status-paid {
  background: #059669;
}

.status-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: #374151;
}

.claim-details {
  margin-bottom: 1.5rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f8fafc;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-row .label {
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 500;
  min-width: 80px;
}

.detail-row .value {
  color: #111827;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: right;
}

.detail-row .value.amount {
  color: #1677ff;
  font-weight: 600;
}

.detail-row .value.approved {
  color: #059669;
}

.detail-row .value.note {
  background: #f0f9ff;
  padding: 0.5rem;
  border-radius: 8px;
  border: 1px solid rgba(22, 119, 255, 0.1);
  font-style: italic;
  max-width: 60%;
}

.status-timeline {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid #f0f4f8;
}

.status-timeline h4 {
  color: #374151;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status-timeline h4::before {
  content: "📋";
  font-size: 1.2rem;
}

.timeline {
  position: relative;
  padding-left: 1.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #1677ff 0%, #e5e7eb 100%);
}

.timeline-item {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 1rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -1.25rem;
  top: 0.25rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e5e7eb;
  border: 2px solid white;
  box-shadow: 0 0 0 2px #e5e7eb;
}

.timeline-item.current .timeline-dot {
  background: #1677ff;
  box-shadow: 0 0 0 2px #1677ff, 0 0 0 6px rgba(22, 119, 255, 0.1);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 2px #1677ff, 0 0 0 6px rgba(22, 119, 255, 0.1);
  }
  50% {
    box-shadow: 0 0 0 2px #1677ff, 0 0 0 10px rgba(22, 119, 255, 0.2);
  }
}

.timeline-content {
  background: white;
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.timeline-item.current .timeline-content {
  border-color: #1677ff;
  box-shadow: 0 0 0 1px rgba(22, 119, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.timeline-status {
  font-weight: 600;
  color: #374151;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.timeline-item.current .timeline-status {
  color: #1677ff;
}

.timeline-note {
  color: #6b7280;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
  line-height: 1.4;
}

.timeline-time {
  color: #9ca3af;
  font-size: 0.75rem;
  font-weight: 500;
}

.no-results {
  text-align: center;
  padding: 3rem 2rem;
  background: white;
  border-radius: 16px;
  border: 2px dashed #e5e7eb;
}

.no-results-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.no-results-title {
  color: #6b7280;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.no-results-hint {
  color: #9ca3af;
  font-size: 0.9rem;
}

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

/* 移动端响应式优化 */
@media (max-width: 768px) {
  .claim-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .claim-status-badge {
    align-self: flex-end;
  }
  
  .detail-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  
  .detail-row .value {
    text-align: left;
    max-width: 100%;
  }
  
  .timeline {
    padding-left: 1rem;
  }
  
  .timeline-dot {
    left: -1rem;
  }
}

  /* 统一卡片设计 */
  .card {
    border-radius: 0;
    border: none;
    box-shadow: none;
    margin-bottom: 1rem;
    overflow: hidden;
    background: white;
  }

  .card-header {
    background: #f8f9fb;
    border: none;
    border-bottom: 1px solid #eef1f4;
    color: #1a1a1a;
    padding: 1.5rem;
  }

  .card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
  }

  .card-body {
    padding: 1.5rem;
    background: white;
  }

  /* 移动端导航增强 */
  .navbar-brand {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1677ff, #722ed1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* 移动端按钮波纹效果 */
  .btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
    transform: translate(-50%, -50%);
    z-index: -1;
  }

  .btn:active::before {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
  }

  /* 移动端文字优化 */
  body {
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.025em;
  }

  /* 移动端滚动优化 */
  * {
    -webkit-overflow-scrolling: touch;
  }

  html {
    scroll-behavior: smooth;
  }

  /* 波纹动画效果 */
  @keyframes ripple {
    to {
      transform: scale(4);
      opacity: 0;
    }
  }

  /* 移动端加载动画优化 */
  .loading {
    position: relative;
  }

  .loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #1677ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  /* 移动端焦点状态优化 */
  .focused {
    position: relative;
  }

  .focused::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid #1677ff;
    border-radius: 18px;
    opacity: 0.5;
    animation: focusPulse 2s infinite;
  }

  @keyframes focusPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.02); }
  }

  /* 移动端触摸反馈优化 */
  .touch-feedback {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }

  /* 移动端滚动指示器 */
  .scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #1677ff 0%, #69b1ff 100%);
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.1s ease;
    z-index: 9999;
  }

  /* 移动端无限滚动优化 */
  .infinite-scroll-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    color: #1677ff;
    font-weight: 600;
  }

  .infinite-scroll-loading::before {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid #e8f0fe;
    border-top: 2px solid #1677ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 0.5rem;
  }
}

  /* 安卓触控优化 */
  button, .btn, .service-item {
    min-height: 48px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
  }

  button:active, .btn:active, .service-item:active {
    transform: scale(0.98);
    background-color: rgba(22, 119, 255, 0.1);
  }

  /* 输入框安卓优化 */
  input, textarea {
    font-size: 16px !important;
    border-radius: 8px;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    transition: border-color 0.2s ease;
  }

  input:focus, textarea:focus {
    border-color: #1677ff;
    box-shadow: 0 0 0 3px rgba(22, 119, 255, 0.1);
    outline: none;
  }

  /* 移动端模态框完全重设计 */
  .clean-auth-modal {
    margin: 0;
    max-width: 100vw;
    height: 100vh;
    border-radius: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafe 100%);
    overflow-y: auto;
  }

  .auth-content {
    padding: 2rem 1.5rem;
    min-height: calc(100vh - 4rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .auth-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem 0;
  }

  .auth-header h2 {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1677ff, #722ed1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
  }

  .auth-header p {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
  }

  .auth-switcher {
    display: flex;
    background: #f0f0f0;
    border-radius: 16px;
    padding: 4px;
    margin-bottom: 2rem;
  }

  .auth-switch-btn {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    background: transparent;
    color: #666;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .auth-switch-btn.active {
    background: white;
    color: #1677ff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .input-field {
    margin-bottom: 1.5rem;
  }

  .input-field label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
  }

  .auth-btn {
    width: 100%;
    min-height: 56px;
    font-size: 1rem;
    border-radius: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #1677ff 0%, #40a9ff 100%);
    border: none;
    color: white;
    box-shadow: 0 4px 20px rgba(22, 119, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(22, 119, 255, 0.4);
  }

  /* 安卓专用Ripple效果 */
  .service-item, .auth-btn, button {
    position: relative;
    overflow: hidden;
  }

  .service-item::before, .auth-btn::before, button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--ripple-color);
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
    pointer-events: none;
  }

  .service-item:active::before, .auth-btn:active::before, button:active::before {
    width: 200px;
    height: 200px;
  }

  /* 安卓状态栏适配 */
  .main-container {
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
  }

  /* 系统导航栏适配 */
  .clean-auth-wrapper {
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
  }

  /* 移动端性能优化 */
  .service-item, .auth-btn, .top-banner {
    will-change: transform;
    transform: translateZ(0);
  }

  /* 移动端触觉反馈增强 */
  .service-item:active, .auth-btn:active {
    transform: scale(0.97) translateZ(0);
    transition: transform 0.1s ease;
  }

  /* 视觉层次优化 */
  .main-container {
    background: 
      radial-gradient(circle at 20% 50%, rgba(22, 119, 255, 0.03) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(114, 46, 209, 0.03) 0%, transparent 50%),
      linear-gradient(180deg, #f8fafe 0%, #ffffff 100%);
  }

  /* 改进卡片阴影 */
  .service-item {
    box-shadow: 
      0 1px 3px rgba(0, 0, 0, 0.12),
      0 4px 12px rgba(22, 119, 255, 0.04),
      inset 0 1px 0 rgba(255, 255, 255, 0.6);
  }

  .service-item:hover {
    box-shadow: 
      0 4px 16px rgba(0, 0, 0, 0.15),
      0 8px 32px rgba(22, 119, 255, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }
}
/* ==================== 清洁认证界面样式 ==================== */
.clean-auth-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.clean-auth-modal {
    background: white;
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
}

.clean-auth-modal .close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.clean-auth-modal .close:hover {
    background: #f5f5f5;
    color: #333;
    transform: scale(1.1);
}

.clean-auth-modal .close:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.auth-content {
    padding: 30px;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h2 {
    margin: 0 0 8px 0;
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.auth-header p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.auth-switcher {
    display: flex;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 4px;
    margin-bottom: 30px;
}

.auth-switch-btn {
    flex: 1;
    padding: 12px;
    border: none;
    background: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.auth-switch-btn.active {
    background: white;
    color: #4285f4;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.auth-switch-btn:hover:not(.active) {
    color: #333;
}

.auth-forms, .single-auth-form {
    position: relative;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
    animation: cleanFadeIn 0.3s ease;
}

.single-auth-form {
    display: block;
}

.register-only, .login-only {
    transition: all 0.3s ease;
    overflow: hidden;
}

.register-only {
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
}

.register-only[style*="block"] {
    max-height: 200px;
    opacity: 1;
    margin-bottom: 20px;
}

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

.input-field {
    margin-bottom: 20px;
}

.input-field label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.input-field input[type="tel"],
.input-field input[type="password"],
.input-field input[type="text"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.input-field input:focus {
    outline: none;
    border-color: #4285f4;
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
}

.password-field {
    position: relative;
    display: flex;
    align-items: stretch;
}

.password-field input {
    flex: 1;
    padding-right: 50px;
}

.show-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    padding: 4px;
    color: #666;
    user-select: none;
}

.show-password:hover {
    color: #333;
}

.auth-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 16px;
}

.auth-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

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

.forgot-password {
    color: #4285f4;
    text-decoration: none;
    font-size: 14px;
}

.forgot-password:hover {
    text-decoration: underline;
}

.checkbox-field {
    margin-bottom: 24px;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-wrapper input[type="checkbox"] {
    display: none;
}

.checkbox-mark {
    width: 18px;
    height: 18px;
    border: 2px solid #e1e5e9;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.checkbox-wrapper input:checked + .checkbox-mark {
    background: #4285f4;
    border-color: #4285f4;
}

.checkbox-wrapper input:checked + .checkbox-mark::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.policy-link {
    color: #4285f4;
    text-decoration: none;
}

.policy-link:hover {
    text-decoration: underline;
}

.auth-error {
    background: #fee;
    color: #c33;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #fcc;
    margin-bottom: 16px;
    font-size: 14px;
    display: none;
}

.auth-success {
    background: #efe;
    color: #363;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #cfc;
    margin-bottom: 16px;
    font-size: 14px;
    display: none;
}

/* 银行卡表单样式 */
.field-error {
    color: #ff4d4f;
    font-size: 12px;
    margin-top: 4px;
    display: none;
    animation: slideDown 0.2s ease;
}

.field-hint {
    color: #8c8c8c;
    font-size: 12px;
    margin-top: 4px;
}

.form-group input.error {
    border-color: #ff4d4f;
    background-color: #fff2f0;
}

.form-group input.valid {
    border-color: #52c41a;
    background-color: #f6ffed;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.save-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #d9d9d9;
}

.save-btn:not(:disabled):hover {
    background: linear-gradient(135deg, #40a9ff, #096dd9);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(22, 119, 255, 0.3);
}
    border-radius: 6px;
    border: 1px solid #cfc;
    margin-bottom: 16px;
    font-size: 14px;
    display: none;
}

/* 新版认证消息样式 */
.auth-messages {
    margin-bottom: 16px;
    min-height: 0;
}

.auth-message {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
    animation: slideInFromTop 0.3s ease-out;
}

.auth-message-error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.auth-message-success {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.auth-message-info {
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #bfdbfe;
}

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

@keyframes slideUpScale {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ==================== 退出登录确认对话框样式 ==================== */
.logout-confirm-wrapper {
    background: transparent;
}

.logout-confirm-modal {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    max-width: 320px;
    width: 90%;
    margin: auto;
    position: relative;
    animation: slideUpScale 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.logout-content {
    padding: 32px 24px 24px;
    text-align: center;
}

.logout-icon {
    margin-bottom: 24px;
}

.logout-icon .icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    border-radius: 50%;
    color: white;
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.35), 0 2px 8px rgba(255, 107, 107, 0.2);
    position: relative;
}

.logout-icon .icon-wrapper::before {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    pointer-events: none;
}

.logout-text h3 {
    font-size: 22px;
    font-weight: 600;
    color: #4285F4	;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.logout-text p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 8px;
    line-height: 1.5;
    font-weight: 400;
}

.logout-text .logout-hint {
    font-size: 14px;
    color: #8a8a8a;
    margin-bottom: 0;
    line-height: 1.4;
}

.logout-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    padding: 0 4px;
}

.logout-btn {
    flex: 1;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logout-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.logout-btn.cancel-btn {
    background: #f8f8f8;
    color: #6b6b6b;
    border: 1px solid #e8e8e8;
}

.logout-btn.cancel-btn::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.02));
}

.logout-btn.cancel-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.logout-btn.cancel-btn:hover::before {
    opacity: 1;
}

.logout-btn.cancel-btn:active {
    transform: translateY(0);
    background: #e8e8e8;
}

.logout-btn.confirm-btn {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logout-btn.confirm-btn::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
}

.logout-btn.confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.35);
}

.logout-btn.confirm-btn:hover::before {
    opacity: 1;
}

.logout-btn.confirm-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.25);
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* 理赔进度查询样式 */
.progress-query-container {
    padding: 0;
    max-width: 100%;
    background: white;
    min-height: 100vh;
}

.query-header {
    background: linear-gradient(135deg, #1677ff, #0958d9);
    color: white;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.query-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

.header-icon {
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.query-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
    position: relative;
    z-index: 1;
}

.query-header p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
    position: relative;
    z-index: 1;
}

.query-form {
    padding: 32px 24px;
}

.input-section {
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

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

.input-icon {
    position: absolute;
    left: 16px;
    color: #666;
    z-index: 1;
}

.input-wrapper input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 16px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.input-wrapper input:focus {
    outline: none;
    border-color: #1677ff;
    background: white;
    box-shadow: 0 0 0 3px rgba(22, 119, 255, 0.1);
}

.clear-btn {
    position: absolute;
    right: 12px;
    width: 24px;
    height: 24px;
    border: none;
    background: #ccc;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    z-index: 2;
    transition: background 0.2s ease;
}

.clear-btn:hover {
    background: #999;
}

.query-divider {
    text-align: center;
    margin: 32px 0;
    position: relative;
}

.query-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e1e5e9;
}

.query-divider span {
    background: white;
    padding: 0 16px;
    color: #666;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.query-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #1677ff, #0958d9);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.query-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(22, 119, 255, 0.3);
}

.query-btn:active {
    transform: translateY(0);
}

.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.query-results {
    padding: 0 24px;
    margin-bottom: 24px;
}

.query-tips {
    background: #f8f9fa;
    margin: 24px;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e1e5e9;
}

.tips-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: #333;
    font-weight: 600;
}

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

.tips-list li {
    padding: 8px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    border-bottom: 1px solid #e9ecef;
}

.tips-list li:last-child {
    border-bottom: none;
}

.tips-list li::before {
    content: '•';
    color: #1677ff;
    margin-right: 8px;
    font-weight: bold;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(0deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(180deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 移动端适配 */
@media (max-width: 768px) {
    .logout-confirm-modal {
        margin: 24px;
        max-width: none;
        width: calc(100% - 48px);
        border-radius: 16px;
    }
    
    .logout-content {
        padding: 28px 20px 20px;
    }
    
    .logout-icon {
        margin-bottom: 20px;
    }
    
    .logout-icon .icon-wrapper {
        width: 64px;
        height: 64px;
    }
    
    .logout-text h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .logout-text p {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .logout-text .logout-hint {
        font-size: 13px;
    }
    
    .logout-actions {
        gap: 12px;
        margin-top: 28px;
        padding: 0;
    }
    
    .logout-btn {
        padding: 15px 18px;
        font-size: 16px;
        min-height: 50px;
        border-radius: 10px;
    }
}

/* 超小屏幕适配 */
@media (max-width: 480px) {
    .logout-confirm-modal {
        margin: 16px;
        width: calc(100% - 32px);
    }
    
    .logout-content {
        padding: 24px 16px 16px;
    }
    
    .logout-icon .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .logout-text h3 {
        font-size: 18px;
    }
    
    .logout-text p {
        font-size: 14px;
    }
    
    .logout-actions {
        gap: 10px;
        margin-top: 24px;
    }
    
    .logout-btn {
        padding: 14px 16px;
        font-size: 15px;
        min-height: 48px;
    }
}

/* ==================== 现代化理赔申请表单样式 ==================== */
.modern-claim-wrapper {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modern-claim-container {
    background: #fafafa;
    border-radius: 0;
    box-shadow: none;
    max-width: 100%;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    margin: 0;
    position: relative;
    display: flex;
    flex-direction: column;
}

.claim-header {
    background: linear-gradient(135deg, #1677ff, #0958d9);
    padding: 24px;
    border-radius: 0;
    color: white;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.header-icon-wrapper {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.header-text h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 4px 0;
    letter-spacing: -0.02em;
}

.header-text p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.modern-claim-form {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-section {
    margin-bottom: 24px;
    padding: 24px;
    background: #fafafa;
}

/* 理赔流程步骤 - 横向时间轴布局 */
.horizontal-timeline {
    padding: 30px 20px;
    background: #fafafa;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    overflow-x: auto;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    height: 3px;
    background: linear-gradient(90deg, #e8e8e8 0%, #d0d0d0 50%, #e8e8e8 100%);
    border-radius: 2px;
    z-index: 1;
}

.timeline-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 80px;
}

.timeline-step:hover .step-node {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(22, 119, 255, 0.4);
}

.timeline-step:hover .step-label h4 {
    color: #1677ff;
}

.step-node {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1677ff, #4096ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(22, 119, 255, 0.3);
    border: 3px solid white;
}

.step-number {
    color: white;
    font-size: 16px;
    font-weight: 600;
}

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

.step-label h4 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0;
    transition: color 0.3s ease;
    white-space: nowrap;
}

/* 移动端优化 */
@media (max-width: 768px) {
    .horizontal-timeline {
        padding: 25px 15px;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 10px;
    }
    
    .timeline-line {
        left: 15px;
        right: 15px;
        height: 2px;
    }
    
    .timeline-step {
        min-width: 70px;
        flex-shrink: 0;
    }
    
    .step-node {
        width: 36px;
        height: 36px;
        margin-bottom: 10px;
        border-width: 2px;
    }
    
    .step-number {
        font-size: 14px;
    }
    
    .step-label h4 {
        font-size: 12px;
    }
}

.form-section:last-child {
    margin-bottom: 0;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.section-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1677ff;
}

.section-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #4285F4	;
    margin: 0;
    letter-spacing: -0.01em;
}

.input-group {
    margin-bottom: 20px;
}

.input-group:last-child {
    margin-bottom: 0;
}

.input-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #4a4a4a;
    margin-bottom: 8px;
}

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

.input-wrapper input {
    width: 100%;
    padding: 16px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 16px;
    background: white;
    transition: all 0.3s ease;
}

.input-wrapper input:focus {
    outline: none;
    border-color: #1677ff;
    box-shadow: 0 0 0 3px rgba(22, 119, 255, 0.1);
}

.input-icon {
    position: absolute;
    right: 16px;
    color: #8a8a8a;
    pointer-events: none;
}

.amount-input {
    position: relative;
}

.currency-symbol {
    position: absolute;
    left: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #1677ff;
    z-index: 1;
}

.amount-input input {
    padding-left: 40px;
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    width: 100%;
    padding: 16px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 16px;
    background: white;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-wrapper select:focus {
    outline: none;
    border-color: #1677ff;
    box-shadow: 0 0 0 3px rgba(22, 119, 255, 0.1);
}

.select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #8a8a8a;
    pointer-events: none;
}

.textarea-wrapper {
    position: relative;
}

.textarea-wrapper textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    background: white;
    resize: vertical;
    min-height: 120px;
    transition: all 0.3s ease;
}

.textarea-wrapper textarea:focus {
    outline: none;
    border-color: #1677ff;
    box-shadow: 0 0 0 3px rgba(22, 119, 255, 0.1);
}

.char-count {
    position: absolute;
    bottom: 12px;
    right: 16px;
    font-size: 12px;
    color: #8a8a8a;
    background: white;
    padding: 2px 6px;
    border-radius: 4px;
}

.upload-section {
    margin-top: 12px;
}

.upload-area {
    border: 2px dashed #d0d7de;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.upload-area:hover {
    border-color: #1677ff;
    background: #f0f9ff;
}

.upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.upload-icon {
    color: #1677ff;
    opacity: 0.8;
}

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

.upload-title {
    font-size: 16px;
    font-weight: 500;
    color: #4285F4	;
    margin: 0 0 4px 0;
}

.upload-hint {
    font-size: 14px;
    color: #8a8a8a;
    margin: 0;
}

.uploaded-files {
    margin-top: 16px;
    display: none;
}

.uploaded-file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 8px;
    border: 1px solid #e8e8e8;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.file-info svg {
    color: #1677ff;
}

.file-details {
    display: flex;
    flex-direction: column;
}

.file-name {
    font-size: 14px;
    font-weight: 500;
    color: #4285F4	;
}

.file-size {
    font-size: 12px;
    color: #8a8a8a;
}

.remove-file {
    width: 24px;
    height: 24px;
    border: none;
    background: #ff4d4f;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.remove-file:hover {
    background: #d32f2f;
    transform: scale(1.1);
}

.form-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #f0f0f0;
}

.secondary-btn {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid #e8e8e8;
    background: white;
    color: #6b6b6b;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 56px;
}

.secondary-btn:hover {
    border-color: #d0d0d0;
    background: #f8f8f8;
    transform: translateY(-1px);
}

.primary-btn {
    flex: 2;
    padding: 16px 20px;
    border: none;
    background: linear-gradient(135deg, #1677ff, #0958d9);
    color: white;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(22, 119, 255, 0.3);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(22, 119, 255, 0.4);
}

.primary-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.spinning {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* 成功提示样式 */
.success-modal-wrapper {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.success-container {
    background: white;
    border-radius: 20px;
    padding: 40px 24px 24px;
    text-align: center;
    max-width: 400px;
    width: 85%;
    margin: auto;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    animation: scaleIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.success-icon {
    margin-bottom: 20px;
}

.success-icon svg {
    color: #52c41a;
}

.success-container h2 {
    font-size: 20px;
    font-weight: 600;
    color: #4285F4	;
    margin-bottom: 8px;
}

.success-container p {
    font-size: 15px;
    color: #6b6b6b;
    margin-bottom: 20px;
}

.claim-id {
    background: #f0f9ff;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
    border: 1px solid #bfdbfe;
}

.claim-id span {
    font-size: 14px;
    color: #6b6b6b;
}

.claim-id strong {
    font-size: 18px;
    color: #1677ff;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.success-actions {
    margin-top: 20px;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .modern-claim-container {
        width: 95%;
        max-height: 95vh;
        border-radius: 16px;
    }
    
    .claim-header {
        padding: 20px;
        border-radius: 16px 16px 0 0;
    }
    
    .header-icon-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .header-text h2 {
        font-size: 20px;
    }
    
    .modern-claim-form {
        padding: 24px 20px 20px;
    }
    
    .form-section {
        margin-bottom: 24px;
    }
    
    .section-header {
        margin-bottom: 16px;
    }
    
    .section-icon {
        width: 32px;
        height: 32px;
    }
    
    .section-header h3 {
        font-size: 16px;
    }
    
    .input-group {
        margin-bottom: 16px;
    }
    
    .input-wrapper input,
    .select-wrapper select,
    .textarea-wrapper textarea {
        padding: 14px;
        font-size: 16px;
    }
    
    .upload-area {
        padding: 24px 16px;
    }
    
    .form-actions {
        gap: 12px;
        margin-top: 24px;
        flex-direction: column;
    }
    
    .secondary-btn,
    .primary-btn {
        flex: none;
        min-height: 50px;
    }
}

/* ==================== 理赔进度查询样式 ==================== */
.progress-query-modal {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.progress-query-container {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    margin: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    animation: slideInFromBottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.query-header {
    background: linear-gradient(135deg, #1677ff, #0958d9);
    padding: 24px;
    color: white;
    text-align: center;
}

.query-header h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.query-header p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.query-tabs {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.query-tab {
    flex: 1;
    padding: 16px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #6b6b6b;
    transition: all 0.3s ease;
}

.query-tab.active {
    background: white;
    color: #1677ff;
    border-bottom: 2px solid #1677ff;
}

.query-content {
    padding: 24px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.query-content .input-group {
    margin-bottom: 20px;
}

.query-content .input-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #4a4a4a;
    margin-bottom: 8px;
}

.query-content .input-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.query-content .input-group input:focus {
    outline: none;
    border-color: #1677ff;
}

.query-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #1677ff, #0958d9);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.query-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(22, 119, 255, 0.3);
}

.query-results {
    border-top: 1px solid #e9ecef;
    padding: 24px;
    background: #f8f9fa;
}

.results-header h4 {
    font-size: 16px;
    font-weight: 600;
    color: #4285F4	;
    margin-bottom: 16px;
}

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

.claim-item {
    background: white;
    border-radius: 8px;
    padding: 16px;
    border: 1px solid #e9ecef;
    transition: box-shadow 0.2s ease;
}

.claim-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.claim-number {
    font-size: 16px;
    font-weight: 600;
    color: white;
    background: #1677ff;
    padding: 6px 12px;
    border-radius: 6px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

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

.status-submitted {
    background: #e3f2fd;
    color: #1565c0;
}

.status-reviewing {
    background: #fff3e0;
    color: #ef6c00;
}

.status-approved {
    background: #e8f5e8;
    color: #2e7d32;
}

.status-rejected {
    background: #ffebee;
    color: #c62828;
}

.status-paid {
    background: #e8f5e8;
    color: #2e7d32;
}

.claim-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.detail-row .label {
    color: #6b6b6b;
}

.detail-row .value {
    color: #4285F4	;
    font-weight: 500;
}

.no-results {
    text-align: center;
    padding: 40px 20px;
}

.no-results-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.no-results h4 {
    font-size: 18px;
    font-weight: 600;
    color: #4285F4	;
    margin-bottom: 8px;
}

.no-results p {
    font-size: 14px;
    color: #6b6b6b;
    margin: 0;
}

@media (max-width: 768px) {
    .progress-query-container {
        width: 95%;
        margin: 10px auto;
    }
    
    .query-header {
        padding: 20px;
    }
    
    .query-content {
        padding: 20px;
    }
    
    .query-results {
        padding: 20px;
    }
    
    .claim-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .detail-row {
        flex-direction: column;
        gap: 4px;
    }
}

/* ==================== 新版个人中心样式 ==================== */
.profile-modal-new {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.profile-container-new {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 95%;
    margin: 20px auto;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: slideInFromBottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.profile-header {
    background: linear-gradient(135deg, #1677ff 0%, #0958d9 100%);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
}

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

.avatar-wrapper {
    position: relative;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.avatar-letter {
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
}

.avatar-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    border: 2px solid white;
}

.avatar-badge.verified {
    background: #52c41a;
    color: white;
}

.avatar-badge.unverified {
    background: #faad14;
    color: white;
}

.profile-info {
    flex: 1;
    min-width: 0;
}

.profile-name {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.profile-details {
    margin-bottom: 12px;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
    font-size: 14px;
}

.detail-label {
    color: rgba(255, 255, 255, 0.9);
    margin-right: 8px;
    min-width: 60px;
    font-weight: 500;
}

.detail-value {
    color: #ffffff !important;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.profile-status {
    margin-top: 8px;
}

.status-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.status-tag.status-verified {
    background: rgba(82, 196, 26, 0.2);
    color: #52c41a;
    border-color: rgba(82, 196, 26, 0.3);
}

.status-tag.status-unverified {
    background: rgba(250, 173, 20, 0.2);
    color: #faad14;
    border-color: rgba(250, 173, 20, 0.3);
}

@media (max-width: 768px) {
    .profile-container-new {
        width: 98%;
        margin: 10px auto;
        border-radius: 16px;
    }
    
    .profile-header {
        padding: 20px;
        gap: 16px;
    }
    
    .avatar-wrapper {
        width: 56px;
        height: 56px;
    }
    
    .avatar-letter {
        font-size: 20px;
    }
    
    .avatar-badge {
        width: 18px;
        height: 18px;
        font-size: 9px;
    }
    
    .profile-name {
        font-size: 18px;
    }
    
    .detail-item {
        font-size: 13px;
    }
    
    .detail-label {
        min-width: 50px;
    }
    
    .status-tag {
        font-size: 11px;
        padding: 3px 10px;
    }
}

/* ==================== 用户协议和隐私政策弹窗样式 ==================== */
#userAgreementModal,
#privacyPolicyModal {
    z-index: 10100 !important;
}

.agreement-container,
.privacy-container {
    max-height: 70vh;
    overflow-y: auto;
    padding: 20px;
    line-height: 1.6;
}

.agreement-container h3,
.privacy-container h3 {
    margin: 0 0 20px 0;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    text-align: center;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.agreement-content,
.privacy-content {
    font-size: 14px;
    color: #444;
}

.agreement-content h4,
.privacy-content h4 {
    margin: 25px 0 12px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    border-left: 4px solid var(--primary-color);
    padding-left: 12px;
}

.agreement-content p,
.privacy-content p {
    margin: 12px 0;
    line-height: 1.7;
    color: #555;
}

.agreement-content ul,
.privacy-content ul {
    margin: 12px 0;
    padding-left: 20px;
}

.agreement-content li,
.privacy-content li {
    margin: 8px 0;
    line-height: 1.6;
    color: #555;
}

.agreement-content strong,
.privacy-content strong {
    color: #333;
    font-weight: 600;
}

.agreement-actions,
.privacy-actions {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    text-align: center;
}

.agreement-actions .btn-primary,
.privacy-actions .btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 120px;
}

.agreement-actions .btn-primary:hover,
.privacy-actions .btn-primary:hover {
    background: #1958cc;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(22, 119, 255, 0.3);
}

/* 移动端适配用户协议和隐私政策 */
@media (max-width: 768px) {
    .agreement-container,
    .privacy-container {
        max-height: 80vh;
        padding: 16px;
    }
    
    .agreement-container h3,
    .privacy-container h3 {
        font-size: 18px;
        margin-bottom: 16px;
        padding-bottom: 12px;
    }
    
    .agreement-content h4,
    .privacy-content h4 {
        font-size: 15px;
        margin: 20px 0 10px 0;
        padding-left: 10px;
        border-left-width: 3px;
    }
    
    .agreement-content,
    .privacy-content {
        font-size: 13px;
    }
    
    .agreement-content p,
    .privacy-content p {
        margin: 10px 0;
        line-height: 1.6;
    }
    
    .agreement-actions,
    .privacy-actions {
        margin-top: 24px;
        padding-top: 16px;
    }
    
    .agreement-actions .btn-primary,
    .privacy-actions .btn-primary {
        padding: 14px 24px;
        font-size: 15px;
        min-width: 100px;
    }
}

/* ==================== 现代个人中心样式 ==================== */
.modern-profile {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modern-profile-container {
    background: #ffffff;
    border-radius: 20px;
    max-width: 500px;
    width: 95%;
    margin: 20px auto;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: slideInFromBottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.user-info-card {
    background: linear-gradient(135deg, #1677ff 0%, #0958d9 100%);
    padding: 24px;
    color: white;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
    min-height: 120px;
}

.user-info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    pointer-events: none;
    z-index: 0;
}

.user-avatar-section {
    position: relative;
}

.user-avatar .avatar-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.user-avatar .avatar-text {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.avatar-status {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    border: 2px solid white;
}

.avatar-status.verified {
    background: #52c41a;
    color: white;
}

.avatar-status.pending {
    background: #faad14;
    color: white;
}

.user-details {
    flex: 1;
    position: relative;
    z-index: 1;
}

.user-name {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: white;
}

.user-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.contact-icon {
    font-size: 14px;
}

.contact-text {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.verification-status {
    margin-top: 8px;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
}

.status-indicator.verified {
    background: rgba(82, 196, 26, 0.2);
    color: #52c41a;
    border: 1px solid rgba(82, 196, 26, 0.3);
}

.status-indicator.unverified {
    background: rgba(250, 173, 20, 0.2);
    color: #faad14;
    border: 1px solid rgba(250, 173, 20, 0.3);
}

.profile-menu-list {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.profile-menu-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.profile-menu-item:hover {
    background: linear-gradient(145deg, #f0f8ff, #e6f4ff);
    border-color: #1677ff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(22, 119, 255, 0.15);
}

.profile-menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}

.profile-menu-item:hover::before {
    left: 100%;
}

.profile-menu-item.status-success {
    background: #f6ffed;
    border-color: #b7eb8f;
}

.profile-menu-item.status-warning {
    background: #fffbe6;
    border-color: #ffe58f;
}

.menu-item-icon {
    flex-shrink: 0;
}

.icon-bg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.icon-bg.primary {
    background: linear-gradient(135deg, #1677ff, #0958d9);
    color: white;
}

.icon-bg.success {
    background: linear-gradient(135deg, #52c41a, #389e0d);
    color: white;
}

.icon-bg.warning {
    background: linear-gradient(135deg, #faad14, #d48806);
    color: white;
}

.icon-bg.secondary {
    background: linear-gradient(135deg, #8c8c8c, #595959);
    color: white;
}

.icon-bg.info {
    background: linear-gradient(135deg, #13c2c2, #08979c);
    color: white;
}

.menu-item-content {
    flex: 1;
}

.menu-item-title {
    font-size: 16px;
    font-weight: 600;
    color: #4285F4;
    margin-bottom: 4px;
}

.menu-item-desc {
    font-size: 14px;
    color: #8c8c8c;
}

.menu-item-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-text {
    font-size: 12px;
    color: #8c8c8c;
}

.status-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.status-badge.success {
    background: #f6ffed;
    color: #52c41a;
    border: 1px solid #b7eb8f;
}

.status-badge.warning {
    background: #fffbe6;
    color: #faad14;
    border: 1px solid #ffe58f;
}

.status-badge.default {
    background: #f5f5f5;
    color: #8c8c8c;
    border: 1px solid #d9d9d9;
}

.menu-arrow {
    font-size: 14px;
    color: #bfbfbf;
    font-weight: 600;
    transition: all 0.3s ease;
    transform: translateX(0);
}

.profile-menu-item:hover .menu-arrow {
    color: #1677ff;
    transform: translateX(4px);
}

.logout-section {
    padding: 0 24px 24px 24px;
}

.modern-logout-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, #ff4d4f, #cf1322);
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(255, 77, 79, 0.3);
    position: relative;
    overflow: hidden;
}

.modern-logout-btn:hover {
    background: linear-gradient(135deg, #ff7875, #ff4d4f);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 77, 79, 0.3);
}

.logout-icon {
    font-size: 16px;
}

.logout-text {
    font-weight: 600;
}

@media (max-width: 768px) {
    .modern-profile-container {
        width: 98%;
        margin: 10px auto;
        border-radius: 16px;
    }
    
    .user-info-card {
        padding: 20px;
        gap: 12px;
    }
    
    .user-avatar .avatar-circle {
        width: 56px;
        height: 56px;
    }
    
    .user-avatar .avatar-text {
        font-size: 20px;
    }
    
    .avatar-status {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
    
    .user-name {
        font-size: 18px;
    }
    
    .profile-menu-list {
        padding: 20px;
        gap: 14px;
    }
    
    .profile-menu-item {
        padding: 16px;
        gap: 14px;
        border-radius: 14px;
    }
    
    .icon-bg {
        width: 44px;
        height: 44px;
        font-size: 18px;
        border-radius: 12px;
    }
    
    .menu-item-title {
        font-size: 15px;
    }
    
    .menu-item-desc {
        font-size: 13px;
    }
    
    .logout-section {
        padding: 0 20px 20px 20px;
    }
    
    .modern-logout-btn {
        padding: 14px 20px;
        font-size: 15px;
        border-radius: 14px;
    }
}

/* ==================== 个人中心子页面样式 ==================== */
.info-modal, .verification-modal, .bank-card-modal, .my-claims-modal, .security-modal, .change-password-modal {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.basic-info-container, .verification-info-container, .bank-card-container, .my-claims-container, .account-security-container, .change-password-container {
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    margin: auto;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: slideInFromBottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-header {
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.info-header h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #4285F4;
}

.info-header p {
    font-size: 14px;
    color: #8c8c8c;
    margin: 0;
}

.info-header.success {
    background: linear-gradient(135deg, #52c41a, #389e0d);
    color: white;
    border-bottom: none;
}

.info-header.success h3, .info-header.success p {
    color: white;
}

.info-header.warning {
    background: linear-gradient(135deg, #faad14, #d48806);
    color: white;
    border-bottom: none;
}

.info-header.warning h3, .info-header.warning p {
    color: white;
}

.info-header.pending {
    background: linear-gradient(135deg, #1677ff, #0958d9);
    color: white;
    border-bottom: none;
}

.info-header.pending h3, .info-header.pending p {
    color: white;
}

.status-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.info-form, .verification-form, .bank-card-form, .password-form {
    padding: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #4a4a4a;
    margin-bottom: 8px;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: #1677ff;
    box-shadow: 0 0 0 3px rgba(22, 119, 255, 0.1);
}

/* Enhanced form validation styles */
.form-group input.error {
    border-color: #ff4d4f;
    background-color: #fff2f0;
}

.form-group input.error:focus {
    border-color: #ff4d4f;
    box-shadow: 0 0 0 3px rgba(255, 77, 79, 0.1);
}

.form-group input.success {
    border-color: #52c41a;
    background-color: #f6ffed;
}

.form-group input.success:focus {
    border-color: #52c41a;
    box-shadow: 0 0 0 3px rgba(82, 196, 26, 0.1);
}

.input-error {
    display: none;
    color: #ff4d4f;
    font-size: 12px;
    margin-top: 4px;
    font-weight: 500;
    line-height: 1.4;
}

.input-hint {
    color: #8c8c8c;
    font-size: 12px;
    margin-top: 4px;
    line-height: 1.4;
}

.form-group input.disabled-input {
    background: #f5f5f5;
    color: #8c8c8c;
    cursor: not-allowed;
}

.info-note {
    background: #f0f8ff;
    border: 1px solid #bae7ff;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 20px;
}

.info-note p {
    font-size: 14px;
    color: #1677ff;
    margin: 0;
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.update-btn, .submit-btn, .bind-btn, .save-btn {
    flex: 1;
    padding: 14px;
    background: linear-gradient(135deg, #1677ff, #0958d9);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.update-btn:hover, .submit-btn:hover, .bind-btn:hover, .save-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(22, 119, 255, 0.3);
}

.update-btn:disabled, .submit-btn:disabled, .bind-btn:disabled, .save-btn:disabled,
.update-btn.disabled, .submit-btn.disabled, .bind-btn.disabled, .save-btn.disabled {
    background: #d9d9d9;
    color: #8c8c8c;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.update-btn:disabled:hover, .submit-btn:disabled:hover, .bind-btn:disabled:hover, .save-btn:disabled:hover,
.update-btn.disabled:hover, .submit-btn.disabled:hover, .bind-btn.disabled:hover, .save-btn.disabled:hover {
    transform: none;
    box-shadow: none;
    background: #d9d9d9;
}

.cancel-btn {
    flex: 1;
    padding: 14px;
    background: #f5f5f5;
    color: #8c8c8c;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cancel-btn:hover {
    background: #e8e8e8;
}

.verified-info, .pending-info {
    padding: 24px;
}

.verified-info .info-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.verified-info .info-item:last-child {
    border-bottom: none;
}

.verified-info .label {
    font-size: 14px;
    color: #8c8c8c;
}

.verified-info .value {
    font-size: 14px;
    font-weight: 500;
    color: #4285F4;
}

.verification-tips, .bind-tips {
    background: #fafafa;
    border-radius: 8px;
    padding: 16px;
    margin-top: 20px;
}

.verification-tips h4, .bind-tips h4 {
    font-size: 14px;
    font-weight: 600;
    color: #4285F4;
    margin: 0 0 8px 0;
}

.verification-tips ul, .bind-tips ul {
    margin: 0;
    padding-left: 16px;
}

.verification-tips li, .bind-tips li {
    font-size: 13px;
    color: #8c8c8c;
    margin-bottom: 4px;
}

.bank-card-info {
    padding: 24px;
}

.card-display {
    background: linear-gradient(135deg, #1677ff, #0958d9);
    border-radius: 12px;
    padding: 20px;
    color: white;
    margin-bottom: 20px;
}

.card-bank {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.card-number {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.card-holder {
    font-size: 14px;
    opacity: 0.9;
}

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

.change-btn {
    padding: 10px 24px;
    background: #f5f5f5;
    color: #8c8c8c;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.change-btn:hover {
    background: #e8e8e8;
}

.claims-header {
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.claims-header h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #4285F4;
}

.claims-header p {
    font-size: 14px;
    color: #8c8c8c;
    margin: 0;
}

.no-claims {
    padding: 40px 24px;
    text-align: center;
}

.no-claims-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.no-claims h4 {
    font-size: 18px;
    font-weight: 600;
    color: #4285F4;
    margin: 0 0 8px 0;
}

.no-claims p {
    font-size: 14px;
    color: #8c8c8c;
    margin: 0 0 20px 0;
}

.start-claim-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #1677ff, #0958d9);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.start-claim-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(22, 119, 255, 0.3);
}

.claims-list {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.claim-card {
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.claim-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
    border-color: #d9d9d9;
}

.claim-card .claim-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.claim-card .claim-number {
    font-size: 16px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.claim-card .claim-status {
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.claim-status.status-submitted {
    background: #e6f7ff;
    color: #1890ff;
}

.claim-status.status-reviewing {
    background: #fff7e6;
    color: #fa8c16;
}

.claim-status.status-approved {
    background: #f6ffed;
    color: #52c41a;
}

.claim-status.status-rejected {
    background: #fff2f0;
    color: #ff4d4f;
}

.claim-status.status-paid {
    background: #f9f0ff;
    color: #722ed1;
}

.claim-card .claim-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.claim-card .detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.claim-card .detail-row .label {
    color: #8c8c8c;
}

.claim-card .detail-row .value {
    color: #4285F4;
    font-weight: 500;
}

.claim-card .detail-row .amount {
    color: #ff4d4f;
    font-weight: 600;
}

/* 现代化安全设置样式 */
.security-modal-modern {
    background: #f5f7fa;
}

.security-center-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    max-width: 480px;
    margin: 0 auto;
}

.security-header-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.security-header-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.header-gradient {
    position: relative;
    z-index: 1;
}

.security-icon-wrapper {
    margin-bottom: 16px;
}

.security-shield-icon {
    font-size: 48px;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.security-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.security-subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
    font-weight: 400;
}

.security-content {
    background: #f5f7fa;
    padding: 16px;
    border-radius: 24px 24px 0 0;
    margin-top: -20px;
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 200px);
}

/* 安全等级概览 */
.security-overview {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.security-level {
    display: flex;
    align-items: center;
    gap: 16px;
}

.level-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 14px;
}

.level-indicator.high {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
}

.level-indicator.medium {
    background: linear-gradient(135deg, #ff9800, #ffb74d);
    color: white;
}

.level-indicator.low {
    background: linear-gradient(135deg, #f44336, #ef5350);
    color: white;
}

.level-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    animation: pulse 2s infinite;
}

.security-score {
    text-align: right;
}

.score-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

.score-value {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

/* 现代化安全项目列表 */
.security-items-modern {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.security-card {
    background: white;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.security-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.card-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.card-icon.password-icon {
    background: linear-gradient(135deg, #2196f3, #64b5f6);
    color: white;
}

.card-icon.phone-icon {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
}

.card-icon.identity-icon {
    background: linear-gradient(135deg, #ff9800, #ffb74d);
    color: white;
}

.card-icon.identity-icon.verified {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
}

.card-icon.device-icon {
    background: linear-gradient(135deg, #9c27b0, #ba68c8);
    color: white;
}

.card-content {
    flex: 1;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px 0;
}

.card-desc {
    font-size: 14px;
    color: #666;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.security-tips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tip-item {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 500;
}

.tip-item.verified-tip {
    background: #e8f5e8;
    color: #2e7d32;
}

.tip-item.warning-tip {
    background: #fff3e0;
    color: #ef6c00;
}

.tip-item:not(.verified-tip):not(.warning-tip) {
    background: #f5f5f5;
    color: #666;
}

.security-action-btn {
    background: linear-gradient(135deg, #2196f3, #64b5f6);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.security-action-btn:hover {
    background: linear-gradient(135deg, #1976d2, #42a5f5);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
    transform: translateY(-1px);
}

.security-action-btn:active {
    transform: translateY(0);
}

.security-status-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.security-status-badge.verified {
    background: #e8f5e8;
    color: #2e7d32;
}

.security-status-badge.warning {
    background: #fff3e0;
    color: #ef6c00;
}

/* 安全建议 */
.security-recommendations {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.recommendations-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 16px 0;
}

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

.recommendation-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.recommendation-item:hover {
    background: #e9ecef;
}

.rec-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.rec-icon.warning {
    background: #fff3e0;
}

.rec-icon.info {
    background: #e3f2fd;
}

.rec-icon.tip {
    background: #f3e5f5;
}

.rec-text {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

/* 响应式设计优化 */
@media (max-width: 768px) {
    .security-center-container {
        max-width: 100%;
    }
    
    .security-header-modern {
        padding: 24px 16px;
    }
    
    .security-title {
        font-size: 24px;
    }
    
    .security-content {
        padding: 12px;
        border-radius: 16px 16px 0 0;
    }
    
    .security-items-modern {
        gap: 12px;
        margin-bottom: 16px;
    }
    
    .security-card {
        padding: 14px;
        border-radius: 10px;
    }
    
    .card-left {
        gap: 12px;
    }
    
    .card-icon {
        width: 36px;
        height: 36px;
    }
    
    .card-title {
        font-size: 15px;
    }
    
    .card-desc {
        font-size: 13px;
    }
    
    .security-action-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .security-recommendations {
        padding: 16px;
        border-radius: 10px;
    }
    
    .recommendations-title {
        font-size: 16px;
    }
}

.security-items {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
}

.security-item .item-icon {
    font-size: 24px;
    width: 40px;
    text-align: center;
}

.security-item .item-content {
    flex: 1;
}

.security-item .item-title {
    font-size: 16px;
    font-weight: 600;
    color: #4285F4;
    margin-bottom: 4px;
}

.security-item .item-desc {
    font-size: 14px;
    color: #8c8c8c;
}

.security-btn {
    padding: 8px 16px;
    background: #1677ff;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.security-btn:hover {
    background: #0958d9;
}

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

.security-status.verified {
    background: #f6ffed;
    color: #52c41a;
    border: 1px solid #b7eb8f;
}

.security-status.pending {
    background: #fffbe6;
    color: #faad14;
    border: 1px solid #ffe58f;
}

.password-tips {
    margin-top: 8px;
}

.password-tips p {
    font-size: 12px;
    color: #8c8c8c;
    margin: 0;
}

@media (max-width: 768px) {
    .basic-info-container, .verification-info-container, .bank-card-container, .my-claims-container, .account-security-container, .change-password-container {
        width: 95%;
        margin: 10px auto;
    }
    
    .info-header, .info-form, .verification-form, .bank-card-form, .verified-info, .pending-info, .bank-card-info, .claims-header, .claims-list, .security-items, .password-form {
        padding: 20px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .claim-card .claim-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .claim-card .detail-row {
        flex-direction: column;
        gap: 4px;
    }
    
    .security-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

/* ==================== 通知消息样式 ==================== */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 99999;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transform: translateX(400px);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  max-width: 320px;
  word-wrap: break-word;
}

.notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notification.success {
  background-color: #f6ffed;
  border: 1px solid #b7eb8f;
  color: #389e0d;
}

.notification.error {
  background-color: #fff2f0;
  border: 1px solid #ffccc7;
  color: #cf1322;
}

.notification.warning {
  background-color: #fffbe6;
  border: 1px solid #ffe58f;
  color: #d48806;
}

.notification.info {
  background-color: #e6f7ff;
  border: 1px solid #91d5ff;
  color: #0958d9;
}

@media (max-width: 768px) {
  .notification {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
    transform: translateY(-100px);
  }
  
  .notification.show {
    transform: translateY(0);
  }
}

/* ==================== 增强投诉建议模态框样式 ==================== */
.advice-modal-enhanced .modal-content {
  max-width: 600px;
  max-height: 80vh;
  overflow: hidden;
}

.advice-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.advice-header {
  background: linear-gradient(135deg, #1677ff, #0958d9);
  color: white;
  padding: 0;
  margin: -24px -24px 0 -24px;
}

.tab-navigation {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.tab-btn {
  flex: 1;
  padding: 16px 24px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.tab-btn.active {
  color: white;
  border-bottom-color: white;
  background: rgba(255, 255, 255, 0.1);
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.tab-content {
  display: none;
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.tab-content.active {
  display: flex;
  flex-direction: column;
}

.advice-submit-section h3 {
  margin: 0 0 8px 0;
  font-size: 20px;
  color: #4285F4;
}

.advice-submit-section p {
  margin: 0 0 24px 0;
  color: #666;
}

.advice-history-section h3 {
  margin: 0 0 20px 0;
  font-size: 20px;
  color: #4285F4;
}

/* 投诉建议卡片样式 */
.complaints-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.complaint-card {
  background: white;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

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

.complaint-type {
  display: flex;
  align-items: center;
  gap: 8px;
}

.type-icon {
  font-size: 18px;
}

.type-text {
  font-size: 14px;
  font-weight: 500;
  color: #666;
}

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

.complaint-status.status-pending {
  background: #fff7e6;
  color: #fa8c16;
}

.complaint-status.status-processing {
  background: #e6f7ff;
  color: #1890ff;
}

.complaint-status.status-resolved {
  background: #f6ffed;
  color: #52c41a;
}

.unread-badge {
  background: #ff4d4f;
  color: white;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 500;
  margin-left: 8px;
}

.complaint-content {
  margin-bottom: 16px;
}

.complaint-title {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 600;
  color: #4285F4;
}

.complaint-desc {
  margin: 0;
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.complaint-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.complaint-date {
  font-size: 12px;
  color: #999;
}

.view-messages-btn {
  background: linear-gradient(135deg, #1677ff, #0958d9);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-messages-btn:hover {
  background: linear-gradient(135deg, #0958d9, #0741c7);
  transform: translateY(-1px);
}

/* 加载和空状态样式 */
.loading-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  color: #666;
}

.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #1677ff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 12px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: #666;
}

.empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.5;
}

.empty-text {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #333;
}

.empty-desc {
  font-size: 14px;
  color: #999;
}

/* 消息模态框样式 */
.messages-modal .modal-content {
  max-width: 500px;
  max-height: 70vh;
}

.messages-modal-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.messages-header {
  text-align: center;
  margin-bottom: 20px;
}

.messages-header h3 {
  margin: 0 0 8px 0;
  font-size: 20px;
  color: #4285F4;
}

.messages-header p {
  margin: 0;
  color: #666;
  font-size: 14px;
}

.messages-list {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 20px;
}

.message-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
  position: relative;
  border-left: 4px solid #e9ecef;
}

.message-card.unread {
  background: #e6f7ff;
  border-left-color: #1890ff;
}

.message-header {
  margin-bottom: 12px;
}

.message-title {
  font-size: 16px;
  font-weight: 600;
  color: #4285F4	;
  margin-bottom: 6px;
}

.message-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #666;
}

.message-content {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

.unread-indicator {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #ff4d4f;
  color: white;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 500;
}

.no-messages {
  text-align: center;
  padding: 40px 20px;
  color: #666;
}

.no-messages-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.5;
}

.no-messages-text {
  font-size: 16px;
  color: #333;
}

.messages-actions {
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid #e9ecef;
}

.btn-close {
  background: #f5f5f5;
  color: #666;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-close:hover {
  background: #e8e8e8;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .advice-modal-enhanced .modal-content {
    max-width: 95%;
    max-height: 90vh;
  }
  
  .tab-btn {
    padding: 12px 16px;
    font-size: 14px;
  }
  
  .tab-content {
    padding: 16px;
  }
  
  .complaint-card {
    padding: 12px;
  }
  
  .complaint-footer {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  
  .messages-modal .modal-content {
    max-width: 95%;
    max-height: 85vh;
  }
  
  .message-card {
    padding: 12px;
  }
}

/* ==================== 智能表单错误预测样式 ==================== */
.field-prediction {
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    margin-top: 4px;
    animation: slideIn 0.3s ease;
}

.field-prediction.info {
    background: #e6f7ff;
    color: #1890ff;
    border: 1px solid #91d5ff;
}

.field-prediction.warning {
    background: #fff7e6;
    color: #fa8c16;
    border: 1px solid #ffd591;
}

.field-prediction.error {
    background: #fff2f0;
    color: #ff4d4f;
    border: 1px solid #ffccc7;
}

.field-prediction.success {
    background: #f6ffed;
    color: #52c41a;
    border: 1px solid #b7eb8f;
}

.field-hint {
    padding: 4px 8px;
    background: #fafafa;
    color: #666;
    font-size: 11px;
    border-radius: 3px;
    margin-top: 2px;
    border: 1px solid #d9d9d9;
    animation: fadeIn 0.2s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Input field states */
.input-field input.error,
.password-field input.error {
    border-color: #ff4d4f;
    box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.2);
}

.input-field input.success,
.password-field input.success {
    border-color: #52c41a;
    box-shadow: 0 0 0 2px rgba(82, 196, 26, 0.2);
}

.input-field input.error:focus,
.password-field input.error:focus {
    border-color: #ff4d4f;
    box-shadow: 0 0 0 3px rgba(255, 77, 79, 0.15);
}

.input-field input.success:focus,
.password-field input.success:focus {
    border-color: #52c41a;
    box-shadow: 0 0 0 3px rgba(82, 196, 26, 0.15);
}

/* 响应式设计 - 横幅优化 */
@media (max-width: 768px) {
    .top-banner {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .banner-left {
        margin-right: 0;
    }
    
    .banner-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .banner-description {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .banner-right {
        width: 80px;
        height: 60px;
        align-self: center;
    }
}

@media (max-width: 480px) {
    .clean-auth-wrapper {
        padding: 10px;
    }
    
    .auth-content {
        padding: 20px;
    }
    
    .auth-header h2 {
        font-size: 20px;
    }
    
    .top-banner {
        padding: 0.75rem;
        border-radius: 0 0 12px 12px;
    }
    
    .banner-title {
        font-size: 1.25rem;
        line-height: 1.3;
    }
    
    .banner-tags {
        justify-content: center;
        margin-bottom: 0.5rem;
    }
    
    .tag {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }
    
    .banner-description {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .banner-right {
        width: 70px;
        height: 50px;
        margin-top: 0.5rem;
    }
}

/* ==================== 优化理赔规则设计样式 ==================== */
.enhanced-rules-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.enhanced-rules-container {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.rules-header {
    background: linear-gradient(135deg, #4285f4, #34a853);
    padding: 24px 32px;
    color: white;
}

.rules-title-section h2 {
    margin: 0 0 8px 0;
    font-size: 28px;
    font-weight: 700;
}

.rules-subtitle {
    margin: 0;
    opacity: 0.9;
    font-size: 16px;
}

.rules-navigation {
    margin-top: 24px;
}

.nav-tabs {
    display: flex;
    gap: 8px;
}

.nav-tab {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-tab.active,
.nav-tab:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.rules-content {
    flex: 1;
    overflow-y: auto;
    padding: 32px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: tabFadeIn 0.4s ease;
}

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

/* 申请条件样式 */
.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.condition-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 24px;
    border-left: 4px solid #e9ecef;
    transition: all 0.3s ease;
}

.condition-card.primary {
    border-left-color: #4285f4;
    background: linear-gradient(135deg, #f8f9ff, #f0f4ff);
}

.condition-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.condition-card .card-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.condition-card h4 {
    margin: 0 0 12px 0;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.condition-card p {
    margin: 0 0 16px 0;
    color: #666;
    line-height: 1.6;
}

.card-detail {
    background: rgba(66, 133, 244, 0.1);
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(66, 133, 244, 0.2);
}

.detail-label {
    font-weight: 600;
    color: #4285f4;
}

.expandable-list {
    margin-top: 16px;
}

.list-header {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.expandable-list ul {
    margin: 0;
    padding-left: 20px;
}

.expandable-list li {
    margin-bottom: 6px;
    color: #666;
}

.card-tips {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tip-icon {
    color: #34a853;
    font-weight: bold;
}

/* 材料类别样式 */
.materials-sections {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.material-category {
    border: 2px solid #e9ecef;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.material-category:hover {
    border-color: #4285f4;
    box-shadow: 0 4px 16px rgba(66, 133, 244, 0.1);
}

.category-header {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.category-icon {
    font-size: 24px;
}

.category-header h4 {
    margin: 0;
    flex: 1;
    font-size: 20px;
    font-weight: 600;
}

.required-badge {
    background: #dc3545;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.conditional-badge {
    background: #fd7e14;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.material-list {
    padding: 24px;
}

.material-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 16px;
    background: #fafafa;
    transition: all 0.3s ease;
}

.material-item:hover {
    background: #f0f4ff;
    transform: translateX(8px);
}

.item-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.item-content {
    flex: 1;
}

.item-content h5 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.item-content p {
    margin: 0 0 12px 0;
    color: #666;
    line-height: 1.5;
}

.item-actions {
    display: flex;
    gap: 8px;
}

.download-btn,
.example-btn {
    padding: 6px 12px;
    border: 1px solid #4285f4;
    background: transparent;
    color: #4285f4;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.download-btn:hover,
.example-btn:hover {
    background: #4285f4;
    color: white;
}

.format-tips,
.account-requirements {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 12px;
    color: #888;
}

/* 处理流程样式 */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: linear-gradient(to bottom, #4285f4, #34a853);
}

.timeline-item {
    display: flex;
    gap: 24px;
    position: relative;
}

.timeline-marker {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    background: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #4285f4;
}

.timeline-content h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.timeline-content p {
    margin: 0 0 16px 0;
    color: #666;
    line-height: 1.5;
}

.timeline-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
    color: #888;
}

.timeline-status {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-dot.green {
    background: #34a853;
}

.status-dot.orange {
    background: #fd7e14;
}

.investigation-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
}

.inv-type {
    background: white;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.type-label {
    display: block;
    font-weight: 600;
    font-size: 12px;
    color: #4285f4;
    margin-bottom: 4px;
}

.decision-outcomes {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.outcome {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
}

.outcome.approved {
    background: rgba(52, 168, 83, 0.1);
    border: 1px solid rgba(52, 168, 83, 0.3);
}

.outcome.denied {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.final-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

/* 时效说明样式 */
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.timeline-card {
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.timeline-card.fast {
    background: linear-gradient(135deg, #f0fff4, #e8f5e8);
}

.timeline-card.fast::before {
    background: linear-gradient(to right, #34a853, #0f9d58);
}

.timeline-card.normal {
    background: linear-gradient(135deg, #fff8e1, #fff3c4);
}

.timeline-card.normal::before {
    background: linear-gradient(to right, #fd7e14, #f57c00);
}

.timeline-card.special {
    background: linear-gradient(135deg, #f3e5f5, #e1bee7);
}

.timeline-card.special::before {
    background: linear-gradient(to right, #9c27b0, #7b1fa2);
}

.timeline-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.card-header {
    margin-bottom: 16px;
}

.speed-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
}

.speed-indicator.fast {
    background: rgba(52, 168, 83, 0.2);
    color: #0f9d58;
}

.speed-indicator.normal {
    background: rgba(253, 126, 20, 0.2);
    color: #f57c00;
}

.speed-indicator.special {
    background: rgba(156, 39, 176, 0.2);
    color: #7b1fa2;
}

.timeline-period {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.timeline-description h4 {
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.timeline-description ul {
    margin: 0;
    padding-left: 20px;
}

.timeline-description li {
    margin-bottom: 6px;
    color: #666;
}

.processing-steps {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.step {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 6px;
    margin-bottom: 6px;
    font-size: 12px;
    color: #666;
}

.complexity-factors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 8px;
    margin-top: 16px;
}

.factor {
    background: rgba(255, 255, 255, 0.8);
    padding: 8px;
    border-radius: 6px;
    font-size: 12px;
    text-align: center;
    color: #666;
}

.special-process {
    margin-top: 16px;
}

.process-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.4;
    color: #666;
}

.timeline-tips {
    background: linear-gradient(135deg, #f8f9ff, #f0f4ff);
    border-radius: 16px;
    padding: 24px;
    border: 2px solid rgba(66, 133, 244, 0.2);
}

.tips-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.tips-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tip-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #4285f4;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

.rules-footer {
    background: #f8f9fa;
    padding: 24px 32px;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-actions {
    display: flex;
    gap: 12px;
}

.btn-secondary,
.btn-primary {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn-secondary {
    background: #e9ecef;
    color: #495057;
}

.btn-secondary:hover {
    background: #dee2e6;
}

.btn-primary {
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .enhanced-rules-container {
        margin: 10px;
        max-height: 95vh;
    }
    
    .rules-header {
        padding: 20px;
    }
    
    .rules-title-section h2 {
        font-size: 24px;
    }
    
    .nav-tabs {
        flex-wrap: wrap;
    }
    
    .rules-content {
        padding: 20px;
    }
    
    .conditions-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-grid {
        grid-template-columns: 1fr;
    }
    
    .rules-footer {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-actions {
        width: 100%;
        justify-content: center;
    }
}

/* ==================== 优化帮助中心样式 ==================== */
.enhanced-help-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.enhanced-help-center {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 1100px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.help-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 24px 32px;
    color: white;
}

.header-content h2 {
    margin: 0 0 8px 0;
    font-size: 28px;
    font-weight: 700;
}

.header-content p {
    margin: 0 0 20px 0;
    opacity: 0.9;
    font-size: 16px;
}

.help-search {
    display: flex;
    gap: 12px;
    align-items: center;
}

.search-input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.search-input::placeholder {
    color: #666;
}

.search-btn {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: white;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.help-navigation {
    background: #f8f9fa;
    padding: 20px 32px;
    border-bottom: 1px solid #e9ecef;
}

.nav-categories {
    display: flex;
    gap: 8px;
    overflow-x: auto;
}

.category-btn {
    padding: 12px 20px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-btn.active,
.category-btn:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.help-content {
    flex: 1;
    overflow-y: auto;
    padding: 32px;
}

.help-category {
    display: none;
}

.help-category.active {
    display: block;
    animation: helpFadeIn 0.4s ease;
}

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

/* 操作指南样式 */
.tutorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.tutorial-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 24px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.tutorial-card:hover {
    border-color: #667eea;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
}

.tutorial-card .card-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.tutorial-card h4 {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.tutorial-card p {
    margin: 0 0 20px 0;
    color: #666;
    line-height: 1.5;
}

.tutorial-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.step-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #667eea;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

.query-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.method-item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 16px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.method-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.method-content h5 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.method-content p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.material-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.material-type {
    background: white;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.material-type h5 {
    margin: 0 0 12px 0;
    font-size: 14px;
    font-weight: 600;
    color: #667eea;
}

.material-type ul {
    margin: 0;
    padding-left: 16px;
    font-size: 13px;
    color: #666;
}

.material-type li {
    margin-bottom: 4px;
}

/* FAQ样式 */
.faq-sections {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.faq-section h4 {
    margin: 0 0 20px 0;
    font-size: 22px;
    font-weight: 600;
    color: #333;
    padding-bottom: 8px;
    border-bottom: 2px solid #667eea;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #667eea;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #333;
    background: white;
}

.expand-icon {
    font-size: 18px;
    font-weight: bold;
    color: #667eea;
    transition: transform 0.3s ease;
}

.faq-item.expanded .expand-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.faq-item.expanded .faq-answer {
    max-height: 300px;
    padding: 20px;
}

.faq-answer p {
    margin: 0 0 12px 0;
    color: #666;
    line-height: 1.6;
}

.faq-answer ul,
.faq-answer ol {
    margin: 0;
    padding-left: 20px;
    color: #666;
}

.faq-answer li {
    margin-bottom: 6px;
}

/* 故障排除样式 */
.troubleshooting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.issue-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 24px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.issue-card:hover {
    border-color: #dc3545;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(220, 53, 69, 0.15);
}

.issue-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.issue-icon {
    font-size: 32px;
}

.issue-header h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.solution-steps h5 {
    margin: 0 0 16px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.step-group {
    margin-bottom: 12px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #dc3545;
}

.problem {
    font-weight: 600;
    color: #dc3545;
    margin-bottom: 4px;
    font-size: 14px;
}

.solution {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

/* 账户管理样式 */
.account-help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.account-section h4 {
    margin: 0 0 20px 0;
    font-size: 22px;
    font-weight: 600;
    color: #333;
    padding-bottom: 8px;
    border-bottom: 2px solid #28a745;
}

.security-tips {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tip-card {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.tip-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.tip-content h5 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.tip-content p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.verification-guide {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.guide-step {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #28a745;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-info h5 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.step-info p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.help-footer {
    background: #f8f9fa;
    padding: 24px 32px;
    border-top: 1px solid #e9ecef;
}

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

.feedback-section h4 {
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.feedback-buttons {
    display: flex;
    gap: 12px;
}

.feedback-btn {
    padding: 8px 16px;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.feedback-btn:hover {
    border-color: #667eea;
    color: #667eea;
}

.contact-prompt {
    font-size: 14px;
    color: #666;
}

.contact-link {
    background: none;
    border: none;
    color: #667eea;
    text-decoration: underline;
    cursor: pointer;
    font-size: 14px;
}

.contact-link:hover {
    color: #5a6fd8;
}

/* ==================== 在线客服样式 ==================== */
.customer-service-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.customer-service-container {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.service-header {
    background: linear-gradient(135deg, #00c851, #007e33);
    padding: 20px 24px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-status {
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    position: relative;
}

.status-indicator.online::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: #fff;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.status-info h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.status-info p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

.service-hours {
    font-size: 14px;
    opacity: 0.9;
}

.chat-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.message-day {
    text-align: center;
    margin: 20px 0;
}

.message-day span {
    background: #e9ecef;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    color: #666;
}

.message {
    display: flex;
    gap: 12px;
    max-width: 80%;
}

.system-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.user-message .message-avatar {
    background: #667eea;
    color: white;
}

.message-content {
    flex: 1;
}

.message-bubble {
    padding: 12px 16px;
    border-radius: 16px;
    margin-bottom: 4px;
    line-height: 1.5;
}

.system-message .message-bubble {
    background: white;
    border: 1px solid #e9ecef;
}

.user-message .message-bubble {
    background: #667eea;
    color: white;
}

.message-bubble p {
    margin: 0;
    font-size: 14px;
}

.message-time {
    font-size: 11px;
    color: #888;
    text-align: right;
}

.user-message .message-time {
    text-align: left;
}

.quick-options {
    margin: 20px 0;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.quick-options h4 {
    margin: 0 0 16px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.option-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 8px;
}

.option-btn {
    padding: 10px 16px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    color: #333;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.option-btn:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.option-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.typing-indicator .message-bubble {
    padding: 16px;
}

.typing-dots {
    display: flex;
    gap: 4px;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #999;
    animation: typing 1.4s infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

.chat-input-area {
    background: white;
    padding: 20px;
    border-top: 1px solid #e9ecef;
}

.input-tools {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.tool-btn {
    padding: 8px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.tool-btn:hover {
    background: #e9ecef;
}

.input-container {
    display: flex;
    gap: 12px;
    align-items: flex-end;
}

#chatInput {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    resize: none;
    outline: none;
    transition: border-color 0.3s ease;
}

#chatInput:focus {
    border-color: #667eea;
}

.send-btn {
    padding: 12px 20px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.send-btn:hover {
    background: #5a6fd8;
}

.input-hint {
    margin-top: 8px;
    font-size: 12px;
    color: #888;
}

.service-info {
    background: #f8f9fa;
    padding: 20px 24px;
    border-top: 1px solid #e9ecef;
}

.info-section h4 {
    margin: 0 0 16px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.commitment-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.commitment-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
}

.commitment-icon {
    font-size: 16px;
}

.satisfaction-survey {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.rating-stars {
    display: flex;
    gap: 8px;
    margin: 12px 0;
}

.star {
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
    color: #ddd;
}

.star:hover {
    color: #ffd700;
}

.feedback-text {
    width: 100%;
    padding: 12px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    margin: 12px 0;
    resize: vertical;
    min-height: 80px;
}

.submit-feedback {
    padding: 10px 20px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.submit-feedback:hover {
    background: #218838;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .enhanced-help-center,
    .customer-service-container {
        margin: 10px;
        max-height: 95vh;
    }
    
    .help-header,
    .service-header {
        padding: 16px 20px;
    }
    
    .header-content h2,
    .status-info h3 {
        font-size: 20px;
    }
    
    .nav-categories {
        flex-wrap: wrap;
    }
    
    .help-content,
    .chat-messages,
    .chat-input-area {
        padding: 16px;
    }
    
    .tutorial-grid,
    .troubleshooting-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .option-buttons {
        grid-template-columns: 1fr;
    }
    
    .commitment-list {
        grid-template-columns: 1fr;
    }
}

/* ==================== 简化投诉建议样式 ==================== */
.simple-advice-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.simple-advice-container {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.advice-header {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    padding: 24px 32px;
    color: white;
    text-align: center;
}

.advice-header h3 {
    margin: 0 0 8px 0;
    font-size: 24px;
    font-weight: 700;
}

.advice-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 14px;
}

.simple-advice-form {
    padding: 32px;
    flex: 1;
    overflow-y: auto;
}

.feedback-type-selector {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    justify-content: center;
}

.type-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
    min-width: 80px;
}

.type-option:hover {
    border-color: #ff6b6b;
    transform: translateY(-2px);
}

.type-option.active {
    border-color: #ff6b6b;
    background: linear-gradient(135deg, #fff5f5, #ffeaea);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.2);
}

.type-icon {
    font-size: 24px;
}

.type-label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.form-field {
    margin-bottom: 20px;
    position: relative;
}

#feedbackContent {
    width: 100%;
    padding: 16px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.3s ease;
    background: #fafafa;
}

#feedbackContent:focus {
    outline: none;
    border-color: #ff6b6b;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.char-counter {
    position: absolute;
    bottom: 8px;
    right: 12px;
    font-size: 12px;
    color: #666;
    background: rgba(255, 255, 255, 0.9);
    padding: 2px 6px;
    border-radius: 4px;
}

.contact-toggle {
    margin-bottom: 16px;
}

.toggle-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.toggle-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #ff6b6b;
}

.toggle-text {
    font-weight: 500;
}

.contact-field {
    margin-bottom: 24px;
    animation: slideDown 0.3s ease;
}

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

.contact-field input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.contact-field input:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
}

.btn-cancel,
.btn-submit {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-cancel {
    background: #f8f9fa;
    color: #666;
    border: 2px solid #e9ecef;
}

.btn-cancel:hover {
    background: #e9ecef;
    color: #333;
}

.btn-submit {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.advice-tips {
    background: #f8f9fa;
    padding: 20px 32px;
    border-top: 1px solid #e9ecef;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
}

.tip-icon {
    font-size: 16px;
}

/* 响应式设计 */
@media (max-width: 600px) {
    .simple-advice-container {
        margin: 10px;
        max-height: 95vh;
    }
    
    .advice-header {
        padding: 20px;
    }
    
    .simple-advice-form {
        padding: 20px;
    }
    
    .advice-tips {
        padding: 16px 20px;
    }
    
    .feedback-type-selector {
        flex-direction: column;
        gap: 8px;
    }
    
    .type-option {
        flex-direction: row;
        justify-content: center;
        min-width: auto;
        padding: 12px 16px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-cancel,
    .btn-submit {
        width: 100%;
    }
}

/* ==================== 简化关于我们样式 ==================== */
.simple-about-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.simple-about-container {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.about-header {
    background: linear-gradient(135deg, #4285f4, #1976d2);
    padding: 24px 32px;
    color: white;
    text-align: center;
}

.about-header h3 {
    margin: 0 0 8px 0;
    font-size: 24px;
    font-weight: 700;
}

.about-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 14px;
}

.about-content {
    padding: 32px;
    flex: 1;
    overflow-y: auto;
}

.intro-section {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 32px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #4285f4;
}

.intro-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.intro-text p {
    margin: 0;
    line-height: 1.6;
    color: #333;
    font-size: 15px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 16px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: #4285f4;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(66, 133, 244, 0.15);
}

.value-icon {
    font-size: 24px;
}

.value-text {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.credentials-section {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.credentials-section h4 {
    margin: 0 0 16px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.credentials-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.credential-item {
    padding: 12px 16px;
    background: white;
    border-radius: 8px;
    border-left: 3px solid #28a745;
    font-size: 14px;
    color: #333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* 响应式设计 */
@media (max-width: 600px) {
    .simple-about-container {
        margin: 10px;
        max-height: 95vh;
    }
    
    .about-header {
        padding: 20px;
    }
    
    .about-content {
        padding: 20px;
    }
    
    .intro-section {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .credentials-section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* 银行卡表单错误样式 */
.form-group input.error {
    border-color: #ff4d4f !important;
    background-color: #fff2f0 !important;
}

.error-message {
    color: #ff4d4f;
    font-size: 12px;
    margin-top: 4px;
    padding: 0 4px;
    line-height: 1.4;
    animation: fadeInError 0.3s ease;
}

@keyframes fadeInError {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group input.error:focus {
    border-color: #ff4d4f !important;
    box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.2) !important;
}

/* 新的理赔申请表单样式 */
.claim-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.claim-header {
    background: linear-gradient(135deg, #1677ff 0%, #0958d9 100%);
    color: white;
    padding: 30px 20px;
    border-radius: 12px 12px 0 0;
    text-align: center;
    margin-bottom: 0;
}

.claim-header .header-icon {
    margin-bottom: 15px;
}

.claim-header h2 {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 600;
}

.claim-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 14px;
}

.claim-form {
    background: white;
    padding: 30px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1677ff;
    box-shadow: 0 0 0 3px rgba(22, 119, 255, 0.1);
}

.upload-area {
    border: 2px dashed #d9d9d9;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafafa;
}

.upload-area:hover {
    border-color: #1677ff;
    background: #f0f8ff;
}

.upload-area.drag-over {
    border-color: #1677ff;
    background: #e6f7ff;
}

.upload-content p {
    margin: 15px 0 5px 0;
    color: #666;
    font-size: 14px;
}

.upload-content small {
    color: #999;
    font-size: 12px;
}

.file-list {
    margin-top: 15px;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 6px;
    margin-bottom: 8px;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.file-name {
    font-weight: 500;
    color: #333;
}

.file-size {
    color: #666;
    font-size: 12px;
}

.remove-btn {
    background: #ff4d4f;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.3s ease;
}

.remove-btn:hover {
    background: #ff7875;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #1677ff 0%, #0958d9 100%);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 119, 255, 0.3);
}

.submit-btn:disabled {
    background: #d9d9d9;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* 成功页面样式 */
.success-container {
    text-align: center;
    padding: 40px 20px;
    max-width: 500px;
    margin: 0 auto;
}

.success-icon {
    margin-bottom: 30px;
}

.success-container h2 {
    color: #52c41a;
    margin-bottom: 20px;
    font-size: 24px;
}

.success-container p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.success-actions {
    margin-top: 30px;
}

.btn-primary {
    background: #1677ff;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}

/* 现代风格SVG头像样式 */
.profile-avatar .avatar-wrapper {
  background: linear-gradient(135deg, #f0f2f5 0%, #ffffff 100%) !important;
  border: 3px solid #1677ff !important;
  box-shadow: 0 4px 20px rgba(22, 119, 255, 0.2) !important;
}

.profile-avatar .avatar-icon {
  width: 80%;
  height: 80%;
}

.profile-avatar .avatar-icon circle[fill="#f0f2f5"] {
  fill: #f0f2f5;
}

.profile-avatar .avatar-icon circle[fill="#1677ff"],
.profile-avatar .avatar-icon path[stroke="#1677ff"] {
  fill: #1677ff;
  stroke: #1677ff;
}

/* 导航栏头像样式更新 */
.header-login-btn .user-avatar {
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.9) !important;
  border: 2px solid rgba(255, 255, 255, 0.6) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-right: 8px !important;
}

.header-login-btn .user-avatar svg {
  width: 20px;
  height: 20px;
}

.header-login-btn .user-avatar circle[fill="#f0f2f5"] {
  fill: rgba(240, 242, 245, 0.8);
}

.header-login-btn .user-avatar circle[fill="#1677ff"],
.header-login-btn .user-avatar path[stroke="#1677ff"] {
  fill: #1677ff;
  stroke: #1677ff;
}

/* AJAX现代头像样式 */
.user-avatar svg {
  width: 100%;
  height: 100%;
}
