/* 重置和基礎樣式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* 主容器 */
.container-cp {
    display: flex; 
    max-width: 1400px;
    margin: 0 auto;
 padding-bottom:30px
 
}

/* 左側面板 */
.left-panel {
    flex: 1;
    position: relative;
 
    overflow: hidden;
}

.image-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide.prev {
    transform: translateX(-100%);
}

.slide img { 
    height:450px; 
	border:1px solid #e8e8e8
}

/* 導航點 */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

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

.dot.active {
    background: #007bff;
    transform: scale(1.2);
}

/* 導航箭頭 */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

/* 右側面板 */
.right-panel {
    flex: 1;
    padding: 0px 50px;
    display: flex; 
}

.content {
    width:100%;
}

.product-title-cp {
    font-size: 2.7rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 0px;
    letter-spacing: -1px;
}

.divider {
    width: 100%;
    height: 2px;
    background: #333;
    margin-bottom: 30px;
}

.product-description {
    font-size: 20px;
    color: #000;
    margin-bottom: 30px;
    line-height: 1.5;
}

.specifications {
    margin-bottom: 40px;
}

.specifications p {
    margin-bottom: 10px;
    font-size:17px;
    color: #000;
}

.specifications p  strong {
    color: #000;
    font-weight: 600;
}
.specifications img ,.specifications p img{max-width:100%}
/* 特色功能區域 */
.features {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 100px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    color: #666;
}

.feature-item:hover .feature-icon {
    border-color: #007bff;
    color: #007bff;
    background: rgba(0, 123, 255, 0.1);
}

.feature-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.3;
    font-weight: 500;
}

/* 聯絡按鈕 */
.contact-btn-cp {
    background: #007bff;
    color: white;
    border: none;
    padding: 15px 60px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.contact-btn-cp:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}
.main_cp{width:100%}
.main_cp img,.main_cp p img{max-width:100%}
/* 響應式設計 */
@media (max-width: 1024px) {
    .container-cp {
        flex-direction: column;
    }
    
    .left-panel {
        height: 50vh;
        min-height: 400px;
    }
    
    .right-panel {
        padding: 40px 30px;
    }
    
    .product-title-cp {
        font-size: 2rem;
    }
    
    .features {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .right-panel {
        padding: 30px 20px;
    }
    
    .product-title-cp {
        font-size: 1.8rem;
    }
    
    .features {
        flex-direction: column;
        gap: 25px;
    }
    
    .feature-item {
        flex-direction: row;
        text-align: left;
        gap: 15px;
    }
    
    .feature-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .left-panel {
        height: 40vh;
        min-height: 300px;
    }
    
    .right-panel {
        padding: 0px 15px 20px;
    }
    
    .product-title-cp {
        font-size: 1.5rem;
    }
    
    .features {
        gap: 20px;
    }
    
    .feature-item {
        gap: 12px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .contact-btn-cp {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

/* 動畫效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content > * {
    animation: fadeInUp 0.6s ease forwards;
}

.content > *:nth-child(1) { animation-delay: 0.1s; }
.content > *:nth-child(2) { animation-delay: 0.2s; }
.content > *:nth-child(3) { animation-delay: 0.3s; }
.content > *:nth-child(4) { animation-delay: 0.4s; }
.content > *:nth-child(5) { animation-delay: 0.5s; }
.content > *:nth-child(6) { animation-delay: 0.6s; }

