<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 鞈潛�頠� */
#shopping-cart .shopping-cart-contain {
  display: flex;
  flex-direction: column;
  padding: 20px;
  padding-top: 40px;
}
#shopping-cart .shopping-list {
  flex-grow: 1;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
}
#shopping-cart .shopping-list li {
  display: flex;
  margin-bottom: 30px;
}
#shopping-cart .shopping-list li .item-image {
  background-size: cover;
  width: 110px;
  height: 110px;
  min-width: 110px;
}
#shopping-cart .shopping-list li .item-info {
  padding-left: 15px;
  flex-grow: 1;
  width: 100px;
}
#shopping-cart .shopping-list li .item-info .name-price {
  display: flex; 
}
#shopping-cart .shopping-list li .item-info .name-price .name {
  font-weight: 600;
  /* overflow: hidden; */
  /* text-overflow:ellipsis; */
  /* white-space: nowrap; */
  padding-right: 25px;
  margin-bottom: 6px;
  font-size: 16px;
  flex-grow: 1;
}
#shopping-cart .shopping-list li .item-info .name-price .price {
  white-space: nowrap;
}
/* #shopping-cart .shopping-list li .item-info .size, */
#shopping-cart .shopping-list li .item-info .counts {
  color: #000;
  font-weight: 500;
  font-size: 14px;
}
#shopping-cart .shopping-list li .item-info .tips span {
  font-size: 14px;
  color: #e5021e;
}
#shopping-cart .shopping-list li .item-info .remove span {
  cursor: pointer;
  color: #e5021e;
}
#shopping-cart .shopping-list .no-products {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  font-size: 20px;
  font-weight: 600;
  white-space: nowrap;
  display: none;
}


#shopping-cart .shopping-info .subtotal {
  padding-bottom: 20px;
  padding-top: 20px;
  border-top: 1px solid #ccc;
  font-weight: 500;
  font-size: 18px;
}
#shopping-cart .shopping-info .btns div {
  border: 1px solid #222222;
  text-align: center;
  padding: 8px 0;
  cursor: pointer;
  color: #222222;
  transition: all .15s;
  -webkit-transition: all .15s;
  -moz-transition: all .15s;
  -ms-transition: all .15s;
  color: white;
  background-color: #222222;
}
#shopping-cart .shopping-info .btns div:hover {
  color: #222222;
  background-color: white;
}</pre></body></html>