 .container-swiper {
      max-width: 1400px;
      margin: 20px auto;
      /* padding: 0 15px; */
    }
   
    h2 {
      /* text-align: center; */
      margin-bottom: 30px;
      color: #333;
      font-weight: 600;
    }
    
    .swiper {
      width: 100%;
      height: 120px;
      padding: 20px 0;
    }
    
    .swiper-slide {
      display: flex;
      justify-content: center;
      align-items: center;
      background: white;
      border-radius: 12px;
      /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); */
      box-shadow: 0px 0px 10px 1px rgba(41,66,112,0.16);
      transition: transform 0.3s ease;
      border: 1px solid #eee;
    }
     .mySwiper{
       padding-left: 15px; 
       padding-right: 15px;
    }
    .swiper-slide:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }
    
    .logo-swiper {
      max-width: 70%;
      max-height: 36px;
      object-fit: contain;
    }
    
    /* PC端指示器样式 */
    .swiper-pagination-bullet {
      width: 8px;
      height: 8px;
      background: #ccc;
      opacity: 0.8;
    }
    .widget-title h2{
      text-align: left;
    }
    .swiper-pagination-bullet-active {
      background: #3498db;
    }
    .serveljzx-text{
      color: #007bff;
    }
    /* 响应式调整 */
    @media (max-width: 767px) {
      .swiper {
        height: 120px;
      }
      
      .swiper-slide {
        /* opacity: 0.4; */
        transform: scale(0.9);
      }
      
      .swiper-slide-active {
        opacity: 1;
        transform: scale(1);
        z-index: 2;
      }
    }
	