.shuxing-show-container {
    width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px 0;
    justify-content: center;
}
.shuxing-show-container .preview {
    display: inline-block;
    width: 150px;
    height: 150px;
    background-image: url('../images/shuxing-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 150px 150px;
    position: relative;
    margin: 0 17.5px; 
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.shuxing-show-container .preview img {
    width: 80px;
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    transition: all 0.4s ease;
    filter: brightness(1) contrast(1.1) saturate(1.2);
    z-index: 2;
}
.shuxing-show-container .preview:hover {
    transform: scale(1.03) rotate(5deg);
}
.shuxing-show-container .preview:hover img {
    transform: translate(-50%, -50%) scale(1.15);
    filter: brightness(1.05) contrast(1.1) saturate(1.15);
}
.shuxing-show-container .shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}
.shuxing-show-container .preview:hover + .shine,
.shuxing-show-container .preview:hover .shine {
    animation: shine-sweep 0.6s ease-out;
}
@keyframes shine-sweep {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}