.customSolutions[data-id="customSolutions"]{
    width: 100%;
    aspect-ratio: 24/3;
    background-image: url(../images/customSolutions.png);
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    margin-top: 80px;
    display: flex;
}

.customSolutions[data-id="customSolutions"] .customSolutions-box{
    width: 1400px;
    margin: 0 auto;
    display: flex;
}

[data-id="customSolutions"] .customSolutions-left{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

[data-id="customSolutions"] .main-heading{
    color: #1d2129;
    font-family: "OPPOSans";
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 44px;
}

[data-id="customSolutions"] .sub-heading{
    color: #1d2129;
    font-family: "OPPOSans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin: 12px 0;
}

[data-id="customSolutions"] .customSolutions-btn{
    background-color: #2603E9;
    padding: 8px 52px;
    color: #fff;
    width: max-content;
}

[data-id="customSolutions"] .customSolutions-right{
    width: 50%;
    display: flex;
    align-items: center;
    gap: 50px;
}

[data-id="customSolutions"] .customSolutions-item-title{
    color: #1d2129;
    font-family: "OPPOSans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

[data-id="customSolutions"] .customSolutions-item-data{
    color: #1d2129;
    font-family: "OPPOSans";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 44px;
    margin-top: 20px;
}


/* 768以下 */
@media (max-width: 768px) {
    .customSolutions[data-id="customSolutions"]{
        aspect-ratio:initial;
        margin-top: 0px;
        padding: 20px 0;
    }

    .customSolutions[data-id="customSolutions"] .customSolutions-box{
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    [data-id="customSolutions"] .customSolutions-left{
        width: 100%;
    }

    [data-id="customSolutions"] .customSolutions-right{
        width: 100%;
    }
    [data-id="customSolutions"] .customSolutions-btn{
        margin: 0 auto;
    }

    [data-id="customSolutions"] .customSolutions-right{
        flex-wrap: wrap;
        justify-content: center;
    }

    [data-id="customSolutions"] .customSolutions-item{
        width: 40%;
    }
}