/* 
*
* 源码交付 区域
*
*/
:root {
    --cooperation-way-item-offset: 14px;
}

.cooperation-way {
    width: 100%;
    background-color: #F6F6F6;
    padding-top: 62px;
    margin-top: -62px;
}

.cooperation-way-container {
    max-width: var(--container-max-width);
    padding: var(--container-padding);
    margin: 0 auto;
}

.cooperation-way-container h2 {
    font-family: Source Han Sans CN;
    font-weight: bold;
    font-size: var(--h2-font-size);
    color: #000000;
    text-align: center;
}

.cooperation-way-content {
    position: relative;
    min-height: 602px;
    margin: 30px 0;
    background-image: url('/img/home/src.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;

    display: flex;
    justify-content: space-around;
    gap: 50px;
}

.cooperation-way-content-l,
.cooperation-way-content-r {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 20px;
}

.cooperation-way-content-item {
    max-width: 352px;
    min-height: 152px;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0px 8px 28px 0px rgba(78, 178, 255, 0.16);
    border-radius: 8px;
    z-index: 1;
}

.cooperation-way-content-l .cooperation-way-content-item:nth-child(1) {
    transform: translate(
        calc(0px - var(--cooperation-way-item-offset)),
        calc(var(--cooperation-way-item-offset))
    );
}

.cooperation-way-content-l .cooperation-way-content-item:nth-child(2) {
    transform: translate(
        calc(var(--cooperation-way-item-offset)),
        calc(0px - var(--cooperation-way-item-offset))
    );
}

.cooperation-way-content-r .cooperation-way-content-item:nth-child(1) {
    transform: translate(
        calc(var(--cooperation-way-item-offset)),
        calc(0px - var(--cooperation-way-item-offset))
    );
}

.cooperation-way-content-r .cooperation-way-content-item:nth-child(2) {
    transform: translate(
        calc(0px - var(--cooperation-way-item-offset)),
        calc(var(--cooperation-way-item-offset))
    );
}


.cooperation-way-content-item h5 {
    margin-bottom: 8px;
    font-family: Source Han Sans CN;
    font-weight: bold;
    font-size: 22px;
    color: #373743;
}

.cooperation-way-content-item p {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 16px;
    color: #545C66;
}

.cooperation-way-content-src {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: Source Han Sans CN;
    font-weight: 800;
    font-size: 60px;
    color: #FFFFFF;
    line-height: 1;
}

@media screen and (max-width: 768px) {
    :root {
        --cooperation-way-item-offset: 0px;
    }

    .cooperation-way-content {
        align-items: center;
        flex-direction: column;
        gap: 230px;
    }

    .cooperation-way-content-item {
        min-height: 130px;
    }

    .cooperation-way-content-item h5 {
        font-size: 18px;
    }

    .cooperation-way-content-item p {
        font-size: 14px;
    }

    .cooperation-way-content-src {
        font-size: 38px;
    }
}
