.ly_container_cp {
            width: 100%;
            margin: 0 auto;
            padding: 20px;
            max-width: 1920px;
        }
        
        .ly_product-carousel {
            position: relative;
            margin: 40px 0;
            overflow: hidden;
        }
        
        .ly_carousel-container {
            display: flex;
            transition: transform 0.5s ease;
            width: 100%;
        }
        
        .ly_product-item {
            min-width: 25%;
            padding: 15px;
            transition: all 0.3s ease;
        }
        
        .ly_product-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        
        .ly_product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .ly_product-image {
            position: relative;
            overflow: hidden;
            width: 100%;
            padding-bottom: 75%; /* 调整为3:4比例，更适合显示图片 */
        }
        
        .ly_product-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain; /* 改为contain确保图片完全显示 */
            transition: transform 0.5s ease;
        }
        
        .ly_product-card:hover .ly_product-image img {
            transform: scale(1.05); /* 减小缩放比例，避免图片溢出 */
        }
        
        .ly_product-info {
            padding: 15px;
            text-align: center;
            position: relative;
            clear: both;
        }
        
        .ly_product-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
        }
        
        .ly_carousel-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 20px;
        }
        
        .ly_carousel-btn {
            background: #2c3e50;
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            margin: 0 10px;
            transition: background 0.3s ease;
        }
        
        .ly_carousel-btn:hover {
            background: #1a252f;
        }
        
        .ly_carousel-indicators {
            display: flex;
            justify-content: center;
            margin: 0 20px;
        }
        
        .ly_indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ccc;
            margin: 0 5px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .ly_indicator.active {
            background: #2c3e50;
        }
        
        @media (max-width: 1024px) {
            .ly_product-item {
                min-width: 33.333%;
            }
        }
        
        @media (max-width: 768px) {
            .ly_product-item {
                min-width: 50%;
            }
        }
        
        @media (max-width: 480px) {
            .ly_product-item {
                min-width: 100%;
            }
            
            .ly_carousel-controls {
                margin-top: 15px;
            }
            
            .ly_carousel-btn {
                width: 35px;
                height: 35px;
            }
        }

/*幻灯开始文件====*/

        .lyhd_slideshow-container {
            position: relative;
            width: 100vw;
            height: 920px;
            overflow: hidden;
        }

/* 响应式设计：在小屏幕上降低幻灯片高度 */
        @media (max-width: 768px) {
            .lyhd_slideshow-container {
                height: 300px;
            }
        }

        @media (max-width: 480px) {
            .lyhd_slideshow-container {
                height: 200px;
            }
        }

        .lyhd_slide {
            display: none;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            animation-duration: 1s;
            animation-fill-mode: both;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .lyhd_slide.lyhd_active {
            display: block;
            opacity: 1;
        }

        .lyhd_slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .lyhd_slide.lyhd_fade {
            animation-name: fade;
        }

        @keyframes fade {
            from {opacity: 0.4}
            to {opacity: 1}
        }

        /* 上一张/下一张按钮 */
        .lyhd_prev, .lyhd_next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            width: auto;
            padding: 16px;
            margin-top: -22px;
            color: white;
            font-weight: bold;
            font-size: 24px;
            transition: 0.6s ease;
            border-radius: 0 3px 3px 0;
            user-select: none;
            background-color: rgba(0,0,0,0.3);
            z-index: 10;
        }

        .lyhd_next {
            right: 0;
            border-radius: 3px 0 0 3px;
        }

        .lyhd_prev:hover, .lyhd_next:hover {
            background-color: rgba(0,0,0,0.8);
        }

        /* 底部指示器 */
        .lyhd_dots-container {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            text-align: center;
            padding: 10px;
            background-color: rgba(0,0,0,0.3);
            border-radius: 20px;
        }

        .lyhd_dot {
            cursor: pointer;
            height: 15px;
            width: 15px;
            margin: 0 5px;
            background-color: #bbb;
            border-radius: 50%;
            display: inline-block;
            transition: background-color 0.6s ease;
        }

        .lyhd_dot.lyhd_active, .lyhd_dot:hover {
            background-color: #fff;
        }

        /* 幻灯片文字 */
        .lyhd_slide-text {
            position: absolute;
            bottom: 80px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            background-color: rgba(0,0,0,0.5);
            padding: 15px 25px;
            border-radius: 5px;
            font-size: 24px;
            text-align: center;
            z-index: 10;
            min-width: 300px;
        }

        /* 在小屏幕上调整文字大小和位置 */
        @media (max-width: 768px) {
            .lyhd_slide-text {
                font-size: 18px;
                bottom: 60px;
                min-width: 200px;
                padding: 10px 15px;
            }
        }

        @media (max-width: 480px) {
            .lyhd_slide-text {
                font-size: 14px;
                bottom: 40px;
                min-width: 150px;
                padding: 8px 12px;
            }
            
            .lyhd_prev, .lyhd_next {
                font-size: 18px;
                padding: 12px;
            }
            
            .lyhd_dots-container {
                bottom: 10px;
                padding: 5px;
            }
            
            .lyhd_dot {
                height: 12px;
                width: 12px;
                margin: 0 3px;
            }
        }

        
        /*****工厂切换*****/    

        .lygc_carousel-container {
            max-width: 750px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .lygc_carousel {
            position: relative;
            width: 100%;
            height: 400px;
        }

        .lygc_carousel-inner {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 100%;
        }

        .lygc_carousel-item {
            min-width: 100%;
            height: 100%;
        }

        .lygc_carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .lygc_carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            font-size: 18px;
            padding: 10px 15px;
            cursor: pointer;
            z-index: 10;
        }

        .lygc_carousel-control.prev {
            left: 10px;
        }

        .lygc_carousel-control.next {
            right: 10px;
        }

        .lygc_carousel-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .lygc_indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background 0.3s;
        }

        .lygc_indicator.active {
            background: white;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .lygc_carousel-container {
                max-width: 100%;
                padding: 0 10px;
            }
            
            .lygc_carousel {
                height: 200px;
            }
            
            .lygc_carousel-control {
                padding: 8px 12px;
                font-size: 16px;
            }
            
            .lygc_carousel-control.prev {
                left: 5px;
            }
            
            .lygc_carousel-control.next {
                right: 5px;
            }
            
            .lygc_carousel-indicators {
                bottom: 10px;
            }
            
            .lygc_indicator {
                width: 10px;
                height: 10px;
            }
        }