/* 全局样式 */
:root {
    --primary: #7c3aed;
    --primary-light: #8b5cf6;
    --secondary: #6366f1;
    --success: #10b981;
    --emerald: #10b981;
    --bg: #ffffff;
    --bg-secondary: #f9fafb;
    --text: #171717;
    --text-secondary: #6b7280;
    --border: #e5e7eb;
    --shadow: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-full: 9999px;
    --site-width: 1250px;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg: #0a0a0a;
        --bg-secondary: #111827;
        --text: #ededed;
        --text-secondary: #9ca3af;
        --border: #374151;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: var(--site-width);
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 640px) {
    .container { padding: 0 24px; }
}

@media (min-width: 1024px) {
    .container { padding: 0 32px; }
}

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.dark .navbar {
    background: rgba(17,24,39,0.8);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

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

.site-logo {
    height: 40px;
    width: auto;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.logo-text {
    font-size: 20px;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.theme-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-secondary);
    border-radius: 12px;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.2s;
}

.theme-btn:hover {
    background: var(--border);
}

/* 导航链接 */
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.nav-link:hover {
    color: var(--primary);
    background: var(--bg-secondary);
}

.nav-link.active {
    color: var(--primary);
    background: rgba(139,92,246,0.1);
}

/* 移动端菜单按钮 */
.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-secondary);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn svg {
    width: 100%;
    height: 100%;
    color: var(--text);
}

/* 移动端菜单 */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 12px;
}

.mobile-menu.show {
    display: flex;
}

.mobile-nav-link {
    padding: 12px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary);
    background: rgba(139,92,246,0.1);
}

/* 响应式 - 移动端 */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
}

/* Hero区域 */
.hero {
    padding: 120px 0 48px;
    text-align: center;
    background: linear-gradient(180deg, rgba(139,92,246,0.05) 0%, transparent 100%);
}

.dark .hero {
    background: linear-gradient(180deg, rgba(139,92,246,0.1) 0%, transparent 100%);
}

.hero h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 16px;
}

@media (max-width: 640px) {
    .hero h1 { font-size: 32px; }
}

.hero .highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 32px;
}

.hero-tags {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.tag {
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
}

.tag-primary {
    background: rgba(139,92,246,0.1);
    color: var(--primary);
}

.tag-secondary {
    background: rgba(99,102,241,0.1);
    color: var(--secondary);
}

/* 分类筛选 */
.filter-section {
    padding: 24px 0;
    position: sticky;
    top: 64px;
    z-index: 40;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.dark .filter-section {
    background: var(--bg);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.filter-buttons::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 9999px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.filter-btn:hover {
    background: var(--border);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 12px rgba(124,58,237,0.25);
}

/* Logo网格 */
.logo-section {
    padding: 48px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.section-header h2 {
    font-size: 24px;
    font-weight: bold;
}

.total-count {
    color: var(--text-secondary);
    font-size: 14px;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}

@media (min-width: 640px) {
    .logo-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .logo-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1280px) {
    .logo-grid { grid-template-columns: repeat(4, 1fr); }
}

.logo-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 16px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.logo-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.logo-image {
    display: flex;
    justify-content: center;
    padding: 16px;
    position: relative;
}

.logo-image img {
    width: 100%;
    height: auto;
}

.logo-category {
    position: absolute;
    top: 0;
    right: 0;
    padding: 4px 8px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.2s;
}

.logo-card:hover .logo-category {
    opacity: 1;
}

.logo-info {
    text-align: center;
    margin-top: 12px;
}

.logo-name {
    font-weight: 600;
    color: var(--text);
    transition: color 0.2s;
}

.logo-card:hover .logo-name {
    color: var(--primary);
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.page-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.page-btn:hover {
    background: var(--border);
}

.page-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 12px rgba(124,58,237,0.25);
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-ellipsis {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

/* VIP顾问板块 */
.consultant-section {
    padding: 48px 0;
    background: var(--bg-secondary);
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
}

.section-title h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
}

.title-underline {
    width: 64px;
    height: 4px;
    background: #ef4444;
    margin: 0 auto;
    border-radius: 2px;
}

.consultant-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
}

@media (min-width: 768px) {
    .consultant-grid { grid-template-columns: repeat(3, 1fr); }
}

.consultant-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border);
    display: flex;
    gap: 20px;
}

.consultant-avatar {
    flex-shrink: 0;
    position: relative;
}

.consultant-avatar span {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    color: #2563eb;
    border: 4px solid #dbeafe;
}

.dark .consultant-avatar span {
    background: linear-gradient(135deg, #1e3a5f, #1e40af);
    border-color: #1e3a5f;
    color: #60a5fa;
}

.verified-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 28px;
    height: 28px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    box-shadow: var(--shadow);
}

.consultant-info {
    flex: 1;
    min-width: 0;
}

.consultant-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vip-tag {
    padding: 2px 8px;
    background: #fdf2f8;
    color: #ec4899;
    font-size: 12px;
    border-radius: 9999px;
}

.dark .vip-tag {
    background: rgba(236,72,153,0.2);
    color: #f472b6;
}

.consultant-title {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 12px;
}

.consultant-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.skill-tag {
    padding: 4px 10px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    font-size: 12px;
    border-radius: 9999px;
}

.consult-btn {
    display: inline-block;
    padding: 8px 20px;
    background: var(--emerald);
    color: white;
    font-size: 14px;
    font-weight: 500;
    border-radius: 9999px;
    text-decoration: none;
    transition: background 0.2s;
}

.consult-btn:hover {
    background: #059669;
}

/* 底部 */
.footer {
    padding: 48px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 18px;
}

.footer-logo {
    height: 32px;
    width: auto;
}

.footer .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 12px;
}

.friend-link-btn {
    padding: 8px 24px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-size: 14px;
    font-weight: 500;
    border-radius: 9999px;
    text-decoration: none;
    transition: box-shadow 0.2s;
}

.friend-link-btn:hover {
    box-shadow: 0 4px 12px rgba(124,58,237,0.25);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* 侧边栏 */
.sidebar {
    position: fixed;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 40;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-btn {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(124,58,237,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.sidebar-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(124,58,237,0.4);
}

.sidebar-btn svg {
    width: 24px;
    height: 24px;
}

/* 侧边栏弹窗 - 绿色主题 */
.sidebar-popup {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    width: 320px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    overflow: hidden;
    display: none;
}

.sidebar-popup.show {
    display: block;
    animation: slideInLeft 0.3s ease;
}

@keyframes slideInLeft {
    from { transform: translateY(-50%) translateX(-100px); opacity: 0; }
    to { transform: translateY(-50%) translateX(0); opacity: 1; }
}

.sidebar-popup-header {
    background: linear-gradient(135deg, #10b981, #059669);
    padding: 16px 20px;
    text-align: center;
}

.sidebar-popup-title {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.sidebar-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #666;
    transition: all 0.2s;
}

.sidebar-popup-close:hover {
    background: #f3f4f6;
}

.sidebar-popup-body {
    padding: 24px;
    text-align: center;
}

.sidebar-popup-qr {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    background: #f9fafb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e5e7eb;
}

.sidebar-popup-qr img {
    max-width: 160px;
    max-height: 160px;
}

.sidebar-popup-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    color: #10b981;
    font-size: 20px;
    font-weight: 600;
}

.sidebar-popup-phone svg {
    width: 24px;
    height: 24px;
}

.sidebar-popup-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 32px;
    border: 2px solid #10b981;
    border-radius: 30px;
    background: white;
    color: #10b981;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.sidebar-popup-btn:hover {
    background: #10b981;
    color: white;
}

.sidebar-popup-btn svg {
    width: 18px;
    height: 18px;
}

/* 侧边栏悬浮按钮组 */
.sidebar-float {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    transition: all 0.2s;
}

.sidebar-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.5);
}

.sidebar-float-btn svg {
    width: 22px;
    height: 22px;
}

.sidebar-float-btn span {
    font-size: 10px;
    margin-top: 2px;
}

.sidebar-popup-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9997;
    display: none;
}

.sidebar-popup-backdrop.show {
    display: block;
}
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(124,58,237,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.consult-icon-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(124,58,237,0.4);
}

/* 弹窗 */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.modal.show {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--bg);
    border-radius: 24px;
    padding: 32px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    animation: modalIn 0.2s ease-out;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.modal-close:hover {
    background: var(--border);
}

.modal-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.modal-logo img {
    width: 100%;
    max-width: 280px;
    height: auto;
}

.modal-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.modal-category {
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
}

.modal-name {
    font-size: 24px;
    font-weight: bold;
}

.modal-actions {
    display: flex;
    gap: 16px;
}

.modal-actions a {
    flex: 1;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
}

.modal-actions .primary-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.modal-actions .primary-btn:hover {
    box-shadow: 0 4px 12px rgba(124,58,237,0.25);
}

.modal-actions .secondary-btn {
    background: var(--bg-secondary);
    color: var(--text);
}

.modal-actions .secondary-btn:hover {
    background: var(--border);
}

/* 二维码弹窗 */
.qrcode-content {
    text-align: center;
}

.qrcode-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 24px;
}

.qrcode-image {
    margin-bottom: 24px;
}

.qrcode-image img {
    width: 192px;
    height: 192px;
    border-radius: 16px;
    background: var(--bg-secondary);
}

.qrcode-phone-label {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.qrcode-phone {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 24px;
    text-decoration: none;
}

.online-chat-btn {
    display: block;
    width: 100%;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-size: 14px;
    font-weight: 500;
    border-radius: 12px;
    text-decoration: none;
    transition: box-shadow 0.2s;
}

.online-chat-btn:hover {
    box-shadow: 0 4px 12px rgba(124,58,237,0.25);
}

/* 加载状态 */
.loading {
    text-align: center;
    padding: 48px;
    color: var(--text-secondary);
}

/* Logo详情弹窗 */
.logo-popup-content {
    max-width: 500px;
    width: 90%;
    padding: 0;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.modal-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,0.1);
    border: none;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: #666;
    transition: background 0.2s;
}

.modal-close-btn:hover {
    background: rgba(0,0,0,0.2);
}

#modal-logo {
    background: #f5f5f5;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

#modal-logo img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
}

.logo-text-placeholder {
    font-size: 48px;
    font-weight: bold;
    padding: 30px 50px;
    border-radius: 12px;
}

#modal-info {
    padding: 24px;
}

.modal-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.modal-category {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 12px;
}

.modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.modal-tag {
    padding: 4px 12px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 20px;
    font-size: 12px;
}

.modal-desc {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin-top: 12px;
}

#modal-actions {
    padding: 0 24px 24px;
    display: flex;
    gap: 12px;
}

#modal-actions .btn {
    flex: 1;
    justify-content: center;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

#modal-actions .btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

#modal-actions .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

#modal-actions .btn-outline {
    background: white;
    border: 1px solid #e5e7eb;
    color: #4b5563;
}

#modal-actions .btn-outline:hover {
    border-color: #10b981;
    color: #10b981;
}

/* 白色导航栏 - 简洁风格 */
.navbar-dark {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.navbar-dark-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 64px;
}

.navbar-dark-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.navbar-dark-logo img {
    height: 36px;
    width: auto;
}

.navbar-dark-logo .logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #10b981;
}

.navbar-dark-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 40px;
}

.nav-dark-item {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    color: #4b5563;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s;
    position: relative;
}

.nav-dark-item:hover {
    color: #10b981;
    background: rgba(16, 185, 129, 0.08);
}

.nav-dark-item.active {
    color: #10b981;
}

.nav-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    background: #10b981;
    color: #fff;
}

.nav-badge.badge-new {
    background: #ef4444;
}

.nav-badge.badge-hot {
    background: #f59e0b;
}

/* 移动端菜单按钮 */
.navbar-dark-mobile-btn {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #9ca3af;
}

.navbar-dark-mobile-btn svg {
    width: 24px;
    height: 24px;
}

/* 移动端菜单 */
.navbar-dark-mobile-menu {
    display: none;
    background: #1a1a1a;
    border-top: 1px solid #2a2a2a;
    padding: 12px 0;
}

.navbar-dark-mobile-menu.show {
    display: block;
}

.nav-dark-mobile-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    color: #9ca3af;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s;
}

.nav-dark-mobile-item:hover,
.nav-dark-mobile-item.active {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

/* 响应式 */
@media (max-width: 768px) {
    .navbar-dark-menu {
        display: none;
    }
    
    .navbar-dark-mobile-btn {
        display: block;
    }
    
    .navbar-dark-container {
        padding: 0 16px;
    }
}

/* 主内容顶部间距（适配固定导航栏） */
body {
    padding-top: 64px;
}

/* 导航菜单管理样式 */
.nav-menu-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-menu-item {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.dark .nav-menu-item {
    background: #1f2937;
    border-color: #374151;
}

.nav-menu-item-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f3f4f6;
    border-bottom: 1px solid #e5e7eb;
}

.dark .nav-menu-item-header {
    background: #374151;
    border-color: #4b5563;
}

.nav-menu-drag {
    color: #9ca3af;
    cursor: grab;
    font-size: 16px;
}

.nav-menu-name {
    flex: 1;
    font-weight: 500;
}

.nav-menu-item-body {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    padding: 12px;
}

.nav-menu-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-menu-field label {
    font-size: 12px;
    color: #6b7280;
}

