

/* 购物车每项商品 */
.product {
    height: 84px;
    padding: 12px 10px;
}

.product .imgBox {
    width: 60px;
    height: 60px;
    overflow: hidden;
}

/* 商品图片 */
.product .imgBox img {
    width: 60px;
    height: 60px;
}

/*小计 */
.product .cot .qat::before {
    content: "x";
    margin-right: 3px;
}

/* 商品移除 */
.product .imgBox .del {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .2);
    opacity: 0;
    -webkit-transition: all .2s;
    transition: all .2s;
}

.product .imgBox .del .iconfont-ut {
    width: 50%;
    height: 50%;
    -webkit-transition: all .2s;
    transition: all .2s;
}

/* 删除图标区域内 */
.product .imgBox .del .iconfont-ut:hover {
    color: var(--error-color);
}

.product:hover .del {
    opacity: 1;
}