/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Microsoft YaHei;
} */

/* 引入字体 */
/* @font-face {
  font-family: fontName;
  src: url();
} */

:root {
  --color: #82C025;
  --back: #F5F5F5;
  --border: #D5D8DE;
  --mask: rgba(0, 0, 0, .5);
}

html {
  scroll-behavior: smooth;
}

a {
  display: flex;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

input,
textarea,
button,
select {
  border: 0;
  resize: none;
  outline: 0 !important;
  background: transparent;
}

button {
  cursor: pointer;
}

img {
  width: 100%;
  height: auto;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*多行溢出*/
.line1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.line3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

/* hover-图片放大1.1 */
.scale-box {
  overflow: hidden;
}

.scale-box .scale-img {
  width: 100%;
  height: 100%;
  transition: all .3s linear;
  cursor: pointer;
  object-fit: cover;
}

.scale-box:hover .scale-img {
  transform: scale(1.1);
}

/* 常用盒子阴影 */
.shadow_box {
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1)
}

/* 水波纹效果 */
.btn-ripple {
  vertical-align: bottom;
}

.btn-ripple:not(:disabled):hover {
  opacity: 1;
  position: relative;
  overflow: hidden;
}

.btn-ripple:not(:disabled):hover::before {
  animation: ani_ripple 0.75s;
  z-index: 1;
  content: "";
  position: absolute;
  display: block;
  transition: all 0.6s;
  width: 100%;
  height: 0;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  padding-top: 100%;
  transform: translateX(-50%) translateY(-50%);
}

@keyframes ani_ripple {
  0% {
    background: rgba(0, 0, 0, 0.25);
    transform: translateX(-50%) translateY(-50%) scale(0);
  }

  to {
    background: transparent;
    transform: translateX(-50%) translateY(-50%) scale(1);
  }
}

/* .main {
  width: 95%;
  margin: 0 auto;
  max-width: 1400px;
  padding: 50px 0;
  position: relative;
} */

/* 购物车移动适配 */
@media only screen and (max-width: 786px) {
  .response-transition .main {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    /* 优化 iOS 滚动流畅度 */
    scrollbar-width: none;
    /* 隐藏滚动条*/
  }

  .cartList table {
    min-width: 1323px;
  }

  .response-transition .main .cartList {
    width: 1323px;
    display: inline-block;
    /* 或 flex 布局 */
  }

  #cartList .cart_proText {
    max-width: 155vw;
  }

  .listItem .cart_proImg {
    margin: 0 auto;
    float: none;
  }

  .listItem .cart_proText {
    width: 80vw;
  }
}

/* 购物车 */
.cartTitle {
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.cartTitle p {
  font-weight: 400;
  font-size: 24px;
  color: #333333;
}

.clearCart {
  display: flex;
  align-items: center;
}

.clearCart img {
  width: 16.88px;
  height: 16.88px;
  margin-right: 5px;
}

.cartList table {
  width: 100%;
  border: 0;
  border-collapse: collapse;
  text-align: left;
}

.cartList thead tr {
  height: 54px;
  background: var(--back);
}

.cartList thead tr th {
  font-weight: 400;
  font-size: 16px;
  color: #333333;
}

.cartList tbody tr {
  height: 154px;
  border-bottom: 1px solid #D6DDE2;
}

.cartList tr th:nth-child(1),
.cartList tr td:nth-child(1) {
  padding-left: 2.5%;
}

.cartList tbody tr td:nth-child(5),
.cartList tbody tr td:nth-child(6) button {
  font-weight: bold;
  font-size: 16px;
  color: rgba(230, 33, 41, 1);
}

.cartList tfoot tr {
  height: 93px;
  background: var(--back);
}

.cartList table label {
  width: fit-content;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 0;
}

.cartList input[type="checkbox"] {
  display: none;
}

.cartList table label>div {
  width: 20px;
  height: 20px;
  border: 1px solid #EAEBEE;
  border-radius: 2px;
  display: flex;
}

.cartList table label>span {
  margin-left: 20px;
}

.cartList table label img {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
}

.cartList table label.active img {
  filter: none;
}

.cart_proImg {
  max-width: 80px;
  max-height: 80px;
  width: 80px;
  height: 80px;
  margin-right: 32px;
  float: left;
}

.cart_proImg img {
  width: 100%;
  height: 100%;
}

.cart_proText {
  display: inline-block;
  max-width: 37.5vw;
  width: 350px;
}

.cart_proTit {
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  line-height: 28px;
  margin-bottom: 12px;
}

/* .cart_proDetail {
  display: flex;
  align-items: center;
} */

.cart_proDetail span:last-child {
  width: fit-content;
  padding: 5px 12px;
  background: rgba(187, 1, 0, 0.1);
  font-weight: 400;
  font-size: 14px;
  color: var(--color);
}

.cart_proDetail span:first-child {
  font-weight: 400;
  font-size: 14px;
  color: #999999;
  margin-right: 10px;
  background: transparent;
  padding: 0;
}

.cartNumber {
  display: flex;
  align-items: center;
  border: 1px solid #DCDFE6;
  border-radius: 2px;
  overflow: hidden;
  width: fit-content;
}

.cartList input[type="number"] {
  width: 46px;
  height: 26px;
  background: #FFFFFF;
  text-align: center;
  margin: 0 !important;
  -moz-appearance: textfield;
  -webkit-appearance: none;
}

/* 针对Chrome, Safari, Edge等浏览器 */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  /* 如果需要的话，可以添加一些额外的样式 */
}

.minus,
.add {
  width: 26px;
  height: 26px;
  background: #F5F7FA;
}

.cartList tfoot label>div {
  width: 16px;
  height: 16px;
  display: flex;
}

.cartList .piece,
.cartList .total {
  color: rgba(230, 33, 41, 1);
  font-size: 21px;
  padding: 0 5px;
}

.cartList .subOrder {
  width: 205px;
  height: 49px;
  background: var(--color);
  border-radius: 4px 4px 4px 4px;
  font-weight: 400;
  font-size: 17px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}



/* 地址弹窗 */
.addAlert {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: var(--mask);
  display: none;
  z-index: 10;
}

.addForm {
  width: 31%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #FFFFFF;
  box-shadow: 0px 3px 10px 1px rgba(0, 0, 0, 0.16);
  border-radius: 4px 4px 4px 4px;
}

.addFormHead {
  width: 100%;
  height: 60px;
  padding: 0 42px 0 24px;
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  color: #333333;
  background: #F7F7F7;
}

.addFormHead img {
  width: 26px;
  height: 26px;
  position: absolute;
  top: 17px;
  right: 16px;
  cursor: pointer;
}

.addFormBody {
  width: 100%;
  padding: 32px 48px 40px;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}

.addLabel {
  display: flex;
  align-items: center;
}

.addLabel>span {
  min-width: 90px;
  text-align: right;
  font-weight: 400;
  font-size: 14px;
  color: #999999;
  margin-right: 10px;
  flex-shrink: 0;
}

.addLabel input,
.addLabel label[for="address"] {
  width: 100%;
  height: 50px;
  background: #FFFFFF;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #EEEEEE;
  padding: 0 16px;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
}

.addLabel label[for="address"] {
  position: relative;
}

.addLabel label[for="address"] .addressSelsct {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 200px;
  background: #fff;
  /* display: flex; */
  border-radius: 8px;
  display: none;
}

.addLabel label[for="address"] .addressSelsct>div {
  display: flex;
  height: 100%;
}

.addressSelsct>div>div {
  flex: 1;
  height: 100%;
  overflow-y: auto;
  padding: 10px 0;
  display: none;
}

.addressSelsct>div>div:first-child {
  display: block;
}

.addressOption {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 400;
  font-size: 14px;
  color: #999999;
  line-height: 25px;
  padding: 0 10px;
}

.addressOption:hover {
  background: var(--color);
  color: #fff;
}

.addressOption img {
  width: 10px;
  transform: rotate(-90deg);
}

.addressOption:hover img {
  filter: brightness(0) invert(1);
}

.addLabel input[id="address"] {
  display: none;
}

.addLabel label {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.addLabel label[for="address"]>img {
  width: 14px;
  flex-shrink: 0;
}

.addLabel label[for="defaultAdd"] img {
  transform: rotate(180deg);
  filter: brightness(0) invert(.5) grayscale(0);
  margin-right: 15px;
  width: 41px;
}

.addLabel label[for="defaultAdd"].active img {
  transform: rotate(0deg);
  filter: none;
}

.addLabel label[for="defaultAdd"] p {
  font-weight: 400;
  font-size: 14px;
  color: #666666;
}

.addLabel input[type="checkbox"] {
  display: none;
}

.addLabel input::-webkit-input-placeholder,
.addLabel label[for="address"] p {
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  color: #D7D7D7;
}

.addLabel label[for="address"] p.active {
  font-weight: 400;
  font-size: 16px;
  color: #333333;
}

.addFormFoot {
  display: flex;
  justify-self: center;
  padding-bottom: 40px;
}

.addFormFoot button {
  width: 104px;
  height: 40px;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid var(--color);
  font-weight: 400;
  font-size: 14px;
  margin: 0 10px;
}

.addFormFoot button:first-child {
  background: var(--color);
  color: #FFFFFF;
}

.addFormFoot button:last-child {
  background: #fff;
  color: var(--color);
}

/* 下单页面 移动适配 --包括支付成功page */
@media only screen and (max-width: 786px) {
  .main>.orderAddress {
    padding: 28px 20px;
  }

  .addressList .addressItem {
    width: 80vw;
    padding: 14px 10px;
    min-height: 100px;

  }

  .orderAddress .noAddress,
  .discountBtn .addDiscount,
  .discountBtn .confirmDiscount {
    font-size: 12px;
  }

  .invoiceSelect .invoiceItem {
    padding: 0;
    margin-bottom: 12px;
    margin-right: 5px;
    font-size: 12px;
  }

  .invoiceForm .invoiceFormTit,
  .invoiceFormBody .invoiceUnit .item,
  .main .orderBtnBox,
  .paySuccessText .paySuccessBtn {
    display: block;
  }

  .invoiceFormBody .invoiceUnit input {
    width: 80vw;
  }

  .main .orderBtnBox>a,
  .paySuccessText .paySuccessBtn a {
    margin-bottom: 5px;
  }

  .main .paySuccess {
    padding: 17px 20px;
  }

  .paySuccess .paySuccessText {
    padding-top: 22px;
    padding-bottom: 0px;
  }

}

/* 下单页面 */
.placeOrderTit {
  width: 100%;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  font-weight: 400;
  font-size: 24px;
  color: #333333;
}

.placeOrderTit:first-child {
  padding-bottom: 23px;
}

.orderAddress {
  padding: 35px 30px;
}

.addressList {
  display: flex;
  flex-wrap: wrap;
  column-gap: 25px;
  row-gap: 25px;
  margin-bottom: 27px;
}

.addressItem {
  width: calc((100% - 50px) / 3);
  padding: 22px 15px;
  min-height: 130px;
  background: #FFFFFF;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid var(--border);
  cursor: pointer;
  position: relative;
}

.addressItem.active {
  border: 2px solid var(--color);
  position: relative;
}

.addressItem.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 41px;
  height: 40px;
  background-image: url(https://omo-oss-image.thefastimg.com/portal-saas/pg2024110120171055001/cms/image/c379a335-7ff9-4ab3-b07d-f7f1b6151e98.png);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: auto 100%;
}

.addFirst {
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  padding: 0 5px 15px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 13px;
}

.addLast {
  font-size: 16px;
  color: #999999;
  padding: 0 5px;
}

.noAddress {
  font-weight: 400;
  font-size: 16px;
  color: #545454;
  margin-bottom: 33px;
}

.addAddress_btn {
  /* width: 133px; */
  width: fit-content;
  height: 32px;
  padding: 0 22px;
  background: #FFFFFF;
  border-radius: 2px 2px 2px 2px;
  border: 1px solid var(--color);
  font-weight: 400;
  font-size: 16px;
  color: var(--color);
}

.orderInvoice {
  padding: 36px 30px 42px;
}

.orderDiscount {
  padding: 28px;
}

.orderDiscount .discountItem {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.orderDiscount .discountItem .error {
  width: 100%;
  display: none;
  font-family: Poppins, Poppins;
  font-weight: 400;
  font-size: 14px;
  color: #E62129;
  margin-top: 18px;
}

.orderDiscount .discountItem .error span {
  width: 20px;
  height: 20px;
  background: #E62129;
  border-radius: 50%;
  margin-right: .8rem;
  color: #fff;
  text-align: center;
  line-height: 20px;
  font-weight: bold;
  display: inline-block;
}

.orderDiscount .discountItem input {
  width: 513px;
  height: 40px;
  background: #FFFFFF;
  border-radius: 2px 2px 2px 2px;
  border: 1px solid #EEEFF2;
  margin-right: 19px;
  padding: 0 18px;
}

.orderDiscount .discountItem button {
  background: var(--color);
  width: 81px;
  height: 40px;
  background: #E62129;
  border-radius: 2px 2px 2px 2px;
  font-family: Poppins, Poppins;
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
}

.orderDiscount .discountItem button {
  display: none;
  pointer-events: none;
}

.discountBtn {
  display: flex;
}

.addDiscount {
  width: 190px;
  height: 40px;
  background: #CED0D1;
  border-radius: 2px 2px 2px 2px;
  color: #fff;
  margin-right: 10px;
}

.addDiscount.edit {
  background: var(--color);
}


.confirmDiscount {
  width: 81px;
  height: 40px;
  background: var(--color);
  border-radius: 2px 2px 2px 2px;
  color: #fff;
}

.invoiceSelect {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.invoiceItem {
  width: fit-content;
  min-width: 142px;
  height: 36px;
  padding: 0 10px;
  background: #FFFFFF;
  border-radius: 3px 3px 3px 3px;
  border: 1px solid #CCCCCC;
  margin-right: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 400;
  font-size: 16px;
  color: #5E5E5E;
}

.invoiceItem.active {
  color: var(--color);
  border: 1px solid var(--color);
  position: relative;
}

.invoiceItem.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 21px;
  height: 13px;
  background-image: url(https://omo-oss-image.thefastimg.com/portal-saas/pg2024110120171055001/cms/image/c379a335-7ff9-4ab3-b07d-f7f1b6151e98.png);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: auto 100%;
}

.invoiceFormTit {
  display: flex;
  margin-bottom: 29px;
}

.invoiceFormTit span {
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  min-width: 140px;
  text-align: right;
  margin-right: 17px;
}

.invoiceFormTit span b {
  color: var(--color);
}

.invoiceRadio {
  display: flex;
}

input[type="radio"] {
  display: none;
}

label[for="unit"],
label[for="person"] {
  position: relative;
  padding-left: 29px;
  cursor: pointer;
  margin-right: 30px;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
}

label[for="unit"]::before,
label[for="person"]::before {
  content: '';
  width: 21px;
  height: 21px;
  border: 2px solid #C2C2C2;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
}

label[for="unit"].active::after,
label[for="person"].active::after {
  content: '';
  width: 11px;
  height: 11px;
  background: var(--color);
  border-radius: 50%;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}

label[for="unit"].active::before,
label[for="person"].active::before {
  content: '';
  width: 21px;
  height: 21px;
  border: 2px solid var(--color);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
}

label[for="unit"].disabled::after,
label[for="person"].disabled::after {
  background: #919191;
}

label[for="unit"].disabled::before,
label[for="person"].disabled::before {
  border: 2px solid #919191;
}

.invoiceFormBody>div {
  display: none;
}

.invoiceFormBody>div.active {
  display: block;
}

.invoiceFormBody .item {
  display: flex;
  margin-top: 15px;
  align-items: center;
}

.invoiceFormBody span {
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  min-width: 284px;
  text-align: right;
  margin-right: 17px;
}

.invoiceFormBody span b {
  color: var(--color);
}

.invoiceFormBody input {
  width: 440px;
  height: 40px;
  background: #FFFFFF;
  border-radius: 2px 2px 2px 2px;
  border: 1px solid #EEEFF2;
  padding: 0 20px;
}

.invoiceFormBody input::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 14px;
  color: #BFBFBF;
}

.payBox {
  padding: 40px 30px 30px;
}

.payHead {
  display: flex;
  margin-bottom: 37px;
}

.payHead span {
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  margin-right: 22px;
}

.paySelsct {
  display: flex;
}

label[for="online"],
label[for="offline"],
label[for="cash"] {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  margin-right: 58px;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
}

label[for="online"] {
  display: flex;
  height: 32px;
  align-items: center;
  column-gap: 4px;
}

label[for="online"] img {
  width: auto;
  height: 100%;
}

label[for="online"]::before,
label[for="offline"]::before,
label[for="cash"]::before {
  content: '';
  width: 21px;
  height: 21px;
  border: 2px solid #C2C2C2;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
}

label[for="online"].active::after,
label[for="offline"].active::after,
label[for="cash"].active::after {
  content: '';
  width: 11px;
  height: 11px;
  background: var(--color);
  border-radius: 50%;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}

label[for="online"].active::before,
label[for="offline"].active::before,
label[for="cash"].active::before {
  content: '';
  width: 21px;
  height: 21px;
  border: 2px solid var(--color);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
}

.payBody>div {
  display: none;
  padding-left: 103px;
}

.payBody>div.active {
  display: block;
}

.payOnlineItem {
  display: inline-block;
}

label[for="WeChat"],
label[for="Alipay"],
label[for="Cloud"] {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 36px;
  cursor: pointer;
  margin-right: 56px;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
}

label[for="WeChat"] img,
label[for="Alipay"] img,
label[for="Cloud"] img {
  width: 42px;
  height: 39px;
  object-fit: contain;
  margin-right: 10px;
}

label[for="WeChat"]::before,
label[for="Alipay"]::before,
label[for="Cloud"]::before {
  content: '';
  width: 21px;
  height: 21px;
  border: 2px solid #C2C2C2;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
}

label[for="WeChat"].active::after,
label[for="Alipay"].active::after,
label[for="Cloud"].active::after {
  content: '';
  width: 11px;
  height: 11px;
  background: var(--color);
  border-radius: 50%;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}

label[for="WeChat"].active::before,
label[for="Alipay"].active::before,
label[for="Cloud"].active::before {
  content: '';
  width: 21px;
  height: 21px;
  border: 2px solid var(--color);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
}

.payOffline {
  font-weight: 400;
  font-size: 16px;
  color: #666666;
}

.payOfflineItem {
  display: flex;
}

.payOffline span:first-child {
  padding-right: l7px;
  min-width: 112px;
}

.orederPro table {
  width: 100%;
  margin-top: 28px;
  margin-bottom: 39px;
  border-collapse: collapse;
}

.orederPro thead tr {
  height: 54px;
  background: var(--back);
}

.orederPro thead th {
  text-align: left;
}

.orederPro thead th,
.orederPro tbody td {
  padding-left: 30px !important;
}

.orederPro tbody tr {
  border-bottom: 1px solid #D6DDE2;
}

.orederPro tbody tr td {
  padding: 23px 0 36px;
}

.orederPro tbody tr td:nth-child(4) {
  font-weight: bold;
  font-size: 16px;
  color: var(--color);
}

.pointsBox {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  margin-top: 39px;
  margin-bottom: 33px;
  padding: 0 30px;
}

.pointsBox input {
  width: 120px;
  height: 38px;
  background: #FFFFFF;
  border-radius: 2px 2px 2px 2px;
  border: 1px solid #E4E4E4;
  padding-left: 16px;
}

.payDetails {
  width: 100%;
  background: #FAFAFA;
  padding: 24px 30px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 38px;
}

.payDetails>div {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.payDetails>div:last-child {
  margin-bottom: 0;
  margin-top: 34px;
}

.payDetails span:last-child {
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  min-width: 97px;
  text-align: right;
}

.payDetails span:first-child {
  font-weight: 400;
  font-size: 16px;
  color: #666666;
}

.payDetails span:last-child.total {
  font-weight: bold;
  font-size: 20px;
  color: #BB0100;
}

.orderBtnBox {
  display: flex;
  justify-content: flex-end;
}

.orderBtnBox a {
  min-width: 205px;
  height: 46px;
  background: #FFFFFF;
  border: 1px solid var(--color);
  margin-left: 26px;
  font-weight: 400;
  font-size: 16px;
  color: var(--color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.orderBtnBox a:last-child {
  background: var(--color);
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
}

/* 支付成功 */
.paySuccess {
  padding: 49px 30px;
  background: #FFFFFF;
}

.paySuccessTit .placeOrderTit {
  padding-bottom: 16px !important;
}

.paySuccessText {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 125px;
  padding-bottom: 173px;
}

.paySuccessText img {
  width: 80px;
  margin-bottom: 24px;
}

.paySuccessTxt {
  font-weight: 400;
  font-size: 24px;
  color: #000000;
  margin-bottom: 16px;
}

.on p.paySuccessOrderId {
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  margin-bottom: 33px;
}

.paySuccessBtn {
  display: flex;
  align-items: center;
  margin-top: 30px;
}

.paySuccessBtn a {
  min-width: 148px;
  height: 40px;
  background: #FFFFFF;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid var(--color);
  font-weight: 400;
  font-size: 14px;
  color: var(--color);
  margin: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.paySuccessBtn a:first-child {
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  background: var(--color);
}


/* 会员中心 */
.myBox {
  width: 100%;
  display: flex;
  align-items: flex-start;
}

.myBoxLeft {
  max-width: 220px;
  width: 220px;
  flex-shrink: 0;
  margin-right: 30px;
  position: sticky;
  top: 0;
}

/* @media only screen and (min-width: 768px){

}  */

.myBoxRight {
  width: calc(100% - 220px);
  background-color: #fff;
  padding: 22px;
}

.myBoxRight1 {
  margin-bottom: 22px;
}

.myBoxRight2 {
  margin-bottom: 29px;
}

.myBoxComTit {
  width: 100%;
  height: 68px;
  background: #FFFFFF;
  padding: 0 26px;
  font-weight: bold;
  font-size: 16px;
  color: #333333;
  line-height: 59px;
  position: relative;
}

.myBoxComTit.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.myBoxComTit::before {
  content: '';
  width: calc(100% - 52px);
  padding: 0 26px;
  height: 1px;
  border-bottom: 1px solid #E5E5E5;
  position: absolute;
  left: 26px;
  bottom: 0;
}

.myBoxComTit button {
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.myBoxComTit button span:first-child {
  width: 20px;
  height: 20px;
  background: var(--color);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 18px;
  margin-right: 8px;
}

.myBoxComTit button span:last-child {
  font-weight: 400;
  font-size: 14px;
  color: var(--color);
}

/* 个人中心左侧菜单/右侧内容-移动端 */
@media only screen and (max-width: 768px) {

  /* 适配结构不变形 */
  .myBox .myBoxRight {
    margin-top: 15vh;
    /* min-width: 1046px; */
  }

  .listItem .cart_proText {
    display: inline-block;
    max-width: 367px;
  }

  /*--重构移动端样式--*/
  .main .myBox {
    display: block;
    padding-top: 1px;
  }

  .my_menu .Mobile_myMenu {
    display: block;
  }

  .my_menu .myMenu {
    display: none;
    position: relative;
  }

  .Mobile_myMenuItem {
    position: absolute;
  }

  .Mobile_myMenuItemTit {
    width: 100vw;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    padding: 5px 0 5px 20px;
    background-color: #E62129;
  }

  .Mobile_scroll {
    display: flex;
    background-color: #ffffff;
  }

  .Mobile_myMenuItemList {
    padding: 10px;
  }

  .Mobile_myMenuItemList>a {
    color: #545454;
    font-weight: 400;
    font-size: 14px;
  }

  .Mobile_myMenuItemList.active a,
  .Mobile_myMenuItemList:hover a {
    padding: 0 8px;
    background-color: #F2F2F2;
    color: #E62129;
  }

  .myBoxRight {
    margin-top: 79px;
    box-sizing: border-box;
    min-width: 100vw;
  }

  .myBoxRight .myBoxComTit form {
    width: 190px;
    margin-left: 5px;
  }

  .myBoxRight .myBoxComTit form>input {
    width: 180px;
    text-overflow: ellipsis;
  }

  .myBoxRight .myBoxComTit form>button {
    margin-right: 5px;
  }

  .recentOrders .recentOrdersTit {
    padding: 0;
    flex-wrap: wrap;
  }

  .recentOrders .recentOrdersTit>button {
    width: 100vw;
    margin-left: 0px;
  }

  .recentOrders .recentOrdersList .listTit {
    height: auto;
    padding: 0 10px 0 10px;
  }

  .recentOrdersList .listTit,
  .recentOrdersList .listTit .listTitL {
    flex-wrap: wrap;
    font-size: 12px;
    width: 150px;
    column-gap: 0px;
  }

  .listTitL p {
    margin: 0;
  }

  .recentOrders .recentOrdersList tbody td:first-child {
    padding-left: 10px;
  }

  .recentOrders .cart_proTit {
    font-size: 14px;
  }

  .recentOrders .cart_proDetail span:first-child {
    font-size: 12px;
  }

  #orderno {
    display: block;
  }

  .recentOrdersList .listItem tfoot td:last-child {
    padding-right: 0px;
  }

  .recentOrdersList .listItem .btn-ripple {
    width: 26.4vw;
    height: 25px;
    margin: 2px 1px;
    font-size: 11px;
  }

  .myBoxRight .myBoxComTit {
    padding: 0 24px;
  }

  .myBoxRight .flex .orderButton {
    top: 50%;
    right: 25px;
  }

  .myBoxRight .myBoxComTit button {
    top: 81%;
    right: 0px;
  }

  .addListItem .addListLast button {
    margin-left: 0px;
  }

  .recentOrders .recentOrdersTit.allOredrTit {
    padding-left: 26px;
    padding-right: 26px;
  }

  .listItem tr {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }

  .listItem td {
    width: auto;
  }

  .recentOrdersList .listItem tbody td {
    padding: 10px 0 10px 10px;
  }

  .recentOrdersList .listItem tfoot td:first-child {
    padding-left: 10px;
  }

  .recentOrdersList .listItem tfoot tr {
    height: auto;
    padding: 5px 0;
  }
}

.Mobile_myMenu {
  display: none;
}

/* 个人中心左侧菜单 */
.myMenu {
  width: 100%;
  background: #FFFFFF;
  /* padding: 13px 0 17px; */
  padding-bottom: 21px;
}

.myMenuItemTit {
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  /* margin-bottom: 24px; */
  padding: 16px 0 16px 24px;
  background-color: var(--color);
}

.myMenuItemList {
  padding: 0 16px;
  margin-top: 18px;
}

.myMenuItemList.active a,
.myMenuItemList:hover a {
  background-color: #F2F2F2;
  color: var(--color);
  font-weight: 600;
}

.myMenuItemList a {
  font-weight: 400;
  font-size: 14px;
  color: #545454;
  /* margin-bottom: 24px; */
  padding: 10px 0 10px 10px
}

/* 会员中心头部 */
.myhead {
  width: 100%;
  display: flex;
  align-items: center;
}

.myheadLeft {
  width: 268px;
  height: 220px;
  background: var(--color);
  border-radius: 8px 8px 8px 8px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 28px;
  flex-shrink: 0;
  overflow: hidden;
}

.headIcon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 8px;
}

.headIcon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.userName {
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
}

.userBottom {
  position: absolute;
  width: 100%;
  height: 50px;
  bottom: 0;
  left: 0;
  display: flex;
  background: #fff;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px 0 24px;
}

.userBottom a {
  font-weight: 400;
  font-size: 14px;
  color: var(--color);
}

.myheadRight {
  width: 100%;
  height: 194px;
  display: flex;
  padding: 48px 0;
  background: #fff;
}

.myheadItem {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid var(--border);
}

.myheadItem:last-child {
  border-right: 0;
}

.myheadNum {
  font-weight: 400;
  font-size: 32px;
  color: var(--color);
  margin-bottom: 24px;
}

.myheadItem a {
  font-weight: 400;
  font-size: 16px;
  color: #333333;
}

/* 最近订单 */
.recentOrders {
  width: 100%;
  background: #fff;
  padding-bottom: 40px;
}

.recentOrdersTit {
  display: flex;

  align-items: center;
  /* justify-content: space-between; */
  height: 54px;
  border-bottom: 1px solid #DEDEDE;
  font-weight: 400;
  font-size: 18px;
  color: #333333;
  padding: 0 9px 0 26px;
}

.recentOrdersTit.allOredrTit {
  border: 0;
  padding-top: 24px;
  height: auto;
}

.recentOrdersTit a {
  display: flex;
  font-weight: 400;
  font-size: 14px;
  color: var(--color);
}

.recentOrdersTit a img {
  margin-left: 11px;
  width: 15px;
  height: 16px;
  object-fit: contain;
}

.allOredrTit>button {
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  padding-bottom: 17px;
  margin-left: 40px;
}

.allOredrTit>button:first-child {
  margin-left: 0;
}

.allOredrTit button span {
  color: #EA3200;
}

.allOredrTit button.active {
  color: var(--color);
  border-bottom: 3px solid var(--color);
}

.myBoxComTit form {
  width: 375px;
  height: 40px;
  background: #FFFFFF;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #D6DDE2;
  display: flex;
  align-items: center;
  margin-left: 90px;
}

.myBoxComTit form input {
  width: 100%;
  padding: 0 16px;
  font-size: 14px;
}

.myBoxComTit form input::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 14px;
  color: #CCCCCC;
}

.myBoxComTit form button {
  width: 24px;
  height: 24px;
  margin-right: 14px;
  flex-shrink: 0;
}

.myBoxComTit form button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.noOrderBox {
  display: none;
}

.noOrder {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 46px 0;
  /* display: none; */
}

.noOrder img {
  width: 198px;
  height: auto;
  margin-bottom: 14px;
}

.noOrder p {
  font-weight: 400;
  font-size: 14px;
  color: #999999;
  margin-bottom: 23px;
}

.noOrder a {
  font-weight: 400;
  font-size: 14px;
  color: var(--color);
}

.recentOrdersList {
  padding: 30px 26px;
  width: 100%;
}

.listItem {
  margin-bottom: 20px;
  border: 1px solid #E5E5E5;
}


.listItem:last-child {
  margin-bottom: 0;
}

.recentOrdersList .listTit {
  width: 100%;
  height: 46px;
  background: var(--back);
  border-bottom: 1px solid #E5E5E5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 36px 0 26px;
}

.recentOrdersList .listTitL {
  display: flex;
  column-gap: 25px;
  font-weight: bold;
  font-size: 14px;
  color: #333333;
}

.recentOrdersList .listTitR {
  font-weight: 400;
  font-size: 14px;
  color: #EA3200;
}

.recentOrdersList table {
  width: 100%;
  border-collapse: collapse;
}

.recentOrdersList tbody tr {
  border-bottom: 1px solid #E5E5E5;
}

.recentOrdersList tbody td {
  padding: 26px 0 33px 0;
}

.recentOrdersList tbody td:first-child {
  padding-left: 26px;
}

.recentOrdersList tbody td:nth-child(4) {
  font-weight: bold;
  font-size: 16px;
  color: #333;
}

.recentOrdersList tfoot tr {
  height: 70px;
}

.recentOrdersList tfoot td {
  font-weight: 400;
  font-size: 14px;
  color: #333333;
}

.recentOrdersList tfoot td:first-child {
  padding-left: 26px;
}

.recentOrdersList tfoot td:last-child {
  padding-right: 23px;
}

.recentOrdersList tfoot td b {
  color: #E62129;
}

.recentOrdersList tfoot td a {
  float: right;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 125px;
  height: 33px;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid var(--color);
  margin-left: 11px;
  color: var(--color);
}

.recentOrdersList tfoot td a:first-child {
  background: var(--color);
  color: #FFFFFF;
}

/* 分页 */
#demo-laypage-theme {
  text-align: center;
  width: 100% !important;
  flex-shrink: 0;
}

.layui-laypage {
  margin: 0;
}

.layui-laypage a,
.layui-laypage span {
  margin: 0 5px;
  margin-bottom: 0;
  min-width: 34px;
  height: 34px;
  padding: 0;
  box-sizing: border-box;
  border-radius: 4px 4px 4px 4px;
}

.layui-laypage>a:last-child,
.layui-laypage>a:last-child em,
.layui-laypage>a:first-child,
.layui-laypage>a:first-child em,
.layui-laypage-first,
.layui-laypage-last {
  padding: 0 15px !important;
}

/* 我们向你推荐 */
.recommend {
  width: 100%;
  border-radius: 4px 4px 4px 4px;
  background: #fff;
}

.recommendTit {
  width: 100%;
  height: 60px;
  border-bottom: 1px solid #DEDEDE;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 400;
  font-size: 18px;
  color: #333333;
  padding: 0 34px 0 27px;
}

.recommendTit button {
  display: flex;
  align-items: center;
}

.recommendTit button img {
  width: 14px;
  margin-right: 7px;
}

.recommendList {
  display: flex;
  flex-wrap: wrap;
  column-gap: 25px;
  row-gap: 20px;
  padding: 29px 23px 38px;
}

.recommendItem {
  flex: 0 0 calc((100% - 100px) / 5);
  display: flex;
  flex-direction: column;
}

.recommendImg {
  width: 100%;
  height: 200px;
  margin-bottom: 12px;
  overflow: hidden;
}

.recommendImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recommendItemTit {
  font-weight: bold;
  font-size: 16px;
  color: #333333;
  text-align: center;
  padding: 0 10px;
}

/* 订单详情 */
.oredrdetails {
  width: 100%;
  padding: 67px 30px 60px;
  background: #fff;
}

.progress {
  display: flex;
  margin-bottom: 47px;
}

.progressItem {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.progressItem .number {
  width: 46px;
  height: 46px;
  background: #F9F9F9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-weight: 400;
  font-size: 21px;
  color: #999999;
  position: relative;
  z-index: 1;
}

.progressItem::after,
.progressItem::before {
  content: '';
  width: 50%;
  height: 2px;
  background: var(--back);
  position: absolute;
  top: 22px;
}

.progressItem::before {
  left: 0;
}

.progressItem::after {
  right: 0;
}

.progressItem:last-child::after,
.progressItem:first-child:before {
  display: none;
}

.progressItem.active::after,
.progressItem.active::before {
  background: var(--color);
}

.progressItem.active .number {
  background: var(--color);
  color: #FFFFFF;
}

.progressItem .progressTit {
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  margin-bottom: 10px;
}

.progressItem .time {
  font-weight: 400;
  font-size: 12px;
  color: #808080;
}

.oredrInfo {}

.oredrInfoTit {
  width: 100%;
  height: 46px;
  background: var(--back);
  border-radius: 0px 0px 0px 0px;
  border: 1px solid #E5E5E5;
  font-weight: bold;
  font-size: 14px;
  color: #333333;
  padding: 0 26px;
  display: flex;
  align-items: center;
}

.oredrInfoTxt {
  padding: 25px 25px 30px;
}

.oredrInfoTxt {
  display: flex;
}

.oredrUserInfo,
.oredrPayDetails {
  flex: 1;
}

.oredrInfoTxt .title {
  font-weight: 400;
  font-size: 14px;
  color: #999999;
  margin-bottom: 20px;
}

.oredrInfoTxt .item {
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  display: flex;
  column-gap: 14px;
  line-height: 32px;
}

.oredrInfoTxt .item span:first-child {
  min-width: 70px;
}

.oredrInfoTxt .item span:last-child {
  max-width: 336px;
}

.oredrInfoTxt .item span img {
  width: 99px;
  height: 99px;
  display: block;
  margin-top: 10px;
}

.oredrdetails .recentOrdersList {
  padding: 0;
}

.oredrdetailsBtn {
  display: flex;
  justify-content: flex-end;
}

.oredrdetailsBtn button {
  width: 125px;
  height: 34px;
  border-radius: 4px 4px 4px 4px;
  font-weight: 400;
  font-size: 14px;
  color: var(--color);
  border: 1px solid var(--color);
  margin-left: 11px;
}

.oredrdetailsBtn button:last-child {
  background: var(--color);
  color: #FFFFFF;
}

/* 支付凭证弹窗 */
.uploadAlert {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background: var(--mask);
  display: none;
}

.uploadAlertBox {
  width: 41.9%;
  background: #FFFFFF;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #E6E6E6;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 26px 36px 34px;
}

.uploadTit {
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  margin-bottom: 30px;
}

.uploadAlertBody {
  width: 100%;
  background: #FCEFEF;
  border: 1px solid #F2D0D0;
  padding: 15px 24px;
  font-weight: bold;
  font-size: 14px;
  color: #333333;
  margin-bottom: 27px;
}

.uploadAlertBody .tit {
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  margin-bottom: 20px;
}

.uploadAlertBody span {
  color: var(--color);
  line-height: 32px;
}

label[for="upload"] {
  display: flex;
  width: 90px;
  margin-bottom: 32px;
  cursor: pointer;
}

input[type="file"] {
  display: none;
}

.uploadAlertBox .close {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 32px;
  right: 27px;
  cursor: pointer;
}

.uploadAlertBtn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.uploadAlertBtn button {
  width: 109px;
  height: 34px;
  background: #FFFFFF;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid var(--color);
  font-weight: 400;
  font-size: 14px;
  color: var(--color);
  margin: 0 5px;
}

.uploadAlertBtn button:first-child {
  background: var(--color);
  color: #ffffff;
}

/* 我的积分 */
.myPoints {
  padding: 25px 30px 50px;
  background: #fff;
}

.pointsTitle {
  width: 100%;
  height: 148px;
  background: linear-gradient(312deg, #504545 0%, #313131 100%);
  border-radius: 12px 12px 12px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 27px 40px 36px 34px;
  margin-bottom: 25px;
}

.pointsTitle .left p:first-child {
  font-weight: bold;
  font-size: 16px;
  color: #FFFFFF;
}

.pointsTitle .left p:last-child {
  font-weight: bold;
  font-size: 43px;
  color: #FFFFFF;
}

.pointsTitle .right {
  width: 106px;
  height: 35px;
  background: #FFFFFF;
  border-radius: 4px 4px 4px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 14px;
  color: #666666;
}

.myPointsTab {
  display: flex;
  column-gap: 60px;
  margin-bottom: 25px;
}

.myPointsTab button {
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  padding-bottom: 17px;
}

.myPointsTab button.active {
  font-weight: bold;
  font-size: 14px;
  color: var(--color);
  border-bottom: 3px solid var(--color);
}

.myPointsList table {
  width: 100%;
  margin-bottom: 30px;
}

.myPointsList thead tr {
  height: 50px;
  background: var(--back);
  border: 1px solid #E5E5E5;
}

.myPointsList thead th {
  text-align: left;
}

.myPointsList tbody tr {
  border: 1px solid #E5E5E5;
  border-top: 0;
}

.myPointsList tbody tr td {
  padding: 20px 0;
}

.myPointsList thead th:first-child,
.myPointsList tbody td:first-child {
  padding-left: 26px;
}

.myPointsList tbody tr td:nth-child(2) span {
  font-weight: bold;
  font-size: 19px;
}

.myPointsList tbody tr td:nth-child(2) span.add {
  color: #FC5A00;
}

.myPointsList tbody tr td:nth-child(2) span.minus {
  color: #52C41A;
}

/* 积分商城 */
.pointsMallhead {
  width: 100%;
  height: 28.3vw;
  background-image: url('../img/pointsMall.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.mallBox {
  width: 95%;
  margin: -8vw auto;
  max-width: 1400px;
  padding: 28px 30px 56px;
  background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, .1));
  border-radius: 20px 20px 20px 20px;
}

.mallBoxTit {
  width: 100%;
  height: 104px;
  background: #FEE7D1;
  border-radius: 8px 8px 8px 8px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 17px 41px 17px 36px;
  margin-bottom: 37px;
}

.mallBoxTit .left {
  height: 100%;
}

.mallBoxTit .left p:first-child {
  font-weight: bold;
  font-size: 36px;
  color: var(--color);
}

.mallBoxTit .left p:last-child {
  font-weight: 400;
  font-size: 16px;
  color: #3D4248;
}

.mallBoxTit .right {
  font-weight: 400;
  font-size: 16px;
  color: #3D4248;
}

.mallList {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 35px;
}

.mallItem {
  width: calc((100% - 120px) / 5);
  height: 16.1vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.08);
  border-radius: 8px 8px 8px 8px;
  padding: 0 8px;
}

.mallItemImg {
  width: 9.4vw;
  height: 9.4vw;
}

.mallItemTit {
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  color: #3D4248;
  margin: 11px 0 19px;
  padding-left: 5px;
}

.mallList button {
  width: 100%;
  height: 2.2vw;
  background: #FFF1EB;
  border-radius: 21px 21px 21px 21px;
  border: 1px solid #FF8988;
  font-weight: 400;
  font-size: 14px;
  color: var(--color);
}

/* 地址管理 */
.addList {
  padding: 30px;
  background: #fff;
}

.addListItem {
  width: 100%;
  padding: 24px;
  border: 1px solid #E5E5E5;
  margin-bottom: 24px;
}

.addListline {
  display: flex;
}

.addListline span:first-child {
  min-width: 70px;
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 32px;
}

.addListline span:last-child {
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  line-height: 32px;
}

.addListLast {
  width: 100%;
  height: 30px;
  margin-top: 20px;
  border-top: 1px solid #E5E5E5;
  padding-top: 20px;
  display: flex;
  justify-content: flex-end;
  position: relative;
  box-sizing: content-box;
}

.addListLast button {
  font-weight: 400;
  font-size: 14px;
  color: var(--color);
  margin-left: 40px;
}

.addListLast button.default {
  width: 133px;
  height: 30px;
  background: rgb(225, 3, 22, .68);
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  margin: 0;
  position: absolute;
  left: 0;
  top: 20px;
}

/* 我的发票 */
.recentOrdersList tfoot td a:first-child.invoiceBut {
  background: transparent;
  color: #676767;
  border: 1px solid #CECECE;
}

/* 发票详情 */
.invoiceDetails {
  padding: 25px;
  background: #fff;
}

.proInfo,
.invoiceInfo {
  border: 1px solid #E5E5E5;
}

.proInfo {
  margin-bottom: 25px;
}

.invoiceComTit {
  width: 100%;
  height: 48px;
  background: #F9F9F9;
  border-radius: 0px 0px 0px 0px;
  border: 1px solid #E5E5E5;
  line-height: 48px;
  padding: 0 20px;
}

.proInfoBox {
  padding: 25px 30px;

}

.proInfoBox table {
  width: 100%;
  margin-bottom: 30px;
}

.proInfoBox table td:nth-child(4) {
  font-weight: bold;
  font-size: 16px;
  color: var(--color);
}

.invoiceInfoItem {
  display: flex;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  margin-bottom: 17px;
}

.invoiceInfoBox {
  padding: 25px 46px;
}

.proInfoDown .invoiceInfoItem span:first-child {
  min-width: 70px;
  margin-right: 10px;
}

.invoiceInfoDown .invoiceInfoItem span:first-child {
  min-width: 98px;
  margin-right: 17px;
}


.card-item {
  width: 100%;
  height: 50px;
  background-color: #fff;
  border: 1px solid #E1E1E1;
  position: relative;
  padding: 0 15px;
  border-radius: 4px;
}

.card-item.error {
  background: #fef0f0;
}

.card-tip {
  color: #f56c6c;
  font-size: 80%;
  margin-top: .25rem;
  display: none;
}

.card-item label {
  position: absolute;
  top: 3px;
  left: 15px;
  font-size: 12px;
  color: #333;

  transition: all 0.6s;
}

.card-item input {
  width: 90%;
  outline: none;
  font-size: 14px;
  color: #333;
  border: 0;
  height: 20px;
  line-height: 20px;
  padding-top: 20px;
  box-sizing: content-box;
  appearance: none;
  position: relative;
  z-index: 10;
  background: none;
  transition: all 0.6s;
  padding-left: 0;
}

.card-item input:placeholder-shown+label {
  opacity: 0;
  transform: translateY(10px);
}

.card-item input:placeholder-shown {
  padding-top: 15px
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

/* 针对 WebKit 浏览器（Chrome, Safari, Edge） */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.card-flex {
  display: flex;
  margin-top: 15px;
  margin-bottom: 15px;
  gap: 20px;
}

.card-flex .card-content {
  flex: 1;
}

.card-check {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 10px;

}

.card-check input {
  width: 20px;
  height: 20px;
}

.card-check label {
  margin-bottom: 0;
}

.card-address-list {
  margin-top: 20px;
  display: none;
}

.card-content.mt {
  margin-top: 15px;
}