body {
  padding-top: 80px;
}
body.overflow-hidden {
  overflow: hidden;
}
body::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 4px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
  border-radius: 4px;
}
body::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  background: #000;
}
body::-webkit-scrollbar-track {
  background: transparent;
}
.page-heading {
  text-align: center;
  font-weight: 500;
  font-size: 38px;
  margin: 40px 0;
}
.page-heading .page-title {
  font-weight: 500;
  font-size: 38px;
}
#cart-drawer {
  position: fixed;
  z-index: 1000;
  right: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  background-color: rgba(0, 0, 0, 0.5);
  color: #000;
  visibility: hidden;
  transition: visibility 0.2s ease;
}
#cart-drawer.show-right-cart {
  visibility: visible;
}
#cart-drawer.show-right-cart ._inner {
  transform: translate(0) !important;
}
#cart-drawer ._overlay {
  flex-grow: 1;
  height: 100%;
}
#cart-drawer ._inner {
  background-color: #000;
  width: 400px;
  flex-shrink: 0;
  transform: translate(100%);
  transition: transform 0.2s ease;
  display: flex;
  border-left: 2px solid #FFF;
  flex-direction: column;
  /*&.show{
            transform: translate(0);
        }*/
}
#cart-drawer ._inner .heading {
  display: flex;
  justify-content: space-between;
  padding: 15px;
}
#cart-drawer ._inner .heading .text {
  font-size: 24px;
  font-weight: bold;
  color: #FFF;
}
#cart-drawer ._inner .heading .text i {
  margin-right: 4px;
  font-size: 24px;
}
#cart-drawer ._inner .heading ._close {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}
#cart-drawer ._inner .heading ._close i {
  font-size: 20px;
  font-weight: 100;
}
#cart-drawer ._inner .footing {
  justify-self: flex-end;
  padding: 20px 15px;
  border-top: 1px solid #eee;
}
#cart-drawer ._inner .footing .totals {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
#cart-drawer ._inner .footing .totals.total {
  font-weight: bold;
}
#cart-drawer ._inner .footing #apex-cart-discount-row {
  display: none;
}
#cart-drawer ._inner .footing ._checkout-btn {
  width: 100%;
  height: 44px;
  border-radius: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin-top: 15px;
}
#cart-drawer ._inner .footing ._checkout-btn.disabled {
  opacity: 0.3;
  cursor: no-drop;
}
#cart-drawer ._inner ._contents {
  flex-grow: 1;
  height: 87%;
}
#cart-drawer ._inner ._contents .rowgroup {
  display: flex;
  justify-content: space-between;
  color: rgba(14, 14, 14, 0.2);
  font-size: 12px;
  padding: 0 15px;
}
#cart-drawer ._inner ._contents .rowgroup span {
  display: inline-block;
  width: 50%;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(14, 14, 14, 0.1);
  padding-bottom: 10px;
}
#cart-drawer ._inner ._contents .rowgroup span:last-child {
  text-align: right;
}
#cart-drawer ._inner ._contents .items {
  overflow-y: auto;
  height: calc(100% - 27px);
  padding: 0 15px;
}
#cart-drawer ._inner ._contents .items::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 4px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}
#cart-drawer ._inner ._contents .items::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  background: #000;
}
#cart-drawer ._inner ._contents .items::-webkit-scrollbar-track {
  background: #dbdbdb;
}
#cart-drawer ._inner ._contents .items ._goods {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
#cart-drawer ._inner ._contents .items ._goods .img-wrap {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
}
#cart-drawer ._inner ._contents .items ._goods .img-wrap img {
  width: 100%;
}
#cart-drawer ._inner ._contents .items ._goods .info-wrap {
  padding-left: 10px;
  width: 180px;
  flex-shrink: 0;
}
#cart-drawer ._inner ._contents .items ._goods .info-wrap .name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
#cart-drawer ._inner ._contents .items ._goods .info-wrap .price {
  font-size: 14px;
  color: #333;
  font-weight: normal;
  margin-bottom: 10px;
}
#cart-drawer ._inner ._contents .items ._goods .info-wrap .qu-su {
  position: relative;
  border: 1px solid #eee;
  height: 32px;
  border-radius: 32px;
  width: 120px;
}
#cart-drawer ._inner ._contents .items ._goods .info-wrap .qu-su i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
#cart-drawer ._inner ._contents .items ._goods .info-wrap .qu-su i.apex-cart-product-reduce {
  left: 0;
}
#cart-drawer ._inner ._contents .items ._goods .info-wrap .qu-su i.apex-cart-product-add {
  right: 0;
}
#cart-drawer ._inner ._contents .items ._goods .info-wrap .qu-su ._qu_input {
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  padding-left: 30px;
  padding-right: 30px;
  text-align: center;
  font-size: 14px;
  background-color: transparent;
  color: #000;
  border-radius: 28px;
}
#cart-drawer ._inner ._contents .items ._goods .total {
  position: relative;
}
#cart-drawer ._inner ._contents .items ._goods .total .p-price {
  font-weight: bold;
  font-size: 16px;
}
#cart-drawer ._inner ._contents .items ._goods .total .remove {
  position: absolute;
  bottom: 16px;
  width: 100%;
  left: 0;
  font-size: 14px;
  color: #333;
  text-align: right;
}
#cart-drawer ._inner ._contents .items ._goods .total .remove:hover {
  color: #e54141;
}
#cart-drawer .cart-empty-tips {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.breadcrumb {
  font-size: 13px;
  color: var(--main-text-color);
}
.breadcrumb .breadcrumb {
  color: var(--main-text-color);
}
.breadcrumb .breadcrumb a {
  color: inherit!important;
}
.breadcrumb .breadcrumb .activate {
  color: var(--main-text-color);
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
header a {
  text-decoration: none;
  color: #FFF;
}
header .apex {
  transition: all 0.3s;
  overflow: hidden;
}
header .apex:hover {
  height: 600px;
}
header .apex .apex-content {
  margin: 0 auto;
  width: 1180px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .apex .apex-content .logo-sec {
  position: absolute;
  left: 0;
}
header .apex .apex-content .nav .main-nav {
  display: flex;
}
header .apex .apex-content .nav .main-nav .nav-item {
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  width: 200px;
  text-align: center;
}
header .apex .apex-content .guidance {
  position: absolute;
  right: 0;
  height: 80px;
  line-height: 80px;
  cursor: pointer;
}
header .apex .product {
  display: flex;
  width: 100%;
  justify-content: center;
}
header .apex .product .item-grid {
  width: 100%;
  max-width: 240px;
  padding: 0 10px;
}
header .apex .product .item-grid .item-box {
  display: block;
  margin-top: 20px;
}
header .apex .product .item-grid .item-box:first-child {
  margin-top: 4px;
}
header .apex .product .item-grid .item-box img {
  width: 100%;
  clip-path: polygon(90% 0%, 100% 20%, 100% 100%, 0% 100%, 0% 0%);
  transition: all 0.3s;
}
header .apex .product .item-grid .item-box .list-item {
  width: 100%;
  --border-color: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  color: #FFF;
  position: relative;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 0;
  isolation: isolate;
  text-align: center;
  color: #ffffff;
  display: inline-block;
  transform: skewX(-10deg);
  margin-top: 4px;
  line-height: 1;
  clip-path: polygon(/* Top-left */ 0% var(--curve-size), var(--curve-size) 0, /* top-right */ 100% 0, 100% calc(100% - var(--curve-size)), /* bottom-right 1 */ calc(100% - var(--curve-size)) 100%, /* bottom-right 2 */ 0 100%);
  transition: 0.3s;
}
header .apex .product .item-grid .item-box .list-item:after,
header .apex .product .item-grid .item-box .list-item:before {
  content: "";
  position: absolute;
  inset: 0;
}
header .apex .product .item-grid .item-box .list-item:before {
  background: var(--border-color);
  background-size: 300% 100%;
  background-position: 31% 0%;
  /* animation: move-bg7234 5s ease infinite; */
  z-index: -2;
}
header .apex .product .item-grid .item-box .list-item:after {
  background: var(--bg);
  z-index: -1;
  clip-path: polygon(/* Top-left */ var(--border-width) calc(var(--curve-size) + var(--border-width) * 0.5), calc(var(--curve-size) + var(--border-width) * 0.5) var(--border-width), /* top-right */ calc(100% - var(--border-width)) var(--border-width), calc(100% - var(--border-width)) calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)), /* bottom-right 1 */ calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)) calc(100% - var(--border-width)), /* bottom-right 2 */ var(--border-width) calc(100% - var(--border-width)));
  transition: clip-path 500ms;
}
header .apex .product .item-grid .item-box .list-item i {
  font-size: 11px;
  margin-left: 4px;
  font-weight: 500;
}
header .apex .product .item-grid .item-box:hover img {
  transform: scale(0.95);
}
header .apex .product .item-grid .item-box:hover .list-item {
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3), 0 0 10px rgba(255, 255, 255, 0.3), 0 0 15px rgba(255, 255, 255, 0.3), 0 0 20px rgba(255, 255, 255, 0.3);
}
.cart-section {
  width: 100%;
  height: 100vh;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 202;
  transform: translateX(100%);
  transition: all 0.4s ease;
}
.cart-section.show-right-cart {
  transform: translateX(0);
  transition: all 0.4s 0.3s ease;
}
.cart-section.show-right-cart::after {
  background-color: rgba(0, 0, 0, 0.7);
}
.cart-section .cart-main {
  position: absolute;
  right: 0;
  top: 0;
  width: 400px;
  height: 100vh;
  z-index: 202;
  background-image: url(/test/bg.gif) !important;
  border-left: 1.5px solid #FFF;
}
.cart-section .cart-main .header {
  width: 100%;
  height: 80px;
  padding: 0 10px;
  position: relative;
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-section .cart-main .header .cart-title {
  font-weight: 700;
}
.cart-section .cart-main .header .cart-title .title {
  font-size: 18px;
  line-height: 18px;
  font-weight: 500;
  color: #FFF;
}
.cart-section .cart-main .header .cart-title .sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}
.cart-section .cart-main .header .close-cart {
  font-size: 14px;
  font-weight: 500;
}
.cart-section .cart-main .header .close-cart .close {
  display: flex;
  align-items: center;
}
.cart-section .cart-main .header .close-cart .close i {
  font-size: 14px;
  font-weight: bold;
  margin-left: 0.1rem;
  transform: rotateY(180deg);
}
.cart-section .cart-main .main {
  width: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  position: relative;
}
.cart-section .cart-main .main ::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 2px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 2px;
}
.cart-section .cart-main .main ::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 99px;
  box-shadow: inset 0 0 0.5rem rgba(97, 184, 179, 0.1);
  background: rgba(255, 255, 255, 0.4);
}
.cart-section .cart-main .main ::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  box-shadow: inset 0 0 0.5rem rgba(87, 175, 187, 0.1);
  border-radius: 99px;
  background: rgba(0, 0, 0, 0.4);
}
.cart-section .cart-main .main .product-mask {
  position: relative;
  /* &:after{
                    content: "";
                    position: absolute;
                    display: block;
                    width: 100%;
                    height: 2rem;
                    background: linear-gradient(180deg, #f5f5f5 50%, transparent);
                    left: 0;
                    top: 0;
                    z-index: 2;
                } */
}
.cart-section .cart-main .main .product-mask .products {
  padding: 20px;
  flex-grow: 1;
  overflow-y: auto;
  max-height: calc(var(--cart-main-height, 100vh) - 200px);
  position: relative;
  border-top: 1px solid #e6e6e6;
  /* &:before{
                        content: "";
                        position: absolute;
                        display: block;
                        width: 100%;
                        height: 0.1rem;
                        background: #e6e6e6;
                        left: 0;
                        top: 0;
                        z-index: 3;
                    } */
}
.cart-section .cart-main .main .product-mask .products .cart-goods .goods {
  --content-border-color: rgba(255, 255, 255, 0.3);
  position: relative;
  isolation: isolate;
  display: inline-grid;
  padding: 20px;
  border: 0;
  background: transparent;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.6);
  clip-path: polygon(/* Top-left */ 0% var(--curve-size), var(--curve-size) 0, /* top-right */ 100% 0, 100% calc(100% - var(--curve-size)), /* bottom-right 1 */ calc(100% - var(--curve-size)) 100%, /* bottom-right 2 */ 0 100%);
  transition: color 250ms;
  margin-bottom: 6px;
  width: 100%;
}
.cart-section .cart-main .main .product-mask .products .cart-goods .goods:after,
.cart-section .cart-main .main .product-mask .products .cart-goods .goods:before {
  content: "";
  position: absolute;
  inset: 0;
}
.cart-section .cart-main .main .product-mask .products .cart-goods .goods:before {
  background: var(--content-border-color);
  background-size: 300% 300%;
  animation: move-bg7234 5s ease infinite;
  z-index: -2;
  opacity: 0.7;
}
.cart-section .cart-main .main .product-mask .products .cart-goods .goods:after {
  background: #000;
  z-index: -1;
  clip-path: polygon(/* Top-left */ var(--border-width) calc(var(--curve-size) + var(--border-width) * 0.5), calc(var(--curve-size) + var(--border-width) * 0.5) var(--border-width), /* top-right */ calc(100% - var(--border-width)) var(--border-width), calc(100% - var(--border-width)) calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)), /* bottom-right 1 */ calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)) calc(100% - var(--border-width)), /* bottom-right 2 */ var(--border-width) calc(100% - var(--border-width)));
  transition: clip-path 500ms;
}
.cart-section .cart-main .main .product-mask .products .cart-goods .goods .column {
  display: flex;
  justify-content: space-between;
  /* .img-wrap{
                                    flex-shrink: 0;
                                    width: 1.4rem;
                                    height: 1.4rem;
                                    img{
                                        width: 100%;
                                        height: 100%;
                                    }
                                } */
}
.cart-section .cart-main .main .product-mask .products .cart-goods .goods .column .img-wrap {
  flex: 1;
  position: relative;
  height: fit-content;
}
.cart-section .cart-main .main .product-mask .products .cart-goods .goods .column .img-wrap img {
  width: 100%;
  clip-path: polygon(100% 0%, 100% 91.33%, 80.33% 100%, 0% 100%, 0% 0%);
}
.cart-section .cart-main .main .product-mask .products .cart-goods .goods .column .img-wrap:after {
  position: absolute;
  content: "";
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  left: -2px;
  top: -2px;
  z-index: 1;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-sizing: border-box;
  background: linear-gradient(0deg, var(--extent_color) -35%, transparent 25%), linear-gradient(-204deg, transparent 94%, var(--extent_color) 94%, var(--extent_color) 96%, transparent 0) bottom right;
  border-image-source: linear-gradient(-10deg, var(--extent_color), #ffffff 50%);
  border-image-slice: 1;
  clip-path: polygon(100% 22%, 100% 90.33%, 80.33% 100%, 0% 100%, 0% 57%);
}
.cart-section .cart-main .main .product-mask .products .cart-goods .goods .column .info {
  margin-left: 10px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 2.5;
  /* .sub{
                                        
                                        .ml{
                                            font-size: 1rem;
                                            background-color: rgba(0,135,255,0.1);
                                            border-radius: 0.4rem;
                                            padding: 0.2rem 0.6rem;
                                            letter-spacing: 0;
                                            font-weight: 500;
                                            color: #0080c2;
                                        }
                                    } */
}
.cart-section .cart-main .main .product-mask .products .cart-goods .goods .column .info .series {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-section .cart-main .main .product-mask .products .cart-goods .goods .column .info .series .series-name {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
}
.cart-section .cart-main .main .product-mask .products .cart-goods .goods .column .info .series .series-name .puff {
  padding: 0rem 6px;
  border: 1px solid #FFF;
  border-radius: 4px;
  font-size: 11px;
  margin-left: 4px;
}
.cart-section .cart-main .main .product-mask .products .cart-goods .goods .column .info .series .remove-cart-goods {
  width: 20px;
  height: 20px;
  opacity: 0.5;
}
.cart-section .cart-main .main .product-mask .products .cart-goods .goods .column .info .name {
  font-size: 16px;
  font-weight: 500;
  /* margin: 0 0 0.4rem; */
}
.cart-section .cart-main .main .product-mask .products .cart-goods .goods .column .info .pricebox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.cart-section .cart-main .main .product-mask .products .cart-goods .goods .column .info .pricebox .su-cart {
  --border-color: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  color: var(--extent_color);
  position: relative;
  font-size: 14px;
  font-weight: 700;
  padding: 0 20px;
  isolation: isolate;
  color: #ffffff;
  display: inline-block;
  transform: skewX(-10deg);
  height: 40px;
  line-height: 40px;
  width: 120px;
  clip-path: polygon(/* Top-left */ 0% var(--curve-size), var(--curve-size) 0, /* top-right */ 100% 0, 100% calc(100% - var(--curve-size)), /* bottom-right 1 */ calc(100% - var(--curve-size)) 100%, /* bottom-right 2 */ 0 100%);
}
.cart-section .cart-main .main .product-mask .products .cart-goods .goods .column .info .pricebox .su-cart:after,
.cart-section .cart-main .main .product-mask .products .cart-goods .goods .column .info .pricebox .su-cart:before {
  content: "";
  position: absolute;
  inset: 0;
}
.cart-section .cart-main .main .product-mask .products .cart-goods .goods .column .info .pricebox .su-cart:before {
  background: var(--border-color);
  background-size: 300% 100%;
  background-position: 31% 0%;
  /* animation: move-bg7234 5s ease infinite; */
  z-index: -2;
}
.cart-section .cart-main .main .product-mask .products .cart-goods .goods .column .info .pricebox .su-cart:after {
  background: var(--bg);
  z-index: -1;
  clip-path: polygon(/* Top-left */ var(--border-width) calc(var(--curve-size) + var(--border-width) * 0.5), calc(var(--curve-size) + var(--border-width) * 0.5) var(--border-width), /* top-right */ calc(100% - var(--border-width)) var(--border-width), calc(100% - var(--border-width)) calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)), /* bottom-right 1 */ calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)) calc(100% - var(--border-width)), /* bottom-right 2 */ var(--border-width) calc(100% - var(--border-width)));
  transition: clip-path 500ms;
}
.cart-section .cart-main .main .product-mask .products .cart-goods .goods .column .info .pricebox .su-cart i {
  font-size: 14px;
  position: absolute;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  font-weight: 500;
  border-radius: 50%;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  user-select: none;
  z-index: 1;
  color: #FFF;
}
.cart-section .cart-main .main .product-mask .products .cart-goods .goods .column .info .pricebox .su-cart .cart-disable {
  cursor: not-allowed !important;
  opacity: 0.3;
}
.cart-section .cart-main .main .product-mask .products .cart-goods .goods .column .info .pricebox .su-cart .cart-input {
  width: 100%;
  border: none;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  background: none;
  -webkit-appearance: none;
  color: #FFF;
}
.cart-section .cart-main .main .product-mask .products .cart-goods .goods .column .info .pricebox .su-cart .cart-add2 {
  right: 4px;
}
.cart-section .cart-main .main .product-mask .products .cart-goods .goods .column .info .pricebox .su-cart .cart-reduce2 {
  left: 4px;
}
.cart-section .cart-main .main .product-mask .products .cart-goods .goods .column .info .pricebox .price {
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 500;
}
.cart-section .cart-main .main .product-mask .products .cart-goods .goods .column .info .pricebox .price .price-num {
  font-size: 16px;
  margin-left: 2px;
}
.cart-section .cart-main .main .product-mask .products .checkout {
  position: sticky;
  bottom: 0;
  margin: 30px 0;
  padding: 0 10px;
}
.cart-section .cart-main .main .product-mask .products .checkout .checkout-btn {
  width: 100%;
  --border-color: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  color: #FFF;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 0;
  isolation: isolate;
  text-align: center;
  color: #ffffff;
  display: inline-block;
  transform: skewX(-10deg);
  margin-top: 10px;
  clip-path: polygon(/* Top-left */ 0% var(--curve-size), var(--curve-size) 0, /* top-right */ 100% 0, 100% calc(100% - var(--curve-size)), /* bottom-right 1 */ calc(100% - var(--curve-size)) 100%, /* bottom-right 2 */ 0 100%);
  transition: all 0.3s;
}
.cart-section .cart-main .main .product-mask .products .checkout .checkout-btn:after,
.cart-section .cart-main .main .product-mask .products .checkout .checkout-btn:before {
  content: "";
  position: absolute;
  inset: 0;
}
.cart-section .cart-main .main .product-mask .products .checkout .checkout-btn:before {
  background: var(--border-color);
  background-size: 300% 100%;
  background-position: 31% 0%;
  /* animation: move-bg7234 5s ease infinite; */
  z-index: -2;
}
.cart-section .cart-main .main .product-mask .products .checkout .checkout-btn:after {
  background: var(--bg);
  z-index: -1;
  clip-path: polygon(/* Top-left */ var(--border-width) calc(var(--curve-size) + var(--border-width) * 0.5), calc(var(--curve-size) + var(--border-width) * 0.5) var(--border-width), /* top-right */ calc(100% - var(--border-width)) var(--border-width), calc(100% - var(--border-width)) calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)), /* bottom-right 1 */ calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)) calc(100% - var(--border-width)), /* bottom-right 2 */ var(--border-width) calc(100% - var(--border-width)));
  transition: clip-path 500ms;
}
.cart-section .cart-main .main .product-mask .products .checkout .checkout-btn .goshop-btn-text {
  color: #FFF;
  font-size: 16px;
  white-space: nowrap;
  text-shadow: 0 0 6px #FFF;
}
.cart-section .cart-main .main .product-mask .products .checkout .checkout-btn .goshop-btn-text i {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translate(0, -50%);
  color: #FFF;
  font-size: 14px;
  display: inline-block;
  animation: goShop 1s infinite;
}
@keyframes goShop {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translate(0, -50%);
  }
  40% {
    transform: translate(6px, -50%);
  }
  60% {
    transform: translate(3px, -50%);
  }
}
.cart-section .cart-main .main .bill {
  width: 100%;
  /* padding: 0 0.3rem; */
  flex-shrink: 0;
}
.cart-section .cart-main .main .bill .statistics li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px;
  border-top: 1px solid #e6e6e6;
}
.cart-section .cart-main .main .bill .statistics li .label {
  font-size: 14px;
  font-weight: 500;
}
.cart-section .cart-main .main .bill .statistics li .amount {
  font-size: 12px;
  color: #ef4f1f;
  font-weight: 700;
}
.cart-section .cart-main .main .bill .statistics li .amount-price,
.cart-section .cart-main .main .bill .statistics li .cart-discount-price,
.cart-section .cart-main .main .bill .statistics li .amount-freight-price {
  font-size: 14px;
  letter-spacing: 0;
}
.cart-section .cart-main .main .bill .statistics li.freight {
  font-size: 14px;
}
.cart-section .cart-main .main .bill .statistics li .freight-part {
  display: flex;
  align-items: baseline;
}
.cart-section .cart-main .main .bill .statistics li .freight-part .freight-tips {
  font-size: 12px;
  letter-spacing: 0;
  color: #999;
  margin-right: 6px;
}
.cart-section .cart-main .main .bill .forward .checkout-btn {
  width: 328px;
  height: 40px;
  background: #000;
  color: #fff;
  font-size: 16px;
  line-height: 40px;
  display: block;
  margin: 20px auto;
  border-radius: 6px;
}
.cart-section .cart-main .main .bill .forward .close-btn {
  font-size: 16px;
}
.cart-section .cart-main .main .empty {
  margin-top: 4rem!important;
}
.cart-section .cart-main .main .empty .ico i {
  font-size: 40px!important;
  color: #ccc;
}
.cart-section .cart-main .main .empty .text {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.3rem;
  font-size: 14px;
}
.cart-section::after {
  content: "";
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 201;
  transition: all 0.3s 0.7s;
  background-color: rgba(0, 0, 0, 0);
}
footer {
  background-color: rgba(255, 255, 255, 0.05);
  width: 100%;
  min-width: 1200px;
  margin-top: 200px;
}
footer .footer-wrap {
  width: 1200px;
  padding: 30px 0;
  margin: 0 auto;
  max-width: 1200px;
}
footer .footer-wrap .content {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 60px;
}
footer .footer-wrap .content .footer-logo {
  flex: 1;
}
footer .footer-wrap .content .footer-logo .footer-logo-sec {
  display: block;
  margin-bottom: 30px;
  transition: all 0.3s;
  cursor: pointer;
  padding-left: 10px;
}
footer .footer-wrap .content .footer-logo .footer-logo-sec .footer-logo-title {
  display: flex;
  font-style: italic;
  font-weight: 700;
  color: #FFF;
  align-items: center;
}
footer .footer-wrap .content .footer-logo .footer-logo-sec .footer-logo-title .footer-logo-title-cn {
  font-size: 22px;
}
footer .footer-wrap .content .footer-logo .footer-logo-sec .footer-logo-title img {
  transform: skewX(-10deg);
  width: 6.5%;
  height: 100%;
  margin-right: 4px;
}
footer .footer-wrap .content .footer-logo .footer-logo-sec .footer-logo-title-en {
  font-size: 14px;
}
footer .footer-wrap .content .footer-logo .about {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  padding-left: 10px;
  line-height: 1.8;
}
footer .footer-wrap .content .footer-logo .other-sec {
  padding-left: 10px;
  margin-top: 20px;
}
footer .footer-wrap .content .footer-logo .other-sec .other-item {
  display: flex;
  align-items: center;
  height: 48px;
}
footer .footer-wrap .content .footer-logo .other-sec .other-item .other-title {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin-right: 10px;
}
footer .footer-wrap .content .footer-logo .other-sec .other-item .yamato {
  width: 28px;
  height: 28px;
  margin: 0 20px 0 6px;
}
footer .footer-wrap .content .footer-logo .other-sec .other-item .lalamove {
  width: 140px;
  height: 24px;
}
footer .footer-wrap .content .footer-logo .other-sec .other-item .dmca {
  width: 52px;
  height: 26px;
  margin: 2px 10px 0 0;
}
footer .footer-wrap .content .footer-logo .other-sec .other-item .ssl {
  width: 90px;
  height: 24px;
}
footer .footer-wrap .content .footer-logo .other-sec .other-item .other {
  display: grid;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  grid-template-columns: 4fr 1fr;
  place-items: center;
}
footer .footer-wrap .content .footer-logo .other-sec .other-item .other strong {
  color: rgba(255, 255, 255, 0.8);
}
footer .footer-wrap .content .footer-logo .other-sec .other-item .other .packageicon {
  width: 80px;
}
footer .footer-wrap .content .footer-logo .other-sec .other-item .other img {
  width: 60px;
  margin: auto;
}
footer .footer-wrap .content .footer-nav {
  flex: 1;
  color: #FFF;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
  padding-left: 10px;
}
footer .footer-wrap .content .footer-nav .footer-nav-item .footer-line {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
  font-style: italic;
  font-size: 14px;
  margin-bottom: 20px;
  pointer-events: none;
  border-bottom: 2px solid;
  padding-bottom: 6px;
}
footer .footer-wrap .content .footer-nav .footer-nav-item .footer-nav-vox {
  display: flex;
  flex-direction: column;
}
footer .footer-wrap .content .footer-nav .footer-nav-item .footer-nav-vox a {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  transition: all 0.3s;
}
footer .footer-wrap .content .footer-nav .footer-nav-item .footer-nav-vox a:hover {
  color: #ffffff;
}
footer .footer-bottom .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0 auto;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  padding: 14px 0;
}
footer .footer-bottom .footer-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
footer .footer-bottom .footer-privacy a {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
  transition: all 0.3s;
}
footer .footer-bottom .footer-privacy a:hover {
  color: #ffffff;
}
