
    /* 全局样式基础 */
    .anpviz-container { width: 100%; font-family: 'Poppins', sans-serif; background: #000; overflow: hidden; }
    .anpviz-container img { max-width: 100%; display: block; }
    
    /* 1. 主图板块 */
    .hero-image { width: 100%; }

    /* 2 & 4. 轮播图通用样式 (修复滑点关键) */
    .banner-slider-container { width: 100%; position: relative; background: #000; margin-bottom: 2px; }
    .slider-wrapper { position: relative; width: 100%; aspect-ratio: 1464 / 600; overflow: hidden; }
    .slider-track { display: flex; transition: transform 0.5s ease-in-out; height: 100%; }
    .slider-track img { width: 100%; flex-shrink: 0; object-fit: cover; height: 100%; }
    .slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.3); color: white; border: none; padding: 15px 10px; cursor: pointer; font-size: 24px; z-index: 10; }
    .slider-arrow:hover { background: rgba(0,0,0,0.7); }
    .slider-arrow.prev { left: 0; border-radius: 0 5px 5px 0; }
    .slider-arrow.next { right: 0; border-radius: 5px 0 0 5px; }
    .slider-dots { position: absolute; bottom: 15px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
    .dot { width: 10px; height: 10px; background: rgba(255,255,255,0.5); border-radius: 50%; cursor: pointer; transition: 0.3s; }
    .dot.active { background: #fff; width: 25px; border-radius: 5px; }

    /* 3. Tab 切换板块 */
    .pro-block-section { width: 100%; background: #000; }
    .top-nav-bar { display: flex; background: #111; border-bottom: 1px solid #222; }
    .nav-btn { flex: 1; display: flex; align-items: center; justify-content: center; padding: 12px 8px; color: #666; font-size: 16px; font-weight: 600; cursor: pointer; position: relative; transition: 0.3s; }
    .nav-btn.active { color: #fff; background: #1a1a1a; }
    .nav-btn.active::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: #ff3b30; }
    .image-stage-wrapper { width: 100%; aspect-ratio: 1446 / 600; overflow: hidden; }
    .image-stage { display: flex; transition: transform 0.5s ease; width: 100%; height: 100%; }
    .img-panel { flex: 0 0 100%; width: 100%; }
    .img-panel img { width: 100%; height: 100%; object-fit: cover; }

    /* 5. 特性网格 */
    .camera-features { padding: 40px 0; background: #f9f9f9; color: #333; }
    .row-top { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; max-width: 1400px; margin: 0 auto; padding: 0 20px; }
    .feature-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
    .info { padding: 20px; }
    .info h3 { font-size: 18px; margin-bottom: 10px; font-weight: bold; }
    .info p { font-size: 14px; color: #666; line-height: 1.6; margin: 0; }

    /* 6. 参数表 */
   .specs-section { background: #fff; padding: 20px 0px; font-family: 'Poppins', sans-serif; }
.specs-title { text-align: center; font-size: 30px; font-weight: 700; margin-bottom: 20px; }
.specs-container { display: flex; gap: 20px; margin: 0px; }
.specs-column { flex: 1; min-width: 0; }
.specs-table { width: 100%; border-collapse: separate; border-spacing: 0; box-shadow: 0 0 0 1px #d1d1d1; border-radius: 12px; background: #fff; overflow: hidden; }
.specs-table td { padding: 14px 20px; border-bottom: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; font-size: 16px; line-height: 1.5; }
.specs-table td:last-child { border-right: none; }
.specs-table tr:last-child td { border-bottom: none; }
@media (max-width: 992px) {
    .specs-container { flex-direction: column; gap: 20px; }
    .specs-title { font-size: 22px; }
}

    /* 响应式调整 */
    @media (max-width: 768px) {
        .row-top, .specs-container { grid-template-columns: 1fr; flex-direction: column; }
        .nav-btn { font-size: 12px; }
        .slider-wrapper, .image-stage-wrapper { aspect-ratio: 16 / 9; }
    }
