/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Microsoft YaHei;
} */

/* 引入字体 */
/* @font-face {
  font-family: fontName;
  src: url();
} */

:root {
  --color: #0070C0;
  --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;
}

.e_container-83 a {
  display: inline-block;
}

/*多行溢出*/
.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; */
}

/* 购物车 */
.cartTitle {
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.cartBtnBox {
  margin-bottom: 0;
  border-bottom: 2px solid #0070C0;
}

.cartBtn {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.cartBtn button {
  width: fit-content;
  height: 40px;
  border-radius: 20px 20px 20px 20px;
  border: 1px solid #0070C0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  column-gap: 5px;
}

.cartBtn button img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.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 {
  display: none;
}

.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: #BB0100;
}

.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;
}

.cartDetail {
  display: flex;
  justify-content: space-between;
  padding-left: 30px;
  padding-top: 27px;
  padding-bottom: 23px;
}

.cartDetailR {
  text-align: right;
}

.cartDetailTotal {
  color: #BB0100;
  font-size: 20px;
  font-weight: bold;
}

.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:nth-child(2) {
  width: fit-content;
  padding: 5px 12px;
  background: rgba(187, 1, 0, 0.1);
  font-weight: 400;
  font-size: 14px;
  color: #BB0100;
}

.cart_proDetail p {
  width: 90px;
  height: 32px;
  background: #FFFFFF;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #CECECE;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #676767;
  text-align: center;
  line-height: 32px;
  margin-left: 19px;
}

.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: #BB0100;
  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: 999;
}

.addForm {
  /* width: 334px; */
  max-width: 596px;
  width: 90%;
  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;
}

.payAlert .addForm {
  max-width: 475px;
}

.payAlert .addForm .payImg {
  width: 94%;
  margin: 0 auto;
}

.payTotal {
  font-size: 20px;
  color: #000;
  text-align: center;
}
.payTotal span{
  font-weight: bold;
  color: #BB0100;
}

.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 28px 40px;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
.payAlert .addFormBody{
  row-gap: 5px;
}
.addFormBody .companyName {
  text-align: center;
  font-size: 22px;
}

.addLabel {
  display: flex;
  align-items: center;
}

.addLabel>span {
  min-width: 112px;
  text-align: right;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  margin-right: 8px;
  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-content: center;
  padding-bottom: 40px;
}

.addFormFoot button {
  width: 150px;
  height: 40px;
  border-radius: 20px 20px 20px 20px;
  border: 1px solid #0070C0;
  font-weight: 400;
  font-size: 14px;
  margin: 0 10px;
}

.addFormFoot button:first-child {
  background: #0070C0;
  color: #FFFFFF;
}

.addFormFoot button:last-child {
  background: #fff;
  color: #0070C0;
}

/* 支付弹窗 */
.payAlert {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: var(--mask);
  display: none;
  z-index: 99;
}


/* 下单页面 */
.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/pg2025062721000468134/cms/image/cd538a60-c547-4951-8146-d697a038bda3.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;
  height: 32px;
  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;
}

.invoiceSelect {
  display: flex;
  margin-bottom: 40px;
}

.invoiceTip {
  margin-left: 14px;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #0070C0;
  display: none;
}

.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(https://omo-oss-image.thefastimg.com/portal-saas/pg2025062721000468134/cms/image/cd538a60-c547-4951-8146-d697a038bda3.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: #BB0100;
}

.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: #BB0100;
}

.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(4) {
  font-weight: bold;
  font-size: 16px;
  color: #BB0100;
}

.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: #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;
}

.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: #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: 80px;
}

.myBoxRight {
  width: calc(100% - 220px);
}

.myBoxRight1 {
  margin-bottom: 22px;
}

.myBoxRight2 {
  margin-bottom: 29px;
}

.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;
}

.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);
}

/* 个人中心左侧菜单 */
.myMenu {
  width: 100%;
  background: #FFFFFF;
  /* padding: 13px 24px 17px; */

  padding-bottom: 24px;
}

.myMenuItemTit {
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  /* margin-bottom: 24px; */
  line-height: 40px;

  padding-left: 24px;
}

.myMenuItem+.myMenuItem {
  margin-top: 14px;
}

.myMenuItemList {
  /* padding-left: 22px; */
}

.myMenuItemList a {
  padding-left: 42px;
  border-left: 4px solid transparent;
}

.myMenuItemList a {
  font-weight: 400;
  font-size: 14px;
  color: #545454;
  /* margin-bottom: 24px; */

  line-height: 40px;
}

.myMenuItem:last-child a:last-child,
.myMenuItem:last-child a:nth-child(3) {
  /* display: none; */
}

.myMenuItemList a:hover {
  color: var(--color);
}

.myMenuItemList a.active {
  color: var(--color);

  /* background-color: rgba(0, 112, 192, 0.03); */
  background-color: #f7fafd;
  border-color: rgba(0, 112, 192, 1);

}

/* 会员中心头部 */
.myhead {
  width: 100%;
  display: flex;
  align-items: center;
}

.myheadLeft {
  width: 268px;
  height: 220px;
  /* background: var(--color); */
  background-image: url(https://omo-oss-image1.thefastimg.com//portal-saas/pg2025062721000468134/cms/image/e0daf542-db67-4c29-b7a7-205e050a6378.png);
  background-repeat: no-repeat;
  border-radius: 8px 8px 8px 8px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 16px;
  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,
.userLe {
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
}

.userBottom {
  position: absolute;
  /* width: 100%; */
  height: 50px;
  bottom: 1px;
  left: 1px;
  right: 1px;
  display: flex;
  background: #fff;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px 0 24px;

  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.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);
  align-items: center;
}

.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.pointsOrder>button {
  margin-left: -300px;
}

.allOredrTit>button:first-child {
  margin-left: 0;
}

.allOredrTit button span {
  color: var(--color);
}

.allOredrTit button.active {
  color: var(--color);
  border-bottom: 3px solid var(--color);
}

.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;
  padding: 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);
}

.importAlert,
.quotationAlert,
.proListAlert {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  z-index: 99;
  display: none;
}

.importTit {
  font-weight: bold;
  font-size: 20px;
  color: #333333;
  text-align: center;
  margin-bottom: 39px;
}

.importAlert .addFormHead {
  background: none;
}

.importBox {
  padding: 0 29px;
}

.box2.importBox {
  display: none;
}

.importFile {
  width: 100%;
  height: 40px;
  background: #E5E5E5;
  border-radius: 4px 4px 4px 4px;
  position: relative;
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
}

.importFile>input {
  display: block !important;
  opacity: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
}

.radioBox {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 25px;
  align-items: center;
}

.radioBox>label {
  margin-left: 11px;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  margin-bottom: 0;
}

.radioBox>input {
  display: block !important;
  width: 20px;
  height: 20px;
}

.radioBox>input:nth-child(3) {
  margin-left: 48px;
}

.importFile>img {
  width: 18px;
}

.importSuccess {
  max-width: 342px;
  width: 90%;
  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;
  padding: 40px 47px;
  display: none;
}

.importSuHeader {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 11px;
  align-items: center;
}

.importSuHeader>img {
  width: 30px;
}

.importSuHeader>span {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 20px;
  color: #299548;
}

.refreshButton {
  width: 150px;
  height: 40px;
  background: #FFFFFF;
  border-radius: 20px 20px 20px 20px;
  border: 1px solid #979797;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #545454;
  text-align: center;
  line-height: 40px;
  display: block;
  margin: 33px auto 0;
}

.box2 .tip {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  text-align: center;
  margin-top: 35px;
}

.box2 .tip span {
  color: #0070C0;
}

.box2 button {
  width: 150px;
  height: 40px;
  margin: 24px auto 0;
  background: #0070C0;
  border-radius: 20px 20px 20px 20px;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  text-align: center;
  line-height: 40px;
  display: block;
}

.importFile>span {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #545454;
}

.importAlert .addForm {
  padding-bottom: 36px;
}

.importTxt {
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  margin-bottom: 58px;
  text-align: center;
}

.importBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 45px;
}

.importBtn a {
  width: 180px;
  height: 40px;
  background: #FFFFFF;
  border-radius: 20px 20px 20px 20px;
  border: 1px solid #0070C0;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
}

.importBtn a img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.recentOrdersList {
  padding: 30px;
  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 .listTitR.asFlex {
  color: var(--color);
}

.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: #BB0100;
}

.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: #BB0100
}

.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: 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 !important;
  margin-bottom: 0 !important;
  min-width: 34px !important;
  height: 34px !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  border-radius: 4px 4px 4px 4px !important;
}

.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 span {
  color: #0070C0;
}

.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: 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, #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(https://omo-oss-image1.thefastimg.com//portal-saas/pg2025011518175358507/cms/image/a8e31766-7335-495b-b047-972328492dae.png);
  background-repeat: no-repeat;

  background-position: center center;
  background-size: cover;
}

.mallBox {
  width: 100%;
  margin: 0 auto;
  margin-top: -8vw;
  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: 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;
}

/* 我的发票 */
.my_invoice .recentOrdersTit.allOredrTit {
  justify-content: flex-start;
}

.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: #BB0100;
}

.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;
}

#c_navigation_006_P_2439-17048588756570 .e_richText-58 p a {
  display: inline-block !important;
}

@media screen and (max-width:768px) {



  /* 购物车 */
  .cartTitle {
    padding-top: 70px;
    flex-direction: column;
  }

  .clearCart {
    align-items: flex-end;

  }

  .clearCart img {
    margin-right: 15px;
  }

  .cartList {
    overflow-x: auto;
  }

  .cartList table {
    min-width: 1100px;
  }

  /* 地址弹窗 */
  .addForm {
    width: 95%;
  }

  .addFormBody {
    padding: 10px;
  }

  .addLabel input,
  .addLabel label[for="address"] {
    height: 30px;
  }

  .addFormFoot {
    padding-bottom: 15px;
  }

  /* 下单页面 */
  .orderAddress {
    padding: 10px;
  }

  .addressList {
    max-height: 300px;
    overflow-y: auto;
  }

  .addressItem {
    width: 100%;
  }

  .orderInvoice {
    padding: 10px;
  }

  .invoiceSelect {
    flex-wrap: wrap;
    row-gap: 20px;
  }

  .invoiceFormTit span {
    min-width: 50px;
  }

  .invoiceFormBody .item {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 10px;
  }

  .invoiceFormBody span {
    text-align: left;
  }

  .invoiceFormBody input {
    width: 100%;
  }

  .payBox {
    padding: 10px;
  }

  .payHead {
    flex-direction: column;
    row-gap: 20px;
  }

  .paySelsct {
    flex-direction: column;
  }

  label[for="online"],
  label[for="offline"],
  label[for="cash"] {
    margin-right: 0;
  }

  .payBody>div {
    padding: 0;
  }

  .orederPro {
    overflow-x: auto;
  }

  .orederPro table {
    min-width: 1100px;
  }

  .pointsBox {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 0 10px;
  }

  .orderBtnBox a {
    min-width: 45%;
  }

  /* 会员中心首页 */
  .myBoxLeft {
    height: 100vh;
    margin-right: 0px;
    position: fixed;
    top: 0;
    left: -220px;
    z-index: 1;
    padding-top: 92px;
    background: #fff;
    pointer-events: none;
    transition: all .3s;
  }

  .myBoxLeft.active {
    left: 0px;
  }

  .myBoxLeft::after {
    content: '>';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -30px;
    background: #fff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
    text-align: center;
    line-height: 20px;
    font-size: 14px;
    pointer-events: auto;
    transition: all .3s;
  }

  .myBoxLeft.active::after {
    transform: rotate(180deg);
  }

  .myMenu {
    height: 100%;
    overflow-y: auto;
    pointer-events: auto;
  }

  .myBoxRight {
    width: 100%;
  }

  /* 会员中心头部 */
  .myhead {
    flex-direction: column;
  }

  .myheadLeft {
    width: 100%;
    background-size: 100%;
  }

  /*最近订单*/
  .recentOrdersList {
    padding: 10px;
    /* overflow-x: auto; */
  }

  .userBottom {
    margin-right: 1px;
  }

  .listItem {
    /* min-width: 1100px; */
  }

  /* 我们向您推荐 */
  .recommendList {
    padding: 10px;
  }

  .recommendItem {
    flex: 0 0 calc((100% - 25px) / 2)
  }

  /* 我的订单 */
  .recentOrdersTit {
    overflow-x: auto;
  }

  .allOredrTit>button,
  .allOredrTit form {
    flex-shrink: 0;
  }

  /* 订单详情 */
  .oredrdetails {
    padding: 10px;
  }

  .oredrInfoTxt {
    padding: 10px;
    flex-direction: column;
  }

  /* 我的积分 */
  .myPoints {
    padding: 10px;
  }

  .pointsTitle {
    padding: 15px;
  }

  .myPointsList {
    overflow-x: auto;
  }

  .myPointsList table {
    min-width: 1100px;
  }

  /*地址管理  */
  .addList {
    padding: 10px;
  }

  .addLabel>span {
    min-width: 85px;
  }

  /* 我的发票 */
  .recentOrdersList {
    padding: 10px;
  }

  .listItem {
    overflow-x: auto;
  }

  .recentOrdersList .listTit,
  .recentOrdersList table {
    min-width: 1100px;
  }

  /* 发票详情 */
  .invoiceDetails {
    padding: 10px;
  }

  .proInfoBox {
    padding: 10px;
    overflow-x: auto;
  }

  .proInfoBox table {
    min-width: 1100px;
  }

  .invoiceInfoBox {
    padding: 10px;
  }

  .uploadAlertBox {
    width: 96%;
  }
}

.afterSales {
  background-color: #fff;
}

.afterSalesContent {
  padding: 0 30px 60px;
}

.asT1 {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
}

.asType {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 21px;
}

.asType>li {
  width: calc(100%/3 - 11px);
  height: 120px;
  background: #FFFFFF;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #EEEEEE;
  display: flex;
  padding: 0 20px;
  align-items: center;
  gap: 17px;
  cursor: pointer;
}

.asType>li>img {
  width: 46px;
  filter: brightness(0);
}

.asType>li.active {
  border: 1px solid #0070C0;
}

.asType>li.active>img {
  filter: none;
}

.asRight>p:first-child {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: bold;
  font-size: 16px;
  color: #333333;
}

.asRight>p:last-child {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #9F9F9F;
  margin-top: 12px;
}

.asForm {
  margin-top: 26px;
}

.asIntItem {
  display: flex;
  margin-bottom: 20px;
  column-gap: 14px;
  position: relative;
  flex-wrap: wrap;
}

.asIntItem>p {
  width: 80px;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #333;
  margin-top: 8px;
}

.asIntItem>p>span {
  color: #F74747;
}

.asIntItem>select,
.asIntItem>input {
  width: 470px;
  height: 34px;
  background: #FFFFFF;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #E2E2E2;
  line-height: 34px;
  padding-left: 14px;
  appearance: none;
}

.asIntItem>input {
  width: 235px;
  color: #F74747;
  background: #F5F5F5;
}

.selectArrow {
  width: 24px;
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  left: 510px;
}

.selectArrow::before,
.selectArrow::after {
  content: '';
  width: 12px;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #A9A9A9;
  transform: rotate(40deg);
  transform-origin: 100% 50%;
}

.selectArrow::after {
  left: 50%;
  transform: rotate(-40deg);
  transform-origin: 0% 50%;
}

.asTip {
  width: 100%;
  margin-top: 8px;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 12px;
  color: #999999;
  padding-left: 94px;
}

.asIntItem>textarea {
  width: 825px;
  height: 132px;
  background: #FFFFFF;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #E2E2E2;
  padding: 7px 10px;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #333;
  line-height: 30px;
}

.asUpload {
  width: 90px;
  height: 90px;
  position: relative;
}

.asUpload>input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
}

.asImages {
  display: none;
}

.asImages>li {
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  position: relative;
}

.asImages>li>img {
  width: auto;
  max-width: 100%;
}

.asClose {
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
  height: 20px;
  cursor: pointer;
  display: none;
}

.asImages>li:hover .asClose {
  display: block;
}

.asButton {
  width: 320px;
  height: 48px;
  background: #0070C0;
  border-radius: 4px 4px 4px 4px;
  margin: 41px 0 0 94px;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  text-align: center;
  line-height: 48px;
  cursor: pointer;
}

.asWay {
  margin-top: 34px;
  padding: 37px 0 0;
  border-top: 1px solid #EBEBEB;
  /* display: none; */
}

.asWayItem {
  display: flex;
  margin-bottom: 20px;
  column-gap: 20px;
}

.asWayItem>p {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
}

.asWayItem>p.asAddress {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #7D7D7D;
  line-height: 30px;
}

.as .paySuccessOrderId {
  font-size: 14px;
  color: #999999;
}

.as .paySuccessBtn a:first-child {
  background: #FFFFFF;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #EEEEEE;
  color: #7D7D7D;

}

.as .paySuccessBtn a:last-child {
  background: #0070C0;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #0070C0;
  color: #fff;
}

.all_after_scales .allOredrTit form {
  margin-left: 650px;
}

.asFlex {
  display: flex;
  align-items: center;
}

.asFlex>img {
  width: 23px;
  margin-right: 4px;
}

.after_scales_detail {
  width: 100%;
  background: #fff;
  padding: 30px;
}

.asDetailType {
  width: 100%;
  height: 115px;
  background: linear-gradient(55deg, #289DF1 0%, #0070C0 100%);
  padding-left: 30px;
  padding-top: 30px;
}

.asDetailType>p {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 19px;
  color: #FFFFFF;
}

.asDetailType>p:last-child {
  font-size: 13px;
  margin-top: 11px;
}

.asInfo {
  width: 100%;
  border: 1px solid #CCCCCC;
  margin-top: 20px;
}

.asInfo .header {
  height: 48px;
  background: #F9F9F9;
  border-bottom: 1px solid #CCCCCC;
  padding-left: 20px;
  line-height: 48px;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
}

.asInfo .content {
  width: 100%;
  padding: 30px;
}

.asInfoItem {
  display: flex;
  gap: 10px;
  margin-bottom: 17px;
}

.asInfoItem>p {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  line-height: 30px;
  max-width: 930px;
}

.asPro {
  width: 818px;
}

.asPro>li {
  width: 100%;
  display: flex;
  margin-bottom: 10px;
  gap: 16px;
}

.asPro>li:last-child {
  margin-bottom: 0;
}

.asProImg {
  width: 104px;
  height: 104px;
}

.asProName {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-size: 16px;
  color: #333333;
  line-height: 28px;
}

.asProSku,
.asProNum {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #999999;
  margin-top: 12px;
}

.asVou {
  display: flex;
  gap: 19px;
}

.asVou>img {
  width: 101px;
  height: 101px;
}

.asLast {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  display: none;
}

.asLast>button {
  width: 104px;
  height: 32px;
  text-align: center;
  line-height: 32px;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  background: #0070C0;
  border-radius: 4px 4px 4px 4px;
}

.asAlert {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
}

.asAlertCenter {
  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;
}

.asAlertCenter .header {
  height: 60px;
  background: #F7F7F7;
  border-radius: 4px 4px 0px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.asAlertCenter .header>p {
  padding-left: 24px;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 18px;
  color: #333333;
}

.asAlertCenter .header .close {
  width: 26px;
  margin-right: 16px;
  cursor: pointer;
}

.asAlertCenter .content {
  padding: 32px 0;
}

.mailItem {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.mailItem+.mailItem {
  margin-top: 24px
}

.mailItem>p {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
}

.mailItem>input {
  width: 400px;
  height: 50px;
  background: #FFFFFF;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #EEEEEE;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #333;
  padding-left: 16px;
  line-height: 50px;
}

.asAlertCenter .footer {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-bottom: 29px;
}

.asAlertCenter .footer button:first-child {
  width: 104px;
  height: 40px;
  background: #0070C0;
  border-radius: 4px 4px 4px 4px;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
}

.asAlertCenter .footer button:last-child {
  width: 104px;
  height: 40px;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #333333;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #333;
}

.asInfo .asWay {
  padding: 30px 30px 0;
}

.userBox {
  background-color: #fff;
  padding: 86px 0 113px 170px;
}

.userItem {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  gap: 26px;
}

.userItem>p {
  width: 70px;
  text-align: right;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #666666;
}

.ava {
  width: 88px;
  height: 88px;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}

.ava>img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.ava_mask {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.55);
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  justify-content: center;
  align-items: center;
  display: flex;
}

.ava>input {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  cursor: pointer;
}

.userPhone {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
}

.userItem>input,
.userItem select {
  width: 519px;
  height: 40px;
  background: #FFFFFF;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #D4D4D4;
  padding-left: 16px;
  line-height: 40px;
}

.companyBox {
  position: relative;
}

.userItem select {
  appearance: none;
}

.companyBox::before,
.companyBox::after {
  content: '';
  width: 12px;
  height: 2px;
  position: absolute;
  top: 60%;
  right: 42px;
  background-color: #A9A9A9;
  transform: rotate(40deg);
  transform-origin: 100% 50%;
  pointer-events: all;
}

.companyBox::after {
  right: 30px;
  transform: rotate(-40deg);
  transform-origin: 0% 50%;
}

.userButton {
  padding-left: 96px;
  display: flex;
  gap: 20px;
}

.userButton button:first-child {
  width: 104px;
  height: 40px;
  background: #0070C0;
  border-radius: 4px 4px 4px 4px;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
}

.userButton button:last-child {
  width: 104px;
  height: 40px;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #0070C0;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #0070C0;
}

.changePwd {
  background-color: #fff;
  padding: 86px 0 113px 318px;
}

.changePwd .userItem {
  gap: 6px;
}

.changePwd .userItem>p {
  width: 84px;
}

.layui-laypage a[data-page] {
  line-height: 34px;
}

.layui-laypage a,
.layui-laypage span {
  line-height: 34px !important;
}

.layui-laypage a:hover {
  border-color: #0070C0;
  color: #0070C0 !important;
}

.choose-address {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  background-color: rgba(0, 0, 0, .5);
  display: none;
}

.choose-address .center {
  width: 600px;

}

.choose-address .addressItem {
  width: calc((100% - 50px) / 2);
}

.choose-address .orderAddress {
  padding: 0;
}

.myBoxComTit.flex {
  display: flex;
  gap: 26px;
}

.myBoxComTit.flex>p {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
}

.logistics-wrap {
  width: 100%;
  padding-left: 53px;
  position: relative;
  margin-top: 34px;

}

.logistics-wrap>.item {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-bottom: 75px;
  position: relative;
  z-index: 10;
}

.logistics-wrap>.item:last-child {
  margin-bottom: 0;
}

.logistics-wrap .time {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #848484;
  line-height: 22px;
  text-align: right;
}

.logistics-wrap .dian {
  width: 21px;
  height: 21px;
  background: #848484;
  border: 5px solid #FFFFFF;
  border-radius: 50%;
}

.logistics-status>p {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #848484;
  line-height: 24px;
}

.logistics-status {
  flex: 1;
  padding-right: 30px;
}

.logistics-line {
  width: 1px;
  height: calc(100% - 30px);
  position: absolute;
  top: 20px;
  left: 187px;
  background-color: #707070;
}

.phone-number {
  color: red !important;
}

@media screen and (max-width:768px) {
  .asType {
    flex-direction: column;
    gap: 15px;
  }

  .asType>li {
    width: 100%;
  }

  .asButton {
    width: 100%;
    margin: 40px auto;
  }

  /* 个人资料 */
  .userBox {
    padding: 86px 0 170px;
  }

  .companyBox {
    width: 100%;
  }

  .userItem>input,
  .userItem select {
    width: 100%;
  }

  .userButton {
    padding-left: 0;
    justify-content: center;
  }

  /* 修改密码 */
  .changePwd {
    padding: 86px 0 170px;

  }

  /*售后详情*/
  .after_scales_detail {
    padding: 0;
  }

  .asInfo .content {
    padding: 30px 10px;
  }

  .asPro {
    width: 70%;
  }

}