.shopping-car {
  margin-top: 15px;
}

.bar-gary {
  background: #e2e2e2;
  height: 1px;
  margin: 20px 0;
}

/* 购物车流程 */
.cart-step {
  width: 50%;
  display: flex;
}

.cart-step .cart-step-item {
  flex: 1;
}

.cart-step .cart-step-item p {
  text-align: center;
  font-size: 13px;
  color: #9c9c9c;
}

.cart-step .cart-step-item:first-child p {
  text-align: left;
  padding-left: 15%;
}

.cart-step .cart-step-item:last-child p {
  text-align: right;
  position: relative;
  left: -15%;
}

.cart-step .cart-step-item .cart-step-item-num {
  padding: 25px 0;
  position: relative;
}

.cart-step .cart-step-item .cart-step-item-num p.step-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 6px;
  transform: translateY(-50%);
  background: #dcdcdc;
}

.cart-step .cart-step-item .cart-step-item-num .step-num {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  color: #919191;
  width: 26px;
  height: 26px;
  background: #cacaca;
  text-align: center;
  line-height: 26px;
  border-radius: 50%;
  display: inline-block;

}

.cart-step .cart-step-item:first-child .cart-step-item-num .step-num {
  left: 35%;
}

.cart-step .cart-step-item:last-child .cart-step-item-num .step-num {
  left: 65%;
}

.cart-step .cart-step-item.active .cart-step-item-num p.step-line {
  background: #7abe55;

}

.cart-step .cart-step-item.active .cart-step-item-num .step-num {
  color: #fff;
  background: #7abe55;
}

.cart-step .cart-step-item.active .cart-step-item-num .step-num::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: #7abe5579;
  border-radius: 50%;
  z-index: 8;
}

.cart-step .cart-step-item.actived .cart-step-item-num p.step-line {
  background: #b7d9a4;
}

.cart-step .cart-step-item.actived .cart-step-item-num .step-num {
  color: #fff;
  background: #b7d9a4;
}

/* 购物车商品 */
.order-content {
  margin-bottom: 100px;
}

.order-content-top {
  display: flex;
  align-items: baseline;
  margin-bottom: 15px;
}

.order-content-top h1 {
  color: #333;
}

.order-content-top p {
  color: #666;
  margin-left: 10px;
}

.order-content .title-bar {
  height: 54px;
  background: #a99479;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
}

.order-content .title-bar p {
  font-size: 16px;
  color: #fff;
}

.order-content .title-bar .right-text {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.order-content .title-bar .right-text .right-text-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url('../../common/image/lk/add-icon.png') no-repeat center center;
  background-size: 90%;
  margin-right: 5px;
}

.order-content .title-bar .right-text .right-text-icon.back-icon {
  width: 17px;
  height: 15px;
  background: url('../../common/image/lk/back-icon.png') no-repeat center center;
  background-size: 90%;
}

.order-content .title-bar .right-text p {
  display: flex;
  justify-content: center;
  align-items: center;
}

.order-content .title-bar .right-text a {
  color: #fff;

}

.order-content .address-list {
  display: flex;
  align-items: center;
  padding: 20px 30px;
  flex-wrap: wrap;
  transition: all 0.3s ease-in-out;

}

.order-content .address-list .address-item {
  width: 32%;
  box-sizing: border-box;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 2%;
  margin-right: 2%;
  position: relative;
  cursor: pointer;
}

.order-content .address-list .address-item .choose-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36px;
  height: 36px;
  background: url('../../common/image/lk/choose-icon.png') no-repeat;
  background-size: 100%;
  display: none;
}

.order-content .address-list .address-item.active {
  border-color: #a99479;
}

.order-content .address-list .address-item.active .choose-icon {
  display: block;
}

.order-content .address-list .address-item:nth-child(3n) {
  margin-right: 0;
}

.order-content .address-list .address-item p {
  font-size: 14px;
  color: #333;
}

.order-content .address-list .address-item p.address-detail {
  font-size: 16px;
  margin: 12px 0;
  color: #333;
  font-weight: bold;
}

.order-content .more-address {
  margin-bottom: 20px;
  padding: 0 30px;
}

.order-content .more-address p {
  font-size: 15px;
  color: #333;
  display: flex;
  align-items: center;
  cursor: pointer;

}

.order-content .more-address p .down-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url('../../common/image/lk/down-icon.png') no-repeat center center;
  background-size: 80%;
  margin-left: 5px;
}

.order-content .goods-list {
  padding: 0 30px;
  margin-bottom: 15px;
}

.order-content .goods-list .shop-name {
  font-size: 16px;
  color: #333;
  font-weight: 800;
  padding: 20px 0;
}

.order-content .goods-list .goods-list-item {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
}

.order-content .goods-list .goods-list-item .goods-list-item-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-content .goods-list .goods-list-item .goods-list-item-left .goods-info {
  margin-left: 20px;

}

.order-content .goods-list .goods-list-item .goods-list-item-left .goods-info p {
  font-size: 15px;
  color: #333;
  margin-bottom: 20px;
}

.order-content .goods-list .goods-list-item .goods-list-item-left .goods-info span {
  border: 1px solid #ddd;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  color: #333;


}

.order-content .goods-list .goods-list-item .goods-list-item-left .goods-list-item-thumb {
  width: 95px;
  height: 95px;
  object-fit: cover;
}

.order-content .goods-list .goods-list-item .goods-list-item-right {
  padding-left: 15px;
}

.order-content .goods-list .goods-list-item .goods-list-item-right .goods-list-item-name {
  font-size: 16px;
  color: #333;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
}

.order-content .goods-list .goods-list-item .goods-list-item-right .goods-list-item-name .price {
  font-size: 16px;
  color: #b83123;
}

.order-content .goods-list .goods-list-item .goods-list-item-right .goods-list-item-name .quantity {
  font-size: 16px;
  color: #333;
  margin-left: 8px;
}

.order-content .goods-list .remark p {
  font-size: 14px;
  color: #333;
  padding-left: 10px;
  margin-bottom: 8px;
}

.order-content .goods-list .remark textarea {
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  width: 100%;
  height: 60px;
  padding: 10px;
}

.order-content .pay-way {
  padding: 20px 30px;
}

.order-content .pay-way p {
  font-size: 14px;
  color: #333;
  margin-bottom: 15px;
}

.order-content .pay-way p .pay-way-text {
  color: #999999;
}

.order-content .pay-info {
  padding: 20px 30px;

}

.order-content .pay-info p {
  font-size: 14px;
  color: #333;
  margin-bottom: 15px;
}

.order-content .pay-info p.invoice-text {
  display: flex;
  margin-bottom: 50px;
}

.order-content .pay-info p.invoice-text span {
  color: #999999;
  display: inline-block;
  width: 85px;
}

.order-content .pay-info p.amount,
.order-content .pay-info p.discount-txt,
.order-content .pay-info p.total {
  display: flex;
  justify-content: space-between;
}

.order-content .pay-info p.total {
  margin-top: 20px;
}

.order-content .pay-info p.total span.total-price {
  font-size: 22px;
  color: #b83123;
}

.order-content .order-confirm {
  display: flex;
  justify-content: end;
  cursor: pointer;
}

.order-content .order-confirm .order-confirm-btn {
  width: 155px;
  height: 55px;
  background: #a99479;
  font-size: 16px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 地址列表容器 */
/* 地址项样式 */
.address-item {
  padding: 15px;
  margin-bottom: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* 当前选中的地址样式 */
.address-item.active {
  border-color: #ff6700;
  background-color: #fff8f0;
}

/* 地址信息样式 */
.address-province,
.address-city,
.address-district,
.address-streat {
  margin-right: 5px;
}

.address-detail {
  margin: 8px 0;
  color: #666;
}

.address-name {
  margin-right: 15px;
}

.address-item.active .choose-icon {
  background-color: #ff6700;
  border-color: #ff6700;
}

.address-item.active .choose-icon::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 4px;
  border: 2px solid white;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  top: 6px;
  left: 5px;
}

/* 额外地址项默认隐藏 */
.extra-address {
  display: none;
}

/* 展开状态的箭头旋转 */
.more-address.expanded .down-icon {
  transform: rotate(180deg);
}