.product {
    width: 190px;
    min-height: 268px;
    float: left;
    background: #fff;
    text-align: center;
    position: relative;
    transition: all .3s;
    z-index: 1;
    margin-top: 10px;
    .product-img {
        margin: 15px auto 0 auto;
        width: 124px;
        height: 120px;
        img {
            width: 100%;
            height: 100%;
        }
    }
    .p-close {
        visibility: hidden;
        position: absolute;
        top: 10px;
        right: 10px;
        color: #d8d8d8;
        font-family: simsun;
        font-size: 18px;
        cursor: pointer;
    }
    .p-checkbox {
        position: absolute;
        left: 10px;
        top: 10px;
    }
    &:hover {
        box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.06);
        transform: scale(1.1);
        z-index: 2;
        .p-close {
            visibility: visible;
        }
    }
    .p-tit {
        width: 150px;
        line-height: 24px;
        height: 48px;
        overflow: hidden;
        margin: 10px auto;
        color: #333;
    }
    .p-price {
        color: #333;
        .price {
            color: #EC2020;
            font-size: 14px;
            font-weight: bold;
        }
    }
    .p-jdprice {
        color: #999;
        text-decoration: line-through;
        .price {
            font-size: 14px;
            font-weight: bold;
        }
    }
}