.scene-box {
    width: 100%;
    padding: 60px 0;
    background-image: url();
    background-repeat: no-repeat;
    background-size: cover;
}
.container {
    width: 1200px;
    margin: 0 auto;
}
.scene-title {
    font-size: 48px;
    font-weight: bold;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 40px;
}
.scene-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.scene-item {
    text-align: center;
}
.scene-img {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}
.scene-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: all 0.3s ease;
}
.scene-img img:hover {
    transform: scale(1.05);
}
.scene-name {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(90deg, #ff7823, #ff5522);
    color: #fff;
    font-size: 22px;
    border-radius: 8px;
}
/* 手机自适应 */
@media (max-width: 1200px) {
    .container {
        width: 90%;
    }
    .scene-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .scene-title {
        font-size: 32px;
    }
}
/* 适合人群板块样式 */
.suitable-box {
    width: 100%;
    padding: 70px 0;
}
.suitable-container {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
/* 左侧文字 */
.suitable-left {
    width: 45%;
    min-width: 400px;
}
.suitable-title {
    font-size: 52px;
    font-weight: bold;
    color: #0f6ccf;
    line-height: 1.2;
    margin-bottom: 20px;
}
.suitable-tip {
    font-size: 26px;
    color: #b74125;
    font-weight: 600;
}
/* 右侧图片 */
.suitable-right {
    width: 50%;
    min-width: 450px;
}
.suitable-right img {
    width: 100%;
    border-radius: 20px;
    display: block;
}
/* 手机自适应 */
@media (max-width: 1200px) {
    .suitable-container {
        width: 90%;
        flex-direction: column;
        text-align: center;
    }
    .suitable-left,
    .suitable-right {
        width: 100%;
        min-width: auto;
    }
}