.lcl-container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .lcl-product-detail {
            display: flex;
            gap: 40px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            padding: 30px;
            margin-top: 20px;
        }
        
        /* 左侧图片轮播样式 */
        .lcl-product-images {
            flex: 0 0 500px;
        }
        
        .lcl-main-image {
            width: 500px;
            height: 500px;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            margin-bottom: 15px;
            border: 1px solid #f0f0f0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }
        
        .lcl-main-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: none;
            transition: opacity 0.5s ease;
        }
        
        .lcl-main-image img.lcl-active {
            display: block;
        }
        
        .lcl-thumbnails {
            display: flex;
            gap: 10px;
            justify-content: space-between;
        }
        
        .lcl-thumbnail {
            width: 90px;
            height: 90px;
            border-radius: 6px;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid transparent;
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        
        .lcl-thumbnail:hover, .lcl-thumbnail.lcl-active {
            opacity: 1;
            border-color: #4a6cf7;
        }
        
        .lcl-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .lcl-navigation {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 15px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .lcl-main-image:hover .lcl-navigation {
            opacity: 1;
        }
        
        .lcl-nav-btn {
            background: rgba(255, 255, 255, 0.85);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 18px;
            color: #333;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
        }
        
        .lcl-nav-btn:hover {
            background: rgba(255, 255, 255, 1);
            transform: scale(1.1);
            color: #4a6cf7;
        }
        
        .lcl-image-counter {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 14px;
        }
        
        /* 右侧产品信息样式 */
        .lcl-product-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        
        .lcl-product-title {
            font-size: 28px;
            color: #1a1a1a;
            margin-bottom: 5px;
            line-height: 1.3;
            font-weight: 600;
        }
        
        .lcl-product-subtitle {
            color: #666;
            font-size: 16px;
            margin-bottom: 10px;
        }
        
        .lcl-product-overview {
            background: #f8faff;
            padding: 22px;
            border-radius: 8px;
            line-height: 1.7;
            color: #444;
            border-left: 4px solid #28a745;
            box-shadow: 0 2px 6px rgba(74, 108, 247, 0.08);
        }
        
        .lcl-product-specs {
            margin-top: 5px;
        }
        
        .lcl-specs-title {
            font-size: 20px;
            margin-bottom: 18px;
            color: #1a1a1a;
            font-weight: 600;
            padding-bottom: 8px;
            border-bottom: 1px solid #eee;
        }
        
        .lcl-specs-list {
            list-style: none;
        }
        
        .lcl-specs-list li {
            padding: 14px 0;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            transition: background 0.2s ease;
        }
        
        .lcl-specs-list li:hover {
            background: #f8faff;
        }
        
        .lcl-specs-list li:last-child {
            border-bottom: none;
        }
        
        .lcl-spec-label {
            font-weight: 600;
            width: 50%;
            color: #555;
            flex-shrink: 0;
        }
        
        .lcl-spec-value {
            flex: 1;
            color: #333;
        }
        
        /* 响应式设计 */
        @media (max-width: 1100px) {
            .lcl-product-detail {
                gap: 30px;
                padding: 25px;
            }
            
            .lcl-product-images {
                flex: 0 0 450px;
            }
            
            .lcl-main-image {
                width: 450px;
                height: 450px;
            }
        }
        
        @media (max-width: 992px) {
            .lcl-product-detail {
                flex-direction: column;
            }
            
            .lcl-product-images {
                flex: none;
                width: 100%;
                max-width: 500px;
                margin: 0 auto;
            }
            
            .lcl-main-image, .lcl-main-image img {
                width: 100%;
                height: auto;
                aspect-ratio: 1/1;
            }
            
            .lcl-thumbnails {
                justify-content: center;
            }
        }
        
        @media (max-width: 576px) {
            .lcl-container {
                padding: 15px;
            }
            
            .lcl-product-detail {
                padding: 20px;
            }
            
            .lcl-product-title {
                font-size: 24px;
            }
            
            .lcl-thumbnail {
                width: 70px;
                height: 70px;
            }
            
            .lcl-spec-label {
                width: 120px;
            }
        }
        
        /* 页面标题样式 */
        .lcl-page-title {
            text-align: center;
            margin-bottom: 10px;
            color: #1a1a1a;
            font-size: 32px;
            font-weight: 700;
        }
        
        .lcl-page-subtitle {
            text-align: center;
            color: #666;
            margin-bottom: 30px;
            font-size: 16px;
        }