
/* =================================================================================case */
.Case {
    background-: #fff;
    margin-top:5px;
}

.Case .crumb {
    margin-top: 0;
    padding: 0 0;
}

.Case .Tit {
    margin-bottom: 48px;
}

.CaseBox {
    padding: 0 5%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}


.CaseItem {
    display: block;
    width: 25%;
    padding: 20px;
    position: relative;
    border-bottom: 1px solid rgb(227 230 233 / 52%);
}

.CaseItem::after {
    content: '';
    width: 1px;
    height: 100%;
    background: rgb(227 230 233 / 52%);
    position: absolute;
    right: 0;
    top: 0;
}

.CaseItem:nth-child(4n):after {
    display: none;
}

.CaseImg {
    position: relative;
    padding-top: 56%;
    overflow: hidden;
}

.CaseImg img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .48s;
}

.CaseText {
    padding: 20px 0 30px;
    position: relative;
    text-align: center;
}

.CaseText span {
    display: block;
    font-size: 18px;
    position: relative;
    color: #116cbe;
}

.CaseText .More {
    margin-top: 10px;
}

.CaseText .More i {
    padding: 2px 20px;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    color: #fff;
    border-color: #116cbe;
    background: #116cbe;
    text-transform: uppercase;
}

.CaseText .More i img {
    width: 10px;
    margin-left: 5px;
    vertical-align: top;
}


.CaseItem:hover .CaseImg img {
    transform: scale(1.01);
    transition: all .48s;
}


--
.CaseItem {
    display: block;
    width: 25%;
    padding: 20px;
    position: relative;
    border-bottom: 1px solid rgb(227 230 233 / 52%);
}

.CaseItem::after {
    content: '';
    width: 1px;
    height: 100%;
    background: rgb(227 230 233 / 52%);
    position: absolute;
    right: 0;
    top: 0;
}

.CaseItem:nth-child(4n):after {
    display: none;
}


/*  手机端显示 */

@media (max-width: 767px) {

    .CaseBox {
        padding: 0 3%;
    }
    .Case .indProChange {
        width: 100%;
        margin-bottom: 0 !important;
    }
    .Case .indProChange form{
        width: 100%;
    }

    .CaseItem {
        display: block;
    width: 50%;
    padding: 20px;
    position: relative;
    border-bottom: 1px solid rgb(227 230 233 / 52%);
    }

    .CaseItem::after {
        display: none;
    }
}


