 
    /* 幻灯片区域 - 全屏宽度 */
    .slideshow-section {
        position: relative;
        
        height: 560px;
        margin-left: calc(-50vw + 50%);
        margin-bottom: 20px;
    }

    .slideshow-container {
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
    }

    .main-container {
        max-width: 100%;
        
        padding: 28px;
        position: relative;
        z-index: 10;
            margin-top: -480px;
    padding-bottom: 50px;
    }

    /* 表单区域 - 悬浮在幻灯片上方 */
    .form-section {
        width: 50%;
        background: white;
        border-radius: 0px;
       
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        position: relative;
        overflow: hidden;
      
        z-index: 20;
    }

    /* 其余样式保持不变... */
    .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .slide.active {
        opacity: 1;
    }

    .slide-content {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .slide-image {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .slide-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
       
        z-index: 2;
    }.at_list_con {
    position: relative;
    bottom: 8px;
    z-index: 1;
}

    .slide-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 3;
        color: white;
        font-size: 48px;
        font-weight: bold;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        text-align: center;
    }

    /* 幻灯片指示器 */
    .slide-indicators {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 15px;
        z-index: 10;
    }

    .indicator {
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .indicator.active {
        background: white;
        transform: scale(1.3);
    }

    /* Tab切换 */
    .tab-container {
        display: flex;
        margin-bottom: 25px;
        border-bottom: 1px solid #f0f0f0;
        position: relative;
        z-index: 10;
        background: white;
        border-radius: 8px 8px 0 0;
        
    }

    .tab-item {
        flex: 1;
        padding: 15px 20px;
        text-align: center;
        background: #f8f9fa;
        border: none;
        cursor: pointer;
        font-size: 16px;
        font-weight: 500;
        color: #666;
        position: relative;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .tab-item:first-child {
        border-radius: 0px 0 0 0;
    }

    .tab-item:last-child {
        border-radius: 0 0px 0 0;
    }

    .tab-item.active {
        background: #ff6b35;
        color: white;
    }

    .tab-icon {
        width: 16px;
        height: 16px;
    }

    /* 表单内容 */
    .form-panel {
        display: none;
        position: relative;
        z-index: 10;
        background: white;
        border-radius: 8px;
        padding: 15px;
    }

    .form-panel.active {
        display: block;
    }

    .form-group {
        margin-bottom: 25px;
    }

    .form-label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: #333;
        font-size: 14px;
    }

    .type-buttons {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .type-btn {
        padding: 8px 15px;
        border: 1px solid #ddd;
        background: white;
        border-radius: 3px;
        cursor: pointer;
        font-size: 16px;
        transition: all 0.3s ease;
    }

    .type-btn.active {
        border-color: #02AF61;
        background: #02AF61;
        color: white;
    }

    .dimensions-row {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .dimension-input {
        width: 80px;
        padding: 8px 12px;
        border: 1px solid #ddd;
        border-radius: 6px;
        text-align: center;
    }

    .unit {
        color: #666;
        font-size: 14px;
    }

    .layers-section {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-left: 20px;
    }

    .form-select {
        padding: 6px 40px;
        border: 0.3px solid #ddd;
        border-radius: 3px;
        background: white;
        min-width: 120px;
    }

    .quantity-input {
        
        padding: 6px 20px;
        border: 1px solid #ddd;
        border-radius: 3px;
    }

    .action-buttons {
        display: flex;
        gap: 60px;
        margin-top: 10px;
    }

    .btn {
	text-align: center;
        flex: 1;
        padding: 8px 20px;
        border: none;
        border-radius: 3px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .btn-primary {
        background: #ff6b35;
        color: white;
    }

    .btn-primary:hover {
        background: #e55a2b;
    }

    .btn-secondary {
        background: #007bff;
        color: white;
    }

    .btn-secondary:hover {
        background: #0056b3;
    }

    /* 响应式设计 */
    @media (max-width: 1200px) {
        .form-section {
            width: 70%;
            min-width: auto;
        }
        .main-container {
            margin-top: -80px;
        }
    }

    @media (max-width: 768px) {
        .slideshow-section {
            height: 600px;
        }
        .form-section {
            width: 95%;
            height: auto;
            min-height: 500px;
            padding: 20px;
        }
        .main-container {
            margin-top: -520px;
            padding: 10px;
        }
        .dimensions-row {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .layers-section {
            display: none;
            align-items: center;
            gap: 10px;
            margin-left: 0px;
        }
        .type-btn {
            padding: 10px 5px;
            border: 2px solid #ddd;
            background: white;
            border-radius: 6px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        .tab-item {
            flex: 1;
            padding: 5px 5px; 
        }
        .tab-container {
            padding: 5px 5px 0 5px;
        }

        .tab-item {
            border-radius: 0;
        }

        .tab-item:first-child {
            border-radius: 8px 8px 0 0;
        }

        .action-buttons {
            flex-direction: column;
        }

        .slide-text {
            font-size: 32px;
        }

        .slide-indicators {
            bottom: 15px;
        }
    }.type-buttons input[type="checkbox"] {
            display: none;
        }
        .type-btn  input[type="radio"] {
            display: none;
        }
        

@media (max-width: 768px) {
    
    .form-panel {
        padding: 2px;
    }
}