.cart-dialog {
    overflow: hidden;
    position: fixed;
    width: 350px;
    height: 80%;
    right: 65px;
    top: 10%;
    z-index: 1001;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 6px 3px #ddd;
}

.cart-title {
    width: 100%;
    height: 40px;
    line-height: 40px;
    position: absolute;
    top: 0px;
    padding: 0 12px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-title-close {
    width: 20px;
    height: 20px;
}

.cart-title-text {
    font-size: 13px;
    color: #333;
    font-weight: bold;
}

.cart-list {
    width: 100%;
    margin: 13px 0;
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
    height: calc(100% - 90px);
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 8px 12px;
    border-bottom: solid thin #ddd;
}

.cart-item-image {
    width: 60px;
    height: 60px;
}

.cart-item-info {
    font-size: 13px;
    color: #555;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.cart-item-right {
    display: flex;
    flex-flow: column nowrap;
    margin-left: 10px;
    justify-content: space-between;
    flex: 1;
}

.cart-item-bottom{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
}

.cart-item-price {
    font-size: 12px;
    color: #333;
    font-weight: bold;
    font-family: Arial, Helvetica, Tahoma, Verdana, sans-serif, Lucida;
}

.cart-item-delete {
    font-size: 13px;
    color: #888;
}

.cart-bar {
    width: 100%;
    height: 40px;
    line-height: 40px;
    position: absolute;
    bottom: 0px;
    padding: 0 12px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.cart-bar-text {
    font-size: 13px;
    color: #333;
}

.cart-bar-text1 {
    font-size: 13px;
    color: #333;
    font-weight: bold;
    font-family: Arial, Helvetica, Tahoma, Verdana, sans-serif, Lucida;
}

.cart-bar-nav {
    padding: 0 10px;
    background-color: #e23f24;
    border-radius: 5px;
    text-align: center;
    font-size: 13px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}
