/* ===== page-home.html 样式 ===== */

:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --accent: #60a5fa;
    --dark: #0f172a;
    --dark-2: #1e293b;
    --dark-3: #0f172a;
    --card-bg: #1e293b;
    --card-border: rgba(37, 99, 235, 0.15);
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.65);
    --text-muted: rgba(255, 255, 255, 0.4);
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-tap-highlight-color: transparent;
}

html {
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    background: var(--dark);
    color: var(--text-primary);
    overflow-x: hidden;
    margin: 0;
    line-height: 1.5;
}

/* 手机容器 */
.app-container {
    max-width: 430px;
    margin: 0 auto;
    min-height: 100vh;
    background: var(--dark);
    position: relative;
    padding-bottom: 0 !important;
}

/* 导航栏 */
.nav-header {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.95));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    position: sticky;
    top: 0;
    z-index: 99;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    transform: scale(0.85);
    transform-origin: left center;
}

.nav-logo img {
    width: 26px;
    height: 26px;
    border-radius: 6px;
}

.nav-logo-text {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: -0.3px;
}

.nav-logo-text span {
    color: var(--accent);
}

.nav-actions {
    display: flex;
    gap: 10px;
    transform: scale(0.85);
    transform-origin: right center;
}

.nav-btn-call {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
    transition: all 0.2s;
    white-space: nowrap;
}

.nav-btn-call:active {
    transform: scale(0.97);
    opacity: 0.9;
}

.nav-btn-call svg {
    flex-shrink: 0;
}

/* Hero区域 - 幻灯片 */
.hero {
    padding: 0;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark-3) 100%);
    position: relative;
    overflow: visible;
    transition: background 0.5s ease;
}

.hero.white-bg {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
}

.hero.white-bg .hero-slide {
    position: relative;
}

.hero.white-bg         .hero-slide::before {
    display: none;
}

.hero.white-bg::after {
    display: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 50%);
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.hero.white-bg::before {
    opacity: 0;
}

.hero-slider {
    position: relative;
    padding: 0;
}

.hero-ai-figure {
    position: absolute;
    right: 0px;
    bottom: 0;
    width: 380px;
    height: auto;
    object-fit: contain;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.hero-slide {
    display: none;
    animation: fadeIn 0.5s ease;
    height: 400px;
    width: 100%;
    box-sizing: border-box;
    padding: 0;
}

.hero-slide.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    padding-left: 15px;
    background: transparent;
}

.hero-slide.active::before {
    display: none;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-badge {
    display: inline-block;
    width: 150px;
    text-align: center;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 100px;
    padding: 6px 12px;
    font-size: 12px;
    color: #60a5fa;
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

.hero-badge.green {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.25);
    color: #10b981;
}

.hero-badge.green::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
}

.hero-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    color: #f8fafc;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #60a5fa, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .highlight-green {
    background: linear-gradient(135deg, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 24px;
    letter-spacing: 0;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.hero-stats.center {
    justify-content: center;
    gap: 32px;
}

.stat-item {
    text-align: left;
}

.hero-stats.center .stat-item {
    text-align: center;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #f8fafc;
    letter-spacing: -0.5px;
}

.stat-value.green {
    color: #34d399;
}

.stat-value span {
    color: #60a5fa;
}

.stat-label {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 2px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.hero-actions {
    display: flex;
    gap: 12px;
}

.hero-actions.center {
    justify-content: center;
}

.btn-green {
    flex: 1;
    padding: 14px 20px;
    background: linear-gradient(135deg, #059669, #10b981);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-green:active {
    transform: scale(0.98);
    box-shadow: 0 3px 12px rgba(16, 185, 129, 0.3);
}

.btn-outline {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: -0.2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-outline:active {
    background: rgba(255, 255, 255, 0.1);
}

/* 幻灯片指示器 */
.hero-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
    padding-bottom: 10px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    background: rgba(37, 99, 235, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

/* 幻灯片2: 本地生活 */
.hero-slide.slide-white {
    border-radius: 0;
    margin: 0;
    position: relative;
}

.hero-slide.slide-white.active {
    background: url('../static/img/facdca.png') no-repeat center calc(100% - 40px);
    background-size: contain;
    justify-content: flex-start;
    padding-top: 30px;
}

.hero-2-figure {
    display: none;
}



.hero-badge-blue {
    display: inline-block;
    width: 150px;
    text-align: center;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 100px;
    padding: 6px 12px;
    font-size: 12px;
    color: #60a5fa;
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

.hero-title-blue {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    color: #f8fafc;
    text-align: right;
    margin-left: auto;
    padding-right: 15px;
}

.hero-title-blue .highlight-blue {
    background: linear-gradient(135deg, #93c5fd, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc-blue {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 20px;
    letter-spacing: 0;
    font-weight: 400;
    max-width: 280px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: right;
    margin-left: auto;
    padding-right: 15px;
}

.hero-stats-center {
    display: flex;
    justify-content: flex-start;
    gap: 24px;
    margin-bottom: 20px;
}

.stat-item-blue {
    text-align: center;
}

.stat-value-blue {
    font-size: 24px;
    font-weight: 700;
    color: #f8fafc;
    letter-spacing: -0.5px;
}

.stat-value-blue span {
    color: #60a5fa;
}

.stat-label-blue {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 2px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.hero-actions-center {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding-right: 15px;
}

.btn-primary-blue {
    flex: 1;
    max-width: 150px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: all 0.2s;
}

.btn-primary-blue:active {
    transform: scale(0.98);
}

.btn-secondary-blue {
    flex: 1;
    max-width: 150px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary-blue:active {
    background: rgba(255, 255, 255, 0.12);
}

.btn-primary {
    flex: 1;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.2px;
}

.btn-primary:active {
    transform: scale(0.98);
    box-shadow: 0 3px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    flex: 1;
    padding: 14px 20px;
    background: var(--dark-2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: -0.2px;
}

.btn-secondary:active {
    background: var(--dark-3);
}

/* 区块标题 */
.section {
    padding: 32px 16px;
}

.section-header {
    margin-bottom: 24px;
}

.section-tag {
    display: inline-block;
    background: rgba(37, 99, 235, 0.12);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 100px;
    padding: 5px 12px;
    font-size: 11px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.25;
    margin-bottom: 8px;
}

.section-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    letter-spacing: -0.2px;
}

/* 优势卡片 */
.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.advantage-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0.5;
}

.advantage-card.highlight {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), var(--card-bg));
    border-color: rgba(37, 99, 235, 0.3);
}

.advantage-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.advantage-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
    letter-spacing: -0.2px;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.advantage-card button {
    padding: 8px 16px;
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 8px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.3px;
}

/* 场景卡片 */
.scene-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.scene-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 20px;
}

.scene-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.scene-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
    letter-spacing: -0.2px;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.scene-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.scene-stats span {
    padding: 6px 12px;
    background: rgba(37, 99, 235, 0.15);
    border-radius: 20px;
    font-size: 12px;
    color: var(--accent);
    font-weight: 600;
}

/* 步骤 */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.step-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}

.step-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    letter-spacing: -0.2px;
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* 价格 */
.price-card {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(37, 99, 235, 0.05));
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
}

.price-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(96, 165, 250, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-card-icon svg {
    width: 36px;
    height: 36px;
    color: #60a5fa;
}

.price-card-icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.price-card h4 {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-weight: 500;
}

.price {
    font-size: 48px;
    font-weight: 800;
    color: #f5980c;
    letter-spacing: -1px;
}

.price small {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
}

.price-desc {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(37, 99, 235, 0.2);
    font-size: 14px;
    color: var(--text-secondary);
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
    list-style: none;
}

.faq-item summary {
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::marker {
    display: none;
    content: '';
}

.faq-question {
    padding: 16px;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    letter-spacing: -0.2px;
    outline: none;
}

.faq-question::after {
    content: '+';
    font-size: 20px;
    color: var(--primary);
    transition: transform 0.2s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 16px 16px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: -0.2px;
    display: none;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.faq-item.active .faq-answer {
    display: block;
}

/* CTA区域 */
.cta-section {
    background: linear-gradient(180deg, var(--dark-2), var(--dark-3));
    padding: 40px 16px;
    text-align: center;
}

.cta-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.cta-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
    letter-spacing: -0.2px;
}

.download-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
}

.btn-download {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-download:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-download-icon {
    flex-shrink: 0;
}

.btn-download-icon img {
    width: 96px;
    height: 98px;
    display: block;
}

.btn-download-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.btn-download-sub {
    font-size: 10px;
    color: var(--text-muted);
}

.btn-download-main {
    font-size: 14px;
    font-weight: 600;
}

.version-info {
    font-size: 12px;
    color: var(--text-muted);
}

/* 底部导航 */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 430px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(37, 99, 235, 0.15);
    padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
    display: flex;
    justify-content: space-around;
    z-index: 100;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 6px 20px;
    cursor: pointer;
    transition: all 0.2s;
}

.nav-item-icon {
    font-size: 22px;
    transition: transform 0.2s;
}

.nav-item.active .nav-item-icon {
    transform: scale(1.1);
}

.nav-item-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-item.active .nav-item-label {
    color: var(--primary-light);
    font-weight: 600;
}

.nav-item-center {
    margin-top: -20px;
}

.nav-item-center .nav-item-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* 页脚 */
.site-footer {
    background: linear-gradient(180deg, var(--dark-3), #06090f);
    padding: 24px 20px 20px;
    text-align: center;
    margin-bottom: 0 !important;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

/* 品牌logo + 名称 */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo-icon {
    width: 26px;
    height: 26px;
}

.footer-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 15px;
    font-weight: 500;
    background: linear-gradient(135deg, #fff 40%, var(--accent) 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

/* slogan */
.footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

/* 扫码引导 */
.footer-qr {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: background 0.2s;
}
.footer-qr:hover {
    background: rgba(255, 255, 255, 0.1);
}

.qr-placeholder {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.qr-placeholder img {
    width: 18px;
    height: 18px;
}

.footer-qr p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
    white-space: nowrap;
}

/* 链接行 */
.footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-links-divider {
    color: rgba(255, 255, 255, 0.12);
    font-size: 12px;
}

.footer-links-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-row a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-row a:hover {
    color: var(--accent);
}

/* 版权 */
.footer-bottom {
    text-align: center;
    margin-top: 8px;
}

.footer-bottom p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.2);
    margin: 0;
    padding: 0;
}

/* 弹窗样式（来自 home-new.css） */
.qr-modal {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5); z-index: 9999;
    align-items: center; justify-content: center;
}
.qr-modal.show { display: flex; }
.qr-modal-content {
    background: #fff; border-radius: 20px;
    width: 280px; padding: 0;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.qr-modal-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 15px; font-weight: 600; color: #1e293b;
}
.qr-modal-body {
    padding: 30px 20px;
    display: flex; flex-direction: column; align-items: center;
}
.qr-img-wrapper { width: 180px; height: 180px; }
.qr-img {
    width: 100%; height: 100%;
    border-radius: 8px; object-fit: contain;
}
.qr-tip { font-size: 14px; color: #475569; margin: 12px 0 4px; font-weight: 500; }
.qr-id-wrapper { margin-top: 4px; width: 100%; }
.qr-id-label {
    font-size: 12px; color: #94a3b8;
    display: flex; align-items: center; justify-content: center; gap: 6px;
    margin-bottom: 8px;
}
.qr-divider { color: #cbd5e1; font-weight: 300; margin: 0 2px; }
.qr-copy-box {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: #07c160; border-radius: 8px; padding: 8px 16px; cursor: pointer;
    transition: background 0.2s; margin-bottom: 12px; width: 100%;
}
.qr-copy-box:hover { background: #06a854; }
.qr-copy-box.copied { background: #06a854; }
.qr-copy-id { font-size: 14px; color: #fff; font-weight: 500; }
.qr-phone-wrapper { width: 100%; }
.qr-phone-box {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    background: #f1f5f9; border-radius: 8px; padding: 8px 12px;
    text-decoration: none; width: 100%; transition: background 0.2s;
    white-space: nowrap;
}
.qr-phone-box:hover { background: #e2e8f0; }

/* 页脚备案信息 */
.footer-beian {
    text-align: center;
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    margin-top: 4px;
    line-height: 2;
}
.footer-beian a {
    color: rgba(255,255,255,0.25);
    text-decoration: none;
}
.footer-beian a:hover {
    color: rgba(255,255,255,0.5);
    text-decoration: underline;
}
.footer-beian img {
    width: 16px;
    height: auto;
    vertical-align: middle;
    margin-right: 4px;
}
