@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700&display=swap');
.video-upload-modal[data-v-0ec80a60] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  backdrop-filter: blur(4px);
}
.upload-container[data-v-0ec80a60] {
  background: white;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  position: relative;
  margin: 20px;
}
.upload-header[data-v-0ec80a60] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #f0f0f0;
}
.upload-header h3[data-v-0ec80a60] {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}
.close-btn[data-v-0ec80a60] {
  background: rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.2s;
  position: relative;
  z-index: 10;
  min-width: 36px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.close-btn[data-v-0ec80a60]:hover {
  background: rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
}
.close-btn svg[data-v-0ec80a60] {
  width: 18px;
  height: 18px;
  color: #333;
}
.upload-area[data-v-0ec80a60] {
  padding: 40px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px dashed #d9d9d9;
  margin: 24px;
  border-radius: 8px;
  background: #fafafa;
}
.upload-area.drag-over[data-v-0ec80a60] {
  border-color: #0d5cb6;
  background: rgba(13, 92, 182, 0.05);
}
.upload-area.uploading[data-v-0ec80a60] {
  cursor: default;
}
.upload-prompt .upload-icon[data-v-0ec80a60] {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: #0d5cb6;
}
.upload-prompt .upload-icon svg[data-v-0ec80a60] {
  width: 100%;
  height: 100%;
}
.upload-text[data-v-0ec80a60] {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin: 0 0 8px;
}
.upload-hint[data-v-0ec80a60] {
  font-size: 14px;
  color: #666;
  margin: 0 0 20px 0;
}
.upload-actions[data-v-0ec80a60] {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.cancel-upload-btn[data-v-0ec80a60] {
  padding: 10px 24px;
  background: #f5f5f5;
  color: #666;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.cancel-upload-btn[data-v-0ec80a60]:hover {
  background: #e5e5e5;
  color: #333;
  border-color: #bbb;
}
.upload-progress[data-v-0ec80a60] {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.progress-circle[data-v-0ec80a60] {
  position: relative;
  margin-bottom: 16px;
}
.progress-ring[data-v-0ec80a60] {
  transform: rotate(-90deg);
}
.progress-ring-circle[data-v-0ec80a60] {
  fill: transparent;
  stroke: #0d5cb6;
  stroke-width: 3;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.3s ease;
}
.progress-text[data-v-0ec80a60] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  font-weight: 600;
  color: #0d5cb6;
}
.upload-status[data-v-0ec80a60] {
  font-size: 14px;
  color: #666;
  margin: 0;
}
.upload-success .success-icon[data-v-0ec80a60] {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: #52c41a;
}
.upload-success .success-icon svg[data-v-0ec80a60] {
  width: 100%;
  height: 100%;
}
.success-text[data-v-0ec80a60] {
  font-size: 16px;
  font-weight: 500;
  color: #52c41a;
  margin: 0 0 16px;
}
.file-preview[data-v-0ec80a60] {
  margin-bottom: 20px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  background: #f9fafb;
}
.preview-container[data-v-0ec80a60] {
  position: relative;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  max-height: 200px;
}
.preview-image[data-v-0ec80a60] {
  max-width: 100%;
  max-height: 200px;
  object-fit: contain;
}
.preview-video[data-v-0ec80a60] {
  max-width: 100%;
  max-height: 200px;
  background: #000;
}
.preview-error[data-v-0ec80a60] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  padding: 20px;
}
.preview-error svg[data-v-0ec80a60] {
  width: 32px;
  height: 32px;
}
.preview-error span[data-v-0ec80a60] {
  font-size: 14px;
}
.file-info[data-v-0ec80a60] {
  padding: 12px 16px;
  border-top: 1px solid #e5e7eb;
  background: white;
}
.file-name[data-v-0ec80a60] {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  word-break: break-all;
}
.file-size[data-v-0ec80a60] {
  margin: 0;
  font-size: 12px;
  color: #6b7280;
}
.url-display[data-v-0ec80a60] {
  display: flex;
  gap: 8px;
  width: 100%;
}
.url-input[data-v-0ec80a60] {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  font-size: 14px;
  color: #666;
  background: #f9f9f9;
}
.copy-btn[data-v-0ec80a60] {
  padding: 8px 16px;
  background: #0d5cb6;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.copy-btn[data-v-0ec80a60]:hover {
  background: #0a4a9a;
}
.copy-btn.copied[data-v-0ec80a60] {
  background: #52c41a;
}
.success-actions[data-v-0ec80a60] {
  margin-top: 16px;
  text-align: center;
}
.close-success-btn[data-v-0ec80a60] {
  padding: 8px 24px;
  background: #6b7280;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.close-success-btn[data-v-0ec80a60]:hover {
  background: #4b5563;
}
.error-message[data-v-0ec80a60] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: #fff2f0;
  color: #ff4d4f;
  border-top: 1px solid #ffccc7;
}
.error-content[data-v-0ec80a60] {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.error-content svg[data-v-0ec80a60] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.clear-error-btn[data-v-0ec80a60] {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  color: #ff4d4f;
  transition: background-color 0.2s;
  flex-shrink: 0;
}
.clear-error-btn[data-v-0ec80a60]:hover {
  background: rgba(255, 77, 79, 0.1);
}
.clear-error-btn svg[data-v-0ec80a60] {
  width: 14px;
  height: 14px;
}
@media (max-width: 768px) {
.upload-container[data-v-0ec80a60] {
    width: 95%;
    margin: 20px;
}
.upload-area[data-v-0ec80a60] {
    padding: 30px 20px;
}
.url-display[data-v-0ec80a60] {
    flex-direction: column;
}
.copy-btn[data-v-0ec80a60] {
    width: 100%;
}
}

.app-navigation[data-v-006484b9] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height-desktop);
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-nav);
  transition: all var(--transition-normal) ease;
  z-index: var(--z-nav);
}
.nav-scrolled[data-v-006484b9] {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}
.nav-container[data-v-006484b9] {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}

/* 移动端左侧区域 */
.nav-left[data-v-006484b9] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mobile-user-avatar-left[data-v-006484b9] {
  display: none;
}
.default-avatar-left[data-v-006484b9],
.user-avatar-left[data-v-006484b9] {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(13, 92, 182, 0.3);
  cursor: pointer;
  transition: all var(--transition-normal) ease;
}
.default-avatar-left[data-v-006484b9]:hover,
.user-avatar-left[data-v-006484b9]:hover {
  border-color: var(--color-rescue-blue);
  transform: scale(1.05);
}

/* Logo区域 */
.nav-logo[data-v-006484b9] {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.logo-icon[data-v-006484b9] {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal) ease;
}
.logo-icon[data-v-006484b9]:hover {
  transform: scale(1.05);
}
.logo-image[data-v-006484b9] {
  width: 96px;
  height: 96px;
  object-fit: contain;
}
.logo-text[data-v-006484b9] {
  display: flex;
  flex-direction: row;
  line-height: 1.2;
}
.logo-main[data-v-006484b9] {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-blue);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo-sub[data-v-006484b9] {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 400;
}

/* 导航菜单 */
.nav-menu[data-v-006484b9] {
  flex: 1;
  display: flex;
  justify-content: center;
}
.menu-list[data-v-006484b9] {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.menu-item[data-v-006484b9] {
  position: relative;
}
.menu-link[data-v-006484b9] {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 12px;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all var(--transition-normal) ease;
  position: relative;
  text-align: center;
  line-height: 1.2;
}
.menu-subtitle[data-v-006484b9] {
  font-size: 0.7rem;
  color: var(--text-secondary);
  margin-top: 2px;
  font-weight: 400;
}
.menu-link[data-v-006484b9]::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--color-rescue-blue);
  transition: all var(--transition-normal) ease;
  transform: translateX(-50%);
}
.menu-link[data-v-006484b9]:hover::after,
.menu-link.active[data-v-006484b9]::after {
  width: 100%;
}
.menu-link.active[data-v-006484b9] {
  color: var(--color-rescue-blue);
}
.menu-link:hover .menu-subtitle[data-v-006484b9],
.menu-link.active .menu-subtitle[data-v-006484b9] {
  color: var(--color-rescue-blue);
}

/* 导航操作区域 */
.nav-actions[data-v-006484b9] {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* 移动端默认头像 */
.mobile-user-avatar[data-v-006484b9] {
  display: none;
}
.default-avatar[data-v-006484b9] {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(13, 92, 182, 0.3);
  cursor: pointer;
  transition: all var(--transition-normal) ease;
}
.default-avatar[data-v-006484b9]:hover {
  border-color: var(--color-rescue-blue);
  transform: scale(1.05);
}

/* 用户认证按钮 */
.auth-buttons[data-v-006484b9] {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.login-btn[data-v-006484b9],
.register-btn[data-v-006484b9] {
  padding: 8px 16px;
  border: 1px solid var(--color-rescue-blue);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-normal) ease;
}
.login-btn[data-v-006484b9] {
  background: transparent;
  color: var(--color-rescue-blue);
}
.login-btn[data-v-006484b9]:hover {
  background: var(--color-rescue-blue);
  color: white;
}
.register-btn[data-v-006484b9] {
  background: var(--color-rescue-blue);
  color: white;
}
.register-btn[data-v-006484b9]:hover {
  background: var(--color-rescue-blue-dark, #2563eb);
  transform: translateY(-1px);
}

/* 用户区域 */
.user-area[data-v-006484b9] {
  position: relative;
}
.user-info[data-v-006484b9] {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 25px;
  cursor: pointer;
  transition: all var(--transition-normal) ease;
  background: rgba(255, 255, 255, 0.1);
}
.user-info[data-v-006484b9]:hover {
  background: rgba(255, 255, 255, 0.15);
}
.user-avatar[data-v-006484b9] {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.8);
  transition: all var(--transition-normal) ease;
}
.user-name[data-v-006484b9] {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dropdown-icon[data-v-006484b9] {
  width: 16px;
  height: 16px;
  color: var(--text-secondary);
  transition: transform var(--transition-normal) ease;
}
.user-info:hover .dropdown-icon[data-v-006484b9] {
  transform: rotate(180deg);
}

/* 用户下拉菜单 */
.user-dropdown[data-v-006484b9] {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 280px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  z-index: 1000;
  animation: dropdownSlideIn-006484b9 0.2s ease-out;
}
.user-dropdown-left[data-v-006484b9] {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 250px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  z-index: 1000;
  animation: dropdownSlideIn-006484b9 0.2s ease-out;
  display: none;
}
.user-profile[data-v-006484b9] {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}
.profile-avatar[data-v-006484b9] {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
}
.profile-avatar[data-v-006484b9]:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.profile-info[data-v-006484b9] {
  flex: 1;
}
.profile-name[data-v-006484b9] {
  margin: 0 0 4px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}
.profile-email[data-v-006484b9] {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.dropdown-divider[data-v-006484b9] {
  height: 1px;
  background: #e5e7eb;
  margin: 0;
}
.dropdown-item[data-v-006484b9] {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 20px;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.9rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition-normal) ease;
}
.dropdown-item[data-v-006484b9]:hover {
  background: #f3f4f6;
}
.dropdown-item.logout[data-v-006484b9] {
  color: #dc2626;
}
.dropdown-item.logout[data-v-006484b9]:hover {
  background: #fef2f2;
}
.dropdown-item svg[data-v-006484b9] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
@keyframes dropdownSlideIn-006484b9 {
from {
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
}
to {
    opacity: 1;
    transform: translateY(0) scale(1);
}
}

/* 紧急按钮 */
.emergency-btn[data-v-006484b9] {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #ff4757, #ff3838);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-normal) ease;
  box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
}
.emergency-btn[data-v-006484b9]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4);
  background: linear-gradient(135deg, #ff3838, #ff2f2f);
}
.emergency-icon[data-v-006484b9] {
  width: 20px;
  height: 20px;
  animation: emergencyPulse-006484b9 2s infinite;
}
@keyframes emergencyPulse-006484b9 {
0%, 100% { 
    transform: scale(1);
    filter: brightness(1);
}
50% { 
    transform: scale(1.1);
    filter: brightness(1.2);
}
}

/* 移动端菜单按钮 */
.mobile-menu-btn[data-v-006484b9] {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger-line[data-v-006484b9] {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 2px 0;
  transition: all var(--transition-fast) ease;
  border-radius: 2px;
}
.mobile-menu-btn.active .hamburger-line[data-v-006484b9]:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.active .hamburger-line[data-v-006484b9]:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active .hamburger-line[data-v-006484b9]:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* 移动端样式 */
@media (max-width: 768px) {
.app-navigation[data-v-006484b9] {
    height: var(--nav-height-mobile);
}
.nav-menu[data-v-006484b9] {
    position: fixed;
    top: var(--nav-height-mobile);
    left: 0;
    width: 100%;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    padding: 2rem 1rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal) ease;
}
.nav-menu.menu-open[data-v-006484b9] {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.menu-list[data-v-006484b9] {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}
.menu-link[data-v-006484b9] {
    padding: 16px;
    font-size: 1.1rem;
}
.logo-text[data-v-006484b9] {
    display: flex;
}
.logo-main[data-v-006484b9] {
    font-size: 1.2rem;
}
.logo-icon[data-v-006484b9] {
    width: 80px;
    height: 80px;
}
.logo-image[data-v-006484b9] {
    width: 80px;
    height: 80px;
}
.emergency-btn[data-v-006484b9] {
    padding: 10px 16px;
    font-size: 0.8rem;
}
.emergency-text[data-v-006484b9] {
    display: none;
}
.auth-buttons[data-v-006484b9] {
    display: none;
}
.mobile-user-avatar[data-v-006484b9] {
    display: none;
}
.mobile-user-avatar-left[data-v-006484b9] {
    display: block;
}
.user-name[data-v-006484b9] {
    display: none;
}
.user-avatar[data-v-006484b9] {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.6);
}
.user-dropdown[data-v-006484b9] {
    right: 0;
    min-width: 250px;
}
.user-dropdown-left[data-v-006484b9] {
    display: block;
}
}
@media (min-width: 769px) {
.mobile-menu-btn[data-v-006484b9] {
    display: none;
}
}

.app-footer[data-v-be162373] {
  background: var(--bg-footer);
  color: var(--text-white);
  margin-top: auto;
}
.footer-container[data-v-be162373] {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-content[data-v-be162373] {
  padding: 1.5rem 1rem 1rem;
}
.footer-grid[data-v-be162373] {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1.5rem;
}

/* 标题样式 */
.footer-title[data-v-be162373] {
  position: relative;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 600;
}
.title-text[data-v-be162373] {
  color: var(--text-white);
}
.title-underline[data-v-be162373] {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--color-warning-orange);
  display: block;
}

/* 公司信息区域 */
.company-logo[data-v-be162373] {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.logo-icon[data-v-be162373] {
  width: 112px;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-image[data-v-be162373] {
  width: 112px;
  height: 112px;
  object-fit: contain;
}
.logo-text[data-v-be162373] {
  display: flex;
  flex-direction: column;
}
.logo-main[data-v-be162373] {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
}
.logo-sub[data-v-be162373] {
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 400;
}
.company-description[data-v-be162373] {
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}
.company-stats[data-v-be162373] {
  display: flex;
  gap: 1.5rem;
}
.stat-item[data-v-be162373] {
  text-align: center;
}
.stat-number[data-v-be162373] {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-warning-orange);
  font-family: 'DIN Alternate', monospace;
}
.stat-label[data-v-be162373] {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 0.5rem;
  display: block;
}

/* 快速链接 */
.footer-links[data-v-be162373] {
  list-style: none;
  padding: 0;
  margin: 0;
}
.link-item[data-v-be162373] {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  transition: all var(--transition-fast) ease;
}
.link-item[data-v-be162373]:hover {
  transform: translateX(5px);
}
.link-prefix[data-v-be162373] {
  width: 0;
  height: 0;
  border-left: 6px solid var(--color-warning-orange);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  margin-right: 0.75rem;
}
.footer-link[data-v-be162373] {
  color: var(--text-light);
  text-decoration: none;
  transition: color var(--transition-fast) ease;
}
.footer-link[data-v-be162373]:hover {
  color: var(--text-white);
}

/* 联系方式 */
.contact-info[data-v-be162373] {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-item[data-v-be162373] {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}
.contact-icon[data-v-be162373] {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-warning-orange);
  transition: all var(--transition-fast) ease;
  flex-shrink: 0;
}
.contact-icon svg[data-v-be162373] {
  width: 16px;
  height: 16px;
}
.contact-details[data-v-be162373] {
  display: flex;
  flex-direction: column;
}
.contact-label[data-v-be162373] {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}
.contact-value[data-v-be162373] {
  font-weight: 500;
  color: var(--text-white);
}

/* 认证标识 */
.certification-grid[data-v-be162373] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.cert-item[data-v-be162373] {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cert-badge[data-v-be162373] {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  transition: all var(--transition-normal) ease;
}
.cert-badge[data-v-be162373]:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.special-cert .cert-badge[data-v-be162373] {
  background: rgba(13, 92, 182, 0.8);
}
.cert-text[data-v-be162373] {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1;
}
.cert-number[data-v-be162373],
.cert-mark[data-v-be162373] {
  font-size: 0.625rem;
  color: var(--color-warning-orange);
  font-weight: 600;
}
.cert-label[data-v-be162373] {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* 版权信息 */
.footer-bottom[data-v-be162373] {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
}
.footer-bottom-content[data-v-be162373] {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.copyright p[data-v-be162373] {
  color: var(--text-light);
  font-size: 0.875rem;
}
.legal-links[data-v-be162373] {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.legal-link[data-v-be162373] {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--transition-fast) ease;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.legal-link[data-v-be162373]:hover {
  color: var(--text-white);
}
.separator[data-v-be162373] {
  color: var(--text-light);
  font-size: 0.875rem;
}

/* 弹窗样式 */
.modal-overlay[data-v-be162373] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
}
.modal-content[data-v-be162373] {
  background: white;
  border-radius: var(--border-radius-large);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.modal-header[data-v-be162373] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem 1rem;
  border-bottom: 1px solid var(--border-light);
}
.modal-title[data-v-be162373] {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}
.modal-close[data-v-be162373] {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--border-radius);
  color: var(--text-secondary);
  transition: all var(--transition-fast) ease;
}
.modal-close[data-v-be162373]:hover {
  background: var(--bg-light);
  color: var(--text-primary);
}
.modal-close svg[data-v-be162373] {
  width: 20px;
  height: 20px;
}
.modal-body[data-v-be162373] {
  padding: 0 2rem 2rem;
  overflow-y: auto;
  max-height: calc(80vh - 80px);
}
.privacy-content[data-v-be162373],
.terms-content[data-v-be162373] {
  color: var(--text-primary);
  line-height: 1.6;
}
.privacy-content h4[data-v-be162373],
.terms-content h4[data-v-be162373] {
  color: var(--text-primary);
  font-weight: 600;
  margin: 1.5rem 0 0.75rem;
  font-size: 1rem;
}
.privacy-content p[data-v-be162373],
.terms-content p[data-v-be162373] {
  margin: 0.75rem 0;
}
.privacy-content ul[data-v-be162373],
.terms-content ul[data-v-be162373] {
  margin: 0.75rem 0;
  padding-left: 1.5rem;
}
.privacy-content li[data-v-be162373],
.terms-content li[data-v-be162373] {
  margin: 0.5rem 0;
}

/* 响应式设计 */
@media (max-width: 1024px) {
.footer-grid[data-v-be162373] {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.company-stats[data-v-be162373] {
    justify-content: center;
}
}
@media (max-width: 768px) {
.footer-content[data-v-be162373] {
    padding: 3rem 1rem 1.5rem;
}
.footer-grid[data-v-be162373] {
    grid-template-columns: 1fr;
    gap: 3rem;
}
.footer-bottom-content[data-v-be162373] {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}
.legal-links[data-v-be162373] {
    flex-wrap: wrap;
    justify-content: center;
}
.company-logo[data-v-be162373] {
    justify-content: center;
    text-align: center;
}
.certification-grid[data-v-be162373] {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.modal-overlay[data-v-be162373] {
    padding: 0.5rem;
}
.modal-header[data-v-be162373] {
    padding: 1rem 1.5rem 0.75rem;
}
.modal-body[data-v-be162373] {
    padding: 0 1.5rem 1.5rem;
}
}

.file-upload[data-v-8cbc44ec] {
  width: 100%;
}
.upload-area[data-v-8cbc44ec] {
  border: 2px dashed #d1d5db;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  background: #f9fafb;
  transition: all 0.2s ease;
}
.upload-area.drag-over[data-v-8cbc44ec] {
  border-color: #3b82f6;
  background: #eff6ff;
}
.upload-prompt[data-v-8cbc44ec] {
  color: #6b7280;
}
.upload-icon[data-v-8cbc44ec] {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.upload-text[data-v-8cbc44ec] {
  margin: 1rem 0 0.5rem;
  font-size: 1.1rem;
}
.select-btn[data-v-8cbc44ec] {
  color: #3b82f6;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  font-size: inherit;
}
.upload-hint[data-v-8cbc44ec] {
  font-size: 0.9rem;
  color: #9ca3af;
  margin: 0.5rem 0 0;
}

/* 文件列表样式 */
.file-list[data-v-8cbc44ec] {
  text-align: left;
}
.file-item[data-v-8cbc44ec] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  margin-bottom: 0.5rem;
  background: white;
}
.file-info[data-v-8cbc44ec] {
  display: flex;
  align-items: center;
  flex: 1;
}
.file-icon[data-v-8cbc44ec] {
  font-size: 1.5rem;
  margin-right: 1rem;
}
.file-details[data-v-8cbc44ec] {
  flex: 1;
}
.file-name[data-v-8cbc44ec] {
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.file-size[data-v-8cbc44ec] {
  font-size: 0.9rem;
  color: #6b7280;
}
.upload-progress[data-v-8cbc44ec] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.progress-bar[data-v-8cbc44ec] {
  flex: 1;
  height: 4px;
  background: #e5e7eb;
  border-radius: 2px;
  overflow: hidden;
}
.progress-fill[data-v-8cbc44ec] {
  height: 100%;
  background: #3b82f6;
  transition: width 0.3s ease;
}
.progress-text[data-v-8cbc44ec] {
  font-size: 0.8rem;
  color: #6b7280;
  min-width: 40px;
}
.remove-btn[data-v-8cbc44ec] {
  background: #ef4444;
  color: white;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  cursor: pointer;
  font-size: 0.8rem;
}
.remove-btn[data-v-8cbc44ec]:hover:not(:disabled) {
  background: #dc2626;
}
.remove-btn[data-v-8cbc44ec]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.upload-actions[data-v-8cbc44ec] {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  justify-content: center;
}
.add-more-btn[data-v-8cbc44ec], .clear-btn[data-v-8cbc44ec] {
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: white;
  cursor: pointer;
  font-size: 0.9rem;
}
.add-more-btn[data-v-8cbc44ec]:hover:not(:disabled) {
  background: #f3f4f6;
}
.clear-btn[data-v-8cbc44ec] {
  color: #ef4444;
  border-color: #ef4444;
}
.clear-btn[data-v-8cbc44ec]:hover:not(:disabled) {
  background: #fef2f2;
}

/* 上传控件样式 */
.upload-controls[data-v-8cbc44ec] {
  margin-top: 1rem;
  text-align: center;
}
.upload-btn[data-v-8cbc44ec] {
  background: #3b82f6;
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.upload-btn[data-v-8cbc44ec]:hover:not(:disabled) {
  background: #2563eb;
}
.upload-btn[data-v-8cbc44ec]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.loading-spinner[data-v-8cbc44ec] {
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin-8cbc44ec 1s linear infinite;
}

/* 上传结果样式 */
.upload-results[data-v-8cbc44ec] {
  margin-top: 1rem;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 6px;
}
.upload-results h4[data-v-8cbc44ec] {
  margin: 0 0 1rem;
  color: #374151;
}
.result-item[data-v-8cbc44ec] {
  margin: 0.5rem 0;
  padding: 0.5rem;
  border-radius: 4px;
}
.result-success[data-v-8cbc44ec] {
  color: #065f46;
  background: #d1fae5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.result-error[data-v-8cbc44ec] {
  color: #991b1b;
  background: #fee2e2;
}
.view-link[data-v-8cbc44ec] {
  color: #3b82f6;
  text-decoration: none;
  font-size: 0.9rem;
}
.view-link[data-v-8cbc44ec]:hover {
  text-decoration: underline;
}
@keyframes spin-8cbc44ec {
0% { transform: rotate(0deg);
}
100% { transform: rotate(360deg);
}
}


/* 弹窗样式 */
.emergency-modal-overlay[data-v-185990fb] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 1rem;
}
.emergency-modal-content[data-v-185990fb] {
  background: white;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}
.emergency-modal-header[data-v-185990fb] {
  background: linear-gradient(135deg, #ff4757, #ff3838);
  color: white;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.emergency-modal-title[data-v-185990fb] {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.emergency-icon-small[data-v-185990fb] {
  font-size: 1.2rem;
}
.emergency-modal-close[data-v-185990fb] {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: background 0.2s ease;
}
.emergency-modal-close[data-v-185990fb]:hover {
  background: rgba(255, 255, 255, 0.2);
}
.emergency-modal-close svg[data-v-185990fb] {
  width: 20px;
  height: 20px;
}
.emergency-modal-body[data-v-185990fb] {
  padding: 0;
  overflow-y: auto;
  max-height: calc(90vh - 100px);
}

/* 表单样式 */
.emergency-form[data-v-185990fb] {
  padding: 1.5rem 2rem 2rem;
}
.form-section[data-v-185990fb] {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f0f0f0;
}
.form-section[data-v-185990fb]:last-child {
  border-bottom: none;
}
.section-title[data-v-185990fb] {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2c3e50;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* 位置信息样式 */
.location-info[data-v-185990fb] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.location-status[data-v-185990fb] {
  font-size: 0.9rem;
}
.location-loading[data-v-185990fb] {
  color: #3498db;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.location-error[data-v-185990fb] {
  color: #e74c3c;
}
.location-success[data-v-185990fb] {
  color: #27ae60;
}
.location-btn[data-v-185990fb] {
  background: #3498db;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: background 0.2s ease;
}
.location-btn[data-v-185990fb]:hover:not(:disabled) {
  background: #2980b9;
}
.location-btn[data-v-185990fb]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.location-details[data-v-185990fb] {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  line-height: 1.5;
}
.location-details p[data-v-185990fb] {
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* 地址详情样式 */
.address-breakdown[data-v-185990fb] {
  margin: 0.75rem 0;
  padding: 0.75rem;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  font-size: 0.8rem;
}
.address-row[data-v-185990fb] {
  display: flex;
  margin: 0.25rem 0;
  line-height: 1.4;
}
.address-label[data-v-185990fb] {
  min-width: 80px;
  font-weight: 600;
  color: #6c757d;
}
.address-value[data-v-185990fb] {
  color: #495057;
  font-weight: 500;
}
.accuracy-indicator[data-v-185990fb] {
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 12px;
  font-weight: 600;
}
.accuracy-excellent[data-v-185990fb] {
  background: #d4edda;
  color: #155724;
}
.accuracy-good[data-v-185990fb] {
  background: #d1ecf1;
  color: #0c5460;
}
.accuracy-fair[data-v-185990fb] {
  background: #fff3cd;
  color: #856404;
}
.accuracy-poor[data-v-185990fb] {
  background: #f8d7da;
  color: #721c24;
}

/* 救援情况选择样式 */
.situation-grid[data-v-185990fb] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}
.situation-btn[data-v-185990fb] {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  min-height: 100px;
}
.situation-btn[data-v-185990fb]:hover {
  border-color: #3498db;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.situation-btn.active[data-v-185990fb] {
  border-color: #ff4757;
  background: #fff5f5;
  color: #ff4757;
}
.situation-icon[data-v-185990fb] {
  font-size: 2rem;
}
.situation-text[data-v-185990fb] {
  font-weight: 600;
  text-align: center;
  font-size: 0.9rem;
}
.urgent-badge[data-v-185990fb] {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff4757;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}
.selected-situation[data-v-185990fb] {
  background: #e8f5e8;
  padding: 0.75rem;
  border-radius: 6px;
  color: #27ae60;
  font-size: 0.9rem;
}
.situation-desc[data-v-185990fb] {
  color: #666;
  font-weight: normal;
}

/* 联系信息样式 */
/* 手动位置输入样式 */
.manual-location-grid[data-v-185990fb] {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.address-search-group[data-v-185990fb] {
  position: relative;
}
.address-input-container[data-v-185990fb] {
  display: flex;
  gap: 0.5rem;
}
.address-input-container .form-input[data-v-185990fb] {
  flex: 1;
}
.address-search-btn[data-v-185990fb] {
  background: #007bff;
  color: white;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.address-search-btn[data-v-185990fb]:hover:not(:disabled) {
  background: #0056b3;
}
.address-search-btn[data-v-185990fb]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* 地址建议列表样式 */
.address-suggestions[data-v-185990fb] {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
}
.suggestion-item[data-v-185990fb] {
  padding: 0.75rem;
  cursor: pointer;
  transition: background 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
}
.suggestion-item[data-v-185990fb]:hover {
  background: #f8f9fa;
}
.suggestion-item[data-v-185990fb]:last-child {
  border-bottom: none;
}
.suggestion-name[data-v-185990fb] {
  font-weight: 600;
  color: #333;
  font-size: 0.9rem;
}
.suggestion-address[data-v-185990fb] {
  font-size: 0.8rem;
  color: #666;
  margin-top: 0.25rem;
}

/* 手动位置搜索结果 */
.manual-location-result[data-v-185990fb] {
  background: #e8f5e8;
  padding: 0.75rem;
  border-radius: 6px;
  margin: 1rem 0;
  border-left: 3px solid #28a745;
}
.manual-location-result p[data-v-185990fb] {
  margin: 0.25rem 0;
  font-size: 0.85rem;
}
.manual-coords-note[data-v-185990fb] {
  color: #28a745 !important;
  font-weight: 600;
}
.manual-location-note[data-v-185990fb] {
  background: #f8f9fa;
  padding: 0.75rem;
  border-radius: 6px;
  font-size: 0.85rem;
  color: #666;
  border-left: 3px solid #ffc107;
}

/* 文件上传样式 */
.file-section[data-v-185990fb] {
  border: none;
  padding-bottom: 1.5rem;
}
.file-upload-note[data-v-185990fb] {
  background: #e3f2fd;
  padding: 0.75rem;
  border-radius: 6px;
  font-size: 0.85rem;
  color: #1565c0;
  border-left: 3px solid #2196f3;
  margin-top: 1rem;
}

/* 信息提示样式 */
.info-tips[data-v-185990fb] {
  margin-top: 1rem;
  background: #e8f4fd;
  border: 1px solid #b3d7ff;
  border-radius: 8px;
  padding: 1rem;
}
.tip-title[data-v-185990fb] {
  font-weight: 600;
  color: #0066cc;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.tip-list[data-v-185990fb] {
  margin: 0;
  padding-left: 1rem;
  list-style: none;
}
.tip-list li[data-v-185990fb] {
  margin: 0.25rem 0;
  font-size: 0.8rem;
  color: #333;
  line-height: 1.4;
}
.contact-grid[data-v-185990fb] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group[data-v-185990fb] {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label[data-v-185990fb] {
  font-weight: 600;
  color: #2c3e50;
  font-size: 0.9rem;
}
.form-input[data-v-185990fb] {
  padding: 0.75rem;
  border: 2px solid #e9ecef;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: border-color 0.2s ease;
}
.form-input[data-v-185990fb]:focus {
  outline: none;
  border-color: #3498db;
}
.form-textarea[data-v-185990fb] {
  padding: 0.75rem;
  border: 2px solid #e9ecef;
  border-radius: 6px;
  font-size: 0.9rem;
  resize: vertical;
  font-family: inherit;
  transition: border-color 0.2s ease;
}
.form-textarea[data-v-185990fb]:focus {
  outline: none;
  border-color: #3498db;
}

/* 提交按钮样式 */
.form-actions[data-v-185990fb] {
  text-align: center;
  margin-top: 2rem;
}
.emergency-submit[data-v-185990fb] {
  background: linear-gradient(135deg, #ff4757, #ff3838);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 200px;
  justify-content: center;
}
.emergency-submit[data-v-185990fb]:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 71, 87, 0.4);
}
.emergency-submit[data-v-185990fb]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.submit-icon[data-v-185990fb] {
  font-size: 1.1rem;
}
.submit-note[data-v-185990fb] {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #666;
  line-height: 1.4;
}
.submit-note strong[data-v-185990fb] {
  color: #ff4757;
}

/* 加载动画 */
.loading-spinner[data-v-185990fb] {
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin-185990fb 1s linear infinite;
}
@keyframes spin-185990fb {
0% { transform: rotate(0deg);
}
100% { transform: rotate(360deg);
}
}

/* 响应式设计 */
@media (max-width: 768px) {
.emergency-modal-content[data-v-185990fb] {
    margin: 0.5rem;
    max-height: 95vh;
}
.emergency-modal-header[data-v-185990fb] {
    padding: 1rem 1.5rem;
}
.emergency-form[data-v-185990fb] {
    padding: 1rem 1.5rem 1.5rem;
}
.situation-grid[data-v-185990fb] {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
}
.situation-btn[data-v-185990fb] {
    padding: 0.75rem;
    min-height: 80px;
}
.situation-icon[data-v-185990fb] {
    font-size: 1.5rem;
}
.situation-text[data-v-185990fb] {
    font-size: 0.8rem;
}
.contact-grid[data-v-185990fb] {
    grid-template-columns: 1fr;
}
.manual-location-grid[data-v-185990fb] {
    grid-template-columns: 1fr;
}
.emergency-submit[data-v-185990fb] {
    width: 100%;
    min-width: unset;
}
}

.auth-modal-overlay[data-v-6c256993] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn-6c256993 0.3s ease-out;
}
.auth-modal[data-v-6c256993] {
  background: white;
  border-radius: 12px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  animation: slideUp-6c256993 0.3s ease-out;
}
.auth-modal-header[data-v-6c256993] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid #eee;
  background: #f8f9fa;
  border-radius: 12px 12px 0 0;
}
.auth-modal-header h2[data-v-6c256993] {
  margin: 0;
  color: #2c3e50;
  font-size: 20px;
  font-weight: 600;
}
.close-btn[data-v-6c256993] {
  background: none;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}
.close-btn[data-v-6c256993]:hover {
  background: #f0f0f0;
  color: #666;
}
.auth-modal-body[data-v-6c256993] {
  padding: 32px;
}
.auth-form[data-v-6c256993] {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row[data-v-6c256993] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group[data-v-6c256993] {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label[data-v-6c256993] {
  font-weight: 500;
  color: #374151;
  font-size: 14px;
}
.form-group input[data-v-6c256993] {
  padding: 12px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.2s ease;
  background: #fafafa;
}
.form-group input[data-v-6c256993]:focus {
  outline: none;
  border-color: #3b82f6;
  background: white;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.form-group input[data-v-6c256993]:invalid {
  border-color: #ef4444;
}
.form-actions[data-v-6c256993] {
  margin-top: 8px;
}
.btn-primary[data-v-6c256993] {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-primary[data-v-6c256993]:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}
.btn-primary[data-v-6c256993]:disabled {
  background: #9ca3af;
  cursor: not-allowed;
}
.form-footer[data-v-6c256993] {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.form-footer p[data-v-6c256993] {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
}
.form-footer a[data-v-6c256993] {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
}
.form-footer a[data-v-6c256993]:hover {
  text-decoration: underline;
}
.error-message[data-v-6c256993] {
  margin: 20px 32px 0;
  padding: 16px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  color: #dc2626;
}
.error-message p[data-v-6c256993] {
  margin: 0 0 8px 0;
  font-weight: 500;
}
.error-message ul[data-v-6c256993] {
  margin: 0;
  padding-left: 20px;
}
.error-message li[data-v-6c256993] {
  font-size: 14px;
  margin-bottom: 4px;
}
.success-message[data-v-6c256993] {
  margin: 20px 32px 0;
  padding: 16px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  color: #166534;
}
.success-message p[data-v-6c256993] {
  margin: 0;
  font-weight: 500;
}
@keyframes fadeIn-6c256993 {
from { opacity: 0;
}
to { opacity: 1;
}
}
@keyframes slideUp-6c256993 {
from { 
    opacity: 0;
    transform: translateY(50px) scale(0.95);
}
to { 
    opacity: 1;
    transform: translateY(0) scale(1);
}
}
@media (max-width: 640px) {
.auth-modal[data-v-6c256993] {
    margin: 20px;
    max-width: none;
}
.auth-modal-header[data-v-6c256993] {
    padding: 16px 20px;
}
.auth-modal-body[data-v-6c256993] {
    padding: 20px;
}
.form-row[data-v-6c256993] {
    grid-template-columns: 1fr;
}
.error-message[data-v-6c256993],
  .success-message[data-v-6c256993] {
    margin: 20px 20px 0;
}
}

.avatar-upload-container[data-v-beab87cb] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px;
}
.avatar-preview[data-v-beab87cb] {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid #e5e7eb;
}
.avatar-preview[data-v-beab87cb]:hover {
  border-color: #3b82f6;
  transform: scale(1.05);
}
.avatar-image[data-v-beab87cb] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.upload-overlay[data-v-beab87cb] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 12px;
  font-weight: 500;
  gap: 4px;
}
.avatar-preview:hover .upload-overlay[data-v-beab87cb] {
  opacity: 1;
}
.upload-overlay svg[data-v-beab87cb] {
  width: 24px;
  height: 24px;
}
.upload-info[data-v-beab87cb] {
  text-align: center;
}
.upload-tips[data-v-beab87cb] {
  margin: 0 0 4px 0;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}
.upload-limit[data-v-beab87cb] {
  margin: 0;
  font-size: 12px;
  color: #6b7280;
}
.upload-progress[data-v-beab87cb] {
  width: 100%;
  max-width: 300px;
}
.progress-bar[data-v-beab87cb] {
  width: 100%;
  height: 8px;
  background: #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}
.progress-fill[data-v-beab87cb] {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
  border-radius: 4px;
  transition: width 0.3s ease;
}
.progress-text[data-v-beab87cb] {
  margin: 0;
  text-align: center;
  font-size: 12px;
  color: #6b7280;
}
.error-message[data-v-beab87cb] {
  padding: 12px 16px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  color: #dc2626;
  font-size: 14px;
  text-align: center;
  max-width: 300px;
}
.error-message p[data-v-beab87cb] {
  margin: 0;
}
.success-message[data-v-beab87cb] {
  padding: 12px 16px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  color: #166534;
  font-size: 14px;
  text-align: center;
  max-width: 300px;
}
.success-message p[data-v-beab87cb] {
  margin: 0;
}
@media (max-width: 640px) {
.avatar-preview[data-v-beab87cb] {
    width: 100px;
    height: 100px;
}
.upload-overlay[data-v-beab87cb] {
    font-size: 10px;
}
.upload-overlay svg[data-v-beab87cb] {
    width: 20px;
    height: 20px;
}
}

.profile-modal-overlay[data-v-114db5b8] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn-114db5b8 0.3s ease-out;
}
.profile-modal[data-v-114db5b8] {
  background: white;
  border-radius: 12px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  animation: slideUp-114db5b8 0.3s ease-out;
}
.profile-header[data-v-114db5b8] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid #eee;
  background: #f8f9fa;
  border-radius: 12px 12px 0 0;
}
.profile-header h2[data-v-114db5b8] {
  margin: 0;
  color: #2c3e50;
  font-size: 20px;
  font-weight: 600;
}
.close-btn[data-v-114db5b8] {
  background: none;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}
.close-btn[data-v-114db5b8]:hover {
  background: #f0f0f0;
  color: #666;
}
.profile-content[data-v-114db5b8] {
  padding: 32px;
}
.avatar-section[data-v-114db5b8] {
  margin-bottom: 32px;
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid #eee;
}
.profile-form[data-v-114db5b8] {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row[data-v-114db5b8] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group[data-v-114db5b8] {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label[data-v-114db5b8] {
  font-weight: 500;
  color: #374151;
  font-size: 14px;
}
.form-group input[data-v-114db5b8] {
  padding: 12px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.2s ease;
  background: #fafafa;
}
.form-group input[data-v-114db5b8]:focus {
  outline: none;
  border-color: #3b82f6;
  background: white;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.disabled-input[data-v-114db5b8] {
  background: #f3f4f6 !important;
  color: #6b7280 !important;
  cursor: not-allowed;
}
.form-note[data-v-114db5b8] {
  font-size: 12px;
  color: #6b7280;
  margin-top: -2px;
}
.profile-stats[data-v-114db5b8] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 8px;
  margin: 20px 0;
}
.stat-item[data-v-114db5b8] {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-label[data-v-114db5b8] {
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
}
.stat-value[data-v-114db5b8] {
  font-size: 14px;
  color: #374151;
  font-weight: 600;
}
.stat-value.status[data-v-114db5b8] {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  width: fit-content;
}
.stat-value.status.active[data-v-114db5b8] {
  background: #dcfce7;
  color: #166534;
}
.stat-value.status.inactive[data-v-114db5b8] {
  background: #fef3c7;
  color: #92400e;
}
.stat-value.status.banned[data-v-114db5b8] {
  background: #fecaca;
  color: #dc2626;
}
.form-actions[data-v-114db5b8] {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
}
.btn-secondary[data-v-114db5b8],
.btn-primary[data-v-114db5b8] {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}
.btn-secondary[data-v-114db5b8] {
  background: #f3f4f6;
  color: #374151;
}
.btn-secondary[data-v-114db5b8]:hover {
  background: #e5e7eb;
}
.btn-primary[data-v-114db5b8] {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
}
.btn-primary[data-v-114db5b8]:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}
.btn-primary[data-v-114db5b8]:disabled {
  background: #9ca3af;
  cursor: not-allowed;
}
.message[data-v-114db5b8] {
  margin: 20px 32px 0;
  padding: 16px;
  border-radius: 8px;
  font-size: 14px;
}
.message.success[data-v-114db5b8] {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}
.message.error[data-v-114db5b8] {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
}
.message p[data-v-114db5b8] {
  margin: 0;
}
@keyframes fadeIn-114db5b8 {
from { opacity: 0;
}
to { opacity: 1;
}
}
@keyframes slideUp-114db5b8 {
from { 
    opacity: 0;
    transform: translateY(50px) scale(0.95);
}
to { 
    opacity: 1;
    transform: translateY(0) scale(1);
}
}
@media (max-width: 640px) {
.profile-modal[data-v-114db5b8] {
    margin: 20px;
    max-width: none;
}
.profile-header[data-v-114db5b8] {
    padding: 16px 20px;
}
.profile-content[data-v-114db5b8] {
    padding: 20px;
}
.form-row[data-v-114db5b8] {
    grid-template-columns: 1fr;
}
.profile-stats[data-v-114db5b8] {
    grid-template-columns: 1fr;
}
.message[data-v-114db5b8] {
    margin: 20px 20px 0;
}
}

/* 应用的主容器样式 */


/* 字体导入 - 必须在所有CSS规则之前 */
/* 精卫智能救生圈 - 设计系统变量 */
:root {
  /* 主色调系统 */
  --color-rescue-blue: #0d5cb6;
  --color-tech-silver: #eef2f6;
  --color-warning-orange: #ff6a00;
  --color-dark-blue: #1a365d;
  --color-white: #ffffff;
  
  /* 渐变色彩 */
  --gradient-orange: linear-gradient(135deg, #ff6a00 0%, #ff8533 100%);
  --gradient-blue: linear-gradient(135deg, #0d5cb6 0%, #1e88e5 100%);
  --gradient-silver: linear-gradient(180deg, #ffffff 0%, #eef2f6 100%);
  
  /* 背景系统 */
  --bg-main: var(--gradient-silver);
  --bg-glass: rgba(255, 255, 255, 0.85);
  --bg-card: rgba(255, 255, 255, 0.95);
  --bg-footer: var(--color-dark-blue);
  
  /* 文字颜色 */
  --text-primary: var(--color-dark-blue);
  --text-white: var(--color-white);
  --text-secondary: rgba(26, 54, 93, 0.7);
  --text-light: rgba(255, 255, 255, 0.8);
  
  /* 阴影系统 */
  --shadow-sm: 0 2px 8px rgba(13, 92, 182, 0.08);
  --shadow-md: 0 4px 16px rgba(13, 92, 182, 0.12);
  --shadow-lg: 0 8px 32px rgba(13, 92, 182, 0.16);
  --shadow-nav: 0 2px 16px rgba(0, 0, 0, 0.1);
  
  /* 尺寸规范 */
  --nav-height-desktop: 80px;
  --nav-height-mobile: 70px;
  --border-radius: 8px;
  --border-radius-lg: 16px;
  
  /* 动画时长 */
  --transition-fast: 0.2s;
  --transition-normal: 0.4s;
  --transition-slow: 0.6s;
  
  /* 字体尺寸 */
  --font-size-h1: 2.5rem;
  --font-size-h2: 2rem;
  --font-size-h3: 1.5rem;
  --font-size-base: 1rem;
  --font-size-data: 1.8rem;
  --font-size-sm: 0.875rem;
  
  /* 断点 */
  --breakpoint-mobile: 768px;
  --breakpoint-tablet: 1024px;
  
  /* Z-index层级 */
  --z-nav: 1000;
  --z-modal: 1100;
  --z-tooltip: 1200;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
/* 标题层级系统 */
h1 {
  font-size: var(--font-size-h1);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}
h2 {
  font-size: var(--font-size-h2);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 0.8rem;
}
h3 {
  font-size: var(--font-size-h3);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 0.6rem;
}
/* 数据展示字体 */
.data-display {
  font-family: 'DIN Alternate', 'Courier New', monospace;
  font-size: var(--font-size-data);
  font-weight: 700;
  letter-spacing: -0.02em;
}
/* 通用动画类 */
.animate-fade-in {
  animation: fadeIn var(--transition-normal) ease;
}
.animate-slide-up {
  animation: slideUp var(--transition-normal) ease;
}
.animate-counter {
  animation: counterUp 2s ease-out;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes counterUp {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
/* 卡片系统 */
.card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal) ease;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
/* 按钮系统 */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition-fast) ease;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary {
  background: var(--gradient-orange);
  color: var(--text-white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: var(--gradient-blue);
  color: var(--text-white);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
body {
  min-height: 100vh;
  color: var(--text-primary);
  background: var(--bg-main);
  background-attachment: fixed;
  transition: all var(--transition-normal) ease;
  line-height: 1.6;
  font-family: 
    'Noto Sans SC',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    'Microsoft YaHei',
    sans-serif;
  font-size: var(--font-size-base);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
}
/* 背景装饰层 - 径向渐变波纹 */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 15% 20%, rgba(13, 92, 182, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(13, 92, 182, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}
/* 应用主容器 */
#app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
/* 主要内容区域 */
.main-content {
  flex: 1;
  padding-top: var(--nav-height-desktop);
}
/* 链接样式 */
a {
  color: var(--color-rescue-blue);
  text-decoration: none;
  transition: all var(--transition-fast) ease;
}
a:hover {
  color: var(--color-warning-orange);
}
/* 容器系统 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.container-fluid {
  width: 100%;
  padding: 0 1rem;
}
/* 网格系统 */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5rem;
}
.col {
  flex: 1;
  padding: 0 0.5rem;
}
.col-2 {
  flex: 0 0 50%;
  padding: 0 0.5rem;
}
.col-3 {
  flex: 0 0 33.333%;
  padding: 0 0.5rem;
}
.col-4 {
  flex: 0 0 25%;
  padding: 0 0.5rem;
}
/* 响应式网格 */
@media (max-width: 768px) {
  .main-content {
    padding-top: var(--nav-height-mobile);
  }
  
  .col,
  .col-2,
  .col-3,
  .col-4 {
    flex: 0 0 100%;
    margin-bottom: 1rem;
  }
  
  .container {
    padding: 0 0.5rem;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .col-3,
  .col-4 {
    flex: 0 0 50%;
  }
}
/* 工具类 */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }
/* 显示/隐藏工具类 */
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }
@media (max-width: 768px) {
  .d-mobile-none { display: none; }
  .d-mobile-block { display: block; }
}
@media (min-width: 769px) {
  .d-desktop-none { display: none; }
  .d-desktop-block { display: block; }
}
