.banner {
    width: 100%;
}

.banner img {
    display: block;
    width: 100%;
    object-fit: cover;
    min-height: 21.875rem;
}

.main {
    background: #F8F8F8;
}

.solution {
    width: 100%;
    background: #F8F8F8;
    padding-top: 1.5rem;
    padding-bottom: 3.125rem;
    overflow: hidden;
}

.solution .item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3.125rem;
}

.solution .item:nth-child(2n) {
    flex-direction: row-reverse;
}

.solution .item .prc {
    width: 50%;
    overflow: hidden;
}

.solution .item .prc img {
    display: block;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.solution .item .prc img:hover {
    transform: scale(1.1);
}

.solution .item .zi {
    width: 50%;
    padding: 4.125rem 5rem 3.125rem;
    background: #fff;
    position: relative;
}

.solution .item .zi::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 2;
    top: 0;
    left: -5rem;
    height: 100%;
    width: 5rem;
    background: rgba(255, 255, 255, 0.2);
}

.solution .item:nth-child(2n) .zi::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 2;
    top: 0;
    left: auto;
    right: -5rem;
    height: 100%;
    width: 5rem;
    background: rgba(255, 255, 255, 0.2);
}

.solution .item .zi .title {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: bold;
    font-size: 2rem;
    color: #333333;
    line-height: 1;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-bottom: 1.5rem;
}


.solution .item .zi .text {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 1rem;
    color: #333333;
    line-height: 2rem;
    text-align: left;
    font-style: normal;
    text-transform: none;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.solution .item .zi .more {
    margin-top: 2.5rem;
}

.solution .item .zi .more a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10rem;
    height: 2.5rem;
    background: #fff;
    border-radius: 1.25rem;
    border: 1px solid #0154A4;
    color: #0154A4;
    font-size: 1rem;
    transition: all 0.3s ease-in-out;
}

.solution .item .zi .more a:hover {
    background: #0154A4;
    color: #fff;
}


@media (max-width: 768px) {
    .banner img{
        min-height: 12.5rem;
    }

    .solution .item{
        flex-direction: column;
        margin-bottom: .9375rem;
    }
    .solution .item .prc{
        width: 100%;
    }
    .solution .item .zi{
        width: 100%;
        padding: .9375rem;
    }
    .solution .item .zi .title{
        font-size: 1.25rem;
        margin-bottom: .9375rem;
    }
    .solution .item .zi .text{
        font-size: .875rem;
        line-height: 1.5;
    }
    .solution .item .zi .more{
        margin-top: .9375rem;
    }
    .solution .item:nth-child(2n){
        flex-direction: column;
    }
}