/* 修复样式 */
.video-page {
    overflow: hidden;
    /* 只影响当前页面的样式，不影响全局导航 */
    --primary-color: #FFC107;
    --secondary-color: #FF9800;
    --text-color: #333;
    --light-gray: #f8f9fa;
}

/* 全局默认样式 */
body, html {
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
    color: #333;
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* 修复section间距 */
.section-title {
    position: relative;
    padding-bottom: 1rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

/* 修复卡片阴影效果 */
.advantage-card,
.solution-card,
.case-card,
.contact-form {
    transition: all 0.3s ease;
}

.advantage-card:hover,
.solution-card:hover,
.case-card:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

/* 修复表单样式 */
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

/* 修复按钮样式 */
.submit-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}

.submit-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* 修复图标对齐 */
.info-item i {
    width: 24px;
    text-align: center;
}

/* 修复数据图表响应式 */
.data-chart canvas {
    max-width: 100%;
    height: auto !important;
}

/* 修复流程步骤连接线 */
.process-timeline {
    position: relative;
}

.process-timeline:before {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: var(--primary-color);
    opacity: 0.2;
}

/* 导航栏滚动效果 */
.mkt-main-nav {
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.mkt-main-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* 表单消息样式 */
.form-message {
    padding: 12px 16px;
    margin: 15px 0;
    border-radius: 4px;
    font-size: 14px;
    transition: opacity 0.5s ease;
}

.form-message.success {
    background-color: rgba(76, 175, 80, 0.1);
    border-left: 4px solid #4CAF50;
    color: #2E7D32;
}

.form-message.error {
    background-color: rgba(244, 67, 54, 0.1);
    border-left: 4px solid #F44336;
    color: #C62828;
}

.form-message.fade-out {
    opacity: 0;
}

/* 修复鼠标特效 */
.sparkle {
    position: fixed;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    background: radial-gradient(circle, #FFD700 0%, rgba(255, 215, 0, 0) 70%);
}

@keyframes sparkleAnimation {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* 平滑过渡效果 */
.advantage-section,
.solution-section,
.case-section,
.process-section,
.contact-section {
    transition: background 0.5s ease;
}

/* 数据分析区域 - 新样式 */
.data-section {
    position: relative;
    padding: 40px 15px;
    background: #f8f9fa;
    margin-bottom: 30px;
    text-align: center;
}

.data-title {
    font-size: 30px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.data-title::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff9800, #ffca28);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.data-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.data-content {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
    text-align: left;
}

/* 数据控制器 */
.data-controllers {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.data-tabs {
    display: flex;
}

.data-tab {
    padding: 10px 20px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #555;
    transition: all 0.3s ease;
}

.data-tab:hover {
    color: #ff9800;
}

.data-tab.active {
    color: #ff9800;
    border-bottom-color: #ff9800;
}

.data-filter select {
    padding: 8px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #fff;
    font-size: 14px;
    color: #333;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.data-filter select:hover {
    border-color: #ccc;
}

.data-filter select:focus {
    border-color: #ff9800;
    box-shadow: 0 0 0 2px rgba(255, 152, 0, 0.1);
}

/* 数据显示区域 */
.data-display {
    margin-top: 20px;
}

.chart-container {
    min-height: 300px;
    position: relative;
    margin-bottom: 25px;
}

/* 指标样式 */
.data-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.metric {
    flex: 1;
    min-width: 160px;
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.metric:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.metric-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 152, 0, 0.1);
    color: #ff9800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
    font-size: 20px;
}

.metric-value {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.metric-change {
    display: inline-block;
    padding: 3px 8px;
    font-size: 12px;
    border-radius: 20px;
    background: #f5f5f5;
}

.metric-change.positive {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
}

.metric-change.negative {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
}

/* 数据洞察 */
.data-insight {
    background: #fff8e1;
    border-radius: 8px;
    padding: 20px 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border-left: 4px solid #ffc107;
}

.data-insight h3 {
    font-size: 18px;
    color: #ff9800;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
}

.data-insight h3 i {
    margin-right: 8px;
}

.data-insight p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* 加载状态 */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #777;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.8);
}

.loading::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #ff9800;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 响应式调整 */
@media (max-width: 992px) {
    .data-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .data-section {
        padding: 40px 0;
    }
    
    .data-section .section-title {
        font-size: 26px;
    }
    
    .data-controllers {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .data-filter {
        margin-top: 15px;
        width: 100%;
    }
    
    .data-filter select {
        width: 100%;
    }
    
    .chart-container {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .data-section {
        padding: 30px 0;
    }
    
    .data-section .section-title {
        font-size: 24px;
    }
    
    .data-content {
        padding: 20px 15px;
    }
    
    .data-tabs {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 5px;
    }
    
    .data-tab {
        padding: 10px 15px;
        font-size: 14px;
        white-space: nowrap;
    }
    
    .data-metrics {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .metric {
        padding: 15px;
    }
    
    .chart-container {
        height: 250px;
    }
}

/* 增强的按钮悬停效果 */
.banner-cta {
    position: relative;
    overflow: hidden;
}

.banner-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.banner-cta:hover::after {
    left: 100%;
}

/* 优化Banner按钮悬停效果 */
.banner-cta.primary:hover {
    background: #f9f9f9;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.banner-cta.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* 数据面板装饰线 */
.data-panel::after {
    content: '';
    position: absolute;
    top: 0;
    right: 50px;
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), transparent);
    border-radius: 2px;
}

/* 图标颜色调整 */
.data-label::before {
    color: #FFFFFF !important;
}

/* 统计框增强 */
.stat-box {
    position: relative;
    overflow: hidden;
}

.stat-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.7), transparent);
}

/* 修正banner标题下划线动画 */
@keyframes lineWidth {
    0% {
        width: 0;
    }
    100% {
        width: 50px;
    }
}

.banner-title:after {
    animation: lineWidth 0.8s ease-out forwards 0.5s;
    width: 0;
}

/* 强化按钮特效 */
.banner-cta.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.banner-cta.primary:hover::before {
    opacity: 1;
}

/* 移动端优化 */
@media (max-width: 768px) {
    .process-timeline:before {
        display: none;
    }
    
    /* 修复移动端表单样式 */
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* 防止iOS缩放 */
    }
    
    /* 修复移动端间距 */
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .banner-section {
        height: 600px;
    }
    
    .banner-title {
        font-size: 32px; 
    }
    
    .banner-subtitle {
        font-size: 16px;
    }
}

/* 优势区块样式优化 */
.advantage-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #fff8e1 0%, #fffde7 100%);
    overflow: hidden;
    z-index: 1;
}

.advantage-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffd54f' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.4;
    z-index: -1;
}

.advantage-section .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.section-title {
    text-align: center;
    margin-bottom: 15px;
    font-size: 36px;
    color: #333;
    font-weight: 700;
    position: relative;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 50px;
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    perspective: 1000px;
}

.advantage-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    border-top: 4px solid #ffd54f;
    transform-style: preserve-3d;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,245,157,0.2) 0%, rgba(255,213,79,0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-top-color: #ffb300;
}

.advantage-card:hover::before {
    opacity: 1;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) translateZ(20px);
    color: #ff9800;
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fff8e1 0%, #fffde7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(255,213,79,0.2);
}

.advantage-icon i {
    font-size: 28px;
    color: #ffb300;
    transition: all 0.4s ease;
}

.advantage-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
}

.advantage-card:hover h3 {
    color: #ff9800;
    transform: translateZ(10px);
}

.advantage-content {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.advantage-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.advantage-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.advantage-features li i {
    color: #ffc107;
    position: absolute;
    left: 0;
    top: 3px;
}

.advantage-data {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 20px;
}

.data-item {
    text-align: center;
    flex: 1;
}

.data-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #ff9800;
    margin-bottom: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.data-value::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffc107, #ff9800);
    transition: width 0.3s ease;
}

.advantage-card:hover .data-value::after {
    width: 50%;
}

.data-label {
    display: block;
    font-size: 13px;
    color: #888;
}

/* 蝴蝶动画效果 */
.butterfly-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.butterfly {
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 10C35 10 45 20 55 20C45 30 35 30 30 30C25 30 15 30 5 20C15 20 25 10 30 10Z' fill='%23FFC107'%3E%3C/path%3E%3Cpath d='M30 50C35 50 45 40 55 40C45 30 35 30 30 30C25 30 15 30 5 40C15 40 25 50 30 50Z' fill='%23FFC107'%3E%3C/path%3E%3Ccircle cx='30' cy='30' r='3' fill='%23FF9800'%3E%3C/circle%3E%3Cpath d='M30 10C35 10 45 20 55 20C45 30 35 30 30 30C25 30 15 30 5 20C15 20 25 10 30 10Z' fill='%23FFC107' opacity='0.8'%3E%3Canimate attributeName='d' values='M30 10C35 10 45 20 55 20C45 30 35 30 30 30C25 30 15 30 5 20C15 20 25 10 30 10Z;M30 10C37 12 47 18 55 20C45 30 35 30 30 30C25 30 15 30 5 20C13 18 23 12 30 10Z;M30 10C35 10 45 20 55 20C45 30 35 30 30 30C25 30 15 30 5 20C15 20 25 10 30 10Z' dur='2s' repeatCount='indefinite'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M30 50C35 50 45 40 55 40C45 30 35 30 30 30C25 30 15 30 5 40C15 40 25 50 30 50Z' fill='%23FFC107' opacity='0.8'%3E%3Canimate attributeName='d' values='M30 50C35 50 45 40 55 40C45 30 35 30 30 30C25 30 15 30 5 40C15 40 25 50 30 50Z;M30 50C37 48 47 42 55 40C45 30 35 30 30 30C25 30 15 30 5 40C13 42 23 48 30 50Z;M30 50C35 50 45 40 55 40C45 30 35 30 30 30C25 30 15 30 5 40C15 40 25 50 30 50Z' dur='2s' repeatCount='indefinite'%3E%3C/animate%3E%3C/path%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    animation: fly 20s linear infinite;
    z-index: 1;
    opacity: 0.8;
    filter: drop-shadow(0 3px 5px rgba(0,0,0,0.1));
}

.butterfly-1 {
    top: 20%;
    left: 10%;
    animation-duration: 25s;
    animation-delay: 0s;
}

.butterfly-2 {
    top: 60%;
    left: 70%;
    animation-duration: 30s;
    animation-delay: 2s;
}

.butterfly-3 {
    top: 30%;
    left: 85%;
    animation-duration: 28s;
    animation-delay: 5s;
}

@keyframes fly {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(100px, -50px) rotate(30deg);
    }
    50% {
        transform: translate(200px, 20px) rotate(0deg);
    }
    75% {
        transform: translate(100px, 100px) rotate(-30deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* 翅膀脉动动画 */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* 装饰元素 */
.decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    background: linear-gradient(135deg, #ffa000 0%, #ffd54f 100%);
    z-index: -1;
}

.decoration-circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation: pulse 10s ease-in-out infinite;
}

.decoration-circle-2 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    right: 5%;
    animation: pulse 15s ease-in-out infinite reverse;
}

.decoration-line {
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, rgba(255,193,7,0.1) 0%, rgba(255,193,7,0.3) 50%, rgba(255,193,7,0) 100%);
    z-index: -1;
}

.decoration-line-1 {
    width: 80%;
    top: 20%;
    left: 10%;
    transform: rotate(2deg);
}

.decoration-line-2 {
    width: 60%;
    bottom: 30%;
    right: 10%;
    transform: rotate(-2deg);
}

/* 底部波浪 */
.advantage-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    line-height: 0;
    z-index: 2;
}

.advantage-wave svg {
    width: 100%;
    height: 70px;
}

/* 自定义数字动画 */
@keyframes numberPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
        color: #ff6f00;
    }
    100% {
        transform: scale(1);
    }
}

.advantage-card:hover .data-value {
    animation: numberPulse 1s ease-in-out;
    background: linear-gradient(90deg, #ff9800, #ffa726);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 响应式优化 */
@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .advantage-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .butterfly {
        opacity: 0.5;
    }
}

@media (max-width: 480px) {
    .advantage-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .section-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .advantage-card {
        padding: 20px;
    }
}

/* 优势区块文字美化 */
.advantage-card h3 .highlight {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.advantage-card h3 .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff9800, #ffb74d);
    transition: width 0.4s ease;
}

.advantage-card:hover h3 .highlight::after {
    width: 100%;
}

.advantage-card .advantage-content p {
    color: #555;
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 20px;
    letter-spacing: 0.2px;
}

.advantage-card .advantage-content p strong {
    color: #ff9800;
    font-weight: 600;
}

.advantage-card .advantage-features li {
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 15px;
    position: relative;
    transition: transform 0.3s ease;
}

.advantage-card .advantage-features li strong {
    color: #ff9800;
    font-weight: 600;
}

.advantage-card .advantage-features li em {
    font-style: normal;
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
    font-weight: 500;
}

.advantage-card .advantage-features li em::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 152, 0, 0.5);
}

/* 数值指标视觉优化 - 确保只影响优势区块 */
.advantage-card .data-value {
    position: relative;
    display: inline-block;
}

.advantage-card .data-value::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 152, 0, 0.1);
    border-radius: 3px;
    left: 0;
    top: 0;
    transform: scale(0);
    opacity: 0;
    transition: all 0.3s ease;
}

.advantage-card:hover .data-value::before {
    transform: scale(1.1);
    opacity: 1;
}

.advantage-card .data-value::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffc107, #ff9800);
    transition: width 0.3s ease;
}

.advantage-card:hover .data-value::after {
    width: 50%;
}

/* 数据标签美化 - 仅限优势区块 */
.advantage-card .data-label {
    opacity: 0.7;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.advantage-card:hover .data-label {
    opacity: 1;
    color: #666;
}

/* 自定义数字动画 - 仅限优势区块 */
@keyframes advantageNumberPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
        color: #ff6f00;
    }
    100% {
        transform: scale(1);
    }
}

.advantage-card:hover .data-value {
    animation: advantageNumberPulse 1s ease-in-out;
    background: linear-gradient(90deg, #ff9800, #ffa726);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 视频号飘动图标样式 */
.video-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url('/assets/images/shipinhaologo.png');
    background-size: contain;
    background-repeat: no-repeat;
    animation: float 20s ease-in-out infinite;
    z-index: 1;
    opacity: 0.8;
    filter: drop-shadow(0 3px 5px rgba(0,0,0,0.2));
}

.video-icon-1 {
    top: 15%;
    left: 10%;
    animation-duration: 25s;
    animation-delay: 0s;
}

.video-icon-2 {
    top: 65%;
    left: 75%;
    animation-duration: 30s;
    animation-delay: 2s;
}

.video-icon-3 {
    top: 35%;
    left: 90%;
    animation-duration: 27s;
    animation-delay: 4s;
}

.video-icon-4 {
    top: 70%;
    left: 20%;
    animation-duration: 32s;
    animation-delay: 5s;
}

.video-icon-5 {
    top: 20%;
    left: 60%;
    animation-duration: 28s;
    animation-delay: 3s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(100px, -50px) rotate(15deg);
    }
    50% {
        transform: translate(200px, 20px) rotate(0deg);
    }
    75% {
        transform: translate(100px, 100px) rotate(-15deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* 视频号图标特效 */
.video-icon {
    transition: all 0.5s ease;
}

.video-icon:hover {
    transform: scale(1.2) rotate(15deg);
    opacity: 1;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

/* 视频号图标轨迹效果 */
.video-trail {
    position: fixed;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 152, 0, 0.3);
    pointer-events: none;
    z-index: 999;
    filter: blur(2px);
    animation: fadeOut 1s forwards;
}

/* 增强卡片内容动画效果 */
.advantage-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.advantage-card-content {
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.advantage-icon, 
.advantage-card h3, 
.advantage-content p, 
.advantage-features li, 
.data-item {
    transform: translateZ(0);
    transition: transform 0.5s ease;
}

.advantage-card:hover .advantage-icon {
    transform: translateZ(40px);
}

.advantage-card:hover h3 {
    transform: translateZ(30px);
}

.advantage-card:hover .advantage-content p {
    transform: translateZ(20px);
}

.advantage-card:hover .advantage-features li:nth-child(1) {
    transform: translateZ(25px) translateX(5px);
    transition-delay: 0.05s;
}

.advantage-card:hover .advantage-features li:nth-child(2) {
    transform: translateZ(25px) translateX(5px);
    transition-delay: 0.1s;
}

.advantage-card:hover .advantage-features li:nth-child(3) {
    transform: translateZ(25px) translateX(5px);
    transition-delay: 0.15s;
}

.advantage-card:hover .advantage-features li:nth-child(4) {
    transform: translateZ(25px) translateX(5px);
    transition-delay: 0.2s;
}

.advantage-card:hover .data-item {
    transform: translateZ(15px);
}

/* 精美分隔线 */
.advantage-card .advantage-data {
    position: relative;
}

.advantage-card .advantage-data::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 152, 0, 0.2), 
        rgba(255, 152, 0, 0.5), 
        rgba(255, 152, 0, 0.2), 
        transparent
    );
}

/* 3D卡片阴影效果 */
.advantage-card {
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.08),
        0 0 0 1px rgba(255, 152, 0, 0.05);
}

.advantage-card:hover {
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.12),
        0 5px 15px rgba(255, 152, 0, 0.1),
        0 0 0 1px rgba(255, 152, 0, 0.1);
}

/* 视频号图标点击效果 */
.icon-click-effect {
    position: fixed;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.6) 0%, rgba(255, 152, 0, 0) 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    animation: iconExpand 0.8s ease-out forwards;
}

@keyframes iconExpand {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

/* 卡片内容排版美化 */
.advantage-content {
    position: relative;
}

.advantage-content p {
    position: relative;
    padding-left: 2px;
    border-left: 2px solid rgba(255, 152, 0, 0.2);
    margin-left: 2px;
    padding-left: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-content p {
    border-left-color: rgba(255, 152, 0, 0.8);
}

/* 更现代的网格布局 */
@media (min-width: 1200px) {
    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 卡片内容布局优化 */
.advantage-card {
    display: flex;
    flex-direction: column;
}

.advantage-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.advantage-data {
    margin-top: auto;
}

/* 图标容器优化 - 仅限优势区块 */
.advantage-card .advantage-icon {
    position: relative;
    overflow: hidden;
}

.advantage-card .advantage-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at center, rgba(255, 152, 0, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.advantage-card:hover .advantage-icon::after {
    opacity: 1;
}

/* 解决方案区块美化 */
.solution-section {
    position: relative;
    padding: 90px 0;
    background: linear-gradient(135deg, #fffdf7 0%, #fff8e1 100%);
    overflow: hidden;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffd54f' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.solution-section .section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.solution-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff9800, #ffb300);
}

.solutions-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.solution-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
    width: 300px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    border-top: 5px solid transparent;
    border-image: linear-gradient(to right, #ff9800, #ffb300);
    border-image-slice: 1;
    z-index: 1;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.05) 0%, rgba(255, 179, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

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

.solution-card:hover::before {
    opacity: 1;
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff9800 0%, #ffb300 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(255, 152, 0, 0.3);
    transform: translateZ(0);
}

.solution-icon i {
    font-size: 32px;
    color: #fff;
    transition: all 0.4s ease;
}

.solution-card:hover .solution-icon {
    transform: translateZ(40px) rotateY(180deg);
}

.solution-card h3 {
    text-align: center;
    font-size: 24px;
    color: #333;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
    transition: all 0.3s ease;
    transform: translateZ(0);
}

.solution-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #ff9800, #ffb300);
    transition: width 0.3s ease;
}

.solution-card:hover h3 {
    color: #ff9800;
    transform: translateZ(30px);
}

.solution-card:hover h3::after {
    width: 60px;
}

.solution-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-card ul li {
    padding: 12px 0;
    position: relative;
    padding-left: 30px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    color: #555;
    font-size: 16px;
    transition: all 0.3s ease;
    transform: translateZ(0);
}

.solution-card ul li:last-child {
    border-bottom: none;
}

.solution-card ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #ff9800;
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 14px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.solution-card:hover ul li {
    transform: translateZ(25px) translateX(5px);
    color: #333;
}

.solution-card:hover ul li::before {
    opacity: 1;
    color: #ff9800;
}

/* 解决方案动画元素 */
.solution-section .decoration-element {
    position: absolute;
    opacity: 0.1;
    z-index: 0;
}

.solution-section .circle-1 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9800 0%, #ffb300 100%);
    top: -50px;
    left: -50px;
    animation: floatAnimation 20s infinite linear;
}

.solution-section .circle-2 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffb300 0%, #ff9800 100%);
    bottom: -100px;
    right: -100px;
    animation: floatAnimation 25s infinite linear reverse;
}

.solution-section .line-1 {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 152, 0, 0.2), transparent);
    top: 30%;
    left: 0;
}

@keyframes floatAnimation {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(10px, -10px) rotate(5deg);
    }
    50% {
        transform: translate(0, 0) rotate(0deg);
    }
    75% {
        transform: translate(-10px, 10px) rotate(-5deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* 响应式样式 */
@media (max-width: 1024px) {
    .solutions-container {
        gap: 20px;
    }
    
    .solution-card {
        width: 280px;
        padding: 35px 25px;
    }
}

@media (max-width: 768px) {
    .solution-section {
        padding: 70px 0;
    }
    
    .solutions-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .solution-card {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .solution-section {
        padding: 50px 0;
    }
    
    .solution-card {
        padding: 30px 20px;
    }
    
    .solution-icon {
        width: 70px;
        height: 70px;
    }
    
    .solution-card h3 {
        font-size: 20px;
    }
}

/* 解决方案区块补充样式 */
.solution-section .section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.solution-desc {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.5;
    padding: 0 10px;
    transform: translateZ(0);
}

.solution-desc strong {
    color: #ff9800;
    font-weight: 600;
}

.solution-detail {
    margin-bottom: 20px;
}

.detail-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
    transform: translateZ(0);
}

.solution-stat {
    text-align: center;
    flex: 1;
    transform: translateZ(0);
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #ff9800;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.stat-value::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff9800, #ffb300);
    transition: width 0.3s ease;
}

.solution-card:hover .stat-value::after {
    width: 40px;
}

.stat-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

.solution-detail ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-detail ul li {
    padding: 8px 0;
    position: relative;
    padding-left: 28px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
    color: #555;
    font-size: 14px;
    transition: all 0.3s ease;
    transform: translateZ(0);
}

.solution-detail ul li:last-child {
    border-bottom: none;
}

.solution-detail ul li i {
    position: absolute;
    left: 0;
    top: 10px;
    color: #ff9800;
    font-size: 14px;
}

.solution-card:hover .solution-detail ul li {
    transform: translateZ(25px) translateX(5px);
    color: #333;
}

.solution-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    transform: translateZ(0);
}

.solution-tag {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1) 0%, rgba(255, 179, 0, 0.1) 100%);
    color: #ff9800;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-tag {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.2) 0%, rgba(255, 179, 0, 0.2) 100%);
    transform: translateY(-2px);
}

.solution-more {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.solution-more i {
    color: #ff9800;
    font-size: 12px;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-more {
    background: linear-gradient(135deg, #ff9800 0%, #ffb300 100%);
}

.solution-card:hover .solution-more i {
    color: #fff;
    transform: translateX(3px);
}

/* 解决方案行动区块 */
.solution-action {
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.05) 0%, rgba(255, 179, 0, 0.1) 100%);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.solution-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff9800, #ffb300);
}

.action-text h4 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.action-text p {
    color: #666;
    font-size: 15px;
    margin: 0;
}

.solution-btn {
    background: linear-gradient(90deg, #ff9800, #ffb300);
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.2);
    display: flex;
    align-items: center;
}

.solution-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.solution-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
}

.solution-btn:hover i {
    transform: translateX(5px);
}

@keyframes solutionNumberPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.solution-card:hover .stat-value {
    animation: solutionNumberPulse 1s ease-in-out;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .solution-section .section-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    .solution-action {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .action-text {
        margin-bottom: 20px;
    }
    
    .action-text h4 {
        font-size: 20px;
    }
    
    .detail-top {
        padding-bottom: 12px;
        margin-bottom: 15px;
    }
    
    .stat-value {
        font-size: 24px;
    }
}

/* 添加3D深度感 */
.solution-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.solution-icon, 
.solution-card h3, 
.solution-desc, 
.solution-detail ul li,
.solution-footer,
.solution-stat {
    transform: translateZ(0);
    transition: transform 0.5s ease;
}

.solution-card:hover .solution-icon {
    transform: translateZ(40px) rotateY(180deg);
}

.solution-card:hover h3 {
    transform: translateZ(30px);
}

.solution-card:hover .solution-desc {
    transform: translateZ(20px);
}

.solution-card:hover .solution-stat {
    transform: translateZ(25px);
}

.solution-card:hover .solution-detail ul li:nth-child(1) {
    transform: translateZ(25px) translateX(5px);
    transition-delay: 0.05s;
}

.solution-card:hover .solution-detail ul li:nth-child(2) {
    transform: translateZ(25px) translateX(5px);
    transition-delay: 0.1s;
}

.solution-card:hover .solution-detail ul li:nth-child(3) {
    transform: translateZ(25px) translateX(5px);
    transition-delay: 0.15s;
}

.solution-card:hover .solution-detail ul li:nth-child(4) {
    transform: translateZ(25px) translateX(5px);
    transition-delay: 0.2s;
}

.solution-card:hover .solution-detail ul li:nth-child(5) {
    transform: translateZ(25px) translateX(5px);
    transition-delay: 0.25s;
}

.solution-card:hover .solution-footer {
    transform: translateZ(15px);
}

/* 数据分析区域 - 全新简化版样式 */
.data-section {
    margin-top: 30px;
    padding: 30px 0;
    background-color: #f8f9fa;
    position: relative;
    z-index: 1;
}

.data-section .container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.data-section .section-title {
    font-size: 28px;
    margin-bottom: 5px;
    text-align: center;
}

.data-section .section-subtitle {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 25px;
}

/* 标签页样式 */
.data-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.data-tabs .tab {
    padding: 12px 20px;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.data-tabs .tab:hover {
    color: #333;
    background-color: #f5f5f5;
}

.data-tabs .tab.active {
    color: #ff9800;
    border-bottom-color: #ff9800;
}

/* 数据容器 */
.data-container {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* 数据面板 */
.data-panel {
    display: none;
    padding: 20px;
}

.data-panel.active {
    display: block;
}

/* 面板头部 */
.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.panel-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.panel-header h3 i {
    color: #ff9800;
    margin-right: 8px;
}

/* 时间筛选器 */
.time-filter {
    display: flex;
    gap: 10px;
}

.time-filter span {
    padding: 6px 12px;
    font-size: 14px;
    background: #f0f0f0;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-filter span:hover {
    background: #e0e0e0;
}

.time-filter span.active {
    background: #ff9800;
    color: #fff;
}

/* 数据行 */
.data-row {
    margin-bottom: 20px;
}

/* 图表容器 */
.data-chart-wrapper {
    width: 100%;
    height: 300px;
    background: #fff;
    margin-bottom: 25px;
    border-radius: 4px;
    overflow: hidden;
}

/* 指标卡片 */
.metrics-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.metric-card {
    background: #fff;
    border-radius: 4px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.metric-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    background: rgba(255,152,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-icon i {
    color: #ff9800;
    font-size: 20px;
}

.metric-value {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.metric-change {
    display: inline-block;
    padding: 3px 8px;
    font-size: 12px;
    border-radius: 20px;
}

.metric-change.positive {
    background: rgba(76,175,80,0.1);
    color: #4caf50;
}

.metric-change.negative {
    background: rgba(244,67,54,0.1);
    color: #f44336;
}

/* 洞察卡片 */
.data-insight {
    background: #fff8e1;
    border-radius: 4px;
    padding: 15px 20px;
    border-left: 4px solid #ffc107;
}

.data-insight h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #ff9800;
    font-size: 16px;
    font-weight: 600;
}

.data-insight h4 i {
    margin-right: 6px;
}

.data-insight p {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

/* 加载状态 */
.panel-loading {
    padding: 40px 20px;
    text-align: center;
}

.panel-loading i {
    font-size: 24px;
    color: #ff9800;
    margin-bottom: 10px;
}

.panel-loading p {
    color: #666;
    margin: 0;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .metrics-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .panel-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .time-filter {
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .metrics-highlights {
        grid-template-columns: 1fr;
    }
    
    .data-tabs {
        flex-wrap: wrap;
    }
    
    .data-tabs .tab {
        flex: 1 0 50%;
        text-align: center;
        padding: 10px;
    }
}

/* 成功案例区块 - 全新设计 */
.case-section {
    position: relative;
    padding: 90px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #f5f5f5 100%);
    overflow: hidden;
    z-index: 1;
}

.case-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ff9800' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.6;
    z-index: -1;
}

.case-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.case-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    position: relative;
}

.case-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff9800, #ffb300);
    border-radius: 3px;
}

.case-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* 案例筛选 */
.case-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 10px;
}

.filter-btn {
    padding: 10px 20px;
    background: #fff;
    border: none;
    border-radius: 30px;
    color: #555;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-btn:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.filter-btn.active {
    background: linear-gradient(135deg, #ff9800, #ffb300);
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.2);
}

/* 案例网格 */
.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* 案例卡片 */
.case-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    transform: translateY(0);
    opacity: 0;
    transform: translateY(20px);
    position: relative;
}

.case-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* 案例图片 */
.case-image {
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* 覆盖层 */
.case-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* 案例标签 */
.case-tag {
    align-self: flex-start;
    background: rgba(255, 152, 0, 0.9);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* 案例操作 */
.case-actions {
    align-self: flex-end;
    margin-bottom: 10px;
}

.case-view {
    display: inline-block;
    background: #fff;
    color: #333;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease 0.1s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.case-card:hover .case-view {
    transform: translateY(0);
    opacity: 1;
}

.case-view:hover {
    background: #ff9800;
    color: #fff;
}

/* 案例信息 */
.case-info {
    padding: 25px;
}

.case-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.case-card:hover .case-name {
    color: #ff9800;
}

/* 案例指标 */
.case-metrics {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.metric {
    flex: 1;
    text-align: center;
    padding: 0 5px;
}

.metric-value {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #ff9800;
    margin-bottom: 6px;
    transition: all 0.3s ease;
}

.metric-value.pulse {
    animation: metricPulse 1s ease;
}

@keyframes metricPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
        color: #f57c00;
    }
    100% {
        transform: scale(1);
    }
}

.metric-label {
    display: block;
    font-size: 12px;
    color: #777;
}

/* 案例描述 */
.case-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    border-top: 1px dashed #eee;
    padding-top: 20px;
}

/* 案例统计 */
.case-stats {
    display: flex;
    justify-content: space-around;
    margin: 60px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255, 152, 0, 0.3), transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #ff9800;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.stat-number::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 152, 0, 0.1);
    z-index: -1;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.stat-label {
    display: block;
    font-size: 16px;
    color: #555;
}

/* 更多案例按钮 */
.case-more {
    text-align: center;
    margin-top: 30px;
}

.more-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #ff9800, #ffb300);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.3);
}

.more-btn:hover::before {
    left: 100%;
}

.more-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.more-btn:hover i {
    transform: translateX(5px);
}

/* 装饰元素 */
.case-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    background: linear-gradient(135deg, #ff9800 0%, #ffb300 100%);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation: floatCircle 20s infinite linear;
}

.circle-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: -150px;
    animation: floatCircle 25s infinite linear reverse;
}

@keyframes floatCircle {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.deco-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 152, 0, 0.2), transparent);
    z-index: 0;
}

.line-1 {
    width: 80%;
    top: 30%;
    left: 10%;
    transform: rotate(2deg);
}

.line-2 {
    width: 60%;
    bottom: 25%;
    right: 10%;
    transform: rotate(-2deg);
}

/* 案例悬停特效 */
.case-card {
    perspective: 1000px;
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff9800, #ffb300);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 1;
}

.case-card:hover::before {
    transform: scaleX(1);
}

/* 响应式样式 */
@media (max-width: 1200px) {
    .case-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .case-section {
        padding: 70px 0;
    }
    
    .case-title {
        font-size: 32px;
    }
    
    .case-subtitle {
        font-size: 15px;
        margin-bottom: 40px;
    }
    
    .case-stats {
        margin: 40px 0;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .case-section {
        padding: 60px 0;
    }
    
    .case-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .case-filter {
        margin-bottom: 30px;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .case-metrics {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .metric {
        flex: 0 0 calc(50% - 10px);
        margin-bottom: 10px;
    }
    
    .case-image {
        height: 180px;
    }
    
    .case-stats {
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 0 0 50%;
        margin-bottom: 20px;
    }
    
    .stat-item::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .case-section {
        padding: 50px 0;
    }
    
    .case-title {
        font-size: 28px;
    }
    
    .case-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .case-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .case-info {
        padding: 20px;
    }
    
    .case-name {
        font-size: 17px;
    }
    
    .metric-value {
        font-size: 18px;
    }
    
    .case-desc {
        font-size: 13px;
    }
    
    .stat-item {
        flex: 0 0 100%;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .case-more {
        margin-top: 20px;
    }
    
    .more-btn {
        padding: 10px 25px;
        font-size: 15px;
    }
}

/* 案例卡片交互动画 */
@keyframes caseAppear {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.case-card {
    animation: caseAppear 0.5s ease forwards;
    animation-delay: calc(var(--case-index, 0) * 0.1s);
}

/* 增强视觉效果 */
.case-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.05) 0%, rgba(255, 180, 0, 0.05) 100%);
    transition: height 0.3s ease;
    z-index: -1;
}

.case-card:hover::after {
    height: 100%;
}

/* 互动指标效果 */
.metric-value {
    position: relative;
    display: inline-block;
}

.metric-value::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #ff9800;
    transition: width 0.3s ease;
}

.case-card:hover .metric-value::after {
    width: 70%;
}

/* 移动端优化 */
@media (hover: none) {
    .case-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 0) 100%);
    }
    
    .case-view {
        transform: translateY(0);
        opacity: 1;
    }
    
    .case-card::before {
        transform: scaleX(1);
        width: 30%;
        left: 0;
    }
}

/* 特殊交互效果 - 鼠标跟踪 */
.case-section {
    --x: 50%;
    --y: 50%;
}

@media (min-width: 768px) {
    .case-card .case-image::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at var(--x) var(--y), rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 30%, rgba(255, 255, 255, 0) 70%);
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }
    
    .case-card:hover .case-image::after {
        opacity: 1;
    }
}

/* 服务流程区块 - 全新设计 */
.process-section {
    position: relative;
    padding: 90px 0;
    background: linear-gradient(135deg, #fff8f0 0%, #fffdf7 100%);
    overflow: hidden;
    z-index: 1;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ff9800' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.4;
    z-index: -1;
}

.process-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.process-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    position: relative;
}

.process-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff9800, #ffb300);
    border-radius: 3px;
}

.process-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* 流程导航 */
.process-nav {
    position: relative;
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.nav-track {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    transform: translateY(-50%);
    z-index: 1;
}

.nav-items {
    position: relative;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.nav-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.item-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e0e0e0;
    margin-bottom: 12px;
    position: relative;
    transition: all 0.3s ease;
    z-index: 2;
}

.item-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #ff9800;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.nav-item.active .item-dot {
    border-color: #ff9800;
    transform: scale(1.2);
}

.nav-item.active .item-dot::before {
    width: 12px;
    height: 12px;
}

.item-label {
    font-size: 15px;
    font-weight: 500;
    color: #777;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.nav-item.active .item-label {
    color: #ff9800;
    font-weight: 600;
    transform: translateY(2px);
}

.nav-item:hover .item-dot {
    border-color: #ffb300;
    transform: scale(1.1);
}

.nav-item:hover .item-label {
    color: #ff9800;
}

/* 流程内容 */
.process-content {
    position: relative;
    margin-bottom: 70px;
}

.process-step {
    display: none;
    animation: fadeIn 0.6s ease forwards;
}

.process-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.step-info {
    flex: 1;
    min-width: 300px;
    padding: 40px;
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff9800, #ffb300);
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
}

.step-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.step-desc {
    margin-bottom: 30px;
}

.step-desc p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.step-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-points li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #555;
    line-height: 1.5;
}

.step-points li i {
    color: #4caf50;
    margin-right: 10px;
    margin-top: 4px;
}

.step-action {
    display: flex;
    justify-content: space-between;
}

.next-step, .prev-step, .restart-process {
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.next-step {
    background: linear-gradient(90deg, #ff9800, #ffb300);
    color: #fff;
    box-shadow: 0 4px 10px rgba(255, 152, 0, 0.2);
}

.next-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 152, 0, 0.3);
}

.prev-step {
    background: #f5f5f5;
    color: #555;
}

.prev-step:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.restart-process {
    background: #4caf50;
    color: #fff;
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.2);
}

.restart-process:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(76, 175, 80, 0.3);
}

.step-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.step-content:hover .step-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-content:hover .image-overlay {
    opacity: 1;
}

.overlay-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-content:hover .overlay-icon {
    transform: scale(1);
}

.overlay-icon i {
    font-size: 30px;
    color: #fff;
}

/* 流程优势 */
.process-advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 70px;
}

.advantage-item {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff9800, #ffb300);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.advantage-item:hover::before {
    transform: scaleX(1);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 152, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.advantage-item:hover .advantage-icon {
    background: linear-gradient(135deg, #ff9800, #ffb300);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
    transform: scale(1.1) rotate(10deg);
}

.advantage-icon i {
    font-size: 28px;
    color: #ff9800;
    transition: all 0.3s ease;
}

.advantage-item:hover .advantage-icon i {
    color: #fff;
}

.advantage-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.advantage-item:hover h4 {
    color: #ff9800;
}

.advantage-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 流程咨询 */
.process-cta {
    background: linear-gradient(135deg, #ff9800, #ffb300);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.2);
}

.process-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    animation: rotateGradient 15s linear infinite;
}

@keyframes rotateGradient {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.process-cta h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
}

.process-cta p {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 14px 30px;
    background: #fff;
    color: #ff9800;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: #ff6f00;
}

.cta-button i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* 装饰元素 */
.process-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.process-decoration .deco-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.05) 0%, rgba(255, 179, 0, 0.05) 100%);
}

.process-decoration .circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation: floatCircle 25s infinite linear;
}

.process-decoration .circle-2 {
    width: 500px;
    height: 500px;
    bottom: -200px;
    left: -200px;
    animation: floatCircle 35s infinite linear reverse;
}

.process-decoration .deco-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 152, 0, 0.1), transparent);
}

.process-decoration .line-1 {
    width: 90%;
    top: 30%;
    left: 5%;
    transform: rotate(1deg);
}

.process-decoration .line-2 {
    width: 70%;
    bottom: 40%;
    right: 5%;
    transform: rotate(-1deg);
}

/* 响应式样式 */
@media (max-width: 1200px) {
    .process-advantages {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .process-section {
        padding: 70px 0;
    }
    
    .process-title {
        font-size: 32px;
    }
    
    .process-subtitle {
        font-size: 15px;
        margin-bottom: 40px;
    }
    
    .step-info, .step-image {
        flex: 100%;
    }
    
    .step-image {
        height: 300px;
    }
    
    .process-cta {
        padding: 30px;
    }
    
    .process-cta h3 {
        font-size: 22px;
    }
    
    .process-cta p {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 60px 0;
    }
    
    .nav-items {
        overflow-x: auto;
        padding-bottom: 15px;
        justify-content: flex-start;
    }
    
    .nav-item {
        flex: 0 0 auto;
        margin-right: 50px;
    }
    
    .nav-item:last-child {
        margin-right: 0;
    }
    
    .nav-track {
        display: none;
    }
    
    .step-info {
        padding: 30px;
    }
    
    .step-header {
        margin-bottom: 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-right: 15px;
    }
    
    .step-title {
        font-size: 22px;
    }
    
    .process-advantages {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .advantage-item {
        padding: 25px;
    }
    
    .step-action {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    
    .prev-step, .next-step, .restart-process {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .process-section {
        padding: 50px 0;
    }
    
    .process-title {
        font-size: 28px;
    }
    
    .process-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .step-info {
        padding: 25px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .step-title {
        font-size: 20px;
    }
    
    .step-image {
        height: 250px;
    }
    
    .step-desc p {
        font-size: 15px;
    }
    
    .step-points li {
        font-size: 14px;
    }
}

/* 增强交互动画 */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 152, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 152, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 152, 0, 0);
    }
}

.nav-item.active .item-dot {
    animation: pulse 2s infinite;
}

.step-content {
    perspective: 1000px;
}

.step-content .step-info, 
.step-content .step-image {
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: transform 0.4s ease;
}

.step-content:hover .step-info {
    transform: translateZ(20px);
}

.step-content:hover .step-image {
    transform: translateZ(40px);
}

/* 鼠标悬停特效 */
.process-section {
    --x: 50%;
    --y: 50%;
}

@media (min-width: 768px) {
    .step-image::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at var(--x) var(--y), rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 30%, rgba(255, 255, 255, 0) 70%);
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
        z-index: 1;
    }
    
    .step-content:hover .step-image::after {
        opacity: 1;
    }
}

/* 更多流程交互效果 */
.nav-item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: calc(-50% + 12px);
    width: calc(100% - 24px);
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.nav-item:last-child::after {
    display: none;
}

.nav-item.active::after,
.nav-item.active ~ .nav-item::after {
    background: #e0e0e0;
}

.nav-item:not(.active)::after {
    background: #ff9800;
}

.nav-item:nth-child(-n+1)::after {
    background: #ff9800;
}

.process-step {
    transform: translateX(100px);
    opacity: 0;
    transition: all 0.6s ease;
}

.process-step.active {
    transform: translateX(0);
    opacity: 1;
}

/* 添加针对数据面板的修复样式 */
.data-panel {
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: none;
}

.data-panel.active {
    display: block !important;
}

/* 确保文字在各浏览器中清晰可见 */
.banner-title, 
.banner-subtitle {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.banner-title {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5) !important;
}

.banner-subtitle {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3) !important;
}

/* 修复数据面板渐变文本在某些浏览器中的显示问题 */
.data-value {
    background: linear-gradient(135deg, #FFD700, #FFC000);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #FFD700; /* 对不支持渐变文本的浏览器提供回退 */
}

/* 确保banner视频背景在移动设备上正常显示 */
@media (max-width: 768px) {
    .banner-bg-video video {
        height: 100%;
        width: auto;
        min-width: 100%;
    }
    
    .banner-content {
        width: 100%;
        padding: 40px 20px;
        align-items: center;
        text-align: center;
    }
    
    .banner-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .data-panel {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        -webkit-transform: none;
        -ms-transform: none;
        margin: 20px auto;
        width: 90%;
        max-width: 320px;
    }
}

/* Banner修复样式 */
.banner-section {
    background: linear-gradient(135deg, #FFC107, #FF9800) !important;
}

.banner-bg {
    background: linear-gradient(135deg, #FFC107, #FF9800) !important;
}

/* 确保文字在各浏览器中清晰可见 */
.banner-title, 
.banner-subtitle {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #ffffff !important;
}

/* 统计框样式修复 */
.stat-box {
    background-color: rgba(255, 255, 255, 0.2) !important;
    margin: 0;
    padding: 15px 10px !important;
    min-width: 120px;
    max-width: 150px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

.stat-value {
    color: #ffffff !important;
    font-size: 32px !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* 按钮样式修复 */
.banner-cta {
    border-radius: 4px !important;
    margin: 0 10px 0 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}

.banner-cta.primary {
    background-color: #ffffff !important;
    color: #FF9800 !important;
    border: none !important;
}

.banner-cta.primary:hover {
    background-color: #f9f9f9 !important;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-2px) !important;
}

.banner-cta.secondary {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
}

.banner-cta.secondary:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-2px) !important;
}

/* 移动端响应式修复 */
@media (max-width: 768px) {
    .banner-section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    
    .banner-stats {
        width: 100%;
        flex-direction: row !important;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 20px !important;
    }
    
    .stat-box {
        flex: 1 1 120px;
        max-width: 120px;
        margin: 5px !important;
    }
    
    .banner-cta-group {
        width: 100%;
        display: flex;
        flex-direction: row !important;
        justify-content: center;
    }
    
    .banner-cta {
        min-width: 120px;
        max-width: 200px;
        margin: 0 5px !important;
    }
}

/* 数据面板样式修复 */
.data-panel {
    position: absolute !important;
    right: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 320px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    overflow: hidden !important;
    z-index: 3 !important;
    border-left: 4px solid #FFC107 !important;
    display: block !important; /* 确保显示 */
}

.panel-header {
    display: flex !important;
    align-items: center !important;
    padding: 15px 20px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.panel-title {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #333 !important;
    position: relative !important;
    padding-left: 15px !important;
}

.panel-title::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 4px !important;
    height: 16px !important;
    background: #FFC107 !important;
    border-radius: 2px !important;
}

.panel-content {
    padding: 5px 0 !important;
}

.data-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 12px 20px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.data-row:last-child {
    border-bottom: none !important;
}

.data-value {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #FFC107 !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
}

.data-label {
    font-size: 14px !important;
    color: #555 !important;
    font-weight: 500 !important;
}

/* 移动端响应式修复 */
@media (max-width: 992px) {
    .data-panel {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        max-width: 600px !important;
        margin: 30px auto 0 !important;
    }
}

/* 客服二维码弹窗 */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 12px;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: fadeIn 0.3s ease-out;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: #888;
    cursor: pointer;
    transition: all 0.2s;
}

.close-modal:hover {
    color: #FF9800;
    transform: rotate(90deg);
}

.modal-content h3 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 25px;
    color: #333;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.modal-content h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FF9800, #FFC107);
    border-radius: 3px;
}

.qrcode-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}

.qrcode-container img {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid white;
    transition: transform 0.3s ease;
}

.qrcode-container img:hover {
    transform: scale(1.03);
}

.qrcode-container p {
    margin-top: 15px;
    color: #666;
    font-size: 16px;
}

.contact-info {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px dashed #ddd;
}

.contact-info p {
    margin: 10px 0;
    color: #555;
    display: flex;
    align-items: center;
}

.contact-info p i {
    margin-right: 10px;
    color: #FF9800;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 576px) {
    .modal-content {
        padding: 20px;
        width: 92%;
    }
    
    .qrcode-container img {
        width: 160px;
        height: 160px;
    }
}

/* 修改成功案例区域的数据卡片文字颜色 */
.case-card .metric-label {
    color: #FFC107; /* 设置为黄色 */
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* 修改解决方案区块标签文字颜色 */
.solution-detail .detail-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.solution-detail .detail-top .stat-label {
    color: #FFC107; /* 设置为黄色 */
    font-weight: 500;
    font-size: 14px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* 确保所有的stat-label样式统一 */
.stat-label {
    color: #FFC107 !important; /* 使用!important确保覆盖其他可能的样式 */
}

/* 防止样式与页脚冲突 */
.video-page .section-title,
.video-page .data-title,
.video-page .case-title,
.video-page .advantage-section .section-title,
.video-page .solution-section .section-title,
.banner-section .banner-title {
    /* 限制标题样式只应用于视频号页面的相关元素 */
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

/* 重新定义stat-label以避免全局冲突 */
.video-page .stat-label,
.banner-section .stat-label,
.solution-detail .stat-label,
.case-stats .stat-label {
    color: #FFC107 !important;
}

/* 针对性修复data-label冲突 */
.banner-section .data-label::before {
    font-family: 'Font Awesome 5 Free';
    content: "\f201";
    font-weight: 900;
    margin-right: 8px;
    font-size: 12px;
    color: #FFD700; /* 确保图标颜色为金色 */
}

/* 页脚联系我们区块样式隔离 */
.video-page + .footer-section .contact-info,
.video-page + .footer-section .info-item,
.video-page + .footer-section .contact-form {
    /* 使用不同的命名空间避免与当前页面样式冲突 */
    font-family: inherit;
    color: inherit;
}

/* 全局样式隔离 */
body.video-channels-page .mkt-main-nav .nav-item i {
    /* 确保导航菜单的图标正常显示 */
    color: inherit !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

body.video-channels-page .mkt-main-nav .nav-icon {
    color: inherit !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

body.video-channels-page .footer-section .stat-label,
body.video-channels-page .footer-section .data-label {
    /* 确保页脚区域的这些元素不受影响 */
    color: inherit !important;
}

body.video-channels-page .footer-section .contact-info i,
body.video-channels-page .footer-section .info-item i {
    /* 确保页脚联系信息的图标正常显示 */
    color: inherit !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* 修复data-panel样式，确保在banner区域显示 */
.data-panel {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 10;
    display: block !important;
    visibility: visible !important;
}

.data-panel.active {
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
}

/* 防止FontAwesome图标被其他样式覆盖 */
.fa, 
.fas, 
.far, 
.fab {
    font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands" !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* 进一步隔离视频号页面样式，防止影响其他页面 */
body.video-channels-page {
    /* 重置可能受影响的全局样式 */
}

body.video-channels-page .video-page {
    /* 限制样式只在视频号页面内生效 */
}

/* 修复服务流程选项卡溢出问题 */
.process-step {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    display: none;
}

.process-step.active {
    display: block;
}

.step-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
}

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

/* 1. 修复Banner区域统计数据颜色 */
.banner-section .banner-stats .stat-box .stat-value {
    color: #FFFFFF !important;
    font-weight: 700 !important;
    font-size: 32px !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important;
    background: none !important;
    -webkit-text-fill-color: #FFFFFF !important;
}

.banner-section .banner-stats .stat-box .stat-label {
    color: #FFFFFF !important;
    font-weight: 500 !important;
    opacity: 0.9 !important;
    font-size: 14px !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15) !important;
}

/* 2. 修复解决方案区块数值颜色 */
.solution-card .solution-detail .stat-value,
.solution-card .solution-stat .stat-value,
.solution-detail .detail-top .stat-value,
.solution-card .data-value {
    color: #FFC107 !important;
    font-weight: 700 !important;
    font-size: 22px !important;
    background: none !important;
    -webkit-text-fill-color: #FFC107 !important;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) !important;
}

.solution-card .solution-detail .stat-label,
.solution-card .solution-stat .stat-label,
.solution-detail .detail-top .stat-label {
    color: #666666 !important;
    font-weight: 500 !important;
    font-size: 13px !important;
}

/* 3. 修复数据分析区块显示问题 */
.data-section .data-tabs .tab.active {
    color: #FFC107 !important;
    border-bottom-color: #FFC107 !important;
    font-weight: 600 !important;
}

.data-section .data-tabs .tab {
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.data-section .data-panel {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    background: #ffffff !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    margin: 0 !important;
}

/* 4 & 5. 修复服务流程区块选项卡和内容加载问题 */
.process-section .nav-item {
    cursor: pointer !important;
}

.process-section .nav-item.active .item-dot {
    border-color: #FFC107 !important;
    transform: scale(1.2) !important;
}

.process-section .nav-item.active .item-label {
    color: #FFC107 !important;
    font-weight: 600 !important;
}

/* 加强服务流程区块选项卡切换效果 */
.process-section .process-step {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.3s ease, visibility 0.3s ease !important;
}

.process-section .process-step.active {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* 确保服务流程区块内容正确布局 */
.process-section .step-content {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
    align-items: flex-start !important;
    margin-top: 30px !important;
}

.process-section .step-info,
.process-section .step-image {
    flex: 1 1 45% !important;
    min-width: 280px !important;
    box-sizing: border-box !important;
}

.process-section .step-image {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 8px !important;
}

.process-section .step-image img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

/* 6. 优化页面加载 */
.banner-content-wrapper {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
    position: relative !important;
    height: 100% !important;
    z-index: 5 !important;
}

/* 强制显示数据面板 */
.banner-content-wrapper .data-panel {
    display: block !important;
    visibility: visible !important;
}

.banner-content-wrapper .data-panel.active {
    opacity: 1 !important;
}

/* 确保FontAwesome图标正确显示 */
.fa, .fas, .far, .fab {
    font-display: swap !important;
    display: inline-block !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    line-height: 1 !important;
}

/* 强化服务流程选项卡切换功能 */
.nav-item[data-step] {
    position: relative !important;
    z-index: 10 !important;
    cursor: pointer !important;
}

/* 修复导航菜单图标的显示问题 */
.mkt-main-nav .nav-item i,
.mkt-main-nav .nav-icon {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: inherit !important;
}

/* 确保FontAwesome图标正确加载和显示 */
.fa, .fas, .far, .fab {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands" !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    line-height: 1 !important;
}

/* 确保页面不受视频号页面样式影响导航图标 */
body.video-channels-page .mkt-main-nav .nav-item i,
body.video-channels-page .mkt-main-nav .nav-icon {
    color: inherit !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* 修复导航菜单图标和FontAwesome图标的显示问题 */
.fa, 
.fas, 
.far, 
.fab,
.mkt-main-nav .nav-item i,
.mkt-main-nav .nav-icon {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands", FontAwesome !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    line-height: 1 !important;
}

.mkt-main-nav .nav-item i,
.mkt-main-nav .nav-icon {
    color: inherit !important;
    font-size: inherit !important;
}

/* 确保视频号页面不影响导航图标 */
body.video-channels-page .mkt-main-nav .nav-item i,
body.video-channels-page .mkt-main-nav .nav-icon {
    color: inherit !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important; /* 防止位置被覆盖 */
    transform: none !important; /* 防止变形 */
}

/* 避免FontAwesome图标被其他样式覆盖 */
body.video-channels-page .fa, 
body.video-channels-page .fas, 
body.video-channels-page .far, 
body.video-channels-page .fab {
    font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands", FontAwesome !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* 导航栏特有样式保护 */
.mkt-main-nav {
    z-index: 1000 !important; /* 确保导航在最上层 */
}

.mkt-main-nav * {
    /* 重置导航元素的可能被影响的关键样式 */
    font-family: inherit !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

/* 导航菜单图标强制显示的特殊处理 */
.mkt-main-nav .nav-icon::before {
    opacity: 1 !important;
    display: inline-block !important;
    visibility: visible !important;
}

/* 在视频号页面特别保护导航元素 */
body.video-channels-page .mkt-main-nav {
    isolation: isolate; /* 创建新的层叠上下文 */
}

/* 修复导航选项卡文本对齐 */
.mkt-main-nav .nav-link {
    text-align: center !important;
}

/* 强制应用导航图标样式，防止被process区块的样式覆盖 */
.mkt-main-nav .nav-item i,
.mkt-main-nav .nav-icon {
    position: static !important;
    margin: 0 !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    transition: none !important;
}

/* 视频号页面中特定的图标修复 */
body.video-channels-page {
    /* 隔离视频号页面样式，防止影响其他页面 */
}

/* 避免FontAwesome与其他图标库冲突 */
body.video-channels-page i[class^="fa-"]::before {
    font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands", FontAwesome !important;
}


