/* frontend/css/admin.css - 完整样式 */

/* ==================== CSS Variables & Theme ==================== */
/* 默认浅色主题 */
:root {
    --bg-primary: #f8fafc;
    --bg-secondary: #f1f5f9;
    --bg-tertiary: #e2e8f0;
    --bg-glass: rgba(241, 245, 249, 0.8);
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --accent-primary: #1890ff;
    --accent-secondary: #40a9ff;
    --accent-gradient: linear-gradient(135deg, #096dd9 0%, #1890ff 100%);
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --border-color: rgba(148, 163, 184, 0.2);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 20px rgba(24, 144, 255, 0.35);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
}

/* 深色主题覆盖 */
.dark-theme {
    --bg-primary: #0a0f1a;
    --bg-secondary: #0f172a;
    --bg-tertiary: #1e293b;
    --bg-glass: rgba(15, 23, 42, 0.6);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-color: rgba(148, 163, 184, 0.15);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
}

/* 删除 .light-theme 块，因为现在默认就是浅色 */

/* ==================== Reset & Base ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    transition: background-color var(--transition-base), color var(--transition-base);
}

/* ==================== Scrollbar ==================== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-secondary);
}

/* ==================== Glass Effect ==================== */
.glass {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}

/* ==================== Layout ==================== */
.admin-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== Header ==================== */
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: var(--shadow-glow);
}

.brand-text h1 {
    font-size: 24px;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-text span {
    font-size: 12px;
    color: var(--text-muted);
}

.back-link {
    color: var(--text-secondary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition-fast);
}

.back-link:hover {
    color: var(--accent-primary);
}

/* ==================== Tabs Container - 优化对齐 ==================== */
.tabs-wrapper {
    margin-bottom: 28px;
}

.tabs-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0;
}

.tabs {
    display: flex;
    gap: 4px;
}

.btn-add-tab {
    padding: 8px 20px;
    font-size: 14px;
    margin-bottom: 0;
}

/* ==================== Buttons ==================== */
.btn-outline {
    padding: 10px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background: rgba(24, 144, 255, 0.1);
}

.btn-primary {
    padding: 10px 20px;
    border-radius: var(--radius-md);
    border: none;
    background: var(--accent-primary);
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
    box-shadow: 0 2px 8px rgba(24, 144, 255, 0.35);
}

.btn-primary:hover {
    background: var(--accent-secondary);
    transform: translateY(-1px);
}

.btn-small {
    padding: 6px 12px;
    font-size: 12px;
}

/* ==================== Tab Buttons ==================== */
.tab-btn {
    padding: 10px 24px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    transition: all var(--transition-fast);
    position: relative;
    margin-bottom: -1px;
}

.tab-btn:hover {
    color: var(--accent-primary);
    background: rgba(24, 144, 255, 0.08);
}

.tab-btn.active {
    color: var(--accent-primary);
    background: transparent;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-primary);
    border-radius: 2px 2px 0 0;
}

.tab-pane {
    display: none;
    padding-top: 24px;
}

.tab-pane.active {
    display: block;
}

/* ==================== Section Header ==================== */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.header-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-title i {
    font-size: 20px;
    color: var(--accent-primary);
}

.header-title h2 {
    font-size: 20px;
    font-weight: 600;
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.badge {
    padding: 4px 12px;
    background: var(--accent-primary);
    color: white;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    min-width: 28px;
    text-align: center;
}

/* ==================== Cache Info ==================== */
.cache-info {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ==================== Skin Grid ==================== */
.skin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.skin-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/9;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.skin-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.skin-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.skin-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
}

.skin-badge.adapted {
    background: rgba(16, 185, 129, 0.9);
    color: white;
}

.skin-badge.not-adapted {
    background: rgba(239, 68, 68, 0.9);
    color: white;
}

.skin-price {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.skin-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: #fff;
}

.skin-name {
    font-size: 14px;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    margin-bottom: 8px;
}

.skin-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* ==================== Skin Action Buttons ==================== */
.btn-skin {
    padding: 4px 12px;
    font-size: 11px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all var(--transition-fast);
}

.btn-download {
    background: rgba(24, 144, 255, 0.9);
    color: white;
}

.btn-download:hover {
    background: #1890ff;
}

.btn-edit {
    background: rgba(245, 158, 11, 0.9);
    color: white;
}

.btn-edit:hover {
    background: #f59e0b;
}

.btn-delete {
    background: rgba(239, 68, 68, 0.9);
    color: white;
}

.btn-delete:hover {
    background: #ef4444;
}

.btn-adapt {
    background: rgba(16, 185, 129, 0.9);
    color: white;
}

.btn-adapt:hover {
    background: #10b981;
}

/* ==================== Form ==================== */
.form-container {
    padding: 28px;
}

.form-title {
    margin-bottom: 20px;
    font-size: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.form-group small {
    color: var(--text-muted);
    font-size: 11px;
}

.input-field {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-tertiary);
    color: var(--text-primary);
    font-size: 14px;
    outline: none;
    transition: all var(--transition-fast);
}

.input-field:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(24, 144, 255, 0.15);
}

.search-input {
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-tertiary);
    color: var(--text-primary);
    width: 200px;
    outline: none;
}

.search-input:focus {
    border-color: var(--accent-primary);
}

.form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 20px;
}

/* ==================== Modal ==================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    max-width: 550px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 28px;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    font-size: 20px;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 24px;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.modal-close:hover {
    color: var(--error);
}

/* ==================== Loading & Empty States ==================== */
.loading {
    padding: 60px;
    text-align: center;
    color: var(--text-secondary);
}

.empty-state {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    color: var(--text-muted);
    gap: 16px;
    text-align: center;
}

.empty-state i {
    font-size: 48px;
    opacity: 0.5;
}

/* ==================== Toast Message ==================== */
.toast-message {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(-120%);
    z-index: 99999;
    padding: 12px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-md);
}

.toast-message.show {
    transform: translateX(-50%) translateY(0);
}

.toast-message.success {
    background: #10b981;
    color: #fff;
}

.toast-message.error {
    background: #ef4444;
    color: #fff;
}

.toast-message.warning {
    background: #f59e0b;
    color: #fff;
}

.toast-message.info {
    background: #1890ff;
    color: #fff;
}

/* ==============================================
   Admin 移动端终极适配 - 电脑端完全不变
============================================== */
@media (max-width: 768px) {
  /* 容器 */
  .admin-container {
    padding: 0 16px !important;
  }

  /* 头部 */
  .admin-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
  .header-right-actions {
    width: 100% !important;
    flex-wrap: wrap !important;
  }

  /* 标签栏 */
  .tabs-container {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
  .tabs {
    flex-wrap: wrap !important;
    width: 100% !important;
  }
  .tab-btn {
    padding: 8px 16px !important;
  }

  /* 皮肤卡片 - 单列 + 按钮不撑满 */
  .skin-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .skin-actions {
    gap: 6px !important;
    flex-wrap: nowrap !important;
  }
  .btn-skin {
    flex: 0 0 auto !important;
    padding: 5px 10px !important;
    font-size: 11px !important;
    white-space: nowrap !important;
  }

  /* 搜索与按钮区 */
  .section-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
  .header-actions {
    width: 100% !important;
    flex-wrap: wrap !important;
  }
  .search-input {
    width: 100% !important;
  }

  /* 表单 */
  .form-grid {
    grid-template-columns: 1fr !important;
  }
  .form-group.full-width {
    grid-column: span 1 !important;
  }

  /* 弹窗 */
  .modal-content {
    width: 95% !important;
    padding: 20px !important;
  }
}
/* 头部右侧按钮容器 */
.header-right-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* 已添加按钮样式 */
.btn-skin.btn-added {
    background: rgba(16, 185, 129, 0.85);
    color: white;
    cursor: default;
    opacity: 0.9;
}

.btn-skin.btn-added:hover {
    transform: none;
    background: rgba(16, 185, 129, 0.85);
}

/* 添加按钮样式 */
.btn-skin.btn-add {
    background: rgba(24, 144, 255, 0.9);
    color: white;
}

.btn-skin.btn-add:hover {
    background: #1890ff;
    transform: scale(1.02);
}

/* 移除之前的 btn-add-tab 相关样式（如果有） */
/* Tab 按钮图标样式 */
.tab-btn i {
    margin-right: 8px;
    font-size: 14px;
}

/* 用户信息样式 */
.user-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 14px;
}

.user-info i {
    color: var(--accent-primary);
    font-size: 18px;
}
/* 返回首页按钮特效 */
.back-link {
    padding: 10px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.back-link:hover  {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background: rgba(24, 144, 255, 0.1);
}
/* 修改密码弹窗样式 */
#changePasswordModal .modal-content {
    max-width: 450px;
}

#changePasswordModal .modal-header h3 i {
    color: var(--accent-primary);
    margin-right: 8px;
}

#changePasswordModal .form-group small {
    color: var(--text-muted);
    font-size: 11px;
    margin-top: 4px;
}

/* 主题切换按钮样式 */
.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background: var(--bg-glass);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    font-size: 18px;
}

.btn-icon:hover {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* 下载状态标识 */
.need-download {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.15);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
}

.local-file {
    color: #10b981;
    background: rgba(16, 185, 129, 0.15);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
}

/* ==================== 特殊皮肤库样式 ==================== */
#specialSkinContainer {
    /* 改为多列布局，实现真正瀑布流 */
    column-count: 3;
    column-gap: 20px;
    margin-top: 20px;
}

/* 英雄卡片 - 防止多列布局断裂 */
.special-hero-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    width: 100%;
    /* 关键：不拆分卡片 */
    break-inside: avoid;
    margin-bottom: 20px;
}

.special-hero-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* 英雄头部背景图 */
.special-hero-header {
    position: relative;
    height: 120px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 8px;
    flex-shrink: 0;
}

.special-hero-top {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.special-hero-title {
    font-size: 14px;
    font-weight: 600;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 10px;
    border-radius: 5px;
    backdrop-filter: blur(4px);
}

.special-hero-skin-count {
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 14px;
    color: white;
    backdrop-filter: blur(4px);
}

.special-hero-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
    gap: 8px;
}

.special-hero-add-skin {
    background: rgba(24, 144, 255, 0.85);
    border: none;
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 11px;
    color: white;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all var(--transition-fast);
    backdrop-filter: blur(4px);
}

.special-hero-add-skin:hover {
    background: #1890ff;
}

.special-hero-delete {
    background: rgba(239, 68, 68, 0.85);
    border: none;
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 11px;
    color: white;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all var(--transition-fast);
    backdrop-filter: blur(4px);
}

.special-hero-delete:hover {
    background: #ef4444;
}

/* 皮肤网格 */
.special-skins-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 12px;
    flex: 0 0 auto;
}

.special-skin-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 4/2;
    background: var(--bg-tertiary);
    transition: all var(--transition-fast);
}

.special-skin-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.special-skin-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.special-skin-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 6px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

.special-skin-name {
    font-size: 13px;
    font-weight: 600;
    color: white;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.special-skin-id {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.special-skin-actions {
    display: flex;
    gap: 4px;
}

.special-skin-edit {
    padding: 3px 12px;
    font-size: 10px;
    border-radius: 5px;
    border: none;
    background: rgba(245, 158, 11, 0.9);
    color: white;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.special-skin-edit:hover {
    background: #f59e0b;
}

.special-skin-delete {
    padding: 3px 12px;
    font-size: 10px;
    border-radius: 5px;
    border: none;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.special-skin-delete:hover {
    background: #ef4444;
}

/* 响应式 */
@media (max-width: 1200px) {
    #specialSkinContainer {
        column-count: 2;
    }
}
@media (max-width: 768px) {
    #specialSkinContainer {
        column-count: 1;
    }
}
/* 在文件末尾添加以下样式 */

/* 智能搜索下拉框样式 - 加宽 */
.hero-search-container {
    position: relative;
    width: 100%;
}

.hero-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    max-height: 240px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    display: none;
}

.hero-suggestions.active {
    display: block;
}

.hero-suggestion-item {
    padding: 10px 12px;
    cursor: pointer;
    border-bottom: 1px solid var(--border-color);
    transition: background var(--transition-fast);
    font-size: 13px;
}

.hero-suggestion-item:hover {
    background: var(--accent-primary);
    color: white;
}

.hero-suggestion-item .hero-name {
    font-weight: 600;
}

.hero-suggestion-item .hero-desc {
    font-size: 11px;
    opacity: 0.7;
    margin-left: 8px;
}

.selected-hero-info {
    margin-top: 8px;
    padding: 8px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
    font-size: 12px;
    display: none;
}

.selected-hero-info.active {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.hero-badge {
    background: var(--accent-primary);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
}

/* 表单行样式 - 让搜索框占满 */
.form-group .hero-search-container {
    width: 100%;
}

.form-group .hero-search-container input {
    width: 100%;
}
