.nei_item_box {}

.nei_item {
    display: flex;
    align-items: center;
    padding: 70px 0;
    justify-content: space-between;
    border-bottom: 1px solid #E5E5E5;
}

.nei_item h5 {
    font-size: 30px;
    color: #000000;
    line-height: 59px;
}

.nei_item p {
    font-size: 16px;
    color: #3D3D3D;
    line-height: 30px;
    text-indent: 2em;
}

.check {
    display: block;
    width: 147px;
    height: 41px;
    background: #fff;
    border-radius: 3px 3px 3px 3px;
    font-size: 16px;
    color: #333333;
    line-height: 38px;
    text-align: center;
    margin-top: 24px;
    border: 1px solid #CFCFCF;

}

.check:hover {
    background: #F81111;
    color: #FFFFFF;
    border: 1px solid #F81111;

}

.nei_item .right {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
    /* width: 40%; */
    margin-left: 46px;
    overflow: hidden;
}

.nei_item .right img {
    display: block;
    width: 421px;
    height: auto;
}

.nei_item .right img:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
}

@media screen and (max-width: 767px) {
    .nei_item {
        flex-direction: column;
        padding: 1.55rem 0;
    }

    .nei_item h5 {
        font-size: 0.85rem;
        color: #000000;
        line-height: unset;
        margin-bottom: 0.5rem;
    }

    .nei_item p {
        font-size: 0.65rem;
        line-height: 1rem;
    }

    .check {
        width: 5.12rem;
        height: 1.43rem;

        border-radius: 0.06rem 0.06rem 0.06rem 0.06rem;
        font-size: 0.65rem;
        color: #333333;
        line-height: 1.43rem;
        margin-top: 0.85rem;
        border: 1px solid #CFCFCF;
        margin-bottom: 0.75rem;
    }

    .check:hover {
        background: #F81111;
        color: #FFFFFF;
        border: 1px solid #F81111;

    }

    .nei_item .right {
        /* width: 40%; */
        margin-left: 0;
    }

    .nei_item .right img {
        width: 100%;
        height: auto;
    }
}