/*
 * @Author: ChenWanzhao
 * @Date: 2023-11-02 16:39:46
 * @LastEditors: ChenWanzhao
 * @LastEditTime: 2023-11-03 15:12:44
 * @Description: 案例-客户介绍（客户的目标和挑战、客户简介）
 */
.bf-case-customer-introduction {
    display: flex;
    color: #ffffff;
    position: relative;
    border-top: 1px solid var(--bf-theme-color3);
    border-bottom: 1px solid var(--bf-theme-color3);
    padding: 118px 0;
    margin-top: -1px;
}

.bf-case-customer-introduction::after {
    content: "";
    width: 1px;
    height: 60%;
    position: absolute;
    background: var(--bf-theme-color3);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.bf-case-customer-introduction__chapter {
    width: 50%;
}

.bf-case-customer-introduction__chapter:nth-child(odd) {
    padding-right: 146px;
}

.bf-case-customer-introduction__chapter:nth-child(even) {
    padding-left: 146px;
}

.bf-case-customer-introduction__chapter__title {
    margin-bottom: 1em;
}

/* 屏幕宽度小于 1600px 时 */
@media screen and (max-width: 1600px) {
    .bf-case-customer-introduction {
        padding: 106.2px 0;
    }

    .bf-case-customer-introduction__chapter:nth-child(odd) {
        padding-right: 131.4px;
    }

    .bf-case-customer-introduction__chapter:nth-child(even) {
        padding-left: 131.4px;
    }
}

/* 屏幕宽度小于 1440px 时 */
@media screen and (max-width: 1400px) {
    .bf-case-customer-introduction {
        padding: 94.4px 0;
    }

    .bf-case-customer-introduction__chapter:nth-child(odd) {
        padding-right: 116.8px;
    }

    .bf-case-customer-introduction__chapter:nth-child(even) {
        padding-left: 116.8px;
    }
}

/* 屏幕宽度小于 1280px 时 */
@media screen and (max-width: 1280px) {
    .bf-case-customer-introduction {
        padding: 82.6px 0;
    }

    .bf-case-customer-introduction__chapter:nth-child(odd) {
        padding-right: 102.2px;
    }

    .bf-case-customer-introduction__chapter:nth-child(even) {
        padding-left: 102.2px;
    }
}

/* 屏幕宽度小于 1024px 时 */
@media screen and (max-width: 1024px) {
    .bf-case-customer-introduction {
        padding: 70.8px 0;
        flex-wrap: wrap;
    }

    .bf-case-customer-introduction::after {
        display: none;
    }

    .bf-case-customer-introduction__chapter {
        width: 100%;
    }

    .bf-case-customer-introduction__chapter:nth-child(odd) {
        padding-left: 0px;
        padding-right: 0px;
    }

    .bf-case-customer-introduction__chapter:nth-child(even) {
        padding-left: 0px;
        padding-right: 0px;
    }

    .bf-case-customer-introduction__chapter:not(:last-child) {
        margin-bottom: 3em;
    }
}

/* 屏幕宽度小于 968px 时 */
@media screen and (max-width: 968px) {
    .bf-case-customer-introduction {
        padding: 59px 0;
    }
}
