/* 方案页面样式 */
.solutions-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/scheme/main.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.solutions-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.solutions-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* 方案部分样式 */
.solution-section {
    padding: 80px 0;
    background: white;
}

.solution-section.alt {
    background: var(--light-color);
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.solution-text h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.solution-text p {
    margin-bottom: 30px;
    line-height: 1.8;
}

.solution-features {
    list-style: none;
}

.solution-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.solution-features i {
    color: var(--primary-color);
    margin-right: 10px;
}

.solution-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .solutions-hero {
        height: 300px;
    }

    .solutions-hero h1 {
        font-size: 2rem;
    }

    .solution-content {
        grid-template-columns: 1fr;
    }

    .solution-image {
        order: -1;
    }

    .solution-text h2 {
        font-size: 2rem;
    }
}

.bgc-i {
    width: 100%;
    height: 100%;
    z-index: -1;
}