#carousel {
    position: relative;
    width: 1400px;
    height: 500px;
    margin: 0 auto
}

#carousel .swiper {
    padding-top: 20px;
}

#carousel .swiper-slide {
    width: 350px;
    background: transparent;
}

#carousel .swiper-slide img {
    display: block;
    width: 100%;
    height: 400px;
}

#carousel .swiper-slide p {
    line-height: 58px;
    padding-top: 0;
    text-align: center;
    color: #313332;
    font-size: 20px;
    margin: 0;
}

#carousel .swiper-button-prev {
    left: -60px;
    width: 45px;
    height: 45px;
    background: url(../images/wm_button_icon.png) no-repeat;
    background-position: 0 0;
    background-size: 100%;
}

#carousel .swiper-button-prev:hover {
    background-position: 0 -46px;
    background-size: 100%
}

#carousel .swiper-button-next {
    right: -60px;
    width: 45px;
    height: 45px;
    background: url(../images/wm_button_icon.png) no-repeat;
    background-position: 0 -93px;
    background-size: 100%;
}

#carousel .swiper-button-next:hover {
    background-position: 0 -139px;
    background-size: 100%
}

#carousel .swiper-button-prev::after,
#carousel .swiper-button-next::after {
    content: '';
}

/* 成功案例区域的鼠标悬停效果 */
.swiper-slide {
    transition: all 0.3s ease;
}

.swiper-slide:hover .case-links a {
    color: #2ecc71 !important;
    transition: color 0.3s ease;
}

/* 确保链接在正常状态下保持原有颜色 */
.case-links a {
    color: #333; /* 或者你原来使用的颜色 */
    text-decoration: none;
    transition: color 0.3s ease;
}

.case-links a:hover {
    color: #2ecc71 !important;
    text-decoration: none;
}