  .swiper {
            width: 100%;
            height: 100%;
            --swiper-theme-color: #00938C;
        }

        .swiper-slide {
            text-align: center;
            font-size: 18px;
            /* background: #fff; */
            background: #f7f7f7; 
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .swiper-slide .qualification-title {
            position: absolute;
            z-index: 1;
            bottom: 0;
            height: 2em;
            background-color: #00000045;
            color: #fff;
            font-size: 16px;
            line-height: 2em;
            width: 100%;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
            padding: 0 12px;
        }


        .swiper-slide:hover {
            background: #dad9d9; 
        }

        .swiper-slide:hover .qualification-title {
            background-color: #00000060;
        }
        

        .swiper-slide img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* 公司资质轮播样式 */
        .qualifications-swiper {
            width: 100%;
            position: relative;
        }

        .qualifications-swiper .swiper-slide {
            width: 360px;
            transition: all 0.3s ease;
        }

        .qualification-card {
            padding: 20px 10px;
            transition: all 0.3s ease;
            height: 360px;
            width: 360px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .qualification-card img {
            max-width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            border-radius: 8px;
            margin-bottom: 15px;
        }

        .qualification-card h4 {
            margin: 0;
            font-size: 16px;
            font-weight: 600;
            color: #333;
            text-align: center;
        }

        .qualifications-swiper .swiper-button-next,
        .qualifications-swiper .swiper-button-prev {
            color: #00938C;
            background: rgba(255, 255, 255, 0.9);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
        }

        .qualifications-swiper .swiper-button-next:after,
        .qualifications-swiper .swiper-button-prev:after {
            font-size: 20px;
            font-weight: bold;
        }