.solution-list {
    width: 1440px;
    display: flex;
    margin: 24px auto;
    justify-content: space-between;
    align-items: flex-start;
}

.solution-item {
    width: 31%;
    margin: 0 1%;
    /*width: 375px;*/
    box-shadow: #666 0 0 3px;
    padding: 15px 30px;
}

.solution-img-container {
    height: 210px;
    /*width: auto;*/
    overflow: hidden;
}

.solution-title {
    font-size: 20px;
    line-height: 2;
    color: #014584;
    font-weight: bold;
    text-align: center;
}

.solution-desc {
    height: 84px;
    font-size: 14px;
    color: #333;
    line-height: 2;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.solution-img-container {
    width: 100%;
    height: 0;
    padding-bottom: 66.67%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}