/* 场景 */
.n-scene-page-content img{
    width: 688px;
}
.n-scene-page-content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
}
.n-scene-desc{
    background: rgba(41, 41, 41, 0.75);
    backdrop-filter: blur(2px);
    position: absolute;
    bottom: 0;
    padding: 24px;
    color: #FFF;
    width: 100%;
}
.n-scene-desc h4{
    font-size: 20px;
    line-height: 150%;
    margin-bottom: 8px;
    font-weight: 700;
}
.n-scene-desc p{
    font-size: 16px;
    line-height: 100%;
    font-weight: 400;
}
.n-scene-card{
    position: relative;
}

@media screen and (max-width:1600px) {
    /* 场景 */
    .n-scene-page-content img {
        width: 588px;
    }
    .n-scene-desc h4 {
        font-size: 18px;
    }
    .n-scene-desc p {
        font-size: 14px;
    }
    .n-scene-desc {
        padding: 20px;
    }
}

@media screen and (max-width:1280px) {
    /* 场景 */
    .n-scene-page-content img {
        width: 500px;
    }
    .n-scene-desc h4 {
        font-size: 16px;
    }
    .n-scene-desc p {
        font-size: 12px;
    }
    .n-scene-desc {
        padding: 16px;
    }
   
}

@media screen and (max-width:768px) {
    /*场景*/
    .n-scene-page-content img {
        width: 100%;
        border-radius: 4px 4px 0 0;
    }
    .n-scene-desc {
        padding: 16px 16px 16px 0;
        background: unset;
        backdrop-filter: blur(2px);
        position: static;
        
    }
    .n-scene-desc h4 {
        font-size: 18px;
        margin-bottom: 10px;
        color: var(--dark-color);
    }
    .n-scene-desc p{
        line-height: 150%;
        font-size: 14px;
        color: var(--neutra-color);
    }

}