/* 空购物车样式 */
.empty-cart {
    overflow: hidden;
    /* background-color: #f5f5f5; */
}

.empty-cart-info {
    position: relative;
    margin: 75px 0;
    width: 100%;
    height: 400px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.06);
}

.empty-cart-msg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.empty-cart-msg p {
    font-size: 16px;
    color: #333;
}

.empty-cart-msg button {
    padding: 10px;
    color: #fff;
    border: none;
    outline: none;
    background-color: #f2b632;
}

/* 小屏幕 */
@media (max-width: 992px) {
    .cart-m {
        display: none;
    }

    .cart-s {
        display: block;
    }
}

@media (min-width: 992px) {
    .cart-m {
        display: block;
    }

    .cart-s {
        display: none;
    }
}

.shopping-cart .old-price {
    font-size: 16px;
    font-weight: 500;
    z-index: 9;
    color: #aaa;
}

.cart-head {
    border: 1px solid #eee;
    border-bottom: none;
}

/* 小屏幕 */
.cart-s {
    width: 100%;
}

.cart-s ul,
.cart-s li {
    list-style: none;
}

.cart-s li {
    border: 1px solid #eee;
    margin-bottom: 20px;
}

.cart-s-item {
    position: relative;
    padding: 20px 5px 15px;
    padding-left: 35%;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #efefef;
    /* justify-content: space-between; */
}
.cart-s-item:last-child {
    border-bottom: none;
}

.cart-s-item img {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    object-fit: cover;
    vertical-align: middle;
}

.cart-s-item .goods-price,
.cart-s-item .goods-total {
    font-size: 12px;
    margin: 0 5px 5px 0;
}

.cart-s-item .goods-total del {
    color: #aaa;
}
.cart-s-item .goods-info,
.cart-s-item .goods-quantity {
    padding: 0;
    margin-bottom: 5px;
    font-size: 12px;
    width: 100%;
}

.cart-s-item .goods-quantity {
    width: 100%;
}
.cart-s-item .goods-quantity .number-input {
    width: 140px;
}

.cart-s-item .goods-del {
    position: absolute;
    z-index: 100;
    right: 10px;
    top: 5px;
}

.cart-s-item .goods-info h6 {
    margin: 5px 0;
    font-size: 14px;
    line-height: 16px;
    color: #2d3a4b;
}

.cart-s-item .goods-info p {
    font-size: 12px;
    line-height: 14px;
    color: #767575;
}

.shopping-cart .cart-item {
    border: 1px solid #eee;
    margin-bottom: 15px;
}

.shopping-cart .activity-tips {
    display: block;
    padding: 10px 30px;
    color: #fd5a05;
    font-size: 12px;
    font-style: italic;
    text-align: left;
    font-weight: 500;
    border-bottom: 1px solid #eee;
}
.cart-s .activity-tips {
    display: block;
    margin: 0;
    color: #fd5a05;
    font-size: 12px;
    line-height: 30px;
    text-indent: 10px;
    font-style: italic;
    text-align: left;
    font-weight: 500;
    border-bottom: 1px solid #eee;
}

/* 免邮 */
.free-shipping {
    margin: 0 auto;
}
