.center1400 {
    margin: 0 auto;
    width: 1400px;
}
.scene-detai-body {
    background: #0a0a0f; /* 深色背景 */
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* 添加科技感背景网格 */
.scene-detai-body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(
            rgba(0, 243, 255, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(90deg, rgba(0, 243, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 1;
}

.scene-detail-main {
    position: relative;
    padding: 50px 0;
    z-index: 2;
    background: transparent;
}

/* 产品卡片样式 */
.scene-detail-main .box {
    margin-bottom: 50px;
    background: rgba(15, 15, 25, 0.7); /* 半透明深色背景 */
    border: 1px solid rgba(0, 243, 255, 0.2); /* 霓虹蓝边框 */
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.1); /* 蓝色光晕 */
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    display: flex;
    align-items: center;
}

/* 卡片悬停效果 */
.scene-detail-main .box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.2),
        0 0 15px rgba(157, 0, 255, 0.2);
    border: 1px solid rgba(0, 243, 255, 0.5);
}

/* 添加边框动画 */
.scene-detail-main .box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid transparent;
    background: linear-gradient(
            90deg,
            rgba(0, 243, 255, 0.3),
            rgba(157, 0, 255, 0.3),
            rgba(0, 243, 255, 0.3)
        )
        border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 10px;
}

.scene-detail-main .box:hover::after {
    opacity: 1;
    animation: borderGlow 3s infinite alternate;
}

/* 图片区域样式 */
.scene-detail-main .box .img-box {
    background: rgba(5, 5, 10, 0.5);
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 10px;
}

.scene-detail-main .box .img-box img {
    transition: all 0.5s ease;
    filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.3));
    width: 70%;
}

.scene-detail-main .box:hover .img-box img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(0, 243, 255, 0.5));
}

/* 详情区域样式 */
.scene-detail-main .box .detail {
    background: rgba(15, 15, 25, 0.8);
    padding: 30px;
    position: relative;
    z-index: 2;
    margin-left: 100px;
}

.scene-detail-main .box .detail h2 {
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 500;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(0, 243, 255, 0.3);
}

.scene-detail-main .box:hover .detail h2 {
    color: #00f3ff;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.8);
    animation: textGlow 2s infinite alternate;
}

.scene-detail-main .box .detail .models,
.scene-detail-main .box .detail .product-size,
.scene-detail-main .box .detail .product-color {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
}

.scene-detail-main .box .detail span {
    color: rgba(0, 243, 255, 0.8);
    font-size: 14px;
}

/* 按钮样式 */
.scene-detail-main .box .detail > a {
    display: inline-block;
    padding: 0 25px;
    height: 40px;
    line-height: 40px;
    color: #ffffff;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    margin-top: 15px;
    border: 1px solid rgba(0, 243, 255, 0.5);
    background: rgba(0, 243, 255, 0.1);
    transition: all 0.3s ease;
}

.scene-detail-main .box .detail > a:hover {
    background: rgba(0, 243, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
}

.scene-detail-main .box .detail > a:hover:before {
    left: 100%;
}

.scene-detail-main .box .detail > a:hover span {
    color: #ffffff;
    text-shadow: 0 0 5px rgba(0, 243, 255, 0.8);
}

.scene-detail-main .box .detail > a span {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.scene-detail-main .box .detail > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 243, 255, 0.3),
        rgba(157, 0, 255, 0.3)
    );
    left: -100%;
    top: 0;
    transition: all 0.5s ease;
}

/* 额外信息样式 */
.scene-detail-main .box .img-box .extra-info {
    position: absolute;
    top: 0;
    right: 0;
    width: 47%;
    height: 100%;
    background: transparent; /* 将背景设置为透明 */
    backdrop-filter: none; /* 移除模糊效果 */
    padding: 20px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.4s ease;
    border-left: 1px solid rgba(0, 243, 255, 0.3);
    box-shadow: -5px 0 15px rgba(0, 243, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
    font-family: "Orbitron", sans-serif;
}

/* 修改选择器，确保在悬停时.extra-info部分正确显示 */
.scene-detail-main .box:hover .img-box .extra-info {
    opacity: 1;
    transform: translateX(0);
}

.scene-detail-main .box .img-box .extra-info p {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 13px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.5s ease;
    position: relative;
    padding-left: 20px;
    line-height: 1.4;
    letter-spacing: 0.5px;
    text-shadow: 0 0 8px rgba(0, 243, 255, 0.8); /* 增强文字发光效果 */
}

/* 添加打字机效果 */
@keyframes typingEffect {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* 更新选择器，确保与悬停选择器一致，并直接显示文字 */
.scene-detail-main .box:hover .img-box .extra-info p {
    opacity: 1;
    transform: translateY(0);
    overflow: hidden;
    white-space: nowrap;
    width: 100%; /* 直接显示全部文字，不使用打字效果 */
    animation: none; /* 移除打字动画 */
}

.scene-detail-main .box:hover .img-box .extra-info p:nth-child(1) {
    transition-delay: 0.1s;
}

.scene-detail-main .box:hover .img-box .extra-info p:nth-child(2) {
    transition-delay: 0.2s;
}

.scene-detail-main .box:hover .img-box .extra-info p:nth-child(3) {
    transition-delay: 0.3s;
}

.scene-detail-main .box:hover .img-box .extra-info p:nth-child(4) {
    transition-delay: 0.4s;
}

.scene-detail-main .box .img-box .extra-info p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scale(0.8);
    width: 8px;
    height: 8px;
    background: #00f3ff;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 243, 255, 0.8);
    transition: all 0.3s ease;
}

.scene-detail-main .box .img-box .extra-info p:hover::before {
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 0 12px rgba(0, 243, 255, 1);
}

.scene-detail-main .box .detail h2 {
    font-size: 2rem;
}
/* 霓虹发光效果 */
.scene-detail-main .box .img-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.scene-detail-main .box .img-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-tech);
    opacity: 0;
    transition: all 0.3s ease;
}

.scene-detail-main .box:hover .img-box::after {
    opacity: 0.2;
}

.scene-detail-main .box .img-box .extra-info p {
    color: var(--text-primary);
    text-shadow: 0 0 5px var(--neon-blue);
    padding-left: 16px;
    margin: 10px 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}
.scene-detail-main .box:hover {
    animation: borderGlow 2s infinite;
}
.banner-in.scene-detail-banner {
    position: relative;
    overflow: hidden;
}

.banner-in.scene-detail-banner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, #0a0a0f, transparent);
    z-index: 3;
}

.banner-in .video-background {
    position: relative;
}

.banner-in .video-background::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.5);
    z-index: 2;
}
.banner-in {
    position: relative;
    height: 780px;
    text-align: center;
    background: no-repeat fixed center center;
    background-size: auto 100%;
    z-index: 0;
}

/* 添加视频背景相关样式 */
.banner-in .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.banner-in .video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.banner-in:after {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 0;
    left: 0;
    top: 0;
    content: "";
}
.banner-in .banner-mask {
    position: fixed;
    top: 340px;
    left: 0;
    width: 100%;
    z-index: 1;
}
.banner-in .banner-mask img {
    display: inline-block;
    filter: drop-shadow(0 0 15px rgba(0, 243, 255, 0.5));
    animation: textGlows 3s infinite alternate;
}
.banner-in .banner-mask h2 {
    display: inline-block;
    font-size: 40px;
    color: #fff;
    font-weight: normal;
}
/* 动画效果 */
@keyframes textGlows {
    0% {
        text-shadow: 0 0 5px rgba(0, 243, 255, 0.5);
        color: #ffffff;
    }
    50% {
        text-shadow: 0 0 15px rgba(0, 243, 255, 0.8),
            0 0 30px rgba(0, 243, 255, 0.4);
        color: #00f3ff;
    }
    100% {
        text-shadow: 0 0 5px rgba(157, 0, 255, 0.5);
        color: #ffffff;
    }
}
/* 渐变边框动画 */
@keyframes borderGlow {
    0% {
        border-color: var(--neon-blue);
        box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
    }
    50% {
        border-color: var(--neon-purple);
        box-shadow: 0 0 20px rgba(157, 0, 255, 0.2);
    }
    100% {
        border-color: var(--neon-blue);
        box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
    }
}
/* 标题发光动画 */
@keyframes textGlow {
    0% {
        text-shadow: 0 0 10px var(--neon-blue);
    }
    50% {
        text-shadow: 0 0 20px var(--neon-purple);
    }
    100% {
        text-shadow: 0 0 10px var(--neon-blue);
    }
}

.scene-detail-main .box .detail h2 {
    animation: textGlow 3s infinite;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
    .scene-detail-main .box .img-box .extra-info {
        width: 100%;
        height: auto;
        top: auto;
        bottom: 0;
        transform: translateY(100%);
        border-left: none;
        border-top: 1px solid rgba(0, 243, 255, 0.3);
        padding: 15px;
        background: transparent; /* 确保移动端也使用透明背景 */
        backdrop-filter: none; /* 移除模糊效果 */
    }

    .scene-detail-main .box .img-box .extra-info p {
        margin-bottom: 10px;
        font-size: 11px;
        white-space: normal;
        animation: none !important;
        text-shadow: 0 0 8px rgba(0, 243, 255, 0.8); /* 增强文字发光效果 */
    }

    /* 更新选择器，确保与悬停选择器一致 */
    .scene-detail-main .box:hover .img-box .extra-info p {
        white-space: normal;
        animation: none;
        width: 100%; /* 确保文字完全显示 */
    }

    .banner-in .video-background {
        height: 100%;
    }

    .banner-in .video-background video {
        height: 100%;
        object-fit: cover;
    }

    .banner-in {
        /* height: 60vh; */
        height: 400px;
    }

    .banner-in .banner-mask {
        /* top: 240px; */
        top: 40%;
    }

    .banner-in .banner-mask img {
        width: 80%;
    }

    .banner .banner-page {
        right: 50%;
        margin-right: -67px;
        bottom: 5%;
        width: 134px;
    }

    /* 更新选择器，确保与悬停选择器一致 */
    .scene-detail-main .box:hover .img-box .extra-info {
        transform: translateY(0);
    }
}

/* 媒体查询 */
@media screen and (max-width: 1024px) {
    .banner-in {
        height: 500px;
        background-attachment: scroll;
    }
    .banner-in .video-background video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .banner-in .banner-mask {
        /* top: 200px; */
        position: absolute;
        top: 40%;
    }
}

@media screen and (max-width: 1200px) {
}

@media screen and (max-width: 1450px) {
    .banner-in {
        height: 100vh;
    }
}
