/* 智能单机页面特定样式 */
.smart-machine .solution-intro {
    background: linear-gradient(135deg, #f6f9fc 0%, #edf3f8 100%);
}

.smart-machine .core-functions {
    background: linear-gradient(45deg, #1a237e 0%, #0d47a1 100%);
}

.smart-machine .feature-card {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* 智能产线页面特定样式 */
.smart-line .solution-intro {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
}

.smart-line .core-functions {
    background: linear-gradient(45deg, #004d40 0%, #00695c 100%);
}

.smart-line .feature-card {
    border-radius: 20px;
    border: 1px solid #e0e0e0;
}

/* 烟叶智能分级页面特定样式 */
.leaf-grading .solution-intro {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.leaf-grading .core-functions {
    background: linear-gradient(45deg, #2e7d32 0%, #388e3c 100%);
}

.leaf-grading .feature-card {
    border-radius: 15px;
    background: #fff;
    border-bottom: 3px solid #4caf50;
}

/* 制丝集控页面特定样式 */
.control-system .solution-intro {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.control-system .core-functions {
    background: linear-gradient(45deg, #0277bd 0%, #039be5 100%);
}

.control-system .feature-card {
    border-radius: 8px;
    background: #fff;
    border-left: 4px solid #0277bd;
}

/* MES系统页面特定样式 */
.mes .solution-intro {
    background: linear-gradient(135deg, #f4f6f8 0%, #e2e6ea 100%);
}

.mes .core-functions {
    background: linear-gradient(45deg, #512da8 0%, #673ab7 100%);
}

.mes .feature-card {
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* APS系统页面特定样式 */
.aps .solution-intro {
    background: linear-gradient(135deg, #f5f6f8 0%, #e3e5e8 100%);
}

.aps .core-functions {
    background: linear-gradient(45deg, #c2185b 0%, #e91e63 100%);
}

.aps .feature-card {
    border-radius: 16px;
    background: #fff;
    border-top: 4px solid #e91e63;
}

/* 综合解决方案页面特定样式 */
.total .solution-intro {
    background: linear-gradient(135deg, #f6f8fa 0%, #e4e7ea 100%);
}

.total .core-functions {
    background: linear-gradient(45deg, #00838f 0%, #00acc1 100%);
}

.total .feature-card {
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* 通用样式增强 */
.process-timeline {
    position: relative;
    padding: 40px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    transform: translateX(-50%);
}

.process-item {
    position: relative;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.process-item:hover {
    transform: translateY(-5px);
}

.application-item {
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.application-item:hover {
    transform: translateY(-8px);
}

.application-item img {
    transition: transform 0.5s ease;
}

.application-item:hover img {
    transform: scale(1.1);
}

/* 响应式布局优化 */
@media (max-width: 768px) {
    .functions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .applications-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* 动画效果增强 */
.feature-icon i {
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.2);
}

.case-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* 页面标题样式差异化 */
.smart-machine .page-header { background: linear-gradient(45deg, #1a237e 0%, #0d47a1 100%); }
.smart-line .page-header { background: linear-gradient(45deg, #004d40 0%, #00695c 100%); }
.leaf-grading .page-header { background: linear-gradient(45deg, #2e7d32 0%, #388e3c 100%); }
.control-system .page-header { background: linear-gradient(45deg, #0277bd 0%, #039be5 100%); }
.mes .page-header { background: linear-gradient(45deg, #512da8 0%, #673ab7 100%); }
.aps .page-header { background: linear-gradient(45deg, #c2185b 0%, #e91e63 100%); }
.total .page-header { background: linear-gradient(45deg, #00838f 0%, #00acc1 100%); } 