
        @font-face {
            font-family: 'service';
            src: url('/img222/fonts/service.ttf') format('truetype');
        }
        .products-banner {
            background: url(/img222/banner/service.jpg) no-repeat center center;
        }
        .lservices {
            margin-bottom: 60px;
        }
                
        h2 {
            font-size: 32px;
            margin-bottom: 26px;
            text-align: center;
            color: #333;
            
        }
        
        .section-subtitle {
            text-align: center;
            margin: 0 auto 60px;
            color: #666;
        }
        
        /* 第一部分 - 3项服务 */
        .services-1 {
            /*background-color: #f9f9f9;*/
        }
        
        .services-grid-1 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            margin: -13px;
        }
        
        .service-card-1 {
            background: white;
            padding: 38px 50px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
            background: linear-gradient(
                to bottom,
                rgba(238, 246, 250, 1) 0%,
                rgba(238, 246, 250, 0.5) 50%,
                transparent 100%
            );
            margin: 13px;
        }

        .service-card-1 p{
            color: #555555;
        }
        
        .service-card-1 h3 {
            font-size: 24px;
            margin: 30px 0;
            color: #333;
        }
        
        /* 第二部分 - 4项服务，深色背景 */
        .services-2 {
            padding: 0;
            position: relative;
            margin: 60px 0 80px 0;
        }           
        
        .services-grid-2 {
            width: 50%;
        }
        
        .service-card-2 {
            min-height: 140px;
            border-bottom: 1px solid #E6E6E6;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-left: 1px solid #fff;
            cursor: pointer;
            padding: 20px 0;
        }

        .service-card-2::before {
            /*content: '';*/
            position: absolute;
            top: 50%;
            right: 0;
            width: 92px;
            height: 73px;
            margin-top: -36.5px; 
            background: url(/img222/service/ser30.png) no-repeat center center;
            opacity: 0;
            transition: opacity .5s ease-in-out;
            z-index: 51;
        }
        
        /*.service-card-2:hover::before {
            opacity: 1;
        }*/
        .service-card-2.active::before {
            opacity: 1;
            transform: scale(1);
        }

        .service-card-2 > * {
            position: relative;
            z-index: 1;
        }
        .service-card-2>div{
            width: 80%;
        }

        .service-card-2 h3 {
            font-size: 24px;
            padding-bottom: 8px;
            position: relative;
        }

        .service-card-2.active h3{
            color: #F8C300;
        }

        .services-right-2{
            position: absolute;
            right: 0;
            top: 0;
            width: 44%;
            height: 100%;
            will-change: transform;
        }

        .services-right-2 img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity .5s ease-in-out;
        }

        .services-right-2 img.active {
            opacity: 1;
            z-index: 1;
        }

        .services-right-2 img.prev {
            opacity: 0;
        }

        .services-right-2 img.next {
            opacity: 0;
        }
        
        /* 第三部分 - 左右布局 */
        .services-3{
            padding: 60px 0;
            background: #F7F7F7;
        }
        .services-layout-3 {
            display: flex;
            flex-direction: column;
        }
        
        .services-left-3 {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            text-align: center;
            margin: 0 0 60px 0;
        }
        
        .services-right-3 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            margin: -20px;
        }
        
        .service-card-3 {
            background: white;
            padding: 35px;
            transition: all 0.3s ease;
            margin: 20px;
        }
        .service-icon-3 {
            font-size: 16px;
            color: #4a6cf7;
            margin-top: 45px;
        }
        
        .service-card-3 h3 {
            font-size: 16px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 20px;
            color: #333;
        }
        .service-card-3 h3::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 4px;
            background: #F8C300;
        }
        .service-card-3 p{
            color: #555;
        }
        
        .services-left-3 img {
            width: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .services-left-3 h2 {
            margin-bottom: 20px;
            font-size: 30px;
        }
        
        .services-left-3 p {
            color: #666;
        }
        
        /* 第四部分 - 左图右文 */
        .services-4 {
            background: url(/img222/service/ser40.png) no-repeat top center;
            background-color: #F7F7F7;
            padding: 0 0 40px 0;
        }

        .services-left-4 {
            height: 468px;
            position: relative;
            margin: 110px 0 0 0;
        }

        /* 轮播容器 */
        .card-carousel {
            position: relative;
            width: 100%;
            height: 100%;
        }

        /* 卡片包装器 */
        .card-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            perspective: 1000px;
        }

        /* 卡片 */
        .card-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.95);
            padding: 40px 50px;
            opacity: 0;
            transform: translateX(100px) scale(0.9);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 80px 8% 0 40%;

        }

        .card-slide1 {
            background: url(/img222/service/ser41.png) no-repeat center center;
        }
        
        .card-slide2 {
            background: url(/img222/service/ser42.png) no-repeat center center;
        }

        .card-slide.active {
            opacity: 1;
            transform: translateX(0) scale(1);
            z-index: 3;
        }

        .card-slide.prev {
            opacity: 0;
            transform: translateX(-100px) scale(0.85);
            z-index: 2;
        }

        .card-slide.next {
            opacity: 0.6;
            transform: translateX(100px) scale(0.85);
            z-index: 2;
        }

        /* 卡片内容 */
        .card-slide h2 {
            font-size: 24px;
            color: #333;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 12px;
            text-align: left;
        }

        .card-slide h2::before {
            content: 'Servicios de pre-venta';
            font-family: 'service';
            font-size: 3.3vw;
            font-weight: 500;
            position: absolute;
            bottom: 0;
            left: 0;
            color: #F0F0F0;
            z-index: -1;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .card-slide2 h2::before {
            content: 'Servicios post-venta' !important;
        }

        /*.card-slide h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #3498db, #2ecc71);
            border-radius: 2px;
        }*/

        .card-slide p {
            color: #666;
            margin-bottom: 20px;
        }

        /* 进度条容器 */
        .progress-container {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgba(255, 255, 255, 0.2);
            overflow: hidden;
            border-radius: 0 0 15px 15px;
            display: none;
        }

        .progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #3498db, #2ecc71);
            width: 0%;
            transition: width 6s linear;
        }

        .card-slide.active .progress-bar {
            width: 100%;
            animation: progress 6s linear forwards;
        }

        @keyframes progress {
            from { width: 0%; }
            to { width: 100%; }
        }

        /* 卡片计数器 */
        .card-counter {
            position: absolute;
            top: 40px;
            right: 135px;
            color: white;
            font-size: 16px;
            font-weight: 600;
            background: rgba(0, 0, 0, 0.3);
            padding: 8px 16px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            z-index: 10;
            display: flex;
            align-items: center;
            gap: 8px;
            display: none;
        }

        .counter-number {
            font-size: 18px;
            font-weight: 700;
            color: #2ecc71;
        }

        /* 指示器 */
        .simple-indicators {
            position: absolute;
            top: 50%;
            right: 34px;
            display: flex;
            z-index: 10;
            flex-direction: column;
        }

        .simple-indicator {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #B3B3B3;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            margin: 10px 0;
        }

        .simple-indicator::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #F8C300;
            transition: transform 0.3s ease;
            border-radius: 50%;
        }

        .simple-indicator.active {
            background: transparent;
            transform: scale(1.3);
        }

        .simple-indicator.active::after {
            transform: translateX(100%);
        }

        .simple-indicator:hover {
            transform: scale(1.5);
        }
        @media (max-width: 1500px) {
            .card-slide{
                /*padding: 80px 135px 0 600px;*/
            }
        }
        @media (max-width: 768px) {
            .services-left-4 {
                margin: 60px 0 0 0;
                /*height: 540px;*/
                height: auto;

            }

            .card-slide {
                padding: 220px 10px 10px 10px;
            }
            
            .card-slide h2 {
                font-size: 16px;
                padding-bottom: 6px;
                margin-bottom: 10px;
            }

            .card-slide h2::before{
                font-size: 2rem;
            }

            .card-slide p{
                margin-bottom: 10px;
            }

            .simple-indicators {
                /*bottom: 0;
                right: 0;
                justify-content: center;
                padding: 12px;*/
                display: none;
            }
            
            .card-counter {
                top: 30px;
                right: 40px;
            }
        }


        /* 动画效果 - 修复第二个p标签动画 */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* 确保所有p标签都有动画 */
        .card-slide.active h2 {
            animation: slideInLeft 0.6s ease-out 0.2s both;
        }

        .card-slide.active p:nth-of-type(1) {
            animation: slideInRight 0.6s ease-out 0.4s both;
        }

        .card-slide.active p:nth-of-type(2) {
            animation: slideInRight 0.6s ease-out 0.6s both;
        }

        .card-slide.active p:nth-of-type(3) {
            animation: slideInRight 0.6s ease-out 0.8s both;
        }

        /* 悬停暂停自动播放 */
        .card-wrapper:hover .progress-bar {
            animation-play-state: paused;
        }

        /* 指示器动画 */
        .simple-indicator {
            animation: fadeIn 0.5s ease-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .services-layout-3,
            .services-layout-4,
            .services-layout-5 {
                flex-direction: column;
                gap: 30px;
            }
            
            .services-right-3 {
                width: 100%;
                gap: 20px;
            }
            
            .services-1 h2,
            .services-left-3 h2,
            .services-right-4 h2,
            .services-left-5 h2 {
                text-align: center;
                font-size: 20px;
            }

        }
        
        @media (max-width: 768px) {
            .services-grid-1,
            .services-right-3,
            .services-right-5 {
                grid-template-columns: 1fr;
            }

            .service-card-1{
                /*padding: 15px 30px;*/
            }
            .service-card-1 h3{
                font-size: 18px;
            }
            .services-2{
               margin: 30px 0;
            }
            .services-grid-2{
                width: 100%;
            }
            .services-right-2{
                display: none;
            }
            .service-card-2 > *{
                text-align: left;
            }
            .service-card-2>div {
                width: 100%;
            }
            .service-card-2 h3{
                font-size: 16px;
                margin: 0 0 10px 0;
                padding: 0;
            }
            .service-card-2 h3::before{
                content: none;
            }
            .service-icon-2{
                margin: 0;
            }
            .lservices {
                margin-bottom: 40px;
            }
            .section-subtitle{
                margin: 0 auto 40px;
            }
            .services-4{
                background-size: 180%;
            }
            .card-slide{
                position: relative;
                opacity: 1 !important;
                margin-bottom: 20px;
            }
            .card-slide.prev{
                transform: translateX(0) scale(1);
            }
            .card-slide1 {
                background: url(/img222/service/ser41-m.png) no-repeat;
                background-size: 100%;
            }
            .card-slide2 {
                background: url(/img222/service/ser42-m.png) no-repeat;
                background-size: 100%;
            }
            .services-4{
                padding: 0;
            }
            .service-card-3{
                padding: 15px;
                width: 100%;
                margin: 0 20px;
            }
            .services-grid-1 img{
                width: 50px;
            }

        }
