/* 解决方案页面样式 */

/* 主内容区 */
.main-content {
    background-color: #f8f9fa;
    min-height: calc(100vh - 200px);
}

/* 页面标题 */
.main-content h1 {
    color: #2c3e50;
    font-weight: 700;
}

/* 解决方案网格 */
.solution-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.75rem;
}

/* 解决方案卡片 */
.solution-card {
    padding: 0 0.75rem;
    margin-bottom: 1.5rem;
}

.solution-card .card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.solution-card .card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-5px) !important;
    border-color: #007bff;
}

.solution-card .card-img-top {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    transition: all 0.3s ease;
}

.solution-card .card:hover .card-img-top {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
}

.solution-card .card-title {
    color: #2c3e50;
    font-weight: 600;
}

.solution-card .card-text {
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.6;
}

.solution-features .feature-item {
    color: #495057;
    font-size: 0.9rem;
    line-height: 1.5;
}

.solution-card .btn-primary {
    transition: all 0.3s ease;
}

.solution-card .card:hover .btn-primary {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

/* 解决方案优势 */
.solution-advantages {
    border: 1px solid #e9ecef;
}

.section-title {
    color: #2c3e50;
    font-weight: 600;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
}

.advantage-item {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.advantage-item:hover {
    transform: translateY(-5px);
    border-color: #007bff;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.1);
}

.advantage-icon {
    transition: all 0.3s ease;
}

.advantage-item:hover .advantage-icon {
    transform: scale(1.1);
}

.advantage-title {
    color: #2c3e50;
    font-weight: 600;
}

.advantage-description {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .main-content {
        padding: 1rem 0;
    }
    
    .main-content h1 {
        font-size: 1.8rem;
    }
    
    .solution-card {
        margin-bottom: 1.5rem;
    }
    
    .solution-advantages {
        padding: 1.5rem !important;
    }
    
    .advantage-item {
        margin-bottom: 1.5rem;
    }
    
    .advantage-item:last-child {
        margin-bottom: 0;
    }
}

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

.solution-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.solution-card:nth-child(1) { animation-delay: 0.1s; }
.solution-card:nth-child(2) { animation-delay: 0.2s; }
.solution-card:nth-child(3) { animation-delay: 0.3s; }
.solution-card:nth-child(4) { animation-delay: 0.4s; }
.solution-card:nth-child(5) { animation-delay: 0.5s; }
.solution-card:nth-child(6) { animation-delay: 0.6s; }
.solution-card:nth-child(7) { animation-delay: 0.7s; }
.solution-card:nth-child(8) { animation-delay: 0.8s; }
.solution-card:nth-child(9) { animation-delay: 0.9s; }