* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Microsoft YaHei;
}

/* 引入字体 */
@font-face {
  font-family: fontName;
  src: url();
}

:root {
  --color: #BB0100;
  --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;
  background: transparent;
}

button {
  cursor: pointer;
  outline: none;
}

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;
  float: right;
  display: inline-block;
  width: 109px;
  height: 34px;
  background: #FFFFFF;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #00604F;
  text-align: center;
  line-height: 34px;
  color: #00604F;
}

.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;
} */

/* 购物车 */
.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;
}

table {
  width: 100%;
}

.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) {
  font-weight: bold;
  font-size: 16px;
  color: var(--color);
}

.cartList tfoot tr {
  height: 93px;
  background: var(--back);
}

.cartList table label {
  width: fit-content;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.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: 100px;
  max-height: 100px;
  width: 100px;
  /* height: 100px; */
  margin-right: 22px;
  float: left;
}

.cart_proImg img {
  width: 100%;
  height: 100%;
}

.cart_proText {
  display: inline-block;
  max-width: 322px;
}

.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: #999;
}

.cart_proDetail span:first-child {
  font-weight: 400;
  font-size: 14px;
  color: #999999;
  margin-right: 10px;
  background: transparent;
  padding: 0;
}

.cartList input[type="number"] {
  width: 81px;
  height: 38px;
  background: #FFFFFF;
  border-radius: 2px 2px 2px 2px;
  border: 1px solid #E4E4E4;
  padding-left: 15px;
}

.cartList tfoot label>div {
  width: 14px;
  height: 14px;
  display: flex;
}

.cartList .piece,
.cartList .total {
  color: var(--color);
  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: 596px;
  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;
  border-bottom: none;
}

.addFormFoot {
  display: flex;
  justify-content: center;
  padding-bottom: 40px;
}

.addFormFoot button {
  width: 104px;
  height: 40px;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #00604F;
  font-weight: 400;
  font-size: 14px;
  margin: 0 10px;
  outline: none;
}

.addFormFoot button:first-child {
  background: #00604F;
  color: #FFFFFF;
}

.addFormFoot button:last-child {
  background: #fff;
  color: #00604F;
}


/* 下单页面 */
.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 #00604F;
  position: relative;
}

.addressItem.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 41px;
  height: 40px;
  background-image: url(https://omo-oss-image1.thefastimg.com//portal-saas/pg2025043019422878156/cms/image/a4cf4314-7b5e-4b65-8199-801f5dedc2c9.png);
  background-repeat: no-repeat;
  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;
  height: 32px;
  background: #FFFFFF;
  border-radius: 2px 2px 2px 2px;
  border: 1px solid #00604F;
  font-weight: 400;
  font-size: 16px;
  color: #00604F;
}

.orderInvoice {
  padding: 36px 30px 42px;
}

.invoiceSelect {
  display: flex;
  margin-bottom: 40px;
}

.invoiceItem {
  width: fit-content;
  min-width: 142px;
  height: 36px;
  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(../img/addselect.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: 140px;
  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"]::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(2),
.orederPro tbody tr td:nth-child(4) {
  font-weight: bold;
  font-size: 16px;
  color: #EA3200;
}

.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;
}

.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: #FF0000;
}

.orderBtnBox {
  display: flex;
  justify-content: flex-end;
}

.orderBtnBox a {
  min-width: 205px;
  height: 46px;
  background: #FFFFFF;
  border: 1px solid #00604F;
  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: #00604F;
  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;
}

.paySuccessOrderId {
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  margin-bottom: 33px;
}

.paySuccessBtn {
  display: flex;
  align-items: center;
}

.paySuccessBtn a {
  min-width: 128px;
  height: 40px;
  /* background: #00604F; */
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #00604F;
  font-weight: 400;
  font-size: 14px;
  color: #00604F;
  margin: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.paySuccessBtn a:hover {
  background-color: #00604F;
  color: white;
}

.paySuccessBtn a:first-child {
  font-weight: 400;
  font-size: 14px;
  color: #00604F;
  background: .paySuccessBtn a:first-child;
}

.paySuccessBtn a:first-child:hover {
  color: white;
  background-color: #00604F;
}

/* 会员中心 */
.myBox {
  width: 100%;
  display: flex;
  align-items: flex-start;
}

.myBoxLeft {
  width: 19.8%;
  flex-shrink: 0;
  margin-right: 30px;
  position: sticky;
  top: 0;
}

.myBoxRight {
  padding: 0 2%;
  padding-bottom: 2%;
  width: calc(100% - 220px);
  background-color: white;
}

.myBoxRight_top {
  width: 100%;
  height: 59px;
  border-bottom: 1px solid #E5E5E5;
}

.myBoxRight_top>p {
  line-height: 59px;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 18px;
  color: #262525;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.myBoxRight1 {
  margin-bottom: 22px;
}

.myBoxRight2 {
  margin-bottom: 29px;
}

.myBoxRight_dh {
  display: flex;
  width: 100%;
  height: 80px;
  padding: 0 2%;
}

.myBoxRight_dh>p {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;

  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.myBoxRight_dh>p>span {
  color: #00604F;
}

.myBoxComTit {
  width: 100%;
  height: 59px;
  background: #FFFFFF;
  padding: 0 26px;
  font-weight: bold;
  font-size: 16px;
  color: #333333;
  line-height: 59px;
  margin-bottom: 20px;
  position: relative;
  border-bottom: 1px solid #E5E5E5;
}

.myBoxComTit button {
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.myBoxComTit button span:first-child {
  width: 20px;
  height: 20px;
  background: #00604F;
  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: #00604F;
}

/* 个人中心左侧菜单 */
.myMenu {
  width: 100%;
  background: #FFFFFF;
  /* padding: 13px 24px 17px; */
}

.myMenuItemTit {
  font-weight: bold;
  font-size: 16px;
  color: white;
  margin-bottom: 24px;
  width: 100%;
  height: 59px;
  line-height: 59px;
  background: #00604F;
  border-radius: 0px 0px 0px 0px;
  padding-left: 24px;
}

.myMenuItemList {
  padding-left: 22px;
  padding-right: 22px;
  padding-bottom: 1px;
}

.myMenuItemList a {
  padding-left: 10px;
  height: 36px;
  line-height: 36px;
  font-weight: 400;
  font-size: 14px;
  color: #545454;
  margin-bottom: 24px;
}

.myMenuItemList a:hover,
.myMenuItemList a.on
 {
  width: 100%;
  /* height: 36px; */
  color: #00604F;
  background: #EAF2F1;
  border-radius: 0px 0px 0px 0px;
}

/* 会员中心头部 */
.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 23px;
}

.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;
}

.allOredr_top {
  width: 95%;
  margin: 0 auto;
  height: 59px;
  border-bottom: 1px solid #E5E5E5;
  display: flex;
  justify-content: space-between;
}

.allOredr_top>p {
  line-height: 59px;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 18px;
  color: #262525;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.allOredr_top>form {
  width: 264px;
  height: 40px;
  margin-top: auto;
  margin-bottom: auto;
  background: #FFFFFF;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #D6DDE2;
}

.allOredr_top>form>input {
  width: calc(100% - 34px);
  line-height: 40px;
  padding-left: 10px;
}

.allOredr_top>form>button {
  width: 24px;
  height: 24px;
  float: right;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: 10px;
  line-height: 35px;
}

.allOredr_top>form>button>img {
  width: 100%;
  height: 100%;
}

.allOredrTit>button {
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  padding-bottom: 17px;
  margin-left: 40px;
  outline: none;
}

.allOredrTit>button:first-child {
  margin-left: 0;
}

.allOredrTit button span {
  color: #EA3200;
}

.allOredrTit button.active {
  color: #00604F;
  border-bottom: 3px solid #00604F;
}

.allOredrTit form {
  width: 264px;
  height: 40px;
  background: #FFFFFF;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #D6DDE2;
  display: flex;
  align-items: center;
  margin-left: 90px;
}

.allOredrTit form input {
  width: 100%;
  padding: 0 16px;
  font-size: 14px;
}

.allOredrTit form input::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 14px;
  color: #CCCCCC;
}

.allOredrTit form button {
  width: 24px;
  height: 24px;
  margin-right: 14px;
  flex-shrink: 0;
}

.allOredrTit form button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.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;
  width: 100%;
}

.listItem {
  margin-bottom: 20px;
  border: 1px solid #E5E5E5;
}


.listItem:last-child {
  margin-bottom: 0;
  margin-top: 25px;
}

.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: #00604F;
}

.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:nth-child(3){
  color: #00604F;
  font-weight: 600;
}

.recentOrdersList tbody td:first-child {
  padding-left: 26px;
}

.recentOrdersList tbody td:nth-child(4) {
  font-weight: bold;
  font-size: 16px;
  color: var(--color);
}

.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: #EA3200;
}

.recentOrdersList tfoot td a {
  float: right;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 108px;
  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: #FFFFFF;
  border: 1px solid #00604F;

  color: #00604F;
}

.recentOrdersList tfoot td a:first-child:hover {
  background: #00604F;
  color: white;
}

/* 分页 */
#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 {
  border: 1px solid #E5E5E5;
}

.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: 108px;
  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, #03876F 0%, #00604F 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;
  outline: none;
}

/* .myPointsTab button.active {
  font-weight: bold;
  font-size: 14px;
  color: #00604F;
  border-bottom: 3px solid #00604F;
} */
.active {
  font-weight: bold;
  font-size: 14px;
  color: #00604F;
  border-bottom: 3px solid #00604F;
}

#jfzc {
  display: none;
}

.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: #00604F;
  margin-left: 40px;
  outline: none;
}

.addListLast button.default {
  width: 104px;
  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;
}

.myBoxRight_xgbd {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.myBoxRight_xgbd>div {
  margin-top: 20px;
}

.myBoxRight_xgbd>div>label {
  height: 43px;
  line-height: 43px;
}

.myBoxRight_xgbd>div>input {
  width: 451px;
  height: 43px;
  background: #FFFFFF;
  border-radius: 2px 2px 2px 2px;
  border: 1px solid #DEDEDE;
  padding-left: 15px;
}

.myBoxRight_xgbd>div:nth-child(1)>span {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 600;
  font-size: 14px;
  color: #333333;
  font-style: normal;
  text-transform: none;
}

.myBoxRight_xgbd>div:nth-child(1)>span:nth-child(2) {
  display: inline-block;
  position: relative;
  left: 7%;
}

.myBoxRight_xgbd>div:nth-child(1) {
  width: 48%;
}

.myBoxRight_xgbd>div:nth-child(2),
.myBoxRight_xgbd>div:nth-child(3) {
  width: 48%;
  display: flex;
  justify-content: space-between;
}

.myBoxRight_xgbd>div:nth-child(4) {
  position: relative;
  left: -4.7%;
}

.myBoxRight_xgbd>div:nth-child(4)>button {
  width: 128px;
  height: 40px;
  border: 1px solid #B4B4B4;
  margin-left: 15px;
}

.myBoxRight_xgbd>div:nth-child(4)>button:hover {
  width: 128px;
  height: 40px;
  background: #00604F;
  border-radius: 4px 4px 4px 4px;
  color: white;
}

.test>div:nth-child(2) {
  /* padding: 2% 2% 0% 2%; */
}

.emptyAddress {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
}
@media screen and (max-width: 768px){
  .recentOrdersList .listTit{
    padding: 0 15px 0 15px;
  }
  .recentOrdersList .listTitL{
    font-size: 12px;
  }
  .recentOrdersList tfoot td:first-child{
    padding-left: 15px;
  }
  .recentOrdersList tfoot tr > td:nth-child(2){
    width: 50% !important;
  }
  .myPointsList thead th:first-child, .myPointsList tbody td:first-child{
    padding-left: 10px;
  }
    .myPointsList tbody tr > td:nth-child(3){
      width: 34.75% !important;
    }
    .myPointsList tbody tr > td:nth-child(2){
      width: 18.33% !important;
    }
    
    .myPointsList tbody tr > td:nth-child(1){
      width: 40.81% !important;
    }
    .addForm{
      top: 55%;
      width: 750px;
    }
    .myBoxLeft{
      width: 26%;
    }
}
@media screen and (max-width: 430px){
  .recentOrdersList tfoot td:first-child > span{
    display: flex;
    flex-direction: column;
  }
    .allOredr_top{
      flex-direction: column;
      height: auto;
    }
    .allOredr_top>form{
      width: auto;
    }
    .recentOrdersTit{
      padding: 0 9px 0 10px;
    }
    .allOredrTit>button{
      margin-left: 10px;
    }
    .allOredrTit>button{
      font-size: 12px;
    }
    .recentOrdersList{
      padding: 30px 0;
    }
    .recentOrdersList tbody td:first-child{
      padding-left: 15px;
    }
    .recentOrdersList .listTit{
      height: auto;
    }
    .recentOrdersList .listTitL{
      flex-direction: column;
      width: 79%;
    }
    .recentOrdersList tfoot td:last-child{
      padding-right: 15px;
    }

  .myPointsList tbody tr > td:nth-child(2){
    width: 24.33% !important;
  }
  .cart_proImg,
  .myPointsList tbody tr > td:nth-child(3),
  .myPointsList tbody tr td:nth-child(2) span{
    font-size: 12px;
  }
  .pointsTitle{
    padding: 27px 15px 36px 15px;
  }
  .pointsTitle .left p:first-child{
    font-size: 14px;
  }
  .pointsTitle .left p:last-child{
    font-size: 20px;
  }
  .myPoints{
    padding: 25px 0 50px;
  }
  .myBoxComTit{
    padding: 0 10px;
  }
  .cart_proDetail{
    display: inline-block;
  }
  .oredrInfoTxt{
    flex-direction: column;
  }
  .myBoxRight_dh{
      height: auto;
      flex-direction: column;
      margin: 10px 0;
  }
  .myBoxRight_dh>p{
    width: 100%;
  }
  .myMenuItemTit{
    padding-left: 0;
    text-align: center;
  }
  .myBoxLeft{
    margin-right: 10px;
  }
  .myBoxRight{
    width: 69%;
  }
  .myMenuItemList a{
    padding: 0;
    display: flex;
    justify-content: center;
  }
  .myMenuItemList{
    padding: 0 5px;
  }
  .cart_proTit{
    width: 100px;
  }
  .addForm{
    width: 365px;
  }
  .addFormBody{
    padding: 32px 15px 40px;
  }
  .td_1{
    width: 30.39% !important;
  }
  .td_4,
  .td_2{
    width: 20.52% !important;
  }
  .addressList{
    flex-direction: column;
  }
  .orderAddress{
    padding: 35px 0;
  }
  .addressItem{
    /* width: calc((100% - 50px) / 1); */
    width: 100%;
  }
  .orderBtnBox{
    justify-content: center;
  }
  .orderBtnBox a{
    margin-left: 0;
  }
  .orederPro thead th, .orederPro tbody td{
    padding-left: 10px !important;
  }
  .myPointsList thead tr > th:nth-child(1){
    width: 48.81% !important;
  }
  .myPointsList thead tr > th:nth-child(2){
    width: 35.33% !important;
  }
  .myPointsList thead tr > th:nth-child(3){
    width: 22.75% !important;
  }
}
