/* 確保商品容器有定位 */
.item .img,
.prd_crsl .img {
    position: relative;
}

/* 商品標籤樣式 */

.prd_tag {
    position: absolute;
    left: 10px;
    top: 0px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    color: white;
    text-align: center;
    letter-spacing: 1px;
    font-size: 15px;
    z-index: 10;
    pointer-events: none;
}

/* 紅色標籤 */
.prd_tag.onsale {
    background-color: #d55340;
}

/* 自訂圖片標籤 */
.prd_tag.transparent {
    background-color: transparent;
    width: auto;
    height: auto;
    line-height: normal;
}

.prd_tag.transparent img {
    display: block;
    max-width: 60px;
    max-height: 60px;
    width: auto;
    height: auto;
}

/* 多個標籤時的排列 */
.img .prd_tag:nth-child(2) {
    top: 60px;
}

.img .prd_tag:nth-child(3) {
    top: 110px;
}

/* 響應式設計 */
@media (max-width: 767px) {
    .prd_tag {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
    }
    .img .prd_tag:nth-child(2) {
        top: 50px;
    }
    .img .prd_tag:nth-child(3) {
        top: 90px;
    }
}
