.business-item:nth-of-type(even) {
    background-color: #F7F7F7;
}

.business-item-content {
    display: flex;
    padding: 50px 0;
}

.business-item:nth-of-type(even) .business-item-content {
    flex-direction: row-reverse;
}

.business-item-img {
    width: 620px;
    height: 370px;
    border-radius: 16px 16px 16px 16px;
    opacity: 1;
    object-fit: cover;
}

.business-item-text {
    padding: 40px;
    flex: 1;
}

.business-item-text-title {
    font-size: 32px;
    font-weight: 500;
    color: #222222;
}

.business-item-description {
    font-size: 22px;
    font-weight: 400;
    color: #666666;
    line-height: 32px;
    margin: 20px 0;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    word-break: break-all
}

.business-item-btn {
    display: block;
    width: 128px;
    border-radius: 30px 30px 30px 30px;
    opacity: 1;
    border: 1px solid #000000;
    text-align: center;
    background-color: transparent;
    color: #222;
    line-height: 40px;
    cursor: pointer
}