/* 基础重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Microsoft YaHei', sans-serif;
}

/* 通用设置 */
body {
    background: #203864;
    min-height: 100vh;
    color: #fff;
    background-image: url("/图片/背景.jpg");
    background-size: cover;          /* 覆盖整个视口 */
    background-repeat: no-repeat;    /* 禁止重复 */
    background-position: center;     /* 居中显示 */
    background-attachment: fixed;    /* 固定背景（滚动时不动） */
  }
  
  /* 容器布局 */
.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 1rem;
}
 /* 头部样式 */
.header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 3%;
    margin-bottom: 1.5rem;
    background: linear-gradient(145deg, rgba(0,40,60,0.9) 0%, rgba(0,20,40,0.95) 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    height: 20rem; /* 确保容器高度 */
} 
.header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, 
              rgba(0,255,255,0.1) 50%, 
              transparent 60%);
    animation: glowFlow 6s linear infinite;

}
@keyframes glowFlow {
    0% { transform: translate(0,0) rotate(0deg); }
    100% { transform: translate(50%,50%) rotate(360deg); }
}
  /* 时间显示 */
  .time-box {
    font-size: clamp(2.2rem, 2vw, 5.5rem);
    color: #00ffff;
    font-family: 'Segoe UI', system-ui, sans-serif;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    background: linear-gradient(90deg, 
              rgba(0,255,255,0.1) 0%, 
              rgba(0,128,255,0.05) 100%);
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    position: relative;
    transition: all 0.3s ease;
}
.time-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, 
              transparent, 
              rgba(0,255,255,0.2), 
              transparent);
    animation: timeGlow 2.5s infinite;
}

@keyframes timeGlow {
    100% { left: 150%; }
}

.title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(10rem, 5vw, 15rem);
    color: transparent;
    background: linear-gradient(135deg, 
              #00ffff 0%, 
              #0066ff 50%, 
              #00ffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    padding: 0.5rem 2%;
    white-space: nowrap;
    z-index: 2;
    animation: titleGlow 2s ease-in-out infinite alternate;

}

 















/* 主体内容布局 */
/* 主体内容布局 - 科技感增强 */
.main-content {
    flex: 1;
    display: grid;
    grid-template-columns: 25% 40% 25%;
    gap: 2%;
    padding: 2rem 0;
    position: relative;
    background: linear-gradient(45deg, 
              rgba(0, 40, 60, 0.2) 0%, 
              rgba(0, 20, 40, 0.3) 100%);
}

.main-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent 0px,
        transparent 1px,
        rgba(0, 255, 255, 0.05) 2px,
        transparent 3px
    );
    pointer-events: none;
}

/* 公共面板样式 - 全息投影效果 */
.panel {
    background: linear-gradient(145deg, 
              rgba(0, 80, 120, 0.15) 0%, 
              rgba(0, 40, 80, 0.25) 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.05),
                inset 0 0 15px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.2),
                inset 0 0 20px rgba(0, 255, 255, 0.15);
}

.panel::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
              transparent 40%, 
              rgba(0, 255, 255, 0.1) 50%, 
              transparent 60%);
    animation: panelGlow 6s linear infinite;
}

@keyframes panelGlow {
    100% { transform: translate(50%, 50%) rotate(360deg); }
}

/* 标题样式 - 赛博朋克风格 */
h2 {
    color: transparent;
    background: linear-gradient(135deg, 
              #d8dddd 0%, 
              #f7f9fa 50%, 
              #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    letter-spacing: 1px;
    padding: 1rem;
    margin: 1.5rem 0;
    position: relative;
    border-bottom: 2px solid rgba(0, 255, 255, 0.3);
    animation: titleGlow 2s ease-in-out infinite alternate;
    font-size: clamp(5rem, 4vw, 9rem);
    text-align: center;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.2)); }
    100% { filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.4)); }
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .main-content {
        grid-template-columns: 28% 44% 28%;
    }
}

@media (max-width: 992px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .panel {
        padding: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    h2 {
        font-size: clamp(4rem, 4vw, 7rem);
    }
}

@media (max-width: 768px) {
    .main-content {
        padding: 1rem 0;
    }
    
    .panel::after {
        animation-duration: 8s;
    }
    
    h2 {
        padding: 0.8rem;
        margin: 1rem 0;
    }
}
  
  
  










  
  
  
  
/* 左侧参数区 */
.parameter-left {
    display: flex;
    flex-direction: column;
    font-size: clamp(2rem, 1vw, 7rem);
    gap: 1.5rem; /* 统一间距控制 */
    padding: 2%; /* 添加内边距防止贴边 */
    box-sizing: border-box;
    opacity: 0.8;
}
 
/* 参数区块通用样式 */
.zhengcan, .yunxingcanshu {
    flex: 1; /* 自动填充可用空间 */
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
 
/* 列表容器 */
.zhengcan ul, .yunxingcanshu ul {
    display: flex;
    flex-wrap: wrap; /* 允许换行 */
    gap: 1.5%; /* 元素间距 */
    padding: 2% 3%;
    margin: 0;
    list-style: none;
    border: 3px solid rgba(255,255,255,0.3); /* 半透明白边 */
    background: rgba(255,255,255,0.1); /* 半透明白底 */
    border-radius: 12px;
    backdrop-filter: blur(8px); /* 玻璃效果 */
}
 
/* 列表项 */
.zhengcan li {
    display: flex;
    flex: 1 1 calc(33.33% - 2%); /* 响应式三列布局 */
    min-width: 1350px; /* 最小宽度限制 */
    margin: 1%;
    padding: 2%;
    background:#1f4e79;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
 /* 列表项 */
.yunxingcanshu li {
    display: flex;
    flex: 1 1 calc(33.33% - 2%); /* 响应式三列布局 */
    min-width: 1350px; /* 最小宽度限制 */
    margin: 1%;
    padding: 2%;
    background:#525252; 
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
/* 内容区块 */
.zhengcan div, .yunxingcanshu div {
    flex: 1; /* 自动填充父容器 */
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.15);
    border-radius: 6px;
    transition: all 0.3s ease;
}

  
  
  
  
  
  
  
  
  
  
  
/* 模型展示区 */
.model-area {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 100%);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(15, 12, 41, 0.3);
    position: relative;
    overflow: hidden;
    /*opacity: 0.8;*/
}

.model-area::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg, 
        transparent 70%, 
        rgba(255, 255, 255, 0.05) 75%,
        transparent 80%
    );
    animation: scanLines 4s linear infinite;
}

@keyframes scanLines {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(50%); }
}

.physical-model, 
.virtual-model {
    flex: 1;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.physical-model::after,
.virtual-model::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(156, 214, 255, 0.1);
    border-radius: 12px;
    animation: borderPulse 3s infinite alternate;
}

@keyframes borderPulse {
    from { opacity: 0.3; }
    to { opacity: 0.7; }
}

#video, #MoXing1 {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    filter: contrast(1.1) brightness(0.9);
    mix-blend-mode: multiply;
    pointer-events: auto;
    position: relative;
    z-index: 2;
}

/* 交互效果 */
.physical-model:hover,
.virtual-model:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(15, 12, 41, 0.2);
}

.physical-model:hover::after,
.virtual-model:hover::after {
    animation: borderPulse 1.5s infinite alternate;
}

/* 数字孪生风格增强 */
.model-area::before {
    background: linear-gradient(
        90deg,
        transparent 70%,
        rgba(255, 255, 255, 0.03) 72%,
        transparent 74%,
        rgba(255, 255, 255, 0.03) 76%,
        transparent 78%,
        rgba(255, 255, 255, 0.03) 80%,
        transparent 82%
    );
}

.model-area {
    background-image: 
        linear-gradient(45deg, 
            rgba(255, 255, 255, 0.02) 25%, 
            transparent 25%, 
            transparent 50%, 
            rgba(255, 255, 255, 0.02) 50%, 
            rgba(255, 255, 255, 0.02) 75%, 
            transparent 75%
        ),
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.02) 25%, 
            transparent 25%, 
            transparent 50%, 
            rgba(255, 255, 255, 0.02) 50%, 
            rgba(255, 255, 255, 0.02) 75%, 
            transparent 75%
        );
    background-size: 20px 20px;
}

/* 全息投影效果 */
.physical-model::before,
.virtual-model::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(
        from 45deg at center,
        rgba(156, 214, 255, 0.1),
        rgba(255, 156, 214, 0.1),
        rgba(214, 156, 255, 0.1)
    );
    animation: hologram 8s linear infinite;
    mix-blend-mode: screen;
}

@keyframes hologram {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
  /* 修改伪元素避免遮挡 */
.physical-model::after,
.virtual-model::after,
.physical-model::before,
.virtual-model::before {
    pointer-events: none; /* 关键修改：允许点击穿透 */
    z-index: 1;
}
  
  
  
  
  
  
  
   
  
/* 右侧信息区 */
.info-right {
    display: grid;
    grid-template-rows: auto auto;
    gap: 1rem;
    font-size: clamp(2rem, 1vw, 7rem);
    opacity: 0.8;
}

.xuniji2 {
    width: 100%;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 100%);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(15, 12, 41, 0.3);
    position: relative;
    overflow: hidden;
    background-image: 
    linear-gradient(45deg, 
        rgba(255, 255, 255, 0.02) 25%, 
        transparent 25%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.02) 50%, 
        rgba(255, 255, 255, 0.02) 75%, 
        transparent 75%
    ),
    linear-gradient(135deg, 
        rgba(255, 255, 255, 0.02) 25%, 
        transparent 25%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.02) 50%, 
        rgba(255, 255, 255, 0.02) 75%, 
        transparent 75%
    );
background-size: 20px 20px;
  }
  .xuniji2::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent 70%,
        rgba(255, 255, 255, 0.05) 75%,
        transparent 80%
    );
    animation: scanLines 4s linear infinite;
}


  .xuniji2 ul {
    display: flex;
    gap: 1rem; /* 图片间距 */
    padding: 0;
    margin: 0;
    list-style: none;
    flex-wrap: nowrap; /* 强制单行显示 */
  }
   
  .xuniji2 ul div {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
  }
  .xuniji2 ul div::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(156, 214, 255, 0.1);
    border-radius: 12px;
    animation: borderPulse 3s infinite alternate;
} 
* 交互效果 */
.xuniji2 ul div:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(15, 12, 41, 0.2);
}
 
.xuniji2 ul div:hover::after {
    animation: borderPulse 1.5s infinite alternate;
}
/* 数字孪生风格增强 */
.xuniji2::before {
    background: linear-gradient(
        90deg,
        transparent 70%,
        rgba(255, 255, 255, 0.03) 72%,
        transparent 74%,
        rgba(255, 255, 255, 0.03) 76%,
        transparent 78%,
        rgba(255, 255, 255, 0.03) 80%,
        transparent 82%
    );
}
  .xuniji2 img {
    width: 100%;
    height: 100%; /* 固定高度或按比例设置 */
    object-fit: cover;
    border-radius: 12px;
    margin-top: 1.5rem;
    filter: contrast(1.1) brightness(0.9);
    position: relative;
    z-index: 1;
  }
   

  
  
  .gongnenganniu {
    position: relative;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    width: clamp(3000px, 27vw, 4000px); /* 优化响应式范围 */
    z-index: 2000;
    border-radius: 20px 0 0 20px;
    box-shadow: -4px 0 16px rgba(0,0,0,0.15);
    overflow: hidden; /* 隐藏溢出内容 */
}
/* 全息投影效果 */
.xuniji2 img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(
        from 45deg at center,
        rgba(156, 214, 255, 0.1),
        rgba(255, 156, 214, 0.1),
        rgba(214, 156, 255, 0.1)
    );
    animation: hologram 8s linear infinite;
    mix-blend-mode: screen;
    z-index: 2;
}
 
/* 光效粒子 */
.xuniji2::after {
    content: '⠿⠿⠿⠿⠿⠿⠿⠿⠿⠿';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, 0.05);
    font-size: 24px;
    animation: particles 15s linear infinite;
    pointer-events: none;
}
 
@keyframes particles {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
 
/* 动画定义 */
@keyframes scanLines {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(50%); }
}
 
@keyframes borderPulse {
    from { opacity: 0.3; }
    to { opacity: 0.7; }
}
 
@keyframes hologram {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} 
 



.gongnenganniu ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 2.5rem;
    margin: 0;
    list-style: none;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.gongnenganniu li {
    --main-color: #a0c1ca;
    --accent-color: #00a8cc;
    position: relative;
    padding: 2rem 2.5rem;
    background: linear-gradient(145deg, 
        var(--main-color) 0%,
        rgba(74, 59, 255, 0.1) 50%,
        var(--main-color) 100%
    );
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.gongnenganniu li::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent 0deg 30%,
        rgba(255,255,255,0.08) 30% 70%,
        transparent 70% 100%
    );
    animation: matrixScan 4s linear infinite;
}

.gongnenganniu li::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        transparent 45%,
        rgba(255,255,255,0.05) 45%,
        rgba(255,255,255,0.05) 55%,
        transparent 55%
    );
    animation: dataFlow 3s ease-in-out infinite;
}

.gongnenganniu li:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(255, 8, 0, 0.87);
    border-color: rgba(255,255,255,0.2);
}

.gongnenganniu li:hover::before {
    background: conic-gradient(
        transparent 0deg 25%,
        rgba(0,172,204,0.15) 25% 75%,
        transparent 75% 100%
    );
}

.gongnenganniu a {
    position: relative;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.gongnenganniu a::after {
    content: '▶';
    margin-left: 12px;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(4px);
}

.gongnenganniu a:hover::after {
    opacity: 1;
    transform: translateX(0);
    animation: arrowPulse 1.5s ease-in-out infinite;
}

@keyframes matrixScan {
    0% { transform: rotate(0deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1.2); }
}

@keyframes dataFlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0) scale(1); }
    50% { transform: translateX(4px) scale(1.1); }
}




  .zhengjiyunxingxinxi {
    flex: 1; /* 自动填充可用空间 */
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
  
.zhengjiyunxingxinxi ul {
    display: flex;
    flex-wrap: wrap; /* 允许换行 */
    gap: 1.5%; /* 元素间距 */
    padding: 2% 3%;
    margin: 0;
    list-style: none;
    border: 3px solid rgba(255,255,255,0.3); /* 半透明白边 */
    background: rgba(255,255,255,0.1); /* 半透明白底 */
    border-radius: 12px;
    backdrop-filter: blur(8px); /* 玻璃效果 */
}

.zhengjiyunxingxinxi li {
    display: flex;
    flex: 1 1 calc(33.33% - 2%); /* 响应式三列布局 */
    min-width: 2800px; /* 最小宽度限制 */
    margin: 1%;
    padding: 2%;
    background: #385723;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.zhengjiyunxingxinxi li:hover {
    transform: translateX(5px);
}

.zhengjiyunxingxinxi div {
    flex: 1; /* 自动填充父容器 */
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.15);
    border-radius: 6px;
    transition: all 0.3s ease;
}
  
  
   

  
  video {  
    width: 100%;  
    height: auto; /* 建议使用auto以保持视频的宽高比 */  
    background-color: aquamarine; /* 这个属性对video元素不起作用，因为video有自己的内容 */  
    display: block;  
  }  
  
  video.hidden {  
    display: none; /* 隐藏视频，可能用于拍照后的预览 */  
  }  

  .image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.image-box {
    position: relative;
    aspect-ratio: 1;
    border: 2px solid #000;
    overflow: hidden;
    background: #fff;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}



/* 响应式设计 */
@media (max-width: 1200px) {
    .main-content {
        grid-template-columns: 30% 40% 30%;
        gap: 1%;
    }
}

@media (max-width: 992px) {
    .main-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .parameter-left, 
    .model-area,
    .info-right {
        width: 100%;
        max-width: 100%;
    }

    .image-grid {
        grid-template-columns: 1fr;
    }

    .button-group {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 1rem;
    }

    .param-item {
        grid-template-columns: 50% 30% 20%;
    }

    .model-area {
        min-height: 60vh;
    }
}

   /* 初始隐藏图片容器 */
   #image-container {
    display: none;
} 


.input-box {
    font-family: Arial, sans-serif; /* 设置字体类型 */
    font-size: 5.5rem; /* 设置字体大小 */
    color: #fff;; /* 设置字体颜色 */
    margin-bottom: 15px; 
}

/* 修饰输入字段的标签 */
.input-box label {
    display: block;
    margin-bottom: 5px;
}

/* 修饰输入字段 */
.input-box input {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 10px solid #f00f0f;
    border-radius: 4px; /* 设置输入框圆角 */
    font-family: Arial, sans-serif; /* 继承字体类型 */
    font-size: 5.5rem; /* 设置输入框字体大小 */
}