.yingfang-solution-list {
    padding: 50px 0;
    background: #F8F8F8;
}
.solution-title-wrap{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.solution-title-wrap .solution-title{
    color: #000;
    font-family: var(--title-font-family);
    font-size: var(--font-48);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.solution-title-wrap .solution-subTitle{
    color: #2E2E2E;
    font-family: var(--font-family);
    font-size: var(--font-22);
    font-style: normal;
    font-weight: 400;
    line-height: 1.36;
}

.solution-content-wrap{
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    gap: 70px;
}
.solution-content-wrap .solution-content-item{
    display: flex;
    background: #FFF;
    box-shadow: 0 0 12.6px 0 rgba(184, 184, 184, 0.25);
}
.solution-content-wrap .solution-content-item:nth-of-type(even){
    flex-direction: row-reverse;
}
.solution-content-item .solution-content-left{
    width: 727px;
}
.solution-content-left img{
    width: 100%;
    height: 100%;
    aspect-ratio: 727/570;
    object-fit: cover;
}
.solution-content-item .solution-content-right{
    flex: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 27px;
    padding: 0 130px 0 80px;
}
.solution-content-right .solution-content-title{
    color: #000;
    font-family: var(--title-font-family);
    font-size: var(--font-32);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    position: relative;
}
.solution-content-right .solution-content-title::after{
    content: '';
    width: 58px;
    height: 5px;
    background: var(--color-primary);
    position: absolute;
    left: 0;
    top: -10px;
}
.solution-content-right .solution-content-desc{
    color: #2E2E2E;
    font-family: var(--font-family);
    font-size: var(--font-18);
    font-style: normal;
    font-weight: 400;
    line-height: 1.8;
}
.solution-content-right .solution-content-more{
    display: flex;
    width: 240px;
    height: 60px;
    padding: 5px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 6px;
    border: 1px solid #FC3D2D;
    color: var(--color-primary);
    text-align: center;
    font-family: var(--medium-font-family);
    font-size: var(--font-20);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.solution-content-right .solution-content-more:hover{
    background: var(--color-primary);
    color: #FFF;
    transition: all 0.5s;
}

@media screen and (max-width: 1500px) {
    .solution-content-item .solution-content-left{
        width: 45%;
    }
    .solution-content-item .solution-content-right{
        padding: 20px 70px;
    }
}
@media screen and (max-width: 1200px) {
    .solution-content-right .solution-content-more{
        width: 120px;
        height: 50px;
    }
    .solution-content-item .solution-content-right{
        padding: 30px 50px;
    }
    .solution-content-wrap{
        margin-top: 50px;
        gap: 50px;
    }
}
@media screen and (max-width: 992px) {
    .solution-content-wrap .solution-content-item{
        flex-direction: column !important;
    }
    .solution-content-item .solution-content-left{
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .solution-content-item .solution-content-right{
        padding: 30px;
    }
}