

/*产品详细页*/
.showpic_box{
    margin: auto;
}

#pic-page{
    text-align: center;
    margin-top:10px;
}
#pic-page a{
    margin: 0 2px;
}
#pic-page a img
{
    width:40px;
    padding: 2px;
    border: solid #ccc 1px;
    margin-bottom:5px;
}
#pic-page a:hover img,
#pic-page a.active img {
    border: solid #5280DD 1px;
}





/*大屏幕样式*/
@media screen and (min-width: 769px) {
    

}

/*小屏幕样式*/
@media screen and (max-width: 768px) {
    
    #pic-page a img {
        width:35px;
    }
    
}

@media screen and (max-width: 767px) {
    
}

/*320px到768px*/
@media screen and (min-width:320px) and (max-width:768px) {
    
}

/* Product detail refresh
-------------------------------------------------------------- */
.showpic_flash {
    margin: 0;
}

.showpic_flash li {
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
}

.showpic_flash li img {
    width: 100%;
    display: block;
}

#pic-page {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

#pic-page a {
    margin: 0;
}

#pic-page a img {
    width: 64px;
    padding: 4px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

#pic-page a:hover img,
#pic-page a.active img {
    border-color: rgba(15, 111, 184, 0.35);
    box-shadow: 0 14px 28px rgba(15, 111, 184, 0.16);
    transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
    #pic-page {
        gap: 8px;
    }

    #pic-page a img {
        width: 52px;
        border-radius: 14px;
    }
}
