
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Helvetica Neue', Arial, sans-serif;
        }
        
    
        
        .service-container {
            width: 80%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .service-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f0f0f0;
        }
        
        .service-title {
            font-size: 28px;
            font-weight: 700;
            color: #2c3e50;
            display: flex;
            align-items: center;
        }
        
        .service-title i {
            margin-right: 12px;
            color: #3498db;
        }
        
        .more-services-btn {
            background: #f8f9fa;
            color: #6c757d;
            border: 1px solid #dee2e6;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .more-services-btn i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }
        
        .more-services-btn:hover {
            background: #e74c3c;
            color: white;
            border-color: #e74c3c;
        }
        
        .more-services-btn:hover i {
            transform: translateX(3px);
        }
        
        .service-content {
            position: relative;
            padding: 0 20px;
        }
        
        .services-wrapper {
            overflow: hidden;
            margin-bottom: 30px;
        }
        
        .services {
            display: flex;
            transition: transform 0.5s ease;
            margin: 0 -15px;
        }
        
        .service-item {
            flex: 0 0 calc(33.333% - 30px);
            margin: 0 15px;
            border: 1px solid #eaecef;
            border-radius: 10px;
            overflow: hidden;
            background: white;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .service-image {
            height: 180px;
            overflow: hidden;
            position: relative;
        }
        
        .service-image a {
            display: block;
            width: 100%;
            height: 100%;
        }
        
        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-item:hover .service-image img {
            transform: scale(1.05);
        }
        
        .service-details {
            padding: 20px;
        }
        
        .service-name {
            margin-bottom: 12px;
        }
        
        .service-name a {
            font-size: 18px;
            font-weight: 700;
            color: #2c3e50;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .service-name a:hover {
            color: #3498db;
        }
        
        .service-description {
            color: #7f8c8d;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 15px;
            height: 66px;
            overflow: hidden;
        }
        
        .service-date {
            color: #95a5a6;
            font-size: 13px;
            display: flex;
            align-items: center;
        }
        
        .service-date i {
            margin-right: 6px;
        }
        
        .nav-arrows {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .arrow {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: #f8f9fa;
            border: 1px solid #dee2e6;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .arrow:hover {
            background: #3498db;
            color: white;
            border-color: #3498db;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .service-item {
                flex: 0 0 calc(50% - 30px);
            }
            
            .service-container {
                width: 90%;
            }
        }
        
        @media (max-width: 768px) {
            .service-item {
                flex: 0 0 calc(100% - 30px);
            }
            
            .service-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .more-services-btn {
                align-self: flex-end;
            }
        }
        
        @media (max-width: 576px) {
            .service-container {
                width: 95%;
                padding: 20px 15px;
            }
            
            .service-title {
                font-size: 24px;
            }
            
            .more-services-btn {
                padding: 8px 16px;
                font-size: 13px;
            }
        }
