.benefitWrap li {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    background-color: #f6f6fb;
    border-radius: 26px;
    border: 1px solid #d9d9d9;
}

.benefitWrap li+li {
    margin-top: 30px;
}

.benefitWrap li span {
    width: 48px;
    height: 48px;
    line-height: 48px;
    background-color: #6a40fe;
    border-radius: 12px;
    font-size: 22px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
}

.benefitWrap li p {
    font-size: 20px;
    font-weight: bold;
}

/* 小屏幕（平板，大于等于 768px） */
@media screen and (max-width: 768px) {
    .benefitWrap li {
        padding: 15px 20px;
        border-radius: 12px;
    }

    .benefitWrap li+li {
        margin-top: 15px;
    }

    .benefitWrap li span {
        width: 24px;
        height: 24px;
        font-size: 15px;
        line-height: 24px;
        border-radius: 6px;
    }

    .benefitWrap li p {
        font-size: 15px;
    }
}

.getWhat {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
}

.getWhat li {
    padding: 45px 30px;
    background-color: #f7f8fa;
    border-radius: 26px;
    border: 1px solid #d9d9d9;
}

/* 中等屏幕（桌面显示器，大于等于 992px） */
@media screen and (max-width: 992px) {
    .getWhat {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 20px;
    }

    .getWhat li {
        padding: 35px 30px;
        border-radius: 18px;
    }
}

/* 小屏幕（平板，大于等于 768px） */
@media screen and (max-width: 768px) {
    .getWhat {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 15px;
    }

    .getWhat li {
        padding: 28px;
        border-radius: 15px;
    }

    .getWhat li img {
        width: 38px;
    }
}

.who-item {
    height: stretch;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 30px;
    border-radius: 26px;
    border: 1px solid #d9d9d9;
    position: relative;
}

.who-item::before {
    content: attr(data-before);
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 46px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.2);
}

.who-item h3 {
    font-weight: bold;
}

.who-item[data-before="01"] {
    background: linear-gradient(149deg, #773fff 50%, #828bff 100%);
}

.who-item[data-before="02"] {
    background: linear-gradient(149deg, #ffb32d 50%, #ffd180 100%);
}

.who-item[data-before="03"] {
    background: linear-gradient(149deg, #ff4082 50%, #ff88b1 100%);
}

.who-item[data-before="04"] {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-right: 25px;
    background: linear-gradient(159deg, #476fff 50%, #629aff 100%);
}

.who-item[data-before="05"] {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 38px;
    background: linear-gradient(159deg, #00b5ff 50%, #29c5fd 100%);
}
/* 小屏幕（平板，大于等于 768px） */
@media screen and (max-width: 768px){
    .whoWrap .row.mt30{
        margin-top: 0;
    }
    .who-item{
        margin-bottom: 15px;
    }
    .who-item img{
        max-height: 150px;
    }
    .who-item[data-before="04"] img,
    .who-item[data-before="05"] img{
        max-height: 90px;
    }
    .who-item[data-before="05"]{
        padding-right: 25px;
    }
}
.why-item {
    height: stretch;
    padding: 36px 30px;
    background: rgba(106, 64, 254, 0.2) url("../images/cooperation/whybg.png") no-repeat 100% bottom/ auto;
    border-radius: 26px;
}

/* 小屏幕（平板，大于等于 768px） */
@media screen and (max-width: 768px) {
    .why-item {
        padding: 25px;
        margin-bottom: 15px;
    }

    .why-item img {
        width: 40px;
    }
}

.cooperation-banner {
    background: url('../images/cooperation/banner1.png') no-repeat center / cover;
}

.cooperation-banner-text {
    width: 58%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.cooperation-banner-text+img{
    width: 80%;
}
.banner-freeTrial-btn {
    width: fit-content;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    padding: 13px 30px;
    background: linear-gradient(90deg, #7a9cff 20%, #d687ff 60%, #ff90b5 100%);
    border-radius: 100px;
}

.banner-freeTrial-btn:hover {
    background: linear-gradient(90deg, #5682FF 20%, #CF72FF 60%, #FF6095 100%);
    box-shadow: 0px 5px 5px 0px rgba(106, 64, 254, 0.2);
}

.banner-freeTrial-btn::after {
    content: '';
    width: 36px;
    height: 36px;
    display: inline-block;
    margin-left: 20px;
    background: no-repeat url(../images/index/banner-freeTrial-btn.png);
}
/* 中等屏幕（桌面显示器，大于等于 992px） */
@media screen and (max-width: 992px){
    .cooperation-banner-text{
        width: initial;
        position: relative;
        transform: translateY(0%);
        top: initial;
        margin: 60px 0;
    }
    .cooperation-banner-text+img{
        display: none;
    }
}