/* Investment页面特有的CSS变量 - 继承common.css中的基础变量 */
:root {
    /* Investment页面特有的颜色系统 */
    --primary-light: #FF8A65;
    --secondary-color: #2C3E50;
    --accent-color: #E74C3C;
    --success-color: #27AE60;
    --warning-color: #F39C12;
    --text-light: #7F8C8D;
    --bg-light: #F8F9FA;
    --bg-dark: #ECF0F1;
    
    /* 辅助色系统 */
    --auxiliary-blue: #3498DB;
    --auxiliary-blue-light: #5DADE2;
    --auxiliary-blue-dark: #2980B9;
    --auxiliary-green: #2ECC71;
    --auxiliary-green-light: #58D68D;
    --auxiliary-green-dark: #27AE60;
    --auxiliary-purple: #9B59B6;
    --auxiliary-purple-light: #BB8FCE;
    --auxiliary-purple-dark: #8E44AD;
    --auxiliary-teal: #1ABC9C;
    --auxiliary-teal-light: #5DBEAA;
    --auxiliary-teal-dark: #17A589;
    
    /* 渐变色系统 */
    --gradient-blue: linear-gradient(135deg, var(--auxiliary-blue) 0%, var(--auxiliary-blue-dark) 100%);
    --gradient-green: linear-gradient(135deg, var(--auxiliary-green) 0%, var(--auxiliary-green-dark) 100%);
    --gradient-purple: linear-gradient(135deg, var(--auxiliary-purple) 0%, var(--auxiliary-purple-dark) 100%);
    --gradient-teal: linear-gradient(135deg, var(--auxiliary-teal) 0%, var(--auxiliary-teal-dark) 100%);
    
    /* Investment页面特有的阴影和效果 */
    --shadow-card: 0 8px 32px rgba(0,0,0,0.1);
    --border-radius-lg: 20px;
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, #34495E 100%);
}

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

/* 使用统一的容器样式，继承components.css中的.container定义 */
.investment-container {
    max-width: 1680px; /* 与components.css保持一致 */
    margin: 0 auto;
    padding: 0 20px; /* 与components.css保持一致 */
    position: relative;
    z-index: 1;
}

/* 英雄区域 - 现代设计 */
.hero-section {
    background: var(--gradient-primary);
    color: white;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    /* 确保不会覆盖导航栏 */
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.hero-title {
    font-size: 4em;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 10px;
    opacity: 0.9;
    font-weight: 300;
}

.hero-founder {
    font-size: 1.2em;
    margin-bottom: 50px;
    opacity: 0.8;
    font-weight: 400;
}

/* 数据统计卡片 - 现代设计 */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left var(--transition-slow);
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: var(--shadow-heavy);
}

.stat-number {
    font-size: 3.5em;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.stat-label {
    font-size: 1.1em;
    opacity: 0.9;
    font-weight: 500;
}

/* 内容区域 - 现代卡片设计 */
.content-section {
    background: var(--bg-color);
    padding: 80px 40px;
    margin: 0;
    position: relative;
}

.content-section:nth-child(even) {
    background: var(--bg-light);
}

/* 投资页面专用section-title样式 */
.investment-page .section-title {
    font-size: 3em;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
    text-align: center;
    position: relative;
}

.investment-page .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-description {
    font-size: 1.4em;
    color: var(--text-light);
    margin-bottom: 50px;
    text-align: center;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* 内容网格 - 优化布局系统 */
.content-grid {
    display: grid;
    gap: 30px;
    margin: 50px 0;
}

/* 4卡片布局 - 一排显示 */
.content-grid.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* 6卡片布局 - 两排显示 */
.content-grid.grid-6 {
    grid-template-columns: repeat(3, 1fr);
}

/* 8卡片布局 - 两排显示 */
.content-grid.grid-8 {
    grid-template-columns: repeat(4, 1fr);
}

/* 通用卡片布局 - 自适应 */
.content-grid.grid-auto {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.content-card {
    background: var(--bg-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-normal);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

/* 卡片辅助色变化 */
.content-card:nth-child(4n+1)::before { background: var(--gradient-primary); }
.content-card:nth-child(4n+2)::before { background: var(--gradient-blue); }
.content-card:nth-child(4n+3)::before { background: var(--gradient-green); }
.content-card:nth-child(4n+4)::before { background: var(--gradient-purple); }

.content-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card-title {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    position: relative;
}

.card-title::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* 卡片标题使用统一的主色调，简化样式 */

.card-content {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1em;
}

/* 数据可视化样式 - 优化布局 */
.stats-grid {
    display: grid;
    gap: 25px;
    margin: 50px 0;
}

/* 4个统计项 - 一排显示 */
.stats-grid.stats-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* 3个统计项 - 一排显示 */
.stats-grid.stats-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* 通用统计项布局 */
.stats-grid.stats-auto {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.stat-item {
    background: var(--gradient-primary);
    color: white;
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

/* 统计项辅助色变化 */
.stat-item:nth-child(4n+1) { background: var(--gradient-primary); }
.stat-item:nth-child(4n+2) { background: var(--gradient-blue); }
.stat-item:nth-child(4n+3) { background: var(--gradient-green); }
.stat-item:nth-child(4n+4) { background: var(--gradient-purple); }

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    transition: all var(--transition-slow);
}

.stat-item:hover::before {
    transform: rotate(45deg) scale(1.5);
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-heavy);
}

.stat-value {
    font-size: 3em;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 1.1em;
    opacity: 0.9;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* 营销网格样式 - 优化布局 */
.marketing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.marketing-item {
    background: var(--bg-color);
    padding: 30px 20px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-normal);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.marketing-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
}

/* 营销项简化样式 - 统一使用主色调 */
.marketing-item::before {
    background: var(--gradient-primary);
}

.marketing-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.marketing-item i {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: all var(--transition-normal);
}

.marketing-item h4 {
    color: var(--text-color);
    font-size: 1.1em;
    margin: 0;
}

/* 平台网格样式 - 优化布局 */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.platform-item {
    background: var(--bg-color);
    padding: 25px 15px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-normal);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

/* 平台项简化样式 - 统一使用主色调 */
.platform-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
}

.platform-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.platform-item i {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 10px;
    transition: all var(--transition-normal);
}

.platform-item h4 {
    color: var(--text-color);
    font-size: 1em;
    margin: 0;
}

/* 业绩展示样式 - 优化布局 */
.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.performance-item {
    background: var(--gradient-primary);
    color: white;
    padding: 30px 20px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

/* 业绩项辅助色变化 */
.performance-item:nth-child(6n+1) {
    background: var(--gradient-primary);
}

.performance-item:nth-child(6n+2) {
    background: var(--gradient-blue);
}

.performance-item:nth-child(6n+3) {
    background: var(--gradient-green);
}

.performance-item:nth-child(6n+4) {
    background: var(--gradient-purple);
}

.performance-item:nth-child(6n+5) {
    background: var(--gradient-teal);
}

.performance-item:nth-child(6n+6) {
    background: linear-gradient(135deg, var(--warning-color) 0%, #E67E22 100%);
}

.performance-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    transition: all var(--transition-slow);
}

.performance-item:hover::before {
    transform: rotate(45deg) scale(1.5);
}

.performance-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-heavy);
}

.performance-amount {
    font-size: 2.5em;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.performance-store {
    font-size: 1.1em;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* 流程步骤样式 - 优化布局 */
.process-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

.process-step {
    background: var(--bg-color);
    padding: 30px 20px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-normal);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

/* 流程步骤辅助色变化 */
.process-step:nth-child(10n+1)::before {
    background: var(--gradient-primary);
}

.process-step:nth-child(10n+2)::before {
    background: var(--gradient-blue);
}

.process-step:nth-child(10n+3)::before {
    background: var(--gradient-green);
}

.process-step:nth-child(10n+4)::before {
    background: var(--gradient-purple);
}

.process-step:nth-child(10n+5)::before {
    background: var(--gradient-teal);
}

.process-step:nth-child(10n+6)::before {
    background: linear-gradient(135deg, var(--warning-color) 0%, #E67E22 100%);
}

.process-step:nth-child(10n+7)::before {
    background: linear-gradient(135deg, var(--accent-color) 0%, #C0392B 100%);
}

.process-step:nth-child(10n+8)::before {
    background: linear-gradient(135deg, #34495E 0%, #2C3E50 100%);
}

.process-step:nth-child(10n+9)::before {
    background: linear-gradient(135deg, #8E44AD 0%, #7D3C98 100%);
}

.process-step:nth-child(10n+10)::before {
    background: linear-gradient(135deg, #D35400 0%, #BA4A00 100%);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    font-weight: 700;
    margin: 0 auto 20px;
    transition: all var(--transition-normal);
}

/* 步骤编号辅助色变化 */
.process-step:nth-child(10n+1) .step-number {
    background: var(--gradient-primary);
}

.process-step:nth-child(10n+2) .step-number {
    background: var(--gradient-blue);
}

.process-step:nth-child(10n+3) .step-number {
    background: var(--gradient-green);
}

.process-step:nth-child(10n+4) .step-number {
    background: var(--gradient-purple);
}

.process-step:nth-child(10n+5) .step-number {
    background: var(--gradient-teal);
}

.process-step:nth-child(10n+6) .step-number {
    background: linear-gradient(135deg, var(--warning-color) 0%, #E67E22 100%);
}

.process-step:nth-child(10n+7) .step-number {
    background: linear-gradient(135deg, var(--accent-color) 0%, #C0392B 100%);
}

.process-step:nth-child(10n+8) .step-number {
    background: linear-gradient(135deg, #34495E 0%, #2C3E50 100%);
}

.process-step:nth-child(10n+9) .step-number {
    background: linear-gradient(135deg, #8E44AD 0%, #7D3C98 100%);
}

.process-step:nth-child(10n+10) .step-number {
    background: linear-gradient(135deg, #D35400 0%, #BA4A00 100%);
}

.process-step:hover .step-number {
    transform: scale(1.1);
}

.step-content h4 {
    color: var(--text-color);
    font-size: 1.2em;
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.9em;
    margin: 0;
}

/* 进度条样式 */
.progress-container {
    background: var(--bg-dark);
    border-radius: var(--border-radius);
    height: 8px;
    margin: 10px 0;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    transition: width var(--transition-slow);
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* 数据表格 - 现代设计 */
.data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 50px 0;
    background: var(--bg-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.data-table th,
.data-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.data-table th {
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.data-table tr:hover {
    background: var(--bg-light);
    transform: scale(1.01);
    transition: all var(--transition-fast);
}

.data-table tr:last-child td {
    border-bottom: none;
}

/* 联系区域 - 现代设计 */
.contact-section {
    background: var(--gradient-secondary);
    color: white;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

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

.contact-title {
    font-size: 3.5em;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.contact-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 3px;
}

.contact-phone {
    font-size: 4em;
    font-weight: 800;
    margin: 40px 0;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2em;
    margin-top: 30px;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left var(--transition-slow);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
    color: white;
    text-decoration: none;
}

/* 响应式设计 */
@media (max-width: 768px) {
    :root {
        --header-height: 60px; /* 移动端导航栏高度 */
    }
    
    body {
        margin-top: var(--header-height);
    }
    
    .hero-title {
        font-size: 2.5em;
    }
    
    /* 移动端卡片布局 */
    .content-grid,
    .content-grid.grid-4,
    .content-grid.grid-6,
    .content-grid.grid-8,
    .content-grid.grid-auto {
        grid-template-columns: 1fr;
    }
    
    /* 移动端统计项布局 */
    .stats-grid,
    .stats-grid.stats-4,
    .stats-grid.stats-3,
    .stats-grid.stats-auto {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .investment-container {
        padding: 0;
    }
    
    .hero-section,
    .content-section,
    .contact-section {
        padding: 50px 20px;
    }
    
    .contact-phone {
        font-size: 2.5em;
    }
    
    .investment-page .section-title {
        font-size: 2.2em;
    }
    
    .comparison-table .comparison-row,
    .comparison-table .comparison-header {
        grid-template-columns: 1fr;
    }
    
    .comparison-table .comparison-cell {
        text-align: left;
        justify-content: flex-start;
        padding: 15px;
        min-height: auto;
    }
    
    .marketing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .performance-grid {
        grid-template-columns: 1fr;
    }
    
    .process-flow {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-link {
        min-width: 70px;
        padding: 12px;
    }
    
    /* 增强对比表格移动端适配 */
    .enhanced-comparison .comparison-header,
    .enhanced-comparison .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .enhanced-comparison .comparison-cell {
        padding: 20px 15px;
        min-height: auto;
        font-size: 1em;
        gap: 10px;
    }
    
    .enhanced-comparison .comparison-cell:first-child {
        background: var(--primary-color);
        color: white;
        font-weight: 700;
        text-align: center;
        justify-content: center;
    }
    
    .enhanced-comparison .comparison-header .comparison-cell {
        min-height: 60px;
        font-size: 1.1em;
    }
    
    .comparison-summary {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .summary-item {
        padding: 30px 20px;
    }
    
    .summary-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5em;
    }
    
    .summary-content h4 {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    :root {
        --header-height: 50px; /* 小屏幕导航栏高度 */
    }
    
    body {
        margin-top: var(--header-height);
    }
    
    .hero-title {
        font-size: 2em;
    }
    
    /* 小屏幕统计项布局 */
    .stats-grid,
    .stats-grid.stats-4,
    .stats-grid.stats-3,
    .stats-grid.stats-auto {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .hero-section,
    .content-section,
    .contact-section {
        padding: 40px 15px;
    }
    
    .contact-phone {
        font-size: 2em;
    }
    
    .investment-page .section-title {
        font-size: 1.8em;
    }
    
    .marketing-grid {
        grid-template-columns: 1fr;
    }
    
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-card {
        padding: 30px 20px;
    }
    
    .stat-item {
        padding: 30px 20px;
    }
    
    .summary-item {
        padding: 25px 15px;
    }
    
    .summary-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3em;
    }
    
    .summary-content h4 {
        font-size: 1.2em;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-section,
.content-section,
.contact-section {
    animation: fadeInUp 0.8s ease-out;
}

.content-section:nth-child(odd) {
    animation: slideInLeft 0.8s ease-out;
}

.content-section:nth-child(even) {
    animation: slideInRight 0.8s ease-out;
}

/* 滚动指示器 */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--bg-dark);
    z-index: 10000;
}

.scroll-progress {
    height: 100%;
    background: var(--gradient-primary);
    width: 0%;
    transition: width var(--transition-fast);
}

/* 对比表格样式 */
.comparison-table {
    background: var(--bg-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    margin: 30px 0;
}

.comparison-table .comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: var(--gradient-primary);
    color: white;
}

.comparison-table .comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.comparison-table .comparison-cell {
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.comparison-table .comparison-cell.header {
    font-weight: 600;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-table .comparison-cell.platinum {
    background: rgba(235, 102, 48, 0.05);
    color: var(--primary-color);
    font-weight: 500;
}

.comparison-table .comparison-cell.other {
    background: rgba(44, 62, 80, 0.05);
    color: var(--secondary-color);
    font-weight: 500;
}

/* 重新设计的对比表格样式 */
.enhanced-comparison {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    margin: 40px 0;
    border: 1px solid rgba(235, 102, 48, 0.1);
    position: relative;
}

.enhanced-comparison .comparison-header {
    background: #f8f9fa;
    color: #2c3e50;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 2px solid #e9ecef;
}

.enhanced-comparison .comparison-header .comparison-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 70px;
    padding: 20px 15px;
    font-size: 1.1em;
    font-weight: 700;
    text-align: center;
    border-right: 1px solid #e9ecef;
}

.enhanced-comparison .comparison-header .comparison-cell:first-child {
    background: #495057;
    color: white;
    font-size: 1em;
}

.enhanced-comparison .comparison-header .comparison-cell:last-child {
    border-right: none;
}

/* 铂贝卡表头 */
.enhanced-comparison .comparison-header .comparison-cell.platinum-header {
    background: linear-gradient(135deg, #EB6630 0%, #ff8c42 100%);
    color: white;
    font-weight: 800;
}

.enhanced-comparison .comparison-header .comparison-cell.platinum-header::before {
    content: '👑';
    margin-right: 6px;
    font-size: 1.2em;
}

/* 其他同行表头 */
.enhanced-comparison .comparison-header .comparison-cell.other-header {
    background: #6c757d;
    color: white;
    font-weight: 600;
}

.enhanced-comparison .comparison-header .comparison-cell.other-header::before {
    content: '🏢';
    margin-right: 6px;
    font-size: 1.1em;
}

.enhanced-comparison .comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s ease;
}

.enhanced-comparison .comparison-row:hover {
    background: #f8f9fa;
}

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

.enhanced-comparison .comparison-cell {
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 60px;
    font-size: 0.95em;
    line-height: 1.5;
    gap: 10px;
    border-right: 1px solid #e9ecef;
}

.enhanced-comparison .comparison-cell:first-child {
    background: #495057;
    font-weight: 600;
    color: white;
    justify-content: center;
    text-align: center;
    font-size: 0.9em;
}

.enhanced-comparison .comparison-cell:last-child {
    border-right: none;
}

/* 铂贝卡优势列 */
.enhanced-comparison .comparison-cell.platinum {
    background: rgba(235, 102, 48, 0.05);
    color: #2c3e50;
    font-weight: 600;
    border-left: 3px solid #EB6630;
}

/* 其他同行列 */
.enhanced-comparison .comparison-cell.other {
    background: rgba(108, 117, 125, 0.05);
    color: #495057;
    font-weight: 500;
    border-left: 3px solid #6c757d;
}

/* 图标样式 */
.enhanced-comparison .comparison-cell i {
    font-size: 1.2em;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.enhanced-comparison .comparison-cell.platinum i {
    color: #EB6630;
    background: rgba(235, 102, 48, 0.1);
}

.enhanced-comparison .comparison-cell.other i {
    color: #6c757d;
    background: rgba(108, 117, 125, 0.1);
}

/* 同行对比section样式增强 */
.comparison-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23EB6630" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

/* 增强的section头部 */
.section-header-enhanced {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.gradient-text {
    background: linear-gradient(135deg, #EB6630 0%, #ff8a50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-divider {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #EB6630, #ff8a50);
    margin: 20px auto;
    border-radius: 2px;
    position: relative;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #EB6630;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(235, 102, 48, 0.2);
}

/* 担忧section样式 */
.concerns-section {
    margin-bottom: 80px;
}

.concerns-title {
    text-align: center;
    font-size: 1.8em;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 40px;
    position: relative;
}

.concerns-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #EB6630;
}

.concerns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.concern-card {
    background: white;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border: 1px solid rgba(235, 102, 48, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.concern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #ffa726);
}

.concern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}



.concern-title {
    font-size: 1.3em;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.concern-description {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95em;
}

/* 对比容器样式 */
.comparison-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.08);
    border: 1px solid rgba(235, 102, 48, 0.1);
    position: relative;
}

.comparison-intro {
    text-align: center;
    margin-bottom: 40px;
}

.comparison-main-title {
    font-size: 2.2em;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #2c3e50 0%, #EB6630 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-subtitle {
    color: #6c757d;
    font-size: 1.1em;
    margin: 0;
}

/* 对比总结样式 */
.comparison-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.summary-item {
    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #e9ecef;
}

.summary-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.summary-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5em;
}

.summary-item.platinum .summary-icon {
    background: #EB6630;
    color: white;
}

.summary-item.other .summary-icon {
    background: #6c757d;
    color: white;
}

.summary-content h4 {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.summary-content p {
    color: var(--text-light);
    font-size: 1.1em;
    margin: 0;
    line-height: 1.6;
}

.summary-item.other .summary-content h4 {
    color: var(--accent-color);
}

/* 社交媒体链接样式 */
.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-decoration: none;
    padding: 15px;
    border-radius: var(--border-radius);
    background: rgba(255,255,255,0.1);
    transition: all var(--transition-normal);
    min-width: 80px;
}

.social-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
}

.social-link i {
    font-size: 1.5em;
    margin-bottom: 8px;
}

.social-link span {
    font-size: 0.9em;
    font-weight: 500;
}

/* 响应式优化 */
@media (max-width: 768px) {
    :root {
        --header-height: 60px; /* 移动端导航栏高度 */
    }
    
    body {
        margin-top: var(--header-height);
    }
    
    .hero-title {
        font-size: 2.5em;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .investment-container {
        padding: 0;
    }
    
    .hero-section,
    .content-section,
    .contact-section {
        padding: 50px 20px;
    }
    
    .contact-phone {
        font-size: 2.5em;
    }
    
    .investment-page .section-title {
        font-size: 2.2em;
    }
    
    .comparison-table .comparison-row,
    .comparison-table .comparison-header {
        grid-template-columns: 1fr;
    }
    
    .comparison-table .comparison-cell {
        text-align: left;
        justify-content: flex-start;
        padding: 15px;
        min-height: auto;
    }
    
    .marketing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .performance-grid {
        grid-template-columns: 1fr;
    }
    
    .process-flow {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-link {
        min-width: 70px;
        padding: 12px;
    }
    
    /* 增强对比表格移动端适配 */
    .enhanced-comparison .comparison-header,
    .enhanced-comparison .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .enhanced-comparison .comparison-cell {
        padding: 20px 15px;
        min-height: auto;
        font-size: 1em;
        gap: 10px;
    }
    
    .enhanced-comparison .comparison-cell:first-child {
        background: var(--primary-color);
        color: white;
        font-weight: 700;
        text-align: center;
        justify-content: center;
    }
    
    .enhanced-comparison .comparison-header .comparison-cell {
    min-height: 60px;
        font-size: 1.1em;
    }
    
    .comparison-summary {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .summary-item {
        padding: 30px 20px;
    }
    
    .summary-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5em;
    }
    
    .summary-content h4 {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    :root {
        --header-height: 50px; /* 小屏幕导航栏高度 */
    }
    
    body {
        margin-top: var(--header-height);
    }
    
    .hero-title {
        font-size: 2.5em;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .investment-container {
        padding: 0;
    }
    
    .hero-section,
    .content-section,
    .contact-section {
        padding: 50px 20px;
    }
    
    .contact-phone {
        font-size: 2.5em;
    }
    
    .investment-page .section-title {
        font-size: 2.2em;
    }
    
    .comparison-table .comparison-row,
    .comparison-table .comparison-header {
        grid-template-columns: 1fr;
    }
    
    .comparison-table .comparison-cell {
        text-align: left;
        justify-content: flex-start;
        padding: 15px;
        min-height: auto;
    }
    
    .marketing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .performance-grid {
        grid-template-columns: 1fr;
    }
    
    .process-flow {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-link {
        min-width: 70px;
        padding: 12px;
    }
    
    /* 增强对比表格移动端适配 */
    .enhanced-comparison .comparison-header,
    .enhanced-comparison .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .enhanced-comparison .comparison-cell {
        padding: 20px 15px;
        min-height: auto;
    font-size: 1em;
        gap: 10px;
}

.enhanced-comparison .comparison-cell:first-child {
        background: var(--primary-color);
        color: white;
        font-weight: 700;
        text-align: center;
        justify-content: center;
    }
    
    .enhanced-comparison .comparison-header .comparison-cell {
        min-height: 60px;
        font-size: 1.1em;
    }
    
    .comparison-summary {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .summary-item {
        padding: 30px 20px;
    }
    
    .summary-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5em;
    }
    
    .summary-content h4 {
        font-size: 1.3em;
    }
}

/* 数据可视化图表样式 */
.chart-container {
    background: var(--bg-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-card);
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.chart-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

/* 饼图样式 */
.pie-chart {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 20px auto;
    position: relative;
    background: conic-gradient(
        var(--primary-color) 0deg 302deg,
        var(--auxiliary-blue) 302deg 360deg
    );
    box-shadow: var(--shadow-medium);
}

.pie-chart::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--bg-color);
    border-radius: 50%;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}

.pie-chart-gender {
    background: conic-gradient(
        var(--auxiliary-blue) 0deg 234deg,
        var(--auxiliary-purple) 234deg 360deg
    );
}

.pie-chart-age {
    background: conic-gradient(
        var(--auxiliary-green) 0deg 151deg,
        var(--auxiliary-teal) 151deg 360deg
    );
}

.pie-chart-population {
    background: conic-gradient(
        var(--primary-color) 0deg 151deg,
        var(--warning-color) 151deg 360deg
    );
}

/* 图例样式 */
.chart-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9em;
    color: var(--text-color);
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* 柱状图样式 */
.bar-chart {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 40px;
    height: 200px;
    margin: 30px 0;
    padding: 20px 0;
    position: relative;
}

.bar-chart::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--bg-dark);
}

.bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
}

.bar {
    width: 60px;
    background: var(--gradient-primary);
    border-radius: 8px 8px 0 0;
    position: relative;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-light);
}

.bar:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.bar::after {
    content: attr(data-value);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-color);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: 600;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.bar:hover::after {
    opacity: 1;
}

.bar-84 {
    height: 84%;
    background: var(--gradient-primary);
}

.bar-16 {
    height: 16%;
    background: var(--gradient-blue);
}

.bar-65 {
    height: 65%;
    background: var(--gradient-blue);
}

.bar-35 {
    height: 35%;
    background: var(--gradient-purple);
}

.bar-42 {
    height: 42%;
    background: var(--gradient-green);
}

.bar-58 {
    height: 58%;
    background: var(--gradient-teal);
}

.bar-21 {
    height: 21%;
    background: var(--gradient-primary);
}

.bar-30 {
    height: 30%;
    background: var(--gradient-warning);
}

.bar-label {
    font-size: 0.9em;
    color: var(--text-color);
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
}

/* 趋势图样式 - 简化曲线示意图 */
.trend-chart-enhanced {
    position: relative;
    height: 160px;
    margin: 30px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: var(--border-radius);
    overflow: visible;
    border: 2px solid rgba(235, 102, 48, 0.1);
}

.trend-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(235, 102, 48, 0.02) 0%, 
        rgba(235, 102, 48, 0.05) 50%, 
        rgba(235, 102, 48, 0.02) 100%
    );
    border-radius: var(--border-radius);
}



.trend-points {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}

.trend-point {
    position: absolute;
    width: 14px;
    height: 14px;
    background: var(--primary-color);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(235, 102, 48, 0.4);
    transition: all var(--transition-normal);
    z-index: 3;
}

.trend-point:hover {
    transform: scale(1.2);
    box-shadow: 0 5px 15px rgba(235, 102, 48, 0.6);
}

.trend-point-start {
    bottom: 35px;
    left: 15%;
}

.trend-point-end {
    bottom: 75px;
    left: 85%;
}

.trend-labels {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
}

.trend-label {
    position: absolute;
    background: white;
    border: 1px solid rgba(235, 102, 48, 0.2);
    border-radius: 6px;
    padding: 8px 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transform: translateX(-50%);
    text-align: center;
    font-size: 0.85em;
    font-weight: 600;
    min-width: 80px;
}

.trend-label-start {
    bottom: 75px;
    left: 15%;
    color: var(--text-color);
}

.trend-label-end {
    bottom: 115px;
    left: 85%;
    color: var(--primary-color);
}

.trend-growth-indicator {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(235, 102, 48, 0.2);
}

.growth-arrow {
    font-size: 1.2em;
    color: var(--primary-color);
    margin-bottom: 3px;
    animation: bounce 2s infinite;
}

.growth-text {
    font-size: 0.8em;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.1;
}

.growth-text strong {
    color: var(--primary-color);
    font-size: 1.1em;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-6px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* 响应式图表 */
@media (max-width: 768px) {
    .pie-chart {
        width: 150px;
        height: 150px;
    }
    
    .pie-chart::after {
        width: 45px;
        height: 45px;
    }
    
    .chart-legend {
        gap: 15px;
    }
    
    .bar-chart {
        gap: 20px;
        height: 150px;
    }
    
    .bar {
        width: 40px;
    }
    
    .trend-chart-enhanced {
        height: 140px;
    }
    
    .trend-label {
        padding: 6px 10px;
        min-width: 70px;
        font-size: 0.75em;
    }
    
    .label-year {
        font-size: 0.8em;
    }
    
    .label-data {
        font-size: 1em;
    }
    
    .label-percent {
        font-size: 0.75em;
    }
    
    .growth-arrow {
        font-size: 1.2em;
    }
    
    .growth-text {
        font-size: 0.8em;
    }
    
    .stat-visual {
        width: 60px;
        height: 60px;
        font-size: 1.5em;
    }
    
    .stat-number-large {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .chart-container {
        padding: 25px 20px;
    }
    
    .pie-chart {
        width: 120px;
        height: 120px;
    }
    
    .pie-chart::after {
        width: 36px;
        height: 36px;
    }
    
    .chart-legend {
        flex-direction: column;
        gap: 10px;
    }
    
    .bar-chart {
        gap: 15px;
        height: 120px;
    }
    
    .bar {
        width: 30px;
    }
    
    .bar-label {
        font-size: 0.8em;
    }
    
    .trend-chart-enhanced {
        height: 120px;
        margin: 20px 0;
    }
    
    .trend-label {
        padding: 6px 10px;
        min-width: 70px;
        font-size: 0.75em;
    }
    
    .label-year {
        font-size: 0.7em;
    }
    
    .label-data {
        font-size: 0.9em;
    }
    
    .label-percent {
        font-size: 0.7em;
    }
    
    .trend-point {
        width: 12px;
        height: 12px;
        border: 3px solid white;
    }
    
    .trend-line-path {
        height: 3px;
    }
    
    .growth-arrow {
        font-size: 1em;
    }
    
    .growth-text {
        font-size: 0.7em;
    }
}

/* 统计卡片增强 */
.stat-card-enhanced {
    background: var(--bg-color);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-card);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.stat-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.stat-card-enhanced:nth-child(2)::before {
    background: var(--gradient-blue);
}

.stat-card-enhanced:nth-child(3)::before {
    background: var(--gradient-green);
}

.stat-card-enhanced:nth-child(4)::before {
    background: var(--gradient-purple);
}

.stat-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.stat-visual {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    color: white;
    background: var(--gradient-primary);
    box-shadow: var(--shadow-medium);
}

.stat-card-enhanced:nth-child(2) .stat-visual {
    background: var(--gradient-blue);
}

.stat-card-enhanced:nth-child(3) .stat-visual {
    background: var(--gradient-green);
}

.stat-card-enhanced:nth-child(4) .stat-visual {
    background: var(--gradient-purple);
}

.stat-number-large {
    font-size: 2.5em;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-card-enhanced:nth-child(2) .stat-number-large {
    color: var(--auxiliary-blue);
}

.stat-card-enhanced:nth-child(3) .stat-number-large {
    color: var(--auxiliary-green);
}

.stat-card-enhanced:nth-child(4) .stat-number-large {
    color: var(--auxiliary-purple);
}

.stat-description {
    color: var(--text-light);
    font-size: 1em;
    line-height: 1.5;
}

.trend-curve {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    filter: drop-shadow(0 2px 8px rgba(235, 102, 48, 0.3));
}

.trend-curve path {
    stroke-width: 3;
    animation: drawLine 2s ease-in-out;
}

@keyframes drawLine {
    0% {
        stroke-dasharray: 200;
        stroke-dashoffset: 200;
    }
    100% {
        stroke-dasharray: 200;
        stroke-dashoffset: 0;
    }
}

/* 单店模型 */
.store-model-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    margin: 50px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(235, 102, 48, 0.02) 0%, rgba(235, 102, 48, 0.05) 100%);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(235, 102, 48, 0.1);
}

.intro-content {
    flex: 2;
    max-width: none;
}

.intro-text-block {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 35px;
    padding: 25px;
    background: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: all var(--transition-normal);
}

.intro-text-block:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.intro-text-block:last-child {
    margin-bottom: 0;
}

.intro-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    font-size: 1.5em;
    flex-shrink: 0;
    box-shadow: var(--shadow-medium);
}

.intro-text {
    flex: 1;
}

.intro-text h4 {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 12px;
    line-height: 1.3;
}

.intro-text p {
    font-size: 1.1em;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.model-highlights {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-self: stretch;
}

.highlight-item {
    background: var(--bg-color);
    padding: 25px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-normal);
    border: 1px solid rgba(235, 102, 48, 0.1);
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.highlight-number {
    font-size: 2.2em;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1;
}

.highlight-label {
    font-size: 1em;
    color: var(--text-color);
    font-weight: 600;
    opacity: 0.9;
}

.store-profit-showcase {
    background: var(--bg-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-card);
    margin: 50px 0;
    border: 1px solid rgba(235, 102, 48, 0.1);
}

.showcase-title {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: center;
    justify-content: center;
}

.showcase-title i {
    color: var(--primary-color);
    font-size: 1.2em;
}

.profit-calculation {
    margin-top: 40px;
}

.calculation-card {
    background: linear-gradient(135deg, rgba(235, 102, 48, 0.05) 0%, rgba(235, 102, 48, 0.1) 100%);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(235, 102, 48, 0.2);
    position: relative;
    overflow: hidden;
}

.calculation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.calculation-card h4 {
    font-size: 1.3em;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.calculation-card h4 i {
    color: var(--primary-color);
}

.calculation-formula {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 25px;
}

.formula-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: all var(--transition-normal);
}

.formula-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.formula-label {
    font-size: 1em;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 500;
}

.formula-value {
    font-size: 1.6em;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1;
}

.formula-item.highlight {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.05);
}

.formula-item.highlight .formula-label,
.formula-item.highlight .formula-value {
    color: white;
}

.calculation-note {
    font-size: 0.9em;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
    margin: 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius);
}

/* 响应式适配 */
@media (max-width: 1024px) {
    .store-model-intro {
        flex-direction: column;
        gap: 30px;
    }
    
    .model-highlights {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .highlight-item {
        padding: 20px 15px;
    }
    
    .highlight-number {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .store-model-intro {
        padding: 25px 20px;
    }
    
    .intro-text-block {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    .intro-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3em;
        margin: 0 auto;
    }
    
    .intro-text h4 {
        font-size: 1.2em;
    }
    
    .intro-text p {
        font-size: 1em;
    }
    
    .model-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .store-profit-showcase {
        padding: 25px 20px;
    }
    
    .calculation-formula {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .formula-item {
        padding: 15px;
    }
    
    .formula-value {
        font-size: 1.4em;
    }
}

@media (max-width: 480px) {
    .model-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .highlight-number {
        font-size: 1.6em;
    }
    
    .highlight-label {
        font-size: 0.9em;
    }
    
    .showcase-title {
        font-size: 1.4em;
        flex-direction: column;
        gap: 10px;
    }
    
    .calculation-card {
        padding: 20px 15px;
    }
    
    .calculation-card h4 {
        font-size: 1.1em;
    }
}

/* 开业业绩 */
.performance-highlights {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px;
    background: var(--bg-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
}

.highlight-banner {
    flex: 1;
    text-align: center;
}

.banner-content {
    margin-bottom: 20px;
}

.banner-stats {
    display: flex;
    justify-content: space-around;
}

.banner-stat {
    text-align: center;
}

.banner-stat .stat-number {
    font-size: 2.8em;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(235, 102, 48, 0.3);
}

.banner-stat .stat-text {
    font-size: 1.1em;
    color: var(--text-color);
    font-weight: 600;
    opacity: 0.9;
}

.performance-showcase {
    flex: 2;
    text-align: center;
}

.showcase-section-title {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
}

.performance-grid-enhanced {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.performance-card {
    background: var(--bg-color);
    border-radius: var(--border-radius-lg);
    padding: 20px;
    margin: 10px;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-normal);
    position: relative;
}

.performance-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.performance-image {
    position: relative;
}

.performance-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.performance-overlay:hover {
    opacity: 1;
}

.overlay-content {
    color: white;
    font-size: 1.5em;
    font-weight: 700;
}

.performance-info {
    text-align: center;
    margin-top: 20px;
}

.performance-amount {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 10px;
}

.performance-details {
    font-size: 1.2em;
    color: var(--text-light);
}

.performance-badge {
    font-size: 1em;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: var(--border-radius);
    margin-top: 10px;
}

.performance-badge.featured-badge {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: var(--shadow-medium);
}

.anniversary-performance {
    margin-top: 50px;
    text-align: center;
}

.anniversary-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.anniversary-item {
    background: var(--bg-color);
    border-radius: var(--border-radius-lg);
    padding: 20px;
    margin: 10px;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-normal);
    position: relative;
}

.anniversary-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.anniversary-amount {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 5px;
}

.anniversary-store {
    font-size: 1.2em;
    color: var(--text-light);
}

.anniversary-growth {
    font-size: 1em;
    font-weight: 600;
    color: var(--success-color);
}

.performance-summary {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    padding: 20px;
    background: var(--bg-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
}

.summary-card {
    text-align: center;
    flex: 1;
}

/* 重复的.summary-icon和.summary-content h4样式已移除，使用上方统一定义 */

/* 业绩展示模块样式 */
.performance-highlights {
    margin: 50px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(235, 102, 48, 0.05) 0%, rgba(235, 102, 48, 0.1) 100%);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(235, 102, 48, 0.2);
}

.highlight-banner {
    text-align: center;
}

.banner-content h3 {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.banner-content h3 i {
    font-size: 1.2em;
    color: var(--warning-color);
}

.banner-content p {
    font-size: 1.2em;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.banner-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.banner-stat {
    text-align: center;
    padding: 20px;
    background: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    min-width: 150px;
}

.banner-stat .stat-number {
    font-size: 2.8em;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(235, 102, 48, 0.3);
}

.banner-stat .stat-text {
    font-size: 1.1em;
    color: var(--text-color);
    font-weight: 600;
    opacity: 0.9;
}

.performance-showcase {
    margin: 60px 0;
}

.showcase-section-title {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.showcase-section-title i {
    color: var(--primary-color);
    font-size: 1.1em;
}

.performance-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.performance-card {
    background: var(--bg-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-normal);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.performance-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.performance-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(235, 102, 48, 0.02) 0%, rgba(235, 102, 48, 0.05) 100%);
}

.performance-card.featured::before {
    content: '⭐ 业绩冠军';
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: 600;
    z-index: 2;
}

.performance-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.performance-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-normal);
}

.performance-card:hover .performance-image img {
    transform: scale(1.05);
}

.performance-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(235, 102, 48, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-normal);
}

.performance-card:hover .performance-overlay {
    opacity: 1;
}

.overlay-content {
    color: white;
    font-size: 1.3em;
    font-weight: 700;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.overlay-content i {
    font-size: 1.5em;
}

.performance-info {
    padding: 25px 20px;
    text-align: center;
}

.performance-amount {
    font-size: 2.2em;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1;
}

.performance-amount.highlight {
    font-size: 2.5em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.performance-details {
    margin-bottom: 15px;
}

.performance-store {
    font-size: 1.2em;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
}

.performance-date {
    font-size: 1em;
    color: var(--text-light);
}

.performance-badge {
    display: inline-block;
    background: rgba(235, 102, 48, 0.1);
    color: var(--primary-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    border: 1px solid rgba(235, 102, 48, 0.2);
}

.performance-badge.featured-badge {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: var(--shadow-medium);
}

.anniversary-performance {
    margin: 60px 0;
    padding: 40px;
    background: var(--bg-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
}

.anniversary-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.anniversary-item {
    background: linear-gradient(135deg, rgba(235, 102, 48, 0.02) 0%, rgba(235, 102, 48, 0.05) 100%);
    padding: 25px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid rgba(235, 102, 48, 0.1);
    position: relative;
}

.anniversary-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.anniversary-item.featured {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.05);
}

.anniversary-item.featured::before {
    content: '🏆';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1.5em;
}

.anniversary-amount {
    font-size: 1.8em;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1;
}

.anniversary-item.featured .anniversary-amount {
    color: white;
}

.anniversary-store {
    font-size: 0.95em;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.3;
}

.anniversary-item.featured .anniversary-store {
    color: rgba(255,255,255,0.9);
}

.anniversary-growth {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--success-color);
    background: rgba(39, 174, 96, 0.1);
    padding: 4px 10px;
    border-radius: 12px;
    display: inline-block;
}

.anniversary-item.featured .anniversary-growth {
    background: rgba(255,255,255,0.2);
    color: white;
}

.performance-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(235, 102, 48, 0.02) 0%, rgba(235, 102, 48, 0.05) 100%);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(235, 102, 48, 0.1);
}

.summary-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: all var(--transition-normal);
}

.summary-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.summary-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-medium);
}

.summary-content h4 {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

.summary-content p {
    font-size: 1em;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .performance-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .anniversary-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .banner-stats {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .performance-highlights {
        padding: 25px 20px;
    }
    
    .banner-content h3 {
        font-size: 1.8em;
        flex-direction: column;
        gap: 10px;
    }
    
    .banner-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .banner-stat {
        min-width: 120px;
    }
    
    .banner-stat .stat-number {
        font-size: 2.2em;
    }
    
    .performance-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .anniversary-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .performance-summary {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px 20px;
    }
    
    .showcase-section-title {
        font-size: 1.8em;
        flex-direction: column;
        gap: 10px;
    }
    
    .performance-image {
        height: 180px;
    }
    
    .performance-amount {
        font-size: 2em;
    }
    
    .anniversary-amount {
        font-size: 1.6em;
    }
}

@media (max-width: 480px) {
    .performance-highlights {
        padding: 20px 15px;
    }
    
    .banner-content h3 {
        font-size: 1.5em;
    }
    
    .banner-content p {
        font-size: 1em;
    }
    
    .stat-number {
        font-size: 2em;
    }
    
    .stat-text {
        font-size: 1em;
    }
    
    .performance-card {
        margin: 10px 0;
    }
    
    .performance-image {
        height: 160px;
    }
    
    .performance-info {
        padding: 20px 15px;
    }
    
    .performance-amount {
        font-size: 1.8em;
    }
    
    .anniversary-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .anniversary-item {
        padding: 20px 15px;
    }
    
    .anniversary-amount {
        font-size: 1.4em;
    }
    
    .anniversary-store {
        font-size: 0.9em;
    }
    
    .summary-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5em;
    }
    
    .summary-content h4 {
        font-size: 1.2em;
    }
    
    .summary-content p {
        font-size: 0.9em;
    }
    
    /* 对比表格响应式设计 */
    .enhanced-comparison .comparison-header,
    .enhanced-comparison .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .enhanced-comparison .comparison-header .comparison-cell,
    .enhanced-comparison .comparison-cell {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
        min-height: 50px;
        padding: 15px;
        font-size: 0.9em;
    }
    
    .enhanced-comparison .comparison-header .comparison-cell:last-child,
    .enhanced-comparison .comparison-cell:last-child {
        border-bottom: none;
    }
    
    .comparison-title {
        font-size: 1.8em;
        margin: 30px 0 20px;
    }
    
    .comparison-summary {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
    }
    
    .summary-item {
        padding: 25px 20px;
    }
    
    .summary-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3em;
    }
    
    .summary-content h4 {
        font-size: 1.2em;
    }
    
    .summary-content p {
        font-size: 0.9em;
    }
}

/* 业绩横幅统计样式 - 优化版本 */
.banner-stat .stat-number,
.performance-highlights .banner-stat .stat-number,
section .performance-highlights .banner-stat .stat-number,
section.content-section .performance-highlights .highlight-banner .banner-stats .banner-stat .stat-number,
div.banner-stat div.stat-number {
    font-size: 2.8em;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1;
    text-shadow: none;
    opacity: 1;
    visibility: visible;
    display: block;
    background: transparent;
    -webkit-text-fill-color: var(--primary-color);
    -webkit-background-clip: unset;
    background-clip: unset;
}

.banner-stat .stat-text,
.performance-highlights .banner-stat .stat-text,
section .performance-highlights .banner-stat .stat-text,
section.content-section .performance-highlights .highlight-banner .banner-stats .banner-stat .stat-text,
div.banner-stat div.stat-text {
    font-size: 1.1em;
    color: var(--text-color);
    font-weight: 600;
    opacity: 0.9;
    visibility: visible;
    display: block;
}

/* 周年庆专用样式 */
.performance-badge.anniversary-badge {
    background: linear-gradient(135deg, #ff9500 0%, #ff6b00 100%);
    color: white;
    border: none;
    box-shadow: 0 2px 8px rgba(255, 149, 0, 0.3);
    position: relative;
}

.performance-badge.anniversary-badge::before {
    content: '🎂';
    margin-right: 5px;
}

.performance-growth {
    font-size: 1em;
    font-weight: 700;
    color: var(--success-color);
    background: rgba(39, 174, 96, 0.1);
    padding: 4px 12px;
    border-radius: 15px;
    display: inline-block;
    margin-top: 8px;
    border: 1px solid rgba(39, 174, 96, 0.2);
    transition: all var(--transition-normal);
}

.performance-growth.highlight {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    border: none;
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.3);
    font-size: 1.1em;
    padding: 6px 15px;
}

/* 周年庆业绩展示布局优化 */
.anniversary-performance .performance-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.anniversary-performance .performance-card.featured::before {
    content: '🏆 庆典冠军';
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff9500 0%, #ff6b00 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(255, 149, 0, 0.3);
}

/* 周年庆响应式设计 */
@media (max-width: 1024px) {
    .anniversary-performance .performance-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .anniversary-performance .performance-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .anniversary-performance .performance-image {
        height: 160px;
    }
    
    .anniversary-performance .performance-amount {
        font-size: 1.8em;
    }
    
    .anniversary-performance .performance-info {
        padding: 20px 15px;
    }
}

/* 业绩横幅统计样式 - 重置版本 */
/* 业绩横幅统计样式 - 简化版本 */
.performance-highlights .banner-stat .stat-number {
    font-size: 2.8em;
    font-weight: 800;
    color: #EB6630;
    margin-bottom: 8px;
    line-height: 1;
}

.performance-highlights .banner-stat .stat-text {
    font-size: 1.1em;
    color: #2C3E50;
    font-weight: 600;
    opacity: 0.9;
}

/* 响应式设计 - 简化版本 */
@media (max-width: 768px) {
    .performance-highlights .banner-stat .stat-number {
        font-size: 2.2em;
    }
}

@media (max-width: 480px) {
    .performance-highlights .banner-stat .stat-number {
        font-size: 2em;
    }
    
    .performance-highlights .banner-stat .stat-text {
        font-size: 1em;
    }
}

/* ========== 同行对比section简约现代样式 ========== */

/* 对比区域整体样式 */
.comparison-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* 区域标题样式 */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5em;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #EB6630, #ff8a50);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1em;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 担忧区块样式 */
.concerns-block {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    border: 1px solid #e9ecef;
}

.concerns-block .block-title {
    font-size: 1.4em;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 24px;
    text-align: center;
}

.concerns-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.concern-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.concern-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    background: white;
}

.concern-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #EB6630, #ff8a50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.concern-icon i {
    font-size: 1.5em;
    color: white;
}

.concern-text {
    flex: 1;
}

.concern-text strong {
    display: block;
    font-size: 1.1em;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.concern-text span {
    color: #6c757d;
    font-size: 0.95em;
    line-height: 1.5;
}

/* 对比表格样式 */
.comparison-table-wrapper {
    margin-bottom: 40px;
}

.comparison-table {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    border: 1px solid #e9ecef;
}

/* 表头样式 */
.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
}

.header-cell {
    padding: 24px 20px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1em;
    border-right: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.header-cell:last-child {
    border-right: none;
}

.header-cell:first-child {
    background: #e9ecef;
    color: #495057;
}

.header-cell.brand-header {
    background: #EB6630;
    color: white;
    position: relative;
}

.header-cell.brand-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
}

.header-cell.competitor-header {
    background: #6c757d;
    color: white;
}

.header-cell i {
    font-size: 1.2em;
}

/* 表格行样式 */
.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #f1f3f4;
    transition: all 0.2s ease;
}

.table-row:hover {
    background: #f8f9fa;
}

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

.row-cell {
    padding: 20px;
    border-right: 1px solid #f1f3f4;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.row-cell:last-child {
    border-right: none;
}

.row-cell.item-cell {
    background: #f8f9fa;
    font-weight: 600;
    color: #495057;
    font-size: 0.95em;
    justify-content: center;
    text-align: center;
}

.row-cell.item-cell i {
    color: #EB6630;
    font-size: 1.1em;
}

.row-cell.brand-cell {
    background: rgba(235, 102, 48, 0.03);
    border-left: 3px solid #EB6630;
    color: #2c3e50;
    font-weight: 500;
}

.row-cell.brand-cell i {
    color: #28a745;
    font-size: 1.2em;
    flex-shrink: 0;
}

.row-cell.competitor-cell {
    background: rgba(108, 117, 125, 0.03);
    border-left: 3px solid #6c757d;
    color: #495057;
    font-weight: 500;
}

.row-cell.competitor-cell i {
    color: #dc3545;
    font-size: 1.2em;
    flex-shrink: 0;
}

/* 推荐区块样式 */
.recommendation-block {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    border: 1px solid #e9ecef;
    position: relative;
}

.recommendation-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #EB6630, #ff8a50);
    border-radius: 16px 16px 0 0;
}

.recommendation-block .block-title {
    font-size: 1.6em;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 32px;
}

.recommendation-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.recommendation-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.recommendation-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    background: white;
}

.recommendation-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #EB6630, #ff8a50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2em;
    flex-shrink: 0;
    margin-top: 2px;
}

.recommendation-item span {
    color: #2c3e50;
    font-weight: 500;
    line-height: 1.6;
    font-size: 0.95em;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .comparison-section {
        padding: 60px 0;
    }
    
    .section-header .section-title {
        font-size: 2em;
    }
    
    .concerns-block,
    .comparison-table,
    .recommendation-block {
        margin-left: 15px;
        margin-right: 15px;
        padding: 24px;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
    }
    
    .header-cell,
    .row-cell {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
    }
    
    .header-cell:last-child,
    .row-cell:last-child {
        border-bottom: none;
    }
    
    .concerns-list {
        grid-template-columns: 1fr;
    }
    
    .recommendation-list {
        grid-template-columns: 1fr;
    }
    
    .concern-item {
        padding: 20px;
    }
    
    .recommendation-item {
        padding: 20px;
    }
}
