/* 痛点 */
.n-item-list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.n-item{
    text-align: center;
    padding: 0 60px;
}
.n-item img{
    width: 96px;
    margin-bottom: 20px;
}
.n-item-title{
    margin: 20px 0 16px;
}
#challenge{
    padding: 120px 0 0 0;
}
/*产品价值*/
.n-tab-select{
    display: flex;
    justify-content: center;
    padding: 4px;
    background: #F7F9FA;
    border-radius: 24px;
    width: fit-content;
    margin: 32px auto 0;
}
.n-tab-select div{
    text-align: center;
    padding: 0 40px;
    color: #6A6B6D;
    text-align: center;
    font-size: 20px;
    line-height: 48px;
    cursor: pointer;
    width: 200px;
}
.n-tab-active{
    color:#FFFFFF!important;
    font-weight: 700;
    border-radius: 24px;
    background: linear-gradient(115deg, #00C2FF 16.01%, #1651FF 83.99%);
}
.n-value-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.n-value-img{
    width: 1044px;
}
.n-value-card{
    width: 244px;
}
.n-value-title{
    color: #2A2B2E;
    font-size: 36px;
    font-weight: 700;
    line-height: 150%; /* 54px */
    text-align: center;
    position: relative;
}
.n-value-title::after{
    content: '';
    position: absolute;
    width: 244px;
    height: 8px;
    border-radius: 4px;
    top: 36px;
    left: 0px;
    z-index: -1;
}
.n-value-title1::after{
    background: linear-gradient(90deg, #00D0FF 0%, #0084FF 100%);
    box-shadow: 0px 4px 20px 0px #01C4FF;
}
.n-value-title2::after{
    background: linear-gradient(90deg, #5B71FF 0%, #C300FF 100%);
    box-shadow: 0px 4px 20px 0px #5B71FF;
}
.n-value-title3::after{
    background: linear-gradient(90deg, #1AFF00 0%, #00BF40 100%);
    box-shadow: 0px 4px 20px 0px #00FF3C;
}
.n-value-desc{
    margin-top: 32px;
    color: #6A6B6D;
    font-size: 16px;
    line-height: 150%; /* 24px */
    text-align: left;
}
.value-pag{
    position: absolute;
    display: flex;
    justify-content: space-between;
    width: 1700px;
    left: -150px;
    top: calc(50% - 62px);
}
.value-prev,.value-next{
    cursor: pointer;
}

/* 场景 */
.n-scene-list{
    grid-template-columns: repeat(3,1fr);
}
.n-card-desc{
    height: 102px;
}

@media screen and (max-width:1788px) {
    .value-pag {
        width: 1600px;
        left: -100px;
    }
}

@media screen and (max-width:1600px) {
    .n-value-img {
        width: 884px;
    }
    .n-item {
        padding: 0 36px;
    }
    .value-pag {
        width: 1400px;
    }
}

@media screen and (max-width:1280px) {
    .value-prev,.value-next{
        width: 60px;
    }
    .value-pag {
        width: 1240px;
        left: -80px;
    }
    .n-value-img {
        width: 804px;
    }
    .n-value-card {
        width: 214px;
    }
    .n-value-title {
        font-size: 32px;
    }
    .n-value-title::after {
        width: 214px;
    }
    .n-card-desc {
        height: 116px;
    }
}

@media screen and (max-width:768px) {
    #challenge {
        padding: 80px 0 0 0;
    }

    /*痛点*/
    .n-item-list {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 36px;
    }
    .n-item{
        display: flex;
        padding: 0;
        gap: 20px;
        align-items: center;
    }
    .n-item img {
        width: 72px;
        height: 72px;
        margin-bottom: 0px;
    }
    .n-item-title {
        text-align: left;
        margin: 0 0 12px;
        font-size: 20px;
    }
    .n-item-desc{
        text-align: left;
        font-size: 14px;
    }
    /*价值*/
    .n-tab-select{
        display: none;
    }
    .value-pag{
        display: none;
    }
    .swiper-wrapper{
        flex-wrap: wrap;
        flex-direction: column;
    }
    .swiper-slide{
        height: auto;
        margin-bottom: 60px;
    }
    .swiper-slide:last-child{
        margin-bottom: 0px;
    }
    .n-value-content {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
        
    }
    .n-value-img {
        width: 100%;
    }
    .n-value-card {
        width: 100%;
    }
    .n-value-title {
        width: 100%;
        font-size: 22px;
        text-align: left;
        margin-left: 12px;
    }
    .n-value-title::after {
        width: 4px;
        top: 6px;
        height: 20px;
        background: linear-gradient(180deg, #00D0FF 0%, #0084FF 100%);
        left: -12px;
        box-shadow: none;
    }
    .n-value-desc {
        margin-top: 16px;
    }
    /*场景*/
    .n-scene-list {
        grid-template-columns: repeat(1, 1fr);
    }
    .n-card-desc{
        height: auto;
    }
}