.product-title a {
    text-decoration: none;
    color: #000; /* 默认颜色 */
}
.product-title a.hovered,
.product-title a:hover {
    color: #ffd700 !important; /* 悬停颜色，可换成你喜欢的 */
}

.product-row {
    display: flex;
    justify-content: center; /* 居中 */
    align-items: flex-end;   /* 底部对齐 */
    position: relative;
    width: 100%;
    flex-wrap: nowrap;        /* 禁止换行，强制一行显示 */
}

/* 每个图片容器 */
.product-image {
    flex: 1;       /* 每张图片占父容器三分之一 */
    position: relative;
    overflow: hidden;       /* 防止放大溢出 */
    margin-right: -80px;    /* 控制横向 overlap */
}

/* 最后一张不需要右边 margin */
.product-image:last-child {
    margin-right: 0;
}

/* 图片样式和悬停动画 */
.product-img {
    width: 100%;
    height: auto; 
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease; /* 平滑动画 */
}
.product-img.hovered,
.product-img:hover {
    transform: scale(1.1); /* 鼠标悬停放大 10% */
    z-index: 10;           /* 放大时置顶 */
}
