
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Microsoft YaHei', sans-serif;
        }
        
       
        
        .ccontainer {
            width: 80%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        .mmain-title {
            text-align: center;
            font-size: 32px;
            color: #333;
            margin-bottom: 40px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .mmain-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #ff0000;
            border-radius: 2px;
        }
        
        .content-wrapper {
            display: flex;
            gap: 30px;
        }
        
        .left-panel {
            flex: 1;
            background: #f7f7f7;
            padding: 25px;
            border-radius: 8px;
        }
        
        .text-block {
            margin-bottom: 20px;
        }
        
        .text-block:last-child {
            margin-bottom: 0;
        }
        
        .text-block p {
            line-height: 1.6;
            color: #555;
            font-size: 16px;
        }
        
        .right-panel {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .service-item {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            padding: 15px;
            border-radius: 8px;
            background: #fff;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }
        
        .service-item:hover {
            transform: translateY(-5px);
        }
        
        .service-item:last-child {
            margin-bottom: 0;
        }
        
        .icon {
            width: 40px;
            height: 40px;
            background: #ff0000;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .icon svg {
            width: 24px;
            height: 24px;
            fill: white;
        }
        
        .service-content h3 {
            font-size: 18px;
            color: #333;
            margin-bottom: 5px;
        }
        
        .service-content p {
            font-size: 14px;
            color: #666;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .ccontainer {
                width: 90%;
                padding: 20px;
            }
            
            .mmain-title {
                font-size: 28px;
            }
        }
        
        @media (max-width: 768px) {
            .content-wrapper {
                flex-direction: column;
            }
            
            .left-panel, .right-panel {
                width: 100%;
            }
            
            .mmain-title {
                font-size: 24px;
                margin-bottom: 30px;
            }
            
            .service-item {
                padding: 12px;
            }
        }
        
        @media (max-width: 480px) {
            .ccontainer {
                width: 95%;
                padding: 15px;
            }
            
            .mmain-title {
                font-size: 20px;
            }
            
            .icon {
                width: 35px;
                height: 35px;
            }
            
            .icon svg {
                width: 20px;
                height: 20px;
            }
            
            .service-content h3 {
                font-size: 16px;
            }
        }
