
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
            background-color: #fff;
            color: #333;
            line-height: 1.6;
            font-weight: 500;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
            background-color: #fff;
        }
        
        .section-divider {
            height: 1px;
            background: linear-gradient(to right, transparent, #e0d1ff, transparent);
            margin: 40px 0;
        }
        
        /* 定制介绍区 */
        .custom-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 40px;
            background-color: #fff;
            border-radius: 10px;
            margin-bottom: 40px;
        }
        
        .custom-text {
            flex: 1;
            margin-right: 30px;
            padding-right: 30px;
            border-right: 1px dashed #e0d1ff;
        }
        
        .custom-title {
            font-size: 32px;
            font-weight: 700;
            color: #b588d9;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .custom-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background: linear-gradient(to right, #b588d9, #2dc26b);
            border-radius: 3px;
        }
        
        .custom-text p {
            margin-bottom: 20px;
            font-size: 16px;
        }
        
        .custom-point {
            display: inline-block;
            color: #2dc26b;
            font-weight: 700;
            margin-right: 10px;
            font-size: 18px;
        }
        
        .custom-video {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .custom-video iframe {
            width: 100%;
            height: 320px;
            border: none;
        }
        
        /* 视频容器样式 */
        .video-container {
            width: 600px;
            height: 337.5px;
            margin: 0 auto;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        .video-container video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* 工厂展示区 */
        .factory-section {
            padding: 40px;
            background-color: #fff;
            border-radius: 10px;
            margin-bottom: 40px;
        }
        
        .section-title {
            font-size: 32px;
            font-weight: 700;
            color: #b588d9;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .factory-images {
            display: flex;
            justify-content: center;
            gap: 30px;
        }
        
        .factory-item {
            flex: 1;
            max-width: 300px;
            transition: transform 0.3s ease;
        }
        
        .factory-item:hover {
            transform: translateY(-10px);
        }
        
        .factory-img {
            height: 200px;
            border-radius: 8px;
            background: linear-gradient(135deg, #f9f6fe, #e8e1fa);
            margin-bottom: 15px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .factory-img:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect x="0" y="0" width="100" height="100" fill="none" stroke="%23d5c5f3" stroke-width="1" stroke-dasharray="5,5" /></svg>');
            opacity: 0.3;
        }
        
        .factory-img i {
            font-size: 60px;
            color: #c2ace8;
            opacity: 0.6;
        }
        
        .factory-caption {
            font-size: 18px;
            font-weight: 600;
            color: #5a4570;
            text-align: center;
        }
        
        /* 合作伙伴区 */
        .partners-section {
            padding: 50px 30px;
            background-color: #fff;
            border-radius: 10px;
            position: relative;
            overflow: hidden;
        }
        
        .partners-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .partners-title {
            font-size: 32px;
            font-weight: 700;
            color: #b588d9;
            margin-bottom: 20px;
        }
        
        .partners-carousel {
            position: relative;
            height: 150px;
            overflow: hidden;
        }
        
        .partners-track {
            display: flex;
            position: absolute;
            left: 0;
            top: 0;
            transition: transform 0.5s ease-out;
        }
        
        .partner-item {
            width: 120px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 10px;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        
        .partner-logo {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: all 0.3s ease;
            filter: grayscale(100%);
            opacity: 0.7;
        }
        
        .partner-item:hover .partner-logo {
            filter: none;
            opacity: 1;
            transform: scale(1.08);
        }
        
        .controls {
            text-align: center;
            margin-top: 30px;
            opacity: 0.7;
            font-size: 14px;
            color: #5a4570;
        }
        
        .carousel-indicators {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }
        
        .indicator {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #e0d1ff;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .indicator.active {
            background-color: #b588d9;
            transform: scale(1.4);
        }
        
        /* 响应式设计 */
        @media (max-width: 900px) {
            .custom-section {
                flex-direction: column;
                padding: 30px;
            }
            
            .custom-text {
                margin-right: 0;
                padding-right: 0;
                padding-bottom: 30px;
                margin-bottom: 30px;
                border-right: none;
                border-bottom: 1px dashed #e0d1ff;
            }
            
            .factory-images {
                flex-direction: column;
                align-items: center;
            }
            
            .factory-item {
                max-width: 350px;
                margin-bottom: 20px;
            }
            
            .partner-item {
                width: 100px;
                height: 100px;
            }
            
            /* 移动端视频适配 */
            .video-container {
                width: 100%;
                max-width: 600px;
                height: 300px;
            }
        }
        
        @media (max-width: 600px) {
            .container {
                padding: 15px;
            }
            
            .custom-section, .factory-section, .partners-section {
                padding: 25px 20px;
            }
            
            .custom-title, .section-title, .partners-title {
                font-size: 28px;
            }
            
            .partner-item {
                width: 90px;
                height: 90px;
            }
            
            .video-container {
                height: 250px;
            }
        }

        @media (max-width: 480px) {
            .video-container {
                height: 200px;
            }
        }
    