/* 可访问性增强样式 */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #007bff;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

/* 键盘导航焦点样式 */
*:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

.challenge-card:focus,
.step:focus,
.feature-item:focus,
.btn:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.3);
}

/* 高对比度模式支持 */
.high-contrast .challenge-card,
.high-contrast .step,
.high-contrast .feature-item,
.high-contrast .pricing-card,
.high-contrast .case-card {
    border: 2px solid #000;
    background: #fff;
    color: #000;
}

.high-contrast .btn-primary {
    background: #000;
    color: #fff;
    border: 2px solid #000;
}

.high-contrast .btn-secondary {
    background: #fff;
    color: #000;
    border: 2px solid #000;
}

/* 减少动画模式支持 */
.reduce-motion * {
    transition: none !important;
    animation: none !important;
}

.reduce-motion .challenge-card:hover,
.reduce-motion .step:hover,
.reduce-motion .feature-item:hover {
    transform: none;
    box-shadow: none;
}

/* 屏幕阅读器专用内容 */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* 触摸设备优化 */
.touch-device .challenge-card:hover,
.touch-device .step:hover,
.touch-device .feature-item:hover {
    transform: none;
    box-shadow: none;
}

.touch-device .challenge-card:active,
.touch-device .step:active,
.touch-device .feature-item:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* 键盘打开状态 */
.keyboard-open .banner {
    min-height: auto;
    padding: 40px 0;
}

/* 图片加载状态 */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* 焦点可见性增强 */
[tabindex="-1"]:focus {
    outline: none;
}

/* 语义化标签样式 */
[role="button"] {
    cursor: pointer;
}

[role="list"] {
    list-style: none;
    padding: 0;
    margin: 0;
}

[role="listitem"] {
    display: block;
}

/* 状态指示器 */
.aria-live {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}


/* 积分制页面专用容器样式 - 保持内容宽度控制 */
        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* 确保主内容区域在移动端正确居中 */
        #main-content {
            width: 100%;
            margin: 0 auto;
            overflow-x: hidden;
            /* 添加flex-grow确保内容区域占据剩余空间 */
            flex-grow: 1;
        }
        
        /* 为所有内容区域添加基础居中样式 */
        section, header, footer {
            width: 100%;
        }

        


        
        /* 积分制Banner核心样式 */
        .product-banner-new {
            background: linear-gradient(135deg, #0072FF 0%, #0056CC 100%);
            color: white;
            padding: 100px 0 60px;
            position: relative;
        }
        
        .banner-wrapper {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 80px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            min-height: 400px;
        }
        
        .banner-left {
            text-align: left;
        }
        
        .banner-title .highlight {
            display: block;
            font-size: 42px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 10px;
            animation: slideInLeft 1s ease-out;
        }
        
        .banner-title .subtitle {
            display: block;
            font-size: 24px;
            font-weight: 400;
            line-height: 1.4;
            opacity: 0.95;
            animation: slideInLeft 1s ease-out 0.2s both;
        }
        
        .banner-description {
            font-size: 18px;
            line-height: 1.6;
            opacity: 0.9;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease-out 0.4s both;
        }
        
        .banner-actions {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        /* Banner区域在线咨询按钮特殊样式 */
        .banner-actions .jx-contact-online {
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 50%, #ff4d4d 100%);
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
        }

        .banner-actions .jx-contact-online:hover {
            background: linear-gradient(135deg, #ff5252 0%, #ff4d4d 50%, #ff3838 100%);
            box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c084fc 100%);
            color: white;
            padding: 16px 32px;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(124, 58, 237, 0.6);
        }
        
        .btn-secondary {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 16px 32px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }
        
        .banner-stats {
            display: flex;
            gap: 40px;
            animation: fadeInUp 1s ease-out 0.8s both;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            display: block;
            font-size: 32px;
            font-weight: 800;
            color: #FFD700;
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 14px;
            opacity: 0.8;
        }
        
        /* 右侧视觉区域 - 全新现代设计 */
    .banner-right {
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .product-showcase-new {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .main-device {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* 手机模型 */
    .phone-mockup {
        position: absolute;
        right: 60%;
        top: 20%;
        width: 120px;
        height: 240px;
        background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
        border-radius: 25px;
        padding: 8px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        animation: floatPhone 4s ease-in-out infinite;
        z-index: 3;
    }
    
    .phone-screen {
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 20px;
        overflow: hidden;
        position: relative;
    }
    
    .app-interface {
        padding: 15px 10px;
        color: white;
        font-size: 10px;
    }
    
    .app-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .logo {
        font-weight: bold;
        font-size: 11px;
    }
    
    .points-badge {
        background: rgba(255, 215, 0, 0.8);
        color: #333;
        padding: 2px 6px;
        border-radius: 10px;
        font-size: 8px;
    }
    
    .dashboard-cards {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .card {
        background: rgba(255, 255, 255, 0.1);
        padding: 8px;
        border-radius: 8px;
        text-align: center;
        backdrop-filter: blur(10px);
    }
    
    .card i {
        font-size: 12px;
        margin-bottom: 3px;
        display: block;
    }
    
    .progress-ring {
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .progress-circle {
        width: 40px;
        height: 40px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    
    .progress-circle::before {
        content: '';
        position: absolute;
        width: 36px;
        height: 36px;
        border: 2px solid #FFD700;
        border-radius: 50%;
        border-top-color: transparent;
        animation: rotate 2s linear infinite;
    }
    
    .progress-text {
        font-size: 10px;
        font-weight: bold;
    }
    
    /* 平板模型 */
    .tablet-mockup {
        position: absolute;
        left: 40%;
        bottom: 15%;
        width: 220px;
        height: 160px;
        background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
        border-radius: 15px;
        padding: 10px;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
        animation: floatTablet 5s ease-in-out infinite;
        animation-delay: 1s;
        z-index: 2;
    }
    
    .tablet-screen {
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        border-radius: 10px;
        overflow: hidden;
        position: relative;
        padding: 15px;
    }
    
    .analytics-dashboard {
        color: white;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .chart-container {
        flex: 1;
        display: flex;
        align-items: end;
        gap: 4px;
        margin-bottom: 10px;
    }
    
    .chart-line {
        display: flex;
        align-items: end;
        gap: 3px;
        height: 40px;
    }
    
    .line-segment {
        width: 8px;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 2px;
        height: var(--height);
        animation: pulse 2s ease-in-out infinite;
    }
    
    .stats-grid {
        display: flex;
        gap: 5px;
    }
    
    .stat-box {
        flex: 1;
        background: rgba(255, 255, 255, 0.1);
        padding: 5px;
        border-radius: 5px;
        text-align: center;
        font-size: 7px;
    }
    
    .stat-box i {
        font-size: 8px;
        margin-bottom: 2px;
        display: block;
    }
    
    /* 浮动装饰元素 */
    .floating-elements {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        pointer-events: none;
    }
    
    .float-item {
        position: absolute;
        font-size: 20px;
        animation: floatDeco 6s ease-in-out infinite;
    }
    
    .star-1 {
        top: 10%;
        left: 20%;
        animation-delay: 0s;
    }
    
    .star-2 {
        top: 15%;
        right: 25%;
        animation-delay: 2s;
    }
    
    .trophy {
        top: 60%;
        left: 10%;
        animation-delay: 1s;
    }
    
    .medal {
        bottom: 30%;
        right: 15%;
        animation-delay: 3s;
    }
    
    .badge {
        top: 40%;
        left: 80%;
        animation-delay: 4s;
    }
    
    .connection-lines {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
    
    .line {
        position: absolute;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        animation: lineFlow 3s ease-in-out infinite;
    }
    
    .line-1 {
        top: 30%;
        left: 20%;
        right: 30%;
        transform: rotate(-15deg);
    }
    
    .line-2 {
        top: 60%;
        left: 10%;
        right: 40%;
        transform: rotate(10deg);
    }
    
    .line-3 {
        bottom: 25%;
        left: 30%;
        right: 20%;
        transform: rotate(-5deg);
    }
    
    /* 光效背景 */
    .glow-effects {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        pointer-events: none;
    }
    
    .glow {
        position: absolute;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(0, 114, 255, 0.2) 0%, transparent 70%);
        animation: glowPulse 4s ease-in-out infinite;
    }
    
    .glow-1 {
        width: 200px;
        height: 200px;
        top: 20%;
        left: 30%;
        animation-delay: 0s;
    }
    
    .glow-2 {
        width: 150px;
        height: 150px;
        top: 50%;
        right: 20%;
        animation-delay: 1.5s;
    }
    
    .glow-3 {
        width: 100px;
        height: 100px;
        bottom: 20%;
        left: 50%;
        animation-delay: 3s;
    }
    
    /* 终极现代设计样式 */
    .visual-showcase {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .showcase-container {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* 主笔记本电脑 */
    .main-laptop {
        position: relative;
        z-index: 10;
        animation: floatMain 6s ease-in-out infinite;
    }
    
    .laptop-frame {
        position: relative;
        width: 380px;
        height: 240px;
    }
    
    .laptop-screen-modern {
        width: 100%;
        height: 200px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 15px;
        padding: 20px;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        position: relative;
        overflow: hidden;
    }
    
    .laptop-screen-modern::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
        animation: shimmer 3s ease-in-out infinite;
    }
    
    .dashboard-content {
        position: relative;
        z-index: 2;
        height: 100%;
        display: flex;
        flex-direction: column;
        color: white;
    }
    
    .dashboard-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .logo-section {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .app-logo {
        font-size: 20px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 8px;
    }
    
    .app-name {
        font-size: 16px;
        font-weight: bold;
    }
    
    .live-status {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 12px;
        background: rgba(0, 255, 0, 0.2);
        padding: 4px 8px;
        border-radius: 12px;
    }
    
    .status-dot {
        width: 6px;
        height: 6px;
        background: #00ff00;
        border-radius: 50%;
        animation: pulseDot 2s ease-in-out infinite;
    }
    
    .metrics-grid {
        display: flex;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .metric-card {
        flex: 1;
        background: rgba(255, 255, 255, 0.1);
        padding: 10px;
        border-radius: 10px;
        text-align: center;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .metric-icon {
        font-size: 20px;
        margin-bottom: 5px;
    }
    
    .metric-value {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 2px;
    }
    
    .metric-label {
        font-size: 10px;
        opacity: 0.8;
    }
    
    .performance-chart {
        flex: 1;
    }
    
    .chart-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
        font-size: 12px;
    }
    
    .trend-up {
        color: #00ff00;
        font-size: 10px;
    }
    
    .chart-bars-modern {
        display: flex;
        align-items: end;
        gap: 8px;
        height: 50px;
    }
    
    .chart-bars-modern .bar {
        flex: 1;
        background: linear-gradient(to top, #4facfe 0%, #00f2fe 100%);
        border-radius: 3px;
        height: var(--height);
        animation: growBar 2s ease-in-out infinite;
        animation-delay: calc(var(--i) * 0.2s);
    }
    
    .laptop-base {
        width: 100%;
        height: 20px;
        background: linear-gradient(135deg, #2d3436, #636e72);
        border-radius: 0 0 15px 15px;
        margin-top: -5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .trackpad-modern {
        width: 80px;
        height: 8px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
    }
    
    /* 浮动设备阵列 */
    .floating-devices-array {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        pointer-events: none;
    }
    
    .device-float {
        position: absolute;
        backdrop-filter: blur(10px);
    }
    
    .phone-float {
        top: 20%;
        right: 70%;
        animation: floatPhone 4s ease-in-out infinite;
    }
    
    .tablet-float {
        bottom: 30%;
        left: 65%;
        animation: floatTablet 5s ease-in-out infinite;
        animation-delay: 1s;
    }
    
    .watch-float {
        top: 60%;
        right: 15%;
        animation: floatWatch 3s ease-in-out infinite;
        animation-delay: 2s;
    }
    
    .device-frame {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        padding: 3px;
    }
    
    .phone-frame {
        width: 60px;
        height: 120px;
        border-radius: 10px;
    }
    
    .tablet-frame {
        width: 100px;
        height: 70px;
        border-radius: 8px;
    }
    
    .watch-frame {
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }
    
    .device-screen {
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #667eea, #764ba2);
        border-radius: inherit;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 8px;
        color: white;
    }
    
    /* 数据流效果 */
    .data-flow {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        pointer-events: none;
    }
    
    .flow-particle {
        position: absolute;
        width: 4px;
        height: 4px;
        background: linear-gradient(45deg, #00f2fe, #4facfe);
        border-radius: 50%;
        animation: flow 6s linear infinite;
        animation-delay: var(--delay);
    }
    
    .flow-particle:nth-child(1) { top: 20%; left: 10%; }
    .flow-particle:nth-child(2) { top: 60%; left: 80%; }
    .flow-particle:nth-child(3) { top: 80%; left: 20%; }
    .flow-particle:nth-child(4) { top: 30%; left: 70%; }
    
    /* 光环系统 */
    .aura-system {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
    }
    
    .aura-ring {
        position: absolute;
        border: 2px solid transparent;
        border-radius: 50%;
        background: linear-gradient(45deg, #4facfe, #00f2fe) border-box;
        mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
        mask-composite: exclude;
        animation: rotateRing 8s linear infinite;
    }
    
    .ring-outer {
        width: 300px;
        height: 300px;
        animation-duration: 8s;
    }
    
    .ring-middle {
        width: 200px;
        height: 200px;
        animation-duration: 6s;
        animation-direction: reverse;
    }
    
    .ring-inner {
        width: 100px;
        height: 100px;
        animation-duration: 4s;
    }
    
    /* 装饰图标 */
    .decorative-icons {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        pointer-events: none;
    }
    
    .deco-icon {
        position: absolute;
        font-size: 24px;
        animation: floatDeco 8s ease-in-out infinite;
    }
    
    .trophy-icon { top: 15%; left: 15%; animation-delay: 0s; }
    .star-icon { top: 25%; right: 20%; animation-delay: 1.5s; }
    .medal-icon { bottom: 25%; left: 20%; animation-delay: 3s; }
    .diamond-icon { bottom: 15%; right: 15%; animation-delay: 4.5s; }
    .rocket-icon { top: 50%; left: 10%; animation-delay: 6s; }
    
    /* 连接线网络 */
    .connection-network {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        pointer-events: none;
    }
    
    .network-node {
        position: absolute;
        width: 6px;
        height: 6px;
        background: #00f2fe;
        border-radius: 50%;
        animation: pulseNode 3s ease-in-out infinite;
    }
    
    .node-1 { top: 30%; left: 25%; }
    .node-2 { top: 60%; right: 30%; }
    .node-3 { bottom: 40%; left: 60%; }
    
    .network-line {
        position: absolute;
        height: 1px;
        background: linear-gradient(90deg, transparent, #00f2fe, transparent);
        animation: networkFlow 4s ease-in-out infinite;
    }
    
    .network-1 {
        top: 35%;
        left: 25%;
        right: 35%;
        transform: rotate(15deg);
    }
    
    .network-2 {
        top: 55%;
        left: 30%;
        right: 25%;
        transform: rotate(-10deg);
    }
    
    .network-3 {
        bottom: 45%;
        left: 20%;
        right: 30%;
        transform: rotate(5deg);
    }
    
    /* 新动画效果 */
    @keyframes floatMain {
        0%, 100% { transform: translateY(0px) scale(1); }
        50% { transform: translateY(-10px) scale(1.02); }
    }
    
    @keyframes floatPhone {
        0%, 100% { transform: translateY(0px) rotate(-8deg); }
        50% { transform: translateY(-15px) rotate(-8deg); }
    }
    
    @keyframes floatTablet {
        0%, 100% { transform: translateY(0px) rotate(5deg); }
        50% { transform: translateY(-20px) rotate(5deg); }
    }
    
    @keyframes floatWatch {
        0%, 100% { transform: translateY(0px) rotate(15deg); }
        50% { transform: translateY(-10px) rotate(15deg); }
    }
    
    @keyframes shimmer {
        0% { transform: translateX(-100%); }
        100% { transform: translateX(100%); }
    }
    
    @keyframes pulseDot {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.5; transform: scale(1.5); }
    }
    
    @keyframes growBar {
        0% { transform: scaleY(0); }
        100% { transform: scaleY(1); }
    }
    
    @keyframes flow {
        0% { transform: translate(0, 0) scale(0); opacity: 0; }
        50% { transform: translate(50px, -30px) scale(1); opacity: 1; }
        100% { transform: translate(100px, -60px) scale(0); opacity: 0; }
    }
    
    @keyframes rotateRing {
        from { transform: translate(-50%, -50%) rotate(0deg); }
        to { transform: translate(-50%, -50%) rotate(360deg); }
    }
    
    @keyframes floatDeco {
        0%, 100% { transform: translateY(0px) scale(1) rotate(0deg); opacity: 0.7; }
        25% { transform: translateY(-15px) scale(1.1) rotate(90deg); opacity: 1; }
        50% { transform: translateY(-30px) scale(1.2) rotate(180deg); opacity: 0.8; }
        75% { transform: translateY(-15px) scale(1.1) rotate(270deg); opacity: 1; }
    }
    
    @keyframes pulseNode {
        0%, 100% { opacity: 0.5; transform: scale(1); }
        50% { opacity: 1; transform: scale(1.5); }
    }
    
    @keyframes networkFlow {
        0%, 100% { opacity: 0; transform: scaleX(0); }
        50% { opacity: 1; transform: scaleX(1); }
    }
    
    /* 优化后的透明PNG图片容器 */
    .transparent-image-container {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent !important;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
        padding: 0;
        margin: 0;
    }

    .transparent-png-image {
        display: block;
        width: auto;
        height: auto;
        max-width: 500px;
        max-height: 400px;
        object-fit: contain;
        object-position: center;
        background: transparent !important;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
        border-radius: 8px;
        padding: 0;
        margin: 0;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
        
        /* 优化图片渲染 */
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
        image-rendering: pixelated;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        
        /* 确保透明背景 */
        mix-blend-mode: normal;
        isolation: isolate;
    }
    
    .transparent-png-image[onload] {
        opacity: 1;
    }

    /* 移除banner-right区域的所有背景 */
    .banner-right {
        background: transparent !important;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
    }

    /* 确保图片容器背景完全透明 */
    .banner-right * {
        background: transparent !important;
    }
    
    /* 响应式设计 - 保持图片原始比例 */
    @media (max-width: 768px) {
        .transparent-png-image {
            max-width: 400px;
            max-height: 320px;
        }
    }
    
    @media (max-width: 480px) {
        .transparent-png-image {
            max-width: 300px;
            max-height: 240px;
        }
    }
        
        /* 动画效果 */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }
        
        @keyframes floatIcon {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(10deg); }
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        @keyframes growBar {
            0% { height: 0%; }
            100% { height: var(--height); }
        }
        
        /* 响应式设计 */
        @media (max-width: 1024px) {
            .banner-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }
            
            .banner-left {
                text-align: center;
            }
            
            .banner-title .highlight {
                font-size: 36px;
            }
            
            .banner-title .subtitle {
                font-size: 20px;
            }
            
            .banner-actions {
                justify-content: center;
            }
            
            .banner-stats {
                justify-content: center;
            }
            
            .laptop-mockup {
                width: 300px;
                height: 210px;
            }
        }
        
        @media (max-width: 768px) {
            .product-banner-new {
                padding: 80px 0 60px;
            }
            
            .banner-title .highlight {
                font-size: 28px;
            }
            
            .banner-title .subtitle {
                font-size: 18px;
            }
            
            .banner-description {
                font-size: 16px;
            }
            
            .banner-actions {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-primary, .btn-secondary {
                width: 100%;
                max-width: 250px;
                justify-content: center;
            }
            
            .banner-stats {
                flex-direction: column;
                gap: 20px;
            }
            
            .laptop-mockup {
                width: 250px;
                height: 175px;
            }
        }
        
        /* 挑战区域 */
        .challenges {
            background: var(--white);
        }
        
        .challenge-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        /* 移动端挑战区域响应式布局 */
        @media (max-width: 768px) {
            .challenge-cards {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .challenge-card {
                padding: 30px 20px;
            }
            
            .challenge-card h3 {
                font-size: 20px;
            }
            
            .card-icon {
                width: 70px;
                height: 70px;
                font-size: 30px;
            }
        }
        
        .challenge-card {
            background: var(--white);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .challenge-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }
        
        .card-icon {
            width: 80px;
            height: 80px;
            background: rgba(243, 156, 18, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 36px;
            color: var(--secondary);
        }
        
        .challenge-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        /* 解决方案区域 */
        .solutions {
            background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
        }
        
        .steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            position: relative;
        }
        
        .steps::before {
            content: '';
            position: absolute;
            top: 50px;
            left: 10%;
            width: 80%;
            height: 3px;
            background: var(--secondary);
            z-index: 0;
        }
        
        .step {
            background: var(--white);
            border-radius: 15px;
            padding: 40px 25px;
            text-align: center;
            position: relative;
            z-index: 1;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .step:hover {
            transform: translateY(-10px);
        }
        
        .step-number {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: var(--secondary);
            color: var(--white);
            font-size: 24px;
            font-weight: 700;
            border-radius: 50%;
            margin: 0 auto 25px;
        }
        
        .step h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        /* 功能特点区 */
        .features {
            background: var(--white);
            padding: 80px 0;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            align-items: center;
        }
        
        .feature-text {
            padding-right: 30px;
        }
        
        .feature-text h2 {
            font-size: 36px;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .feature-text p {
            font-size: 18px;
            margin-bottom: 30px;
            color: var(--gray);
        }
        
        .feature-list {
            margin-top: 30px;
        }
        
        .feature-item {
            display: flex;
            margin-bottom: 25px;
        }
        
        .feature-icon {
            width: 50px;
            height: 50px;
            background: rgba(10, 61, 98, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: var(--primary);
            font-size: 20px;
            flex-shrink: 0;
        }
        
        .feature-content h4 {
            font-size: 20px;
            margin-bottom: 8px;
            color: var(--primary);
        }
        
        .feature-visual {
            position: relative;
            text-align: center;
            max-width: 100%;
            width: 100%;
        }
        
        .feature-visual img {
            max-width: 100%;
            width: 100%;
            height: auto;
            object-fit: contain;
        }
        
        .feature-card {
            background: linear-gradient(135deg, var(--primary) 0%, #1a5276 100%);
            border-radius: 15px;
            padding: 30px;
            color: var(--white);
            box-shadow: var(--shadow);
            max-width: 300px;
            margin: 0 auto;
            transform: rotate(3deg);
        }
        
        .feature-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .feature-card p {
            margin-bottom: 20px;
            opacity: 0.9;
        }
        
        .feature-card .value {
            font-size: 48px;
            font-weight: 700;
            text-align: center;
            display: block;
            margin: 20px 0;
        }
        
        /* 积分兑换区域 */
        .redemption {
            background: linear-gradient(to bottom, #e9ecef, #f8f9fa);
        }
        
        .redemption-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .redemption-text h2 {
            font-size: 36px;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .redemption-text p {
            font-size: 18px;
            margin-bottom: 30px;
            color: var(--gray);
        }
        
        .points-display {
            background: linear-gradient(135deg, var(--primary) 0%, #1a5276 100%);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            color: var(--white);
            box-shadow: var(--shadow);
            position: relative;
            transform: rotate(3deg);
            max-width: 300px;
            margin: 0 auto;
        }
        
        .points-display::after {
            content: '';
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            bottom: 10px;
            border: 2px dashed rgba(255, 255, 255, 0.3);
            border-radius: 10px;
            pointer-events: none;
        }
        
        .value {
            font-size: 64px;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 10px;
            display: block;
        }
        
        .label {
            font-size: 18px;
            opacity: 0.8;
        }
        
        /* 产品说明区块 */
        .product-explanation {
            background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
            padding: 80px 0;
        }
        
        .explanation-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }
        
        .explanation-container h2 {
            font-size: 36px;
            color: var(--primary);
            margin-bottom: 30px;
        }
        
        .explanation-image {
            width: 100%;
            max-width: 650px;
            height: auto;
            margin: 0 auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .explanation-image img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        
        .image-loading {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--gray);
            font-size: 16px;
            gap: 10px;
            min-height: 300px;
            background: var(--light);
            border-radius: 15px;
            border: 2px dashed var(--border);
        }
        
        .image-loading i {
            font-size: 48px;
            color: var(--primary);
            opacity: 0.5;
        }
        
        .image-loading span {
            font-size: 14px;
            color: var(--gray);
        }
        
        /* 业务目标区域 */
        .business-goals {
            background: var(--white);
        }
        
        .goal-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .goal-text h2 {
            font-size: 36px;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .goal-text p {
            font-size: 18px;
            margin-bottom: 30px;
            color: var(--gray);
        }
        
        .goal-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }
        
        .goal-feature {
            background: rgba(243, 156, 18, 0.1);
            padding: 20px;
            border-radius: 10px;
            transition: var(--transition);
        }
        
        .goal-feature:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        
        .goal-feature h4 {
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        .goal-visual {
            position: relative;
            text-align: center;
        }
        
        /* 平台实现区域 */
        .platform {
            background: linear-gradient(135deg, var(--primary) 0%, #1a5276 100%);
            color: var(--white);
            padding: 80px 0;
        }
        
        .platform-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .platform-text h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .platform-text p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .platform-icons {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 30px;
        }
        
        .platform-icon {
            text-align: center;
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            transition: var(--transition);
        }
        
        .platform-icon:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
        }
        
        .platform-icon i {
            font-size: 36px;
            margin-bottom: 15px;
        }
        
        /* 产品报价区域 */
        .pricing {
            background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
        }
        
        .services {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .service {
            background: var(--white);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 2px solid transparent;
        }
        
        .service:hover {
            border-color: var(--secondary);
            transform: translateY(-10px);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: rgba(243, 156, 18, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 36px;
            color: var(--secondary);
        }
        
        .service h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .service p {
            color: var(--gray);
            margin-bottom: 20px;
        }
        
        /* 客户区域 */
        .clients {
            background: var(--white);
        }
        
        .client-logos {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 50px;
            margin-top: 40px;
        }
        
        .client-logo {
            background: var(--light);
            border-radius: 10px;
            padding: 30px 40px;
            min-width: 250px;
            height: 120px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .client-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        .client-logo h4 {
            font-size: 20px;
            font-weight: 600;
            color: var(--primary);
            text-align: center;
        }
        
        .client-logo .industry {
            font-size: 14px;
            color: var(--gray);
            margin-top: 8px;
        }
        
        /* 底部区域 */
        .footer {
            background: #222;
            color: var(--white);
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 50px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .footer-logo {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .footer-logo span {
            color: var(--secondary);
        }
        
        .footer-about p {
            margin-bottom: 20px;
            opacity: 0.8;
        }
        
        .footer-title {
            font-size: 20px;
            margin-bottom: 25px;
            position: relative;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--secondary);
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            opacity: 0.8;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            opacity: 1;
            color: var(--secondary);
            padding-left: 5px;
        }
        
        .contact-info li {
            display: flex;
            margin-bottom: 15px;
            opacity: 0.8;
        }
        
        .contact-info i {
            color: var(--secondary);
            margin-right: 10px;
            min-width: 20px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .challenge-cards,
            .services,
            .features-grid,
            .goal-features,
            .platform-icons {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .steps {
                grid-template-columns: 1fr;
            }
            
            .steps::before {
                display: none;
            }
            
            .redemption-content,
            .goal-content {
                grid-template-columns: 1fr;
            }
            
            .platform-content {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .challenge-cards,
            .services,
            .features-grid,
            .goal-features,
            .platform-icons {
                grid-template-columns: 1fr;
            }
            
            .explanation-image {
                height: 400px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .footer-title::after {
                left: 50%;
                transform: translateX(-50%);
            }
        }
        
        @media (max-width: 576px) {
            .banner-content h1 {
                font-size: 28px;
            }
            
            .banner-content p {
                font-size: 18px;
            }
            
            .banner-btns {
                flex-direction: column;
                gap: 15px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .explanation-image {
                height: 300px;
            }
        }

        /* 交替布局样式 */
        .alternating-features {
            background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
            padding: 100px 0;
        }

        .feature-module {
            margin-bottom: 120px;
        }

        .feature-module:last-child {
            margin-bottom: 0;
        }

        /* 修改为与OKR页面一致的flex布局 */
        .module-content {
            display: flex;
            gap: 100px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* 修改内容区域宽度与OKR页面一致 */
        .text-content {
            padding: 20px 0;
            flex: 1;
            max-width: 400px;
        }



        .module-title {
            font-size: 36px;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .module-description {
            font-size: 18px;
            color: #4a5568;
            line-height: 1.7;
            margin-bottom: 30px;
        }

        .feature-list {
            list-style: none;
            margin-bottom: 40px;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 16px;
            color: #2d3748;
        }

        .feature-list li i {
            color: #48bb78;
            margin-right: 12px;
            font-size: 14px;
        }



        /* 确保图片尺寸与绩效页面保持一致 */
        /* 修改为与OKR页面一致的图片尺寸 */
        .image-content {
            position: relative;
            text-align: center;
            display: block !important;
            opacity: 1 !important;
            visibility: visible !important;
            width: 620px;
        }

        .image-content img {
            width: 620px;
            height: auto;
            object-fit: contain;
            max-height: 500px;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            display: block;
            margin: 0 auto;
        }

        /* 确保所有模块中的图片显示比例一致 */
        .module-a .image-content img,
        .module-b .image-content img,
        .module-c .image-content img,
        .module-d .image-content img {
            max-width: 100% !important;
            width: 100% !important;
            height: auto !important;
            display: block;
            object-fit: contain;
            margin: 0 auto;
            opacity: 1;
            visibility: visible;
        }
        
        /* 移动端图片响应式调整 */
        @media (max-width: 768px) {
            .module-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .image-content {
                max-width: 100%;
                width: 100%;
            }
            
            .image-content img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
                object-fit: contain !important;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .feature-visual {
                max-width: 100%;
                width: 100%;
            }
            
            .feature-visual img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
                object-fit: contain !important;
            }
        }
        
        @media (max-width: 480px) {
            .module-content {
                gap: 20px;
            }
            
            .image-content {
                padding: 0 10px;
                max-width: 100%;
                width: 100%;
            }
            
            .image-content img {
                max-width: 280px !important;
                width: 100% !important;
                height: auto !important;
                object-fit: contain !important;
            }
            
            .features-grid {
                gap: 20px;
            }
            
            .feature-visual {
                padding: 0 10px;
                max-width: 100%;
                width: 100%;
            }
            
            .feature-visual img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
                object-fit: contain !important;
            }
        }

        .image-placeholder {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 300px;
            color: #667eea;
            text-align: center;
        }

        .image-placeholder i {
            font-size: 64px;
            margin-bottom: 20px;
            opacity: 0.8;
        }

        .image-placeholder span {
            font-size: 18px;
            font-weight: 600;
            color: #4a5568;
        }

        /* 交替布局实现 */
        .module-b .text-content {
            text-align: right;
        }

        .module-b .module-actions {
            justify-content: flex-end;
        }

        .module-d .text-content {
            text-align: right;
        }

        .module-d .module-actions {
            justify-content: flex-end;
        }

        /* 模块B和D特色列表样式 */
        .module-b .feature-list,
        .module-d .feature-list {
            list-style: none;
            margin-bottom: 40px;
            padding-right: 0;
        }

        .module-b .feature-list li,
        .module-d .feature-list li {
            display: flex;
            align-items: flex-start;
            justify-content: flex-end;
            margin-bottom: 8px;
            font-size: 15px;
            color: #4a5568;
            line-height: 1.4;
            transition: all 0.3s ease;
            border-right: 2px solid transparent;
            padding-right: 12px;
            text-align: right;
        }

        .module-b .feature-list li:hover,
        .module-d .feature-list li:hover {
            border-right-color: #7c3aed;
            color: #2d3748;
            transform: translateX(-3px);
        }

        .module-b .feature-list li i,
        .module-d .feature-list li i {
            color: #7c3aed;
            margin-left: 8px;
            margin-top: 2px;
            font-size: 12px;
            flex-shrink: 0;
            background: linear-gradient(135deg, #7c3aed, #a855f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            width: 16px;
            text-align: center;
        }

        .module-d .module-content {
            grid-template-columns: 1fr 1fr;
        }

        .module-actions {
            margin-top: 30px;
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .module-actions .btn-primary {
            background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c084fc 100%);
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
        }

        .module-actions .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5);
        }

        /* 确保模块内的jx-btn与btn-primary尺寸一致 */
        .module-actions .jx-btn {
            padding: 12px 24px;
            font-size: 14px;
            font-weight: 600;
        }

        /* 确保模块内的jx-btn.jx-contact-online与btn-primary尺寸一致 */
        .module-actions .jx-btn.jx-contact-online {
            padding: 12px 24px;
            font-size: 14px;
            font-weight: 600;
        }

        /* 响应式设计 - 与OKR页面保持一致 */
        @media (max-width: 1024px) {
            .module-content {
                gap: 60px;
            }
            
            .module-title {
                font-size: 32px;
            }
            
            .image-content {
                width: 100%;
                max-width: 500px;
            }
            
            .image-content img {
                width: 100%;
                max-width: 500px;
            }
        }

        @media (max-width: 768px) {
            .alternating-features {
                padding: 60px 0;
            }

            .feature-module {
                margin-bottom: 80px;
            }

            .module-content {
                flex-direction: column;
                gap: 40px;
                direction: ltr !important;
            }
            
            .image-content {
                width: 100%;
                max-width: 500px;
                margin: 0 auto;
            }
            
            .image-content img {
                width: 100%;
                max-width: 500px;
                height: auto;
            }
            
            .text-content {
                max-width: 100%;
                text-align: center;
            }

            .module-title {
                font-size: 28px;
            }

            .module-description {
                font-size: 16px;
            }

            .module-actions {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            /* 移动设备上重置模块B和D的对齐方式 */
            .module-b .text-content,
            .module-d .text-content {
                text-align: left;
            }

            .module-b .module-actions,
            .module-d .module-actions {
                justify-content: flex-start;
                align-items: flex-start;
            }
            
            /* 积分商城模块：手机端文字在上，图在下 */
            .module-d .module-content {
                display: flex;
                flex-direction: column;
            }
            
            .module-d .image-content {
                order: 2;
            }
            
            .module-d .text-content {
                order: 1;
            }
            
            /* 移动端积分管理界面：手机端文字在上，图在下 */
            .module-b .module-content {
                display: flex;
                flex-direction: column;
            }
            
            .module-b .image-content {
                order: 2;
            }
            
            .module-b .text-content {
                order: 1;
            }

            .module-b .feature-list li,
            .module-d .feature-list li {
                justify-content: flex-start;
                align-items: flex-start;
                border-right: none;
                border-left: 2px solid transparent;
                padding-right: 0;
                padding-left: 12px;
                text-align: left;
                margin-bottom: 6px;
                font-size: 14px;
                line-height: 1.4;
            }

            .module-b .feature-list li:hover,
            .module-d .feature-list li:hover {
                border-left-color: #7c3aed;
                transform: translateX(3px);
                color: #7c3aed;
            }

            .module-b .feature-list li i,
            .module-d .feature-list li i {
                margin-left: 0;
                margin-right: 8px;
                margin-top: 2px;
                font-size: 11px;
                width: 14px;
            }

            .image-placeholder {
                min-height: 250px;
            }

            .image-placeholder i {
                font-size: 48px;
            }
        }

        @media (max-width: 480px) {
            .module-title {
                font-size: 24px;
            }

            .feature-image {
                padding: 30px 20px;
            }

            .image-placeholder {
                min-height: 200px;
            }
        }


/* 积分制管理页面专用样式 */

:root {
  /* 积分制主题色 */
  --jifen-primary: #ff6b35;
  --jifen-primary-light: #ff8a65;
  --jifen-primary-dark: #e55124;
  --jifen-secondary: #2c3e50;
  --jifen-accent: #f39c12;
  --jifen-success: #27ae60;
  --jifen-warning: #e67e22;
  --jifen-error: #e74c3c;
  
  /* 积分制渐变 */
  --jifen-gradient: linear-gradient(135deg, var(--jifen-primary) 0%, var(--jifen-accent) 100%);
  --jifen-gradient-light: linear-gradient(135deg, var(--jifen-primary-light) 0%, #ffa726 100%);
  
  /* 积分制阴影 */
  --jifen-shadow-sm: 0 2px 8px rgba(255, 107, 53, 0.1);
  --jifen-shadow: 0 4px 16px rgba(255, 107, 53, 0.15);
  --jifen-shadow-lg: 0 8px 32px rgba(255, 107, 53, 0.2);
}

/* 积分制页面整体布局 */
.jifen-page {
  background: linear-gradient(135deg, #fff5f2 0%, #ffe8e0 100%);
}

/* 积分制Hero区域 */
.jifen-hero {
  background: var(--jifen-gradient);
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.jifen-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/pattern-circles.png') center/200px;
  opacity: 0.1;
}

.jifen-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  color: white;
}

.jifen-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.jifen-hero .subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.jifen-hero .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* 功能特点 */
.jifen-features {
  padding: 100px 0;
  background: white;
}

.jifen-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.jifen-feature-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--jifen-shadow-sm);
  transition: all 0.3s ease;
}

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

.jifen-feature-icon {
  width: 80px;
  height: 80px;
  background: var(--jifen-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: white;
}

/* 积分制挑战区域 */
.jifen-challenges {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.jifen-challenge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.jifen-challenge-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--jifen-shadow-sm);
  border-left: 4px solid var(--jifen-primary);
  transition: all 0.3s ease;
}

.jifen-challenge-card:hover {
  transform: translateX(5px);
  box-shadow: var(--jifen-shadow);
}

.jifen-challenge-card h4 {
  color: var(--jifen-primary);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .challenge-diagram {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 40px 20px;
  }
  
  .center-circle {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 0 auto 2rem;
    width: 150px;
    height: 150px;
  }
  
  .challenge-item {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    max-width: 100%;
    flex-direction: row;
    text-align: left;
  }
  
  .challenge-item .challenge-number {
    order: 1;
    margin: 0 15px 0 0;
  }
  
  .challenge-item::before {
    display: none;
  }
}

/* 积分制解决方案 */
.jifen-solutions {
  padding: 100px 0;
  background: white;
}

.jifen-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.jifen-step {
  text-align: center;
  position: relative;
}

.jifen-step-number {
  width: 60px;
  height: 60px;
  background: var(--jifen-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.jifen-step h3 {
  color: var(--jifen-secondary);
  margin-bottom: 1rem;
}

.jifen-step p {
  color: #666;
  line-height: 1.6;
}

/* 积分制功能特点 */
.jifen-capabilities {
  padding: 100px 0;
  background: linear-gradient(135deg, #fff5f2 0%, #ffe8e0 100%);
}

.jifen-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.jifen-capability {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--jifen-shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.jifen-capability-icon {
  width: 50px;
  height: 50px;
  background: var(--jifen-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.jifen-capability-content h4 {
  color: var(--jifen-secondary);
  margin-bottom: 0.5rem;
}

.jifen-capability-content p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* 积分兑换区域 */
.jifen-redemption {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.jifen-redemption-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.jifen-redemption-text h2 {
  color: var(--jifen-secondary);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  text-align: center;
}

.jifen-redemption-text p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 3rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.jifen-redemption-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.jifen-redemption-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--jifen-shadow-sm);
  transition: all 0.3s ease;
}

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

.jifen-redemption-icon {
  width: 80px;
  height: 80px;
  background: var(--jifen-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: white;
}

.jifen-redemption-card h4 {
  color: var(--jifen-secondary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.jifen-redemption-card p {
  color: #666;
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}

.jifen-redemption-card .points-value {
  display: inline-block;
  background: var(--jifen-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  margin-top: 1rem;
}

/* 积分制说明区域 */
.jifen-explanation {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.jifen-explanation-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.jifen-explanation h2 {
  color: var(--jifen-secondary);
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.jifen-explanation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.jifen-explanation-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--jifen-shadow-sm);
}

.jifen-explanation-item h4 {
  color: var(--jifen-primary);
  margin-bottom: 1rem;
}

/* 积分制按钮样式 */
.jifen-btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.jifen-btn-primary {
  background: var(--jifen-gradient);
  color: white;
  box-shadow: var(--jifen-shadow);
}

.jifen-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--jifen-shadow-lg);
}

.jifen-btn-secondary {
  background: transparent;
  color: var(--jifen-primary);
  border: 2px solid var(--jifen-primary);
}

.jifen-btn-secondary:hover {
  background: var(--jifen-primary);
  color: white;
}

.jifen-btn-white {
  background: white;
  color: var(--jifen-primary);
  box-shadow: var(--jifen-shadow);
}

.jifen-btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--jifen-shadow-lg);
}

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

.jifen-animate {
  animation: fadeInUp 0.6s ease-out;
}

/* 积分制特定元素 */
.jifen-points-display {
  background: var(--jifen-gradient);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  display: inline-block;
  margin: 0.5rem;
}

.jifen-badge {
  background: var(--jifen-accent);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: bold;
  display: inline-block;
  margin: 0.25rem;
}

/* 图片加载错误样式 */
.image-error {
  border: 2px solid #ff4d4f !important;
  background-color: #fff2f0 !important;
  padding: 20px !important;
  min-height: 200px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ff4d4f !important;
  font-weight: bold !important;
  opacity: 1 !important;
  visibility: visible !important;
}