
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
      
        
        .component-container {
            width: 100%;
            height: 950px;
            display: flex;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .left-section {
            flex: 1;
            background: white;
            padding: 60px 10% 40px 10%;
            display: flex;
            flex-direction: column;
        }
        
        .right-section {
            width: 50%;
            position: relative;
            overflow: hidden;
        }
        
        .background-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
            background-size: cover;
            background-position: center;
        }
        
        .background-slide.active {
            opacity: 1;
        }
        
        .slide-info {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(90deg, #ff416c, #ff4b2b);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: 600;
            padding: 0 20px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .grid-item {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        
        .item-icon {
            font-size: 2.5rem;
            color: #ff4b2b;
            margin-bottom: 15px;
        }
        
        .item-title {
            font-size: 38px;
            font-weight: 800;
            margin-bottom: 10px;
            color: #333;
        }
        
        .item-desc {
            color: #666;
font-size: 18px;
            line-height: 1.6;
        }
        
        .about-button {
            margin-top: auto;
            padding: 16px 40px;
            background: #333;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 1.5rem;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s ease;
            align-self: flex-start;
        }
        
        .about-button:hover {
            background: #ff4b2b;
        }
        
        .indicators {
            position: absolute;
            bottom: 120px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }
        
        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .indicator.active {
            background: white;
            transform: scale(1.2);
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .component-container {
                flex-direction: column;
                height: auto;
            }
            
            .right-section {
                width: 100%;
                height: 400px;
            }
            
            .left-section {
                padding: 40px 10%;
            }
            
            .content-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .indicators {
                bottom: 130px;
            }
        }
        
        @media (max-width: 576px) {
            .left-section {
                padding: 30px 5%;
            }
            
            .item-title {
                font-size: 1.2rem;
            }
            
            .slide-info {
                font-size: 1.2rem;
            }
        }
