/* 解决方案页面样式 */

/* 顶部banner区域 */
.solution-banner {
    background: linear-gradient(135deg, #2b5bac 0%, #1e88e5 100%);
    color: #fff;
    padding: 80px 0 60px;
    margin-top: 70px;
}

.solution-banner h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.solution-banner p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.solution-banner .btn-white {
    background-color: #fff;
    color: #2b5bac;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.solution-banner .btn-white:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* 解决方案优势卡片 */
.advantage-section {
    padding: 60px 0;
}

.advantage-section h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.advantage-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #2b5bac;
}

.advantage-card {
    text-align: center;
    padding: 30px 20px;
    height: 100%;
    transition: all 0.3s ease;
}

.advantage-card .card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-card .card-icon img {
    max-width: 100%;
    max-height: 100%;
}

.advantage-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.advantage-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* 功能模块 */
.features-section {
    background-color: #f5f9ff;
    padding: 60px 0;
}

.features-section h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.features-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #2b5bac;
}

.feature-card {
    background-color: #fff;
    border-radius: 6px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2b5bac;
}

.feature-card ul {
    padding-left: 20px;
}

.feature-card ul li {
    margin-bottom: 10px;
    color: #555;
}

/* 应用效果 */
.results-section {
    padding: 60px 0;
}

.results-section h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.results-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #2b5bac;
}

.result-card {
    text-align: center;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.result-number {
    font-size: 42px;
    font-weight: 700;
    color: #2b5bac;
    margin-bottom: 15px;
}

.result-card p {
    color: #666;
    font-size: 16px;
}

/* 解决方案场景 */
.scenario-section {
    padding: 60px 0;
    background-color: #f5f9ff;
}

.scenario-section h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.scenario-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #2b5bac;
}

.scenario-card {
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.scenario-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.scenario-card-body {
    padding: 20px;
}

.scenario-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.scenario-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .solution-banner {
        padding: 60px 0 40px;
        text-align: center;
    }
    
    .solution-banner img {
        margin-top: 30px;
    }
    
    .advantage-card, .feature-card, .result-card {
        margin-bottom: 20px;
    }
}