.n-banner img{
    display: none;
}
.n-banner-text {
    width: 700px;
}

/* 探索偏向 */
#challenge{
    padding: 120px 0 0 0;
}
.n-item-list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
}
.n-item{
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    align-items: center;
    width: 650px;
}
.n-item img{
    width: 96px;
}
.n-item-title{
    text-align: left;
    margin: 0 0 16px;
}

.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-select div:first-child{
    width: 240px;
}
.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: center;
    align-items: center;
}
.n-value-img{
    width: 1044px;
}
.n-value-card{
    width: 356px;
}
.n-value-title{
    color: #2A2B2E;
    font-size: 36px;
    font-weight: 700;
    line-height: 150%; /* 54px */
    text-align: center;
    position: relative;
    width: 310px;
}
.n-value-title::after{
    content: '';
    position: absolute;
    width: 310px;
    height: 8px;
    border-radius: 4px;
    top: 36px;
    left: 0px;
    z-index: -1;
    background: linear-gradient(90deg, #00D0FF 0%, #0084FF 100%);
    box-shadow: 0px 4px 20px 0px #01C4FF;
}
.n-value-title2{
    width: 236px;
}
.n-value-title2::after{
    width: 236px;
}

.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-value-voice{
    margin-top: 32px;
    display: flex;
    height: 80px;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border-radius: 4px 28px 28px 28px;
    background: linear-gradient(115deg, #00C2FF 16.01%, #1651FF 83.99%);
}
.loading{
    width: 28px;
}
.loading span {
    display: inline-block;
    width: 3px;
    height: 8px;
    border-radius: 4px;
    background: #ffffff;
    -webkit-animation: load 1s ease infinite;
    animation: load 1s ease infinite;
}
.n-value-voice-text{
    width: 270px;
    color:#FFF;
    font-size: 16px;
    line-height: 150%; /* 24px */
}
.voice-1,.voice-2,.voice-3{
    height: 56px;
}

@keyframes load{
    0%,100%{
        height: 8px;
    }
    50%{
        height: 16px;
        margin: -4px 0;
    }
}
@-webkit-keyframes load{
    0%,100%{
        height: 8px;
    }
    50%{
        height: 16px;
        margin: -4px 0;
    }
}
.loading span:nth-child(2){
    -webkit-animation-delay:0.2s;
    animation-delay:0.2s;
}
.loading span:nth-child(3){
    -webkit-animation-delay:0.4s;
    animation-delay:0.4s;
}
.loading span:nth-child(4){
    -webkit-animation-delay:0.6s;
    animation-delay:0.6s;
}

/* 场景 */
.n-scene-list{
    grid-template-columns: repeat(2,1fr);
}
.n-card-desc{
    height: 48px;
}
@media screen and (max-width:1788px) {
    .value-pag {
        width: 1600px;
        left: -100px;
    }
}
@media screen and (max-width:1600px) {
    .n-item{
        width: 550px;
    }
    .value-pag {
        width: 1400px;
    }
    .n-value-card {
        width: 326px;
    }
}

@media screen and (max-width:1280px) {
    .value-prev,.value-next{
        width: 60px;
    }
    .value-pag {
        width: 1240px;
        left: -80px;
    }
    .n-value-title {
        font-size: 32px;
    }
    .n-item{
        width: 500px;
    }
    .n-value-card {
        width: 306px;
    }
    .loading{
        width: 32px;
    }
    .n-value-title::after {
        width: 306px;
    }
    .n-value-title2::after {
        width: 236px;
    }
    .voice-3{
        height: 80px;
    }

}
@media screen and (max-width:768px) {
    .n-banner-text {
        width: 100%;
    }
    .n-breadcrumb {
        display: none;
    }
    .n-banner img{
        display: block;
    }
    .n-banner video{
        display: none;
    }
    #challenge {
        padding: 80px 0 0 0;
    }
    .n-item-list {
        gap: 36px;
    }
    .n-item {
        width: 100%;
    }
    .n-item img {
        width: 72px;
    }
    .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-value-voice{
        margin-top: 16px;
    }
     /*场景*/
     .n-scene-list {
        grid-template-columns: repeat(1, 1fr);
    }
    .n-card-desc{
        height: auto;
    }
    .voice-3{
        height: 56px;
    }
}
@media screen and (max-width:366px) {
    .voice-3{
        height: 80px;
    }
}