.exhibition-page {
    background: #fff;
    color: #1a1a1a;
}

.exhibition-wrap {
    width: 1200px;
    margin: 0 auto;
}

.exhibition-banner {
    height: 400px;
    background: url("../img/solution-banner/exhibition.webp") no-repeat center center;
    background-size: cover;
}

.exhibition-banner__inner {
    width: 1200px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.exhibition-banner__title {
    margin: 0;
    color: #fff;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.4;
}

.exhibition-banner__desc {
    width: 760px;
    max-width: calc(100% - 48px);
    margin: 24px 0 0;
    color: #fff;
    font-size: 16px;
    line-height: 1.9;
    text-align: center;
}

.exhibition-section {
    padding: 72px 0;
}

.exhibition-section--function {
    background: #f7f7f7;
}

.exhibition-section__head {
    text-align: center;
}

.exhibition-section__head--light .exhibition-section__title,
.exhibition-section__head--light .exhibition-section__sub {
    color: #fff;
}

.exhibition-section__title {
    margin: 0;
    color: #1a1a1a;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.4;
}

.exhibition-section__sub {
    margin: 16px 0 0;
    color: #999;
    font-size: 16px;
    line-height: 1.75;
}

.advantage-grid {
    display: flex;
    gap: 24px;
    margin-top: 64px;
}

.advantage-card {
    width: 384px;
    height: 198px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.advantage-card__icon {
    width: 40px;
    height: 40px;
}

.advantage-card__icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.advantage-card__title {
    margin-top: 24px;
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
}

.advantage-card__desc {
    width: 280px;
    margin-top: 16px;
    color: #999;
    font-size: 14px;
    line-height: 1.75;
    text-align: center;
}

.exhibition-scene {
    position: relative;
    overflow: hidden;
    background: #1a1b20;
}

.exhibition-scene__wrap {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.exhibition-scene__bg {
    position: absolute;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.exhibition-scene__bg--left {
    left: 0;
    bottom: 0;
    width: 306px;
    height: 306px;
    background-image: url("../img/exhibition/application-scene/bg-1.png");
}

.exhibition-scene__bg--right {
    top: 0;
    right: 0;
    width: 198px;
    height: 198px;
    background-image: url("../img/exhibition/application-scene/bg-2.png");
}

.scene-switcher {
    margin-top: 40px;
}

.scene-switcher__radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.scene-tabs {
    display: flex;
    align-items: center;
}

.scene-tabs__item {
    margin-right: 40px;
    padding-bottom: 4px;
    color: #999;
    font-size: 16px;
    line-height: 1.5;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.scene-panels {
    position: relative;
    width: 1200px;
    height: 502px;
    margin-top: 34px;
}

.scene-panel {
    position: absolute;
    inset: 0;
    display: none;
    overflow: hidden;
    border-radius: 16px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.scene-panel--1 {
    background-image: url("../img/exhibition/application-scene/bg/1.webp");
}

.scene-panel--2 {
    background-image: url("../img/exhibition/application-scene/bg/2.webp");
}

.scene-panel--3 {
    background-image: url("../img/exhibition/application-scene/bg/3.webp");
}

.scene-panel__icon {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 89px;
    height: 89px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
    transform: translate(-50%, -50%);
}

.scene-panel__icon img {
    width: 35px;
    height: 35px;
}

.scene-panel__mask {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.62) 100%);
}

.scene-panel__content {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 30px;
    z-index: 3;
}

.scene-panel__title {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.scene-panel__desc {
    margin: 16px 0 0;
    color: #fff;
    font-size: 14px;
    line-height: 1.75;
}

#exhibition-scene-1:checked~.scene-tabs label[for="exhibition-scene-1"],
#exhibition-scene-2:checked~.scene-tabs label[for="exhibition-scene-2"],
#exhibition-scene-3:checked~.scene-tabs label[for="exhibition-scene-3"] {
    color: #fff;
    border-bottom-color: #0066ff;
}

#exhibition-scene-1:checked~.scene-panels .scene-panel--1,
#exhibition-scene-2:checked~.scene-panels .scene-panel--2,
#exhibition-scene-3:checked~.scene-panels .scene-panel--3 {
    display: block;
}

.function-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 64px;
}

.function-card {
    position: relative;
    width: 384px;
    height: 188px;
    border: 1px solid #fff;
    border-radius: 16px;
    box-shadow: inset 7px 9px 18px 1px rgba(225, 225, 225, 0.49);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.function-card__bg {
    position: relative;
    z-index: 1;
    width: 82px;
    height: 82px;
    margin-top: 32px;
    background: url("../img/exhibition/core-function/bg.png") no-repeat center center;
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: center;
}

.function-card__icon {
    width: 34px;
    height: 34px;
}

.function-card__icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.function-card__title {
    margin-top: 24px;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.function-card__mask {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.16);
}

.case-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 64px;
}

.case-card {
    position: relative;
    width: 384px;
    height: 230px;
    overflow: hidden;
    border-radius: 16px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.07);
}

.case-card--1 {
    background-image: url("../img/exhibition/brilliant-case/1.webp");
}

.case-card--2 {
    background-image: url("../img/exhibition/brilliant-case/2.webp");
}

.case-card--3 {
    background-image: url("../img/exhibition/brilliant-case/3.webp");
}

.case-card--4 {
    background-image: url("../img/exhibition/brilliant-case/4.webp");
}

.case-card--5 {
    background-image: url("../img/exhibition/brilliant-case/5.webp");
}

.case-card--6 {
    background-image: url("../img/exhibition/brilliant-case/6.webp");
}

.case-card__icon {
    position: absolute;
    right: 24px;
    top: 24px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
}

.case-card__icon img {
    width: 20px;
    height: 20px;
}

.case-card__mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.58) 100%);
}

.case-card__title {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 3;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.65;
}

.footer-send {
    width: 100%;
}

.exhibition-cta {
    width: 100%;
    background: #fff;
}

.exhibition-cta__inner {
    width: 100%;
    margin: 0 auto;
}

.exhibition-pingtai {
    min-height: 295px;
    padding: 0 24px;
    background: url("/static/newindex/img/pingtaibg.png") no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.exhibition-pingtai h2 {
    margin: 0;
    color: #111111;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
}

.exhibition-pingtai__phonebox {
    margin-top: 30px;
    display: flex;
    align-items: center;
    width: 602px;
    max-width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(31, 93, 191, 0.08);
}

.exhibition-pingtai__inputbox {
    flex: 1;
    height: 55px;
    background: #fff;
}

.exhibition-pingtai__inputbox input {
    width: 100%;
    height: 55px;
    border: 0;
    outline: none;
    padding: 0 18px;
    color: #1a1a1a;
    font-size: 18px;
    line-height: 55px;
    background: #fff;
}

.exhibition-pingtai__inputbox input::placeholder {
    color: #b4bac5;
}

.exhibition-pingtai__shenqing {
    flex: 0 0 120px;
    width: 120px;
    height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    background: #1d77ff;
    cursor: pointer;
    transition: background 0.2s ease;
}

.exhibition-pingtai__shenqing:hover {
    background: #0066ff;
}

@media screen and (max-width: 768px) {

    .exhibition-wrap,
    .exhibition-banner__inner {
        width: calc(100% - 24px);
    }

    .exhibition-banner {
        height: 40vw;
        min-height: 220px;
    }

    .exhibition-banner__title {
        font-size: 22px;
    }

    .exhibition-banner__desc {
        width: 100%;
        margin-top: 16px;
        font-size: 12px;
        line-height: 1.8;
    }

    .exhibition-section {
        padding: 24px 0;
    }

    .exhibition-section__title {
        font-size: 26px;
    }

    .exhibition-section__sub {
        margin-top: 10px;
        font-size: 14px;
        line-height: 1.7;
    }

    .advantage-grid,
    .function-grid,
    .case-grid {
        gap: 12px;
        margin-top: 24px;
    }

    .advantage-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .advantage-card {
        width: calc((100% - 12px) / 2);
        height: 180px;
        padding: 12px 0;
    }

    .advantage-card__title {
        margin-top: 8px;
        font-size: 14px;
    }

    .advantage-card__desc {
        margin-top: 8px;
        width: 100%;
        padding: 0 4px;
        font-size: 12px;
    }

    .exhibition-scene {
        height: auto;
    }

    .exhibition-scene__wrap {
        padding: 24px 0;
    }

    .scene-switcher {
        margin-top: 24px;
    }

    .scene-tabs {
        justify-content: center;
        flex-wrap: wrap;
    }

    .scene-tabs__item {
        margin-right: 18px;
        font-size: 14px;
    }

    .scene-panels {
        width: 100%;
        height: 60vw;
        margin-top: 24px;
    }

    .scene-panel__content {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .scene-panel__title {
        font-size: 14px;
    }

    .scene-panel__desc {
        font-size: 12px;
        margin-top: 12px;
    }

    .function-card {
        width: calc((100% - 12px * 2) / 3);
        height: auto;
        padding-bottom: 8px;
    }

    .function-card__bg {
        margin-top: 8px;
        width: calc(82px / 1.8);
        height: calc(82px / 1.8);
    }

    .function-card__icon {
        width: calc(34px / 1.8);
        height: calc(34px / 1.8);
    }

    .function-card__title {
        margin-top: 4px;
        font-size: 12px;
        text-align: center;
    }

    .case-card {
        width: 100%;
        height: 180px;
    }

    .case-card__icon {
        right: 16px;
        top: 16px;
        width: 32px;
        height: 32px;
    }

    .case-card__title {
        left: 16px;
        right: 16px;
        bottom: 16px;
        font-size: 15px;
        line-height: 1.6;
    }

    .exhibition-cta {
        padding: 36px 12px 0;
    }

    .exhibition-pingtai {
        min-height: 220px;
        padding: 0 16px;
    }

    .exhibition-pingtai h2 {
        font-size: 24px;
    }

    .exhibition-pingtai__phonebox {
        margin-top: 24px;
        width: 100%;
        flex-direction: column;
        gap: 12px;
        border-radius: 0;
        overflow: visible;
        box-shadow: none;
    }

    .exhibition-pingtai__inputbox {
        width: 100%;
    }

    .exhibition-pingtai__inputbox input {
        height: 50px;
        padding: 0 16px;
        border-radius: 12px;
        font-size: 16px;
        line-height: 50px;
    }

    .exhibition-pingtai__shenqing {
        width: 100%;
        flex: none;
        height: 50px;
        border-radius: 12px;
    }
}