/* image-carousel styles */
.image-carousel {
    position: relative;
}

.image-carousel .carousel-item {
    text-align: center;
    padding: 20px;
}

.image-carousel .carousel-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.carousel-control-prev,
.carousel-control-next {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}

.product-info {
    background-color: #fff;
    padding: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(11, 56, 134, 0.6);
    border-radius: 0 0 8px 8px;
}

.product-info-content {
    font-size: 14px;
    color: #fff;
    line-height: 2.0;
}

.image-container {
    position: relative;
    width: 32px;
    height: 40px;
    margin: 0 auto 10px;
}
.image-container img {
    position: absolute;
    left: 0;
    opacity: 0; /* 默认隐藏图片 */
}
.image-container img.default {
    opacity: 1; /* 默认显示默认图片 */
}
.image-container:hover img {
    opacity: 0; /* 鼠标悬停时隐藏所有图片 */
}

.item:hover img.hover {
    opacity: 1;
}
