body {
  background: #ffffff;
  color: #333;
}
header {
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}
header .nav-sec {
  display: none;
}
.goods-section {
  width: 1200px;
  max-width: 1200px;
  padding: 0 30px;
  margin: 20px auto 120px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.goods-section .left {
  margin-bottom: 60px;
  flex: 1;
  width: 50%;
}
.goods-section .left .cover-box {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.goods-section .left .cover-box .preview {
  margin-right: 36px;
}
.goods-section .left .cover-box .preview .pic {
  width: 64px;
  height: 64px;
  background-color: #FFF;
  border-radius: 8px;
  border: 1px solid #979797;
  margin-bottom: 6px;
  overflow: hidden;
}
.goods-section .left .cover-box .preview .pic.active {
  border-color: #2794ff;
}
.goods-section .left .cover-box .preview .pic img {
  width: 100%;
}
.goods-section .left .cover-box .cover {
  max-width: 360px;
  width: 360px;
  position: relative;
}
.goods-section .left .cover-box .cover .brand {
  position: absolute;
  top: 26px;
  right: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background-color: #000000;
  padding: 3px 14px;
  white-space: nowrap;
  display: inline-block;
  border-radius: 4px;
  transition: all 0.3s;
  letter-spacing: 0;
  box-shadow: 0 0 10px #FFF;
  transform: skewX(-7deg);
  border: 1.5px solid #FFF;
  z-index: 1;
}
.goods-section .left .cover-box .cover img {
  width: 100%;
  display: block;
  z-index: -1;
  border-radius: 8px;
  overflow: hidden;
}
.goods-section .left .cover-box .cover video {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}
.goods-section .left .cover-box .notes {
  display: grid;
  width: 400px;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  margin: 14px auto 0;
  overflow: hidden;
  align-items: center;
  padding: 10px 0;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 6px;
}
.goods-section .left .cover-box .notes .notes-name {
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.9);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.goods-section .left .cover-box .notes .notes-name:nth-child(3) {
  border-right: none;
}
.goods-section .left .cover-box .notes .notes-name:first-child {
  margin-left: 0;
}
.goods-section .left .cover-box .notes .notes-item {
  width: 100%;
  padding: 0 8px;
  font-size: 12px;
  font-weight: 500;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #2794ff;
}
.goods-section .left .cover-box .notes .notes-item:last-child {
  border-right: none;
}
.goods-section .left .coupon-sec {
  margin: 20px 0;
}
.goods-section .left .coupon-sec .coupon-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
}
.goods-section .left .coupon-sec .coupon-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  padding: 0 20px;
}
.goods-section .left .coupon-sec .coupon-wrap .coupon-card {
  width: 100%;
  height: auto;
  position: relative;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.goods-section .left .coupon-sec .coupon-wrap .coupon-card .background {
  position: relative;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: auto;
}
.goods-section .left .coupon-sec .coupon-wrap .coupon-card .down {
  position: absolute;
  width: 35%;
  height: auto;
  right: 10px;
  top: 10px;
  display: block;
  transform: translate(-50%, -50%) scale(0.5) rotate(-45deg);
  opacity: 0;
}
.goods-section .left .coupon-sec .coupon-wrap .coupon-card .down.arrow1 {
  animation: godown1 0.6s 0.3s ease forwards;
}
.goods-section .left .coupon-sec .coupon-wrap .coupon-card .down.arrow2 {
  animation: godown2 0.6s 0.6s ease forwards;
}
.goods-section .left .coupon-sec .coupon-wrap .coupon-card .down.arrow3 {
  animation: godown3 0.6s 0.9s ease forwards;
}
@keyframes godown1 {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5) rotate(-45deg);
  }
  100% {
    opacity: 0.4;
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
}
@keyframes godown2 {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5) rotate(-45deg);
  }
  100% {
    opacity: 0.7;
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
}
@keyframes godown3 {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5) rotate(-45deg);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
}
.goods-section .left .coupon-sec .coupon-wrap .coupon-card .info {
  position: absolute;
  z-index: 1;
  color: #ff7000;
  padding: 16px;
  line-height: 1;
  top: 50%;
  transform: translateY(-50%);
}
.goods-section .left .coupon-sec .coupon-wrap .coupon-card .info .text-num {
  font-weight: 700;
}
.goods-section .left .coupon-sec .coupon-wrap .coupon-card .info .text-num .text-up {
  font-size: 14px;
}
.goods-section .left .coupon-sec .coupon-wrap .coupon-card .info .text-num .amount {
  font-size: 32px;
  letter-spacing: -1px;
  margin-top: 6px;
}
.goods-section .left .coupon-sec .coupon-wrap .coupon-card .info .text-num .amount .twd {
  font-size: 16px;
  margin-right: 4px;
}
.goods-section .left .coupon-sec .coupon-wrap .coupon-card .info .text-sub {
  border: 1px solid #ff7000;
  border-radius: 4px;
  padding: 4px 10px;
  font-weight: 500;
  font-size: 11px;
  margin-top: 6px;
  line-height: 1;
  text-wrap: nowrap;
  letter-spacing: 0;
}
.goods-section .left .coupon-sec .tips {
  font-size: 12px;
  color: #999;
  display: flex;
  align-items: center;
  line-height: 12px;
  padding: 0 20px;
}
.goods-section .left .coupon-sec .tips i {
  font-size: 18px;
  margin-right: 4px;
}
.goods-section .left .info-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  margin-top: 10px;
  transition: height 0.5s ease-in-out;
}
.goods-section .left .info-card.card-hide {
  height: 63px !important;
}
.goods-section .left .info-card .info-title-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(50, 50, 50, 0.6);
  backdrop-filter: blur(3px);
  padding: 0 30px;
  height: 60px;
}
.goods-section .left .info-card .info-title-sec .info-title {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}
.goods-section .left .info-card .info-title-sec .title-toggle {
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  position: relative;
  width: 22px;
  height: 22px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.goods-section .left .info-card .info-title-sec .title-toggle .bars {
  position: absolute;
  width: 60%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.9);
  transition: all 0.5s;
  border-radius: 6px;
}
.goods-section .left .info-card .info-title-sec .title-toggle .bars:first-child {
  opacity: 0;
}
.goods-section .left .info-card .info-title-sec .title-toggle:hover {
  border: 1.5px solid rgba(255, 255, 255, 0.9);
}
.goods-section .left .info-card .info-title-sec .title-toggle.toggle-off .bars:first-child {
  opacity: 1;
  transform: rotate(180deg);
}
.goods-section .left .info-card .info-title-sec .title-toggle.toggle-off .bars:last-child {
  transform: rotate(270deg);
}
.goods-section .left .info-card .card-content {
  font-size: 13px;
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 14px 0;
  align-items: flex-start;
  margin: 30px 0;
  padding: 0 30px;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
}
.goods-section .left .info-card .card-content .content-title {
  font-weight: 700;
  display: flex;
  align-items: center;
  /* &::before{
                        content: "";
                        display: block;
                        width: 6px;
                        height: 6px;
                        background-color: #000000;
                        border-radius: 50%;
                        margin-right: 4px;
                    } */
}
.goods-section .left .info-card .radar-box {
  width: 120px;
  position: absolute;
  bottom: 0;
  left: 240px;
}
.goods-section .left .info-card .radar-box .radar {
  width: 100%;
  transform: rotate(-30deg);
}
.goods-section .left .info-card .radar-box .taste {
  position: absolute;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
.goods-section .left .info-card .radar-box .taste:nth-child(8) {
  top: -19px;
  right: 46px;
}
.goods-section .left .info-card .radar-box .taste:nth-child(9) {
  top: 8px;
  right: -6px;
}
.goods-section .left .info-card .radar-box .taste:nth-child(10) {
  top: 96px;
  right: -4px;
}
.goods-section .left .info-card .radar-box .taste:nth-child(11) {
  top: 122px;
  right: 41px;
}
.goods-section .left .info-card .radar-box .taste:nth-child(12) {
  top: 95px;
  right: 84px;
}
.goods-section .left .info-card .radar-box .taste:nth-child(13) {
  top: 5px;
  right: 83px;
}
.goods-section .left .info-card .radar-box .taste-num {
  position: absolute;
  font-size: 10px;
  font-weight: 700;
  background-color: #0086ff;
  color: #FFF;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  text-align: center;
  line-height: 16px;
  letter-spacing: 0;
}
.goods-section .left .info-card .radar-box .taste-num:nth-child(2) {
  top: -3px;
  right: 56px;
}
.goods-section .left .info-card .radar-box .taste-num:nth-child(3) {
  top: 24px;
  right: 4px;
}
.goods-section .left .info-card .radar-box .taste-num:nth-child(4) {
  top: 79px;
  right: 5px;
}
.goods-section .left .info-card .radar-box .taste-num:nth-child(5) {
  top: 105px;
  right: 52px;
}
.goods-section .left .info-card .radar-box .taste-num:nth-child(6) {
  top: 79px;
  right: 97px;
}
.goods-section .left .info-card .radar-box .taste-num:nth-child(7) {
  top: 22px;
  right: 99px;
}
.goods-section .left .info-card .widg {
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.4);
  margin-bottom: 30px;
}
.goods-section .left .info-card .widg .amount-wrap .total-box {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 20px;
}
.goods-section .left .info-card .widg .amount-wrap .total-box .total {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.goods-section .left .info-card .widg .amount-wrap .total-box .total .score-desc {
  font-size: 14px;
  margin-bottom: 0;
}
.goods-section .left .info-card .widg .amount-wrap .total-box .total .score {
  font-size: 48px;
  color: #ffae00;
  font-weight: 700;
  margin-bottom: 0;
  letter-spacing: 0;
}
.goods-section .left .info-card .widg .amount-wrap .total-box .total .score .five {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
}
.goods-section .left .info-card .widg .amount-wrap .total-box .total .text {
  font-size: 14px;
  margin-top: 10px;
}
.goods-section .left .info-card .widg .amount-wrap .total-box .total .stars {
  display: flex;
  align-items: center;
  gap: 2px;
  justify-content: center;
}
.goods-section .left .info-card .widg .amount-wrap .total-box .total .stars i {
  font-size: 10px;
  padding: 2px 3px 0px 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #ffae00 var(--fill, 0%), #e0e0e0 0%);
  color: #fff;
  width: 16px;
  height: 16px;
}
.goods-section .left .info-card .widg .amount-wrap .total-box .histogram .row {
  display: flex;
  align-items: center;
  height: 16px;
  margin-bottom: 6px;
  justify-content: flex-end;
  text-align: right;
  letter-spacing: 0;
}
.goods-section .left .info-card .widg .amount-wrap .total-box .histogram .row .stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.goods-section .left .info-card .widg .amount-wrap .total-box .histogram .row .stars i {
  font-size: 10px;
  padding: 2px 3px 0px 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #ffae00 var(--fill, 0%), #e0e0e0 0%);
  color: #fff;
  width: 16px;
  height: 16px;
}
.goods-section .left .info-card .widg .amount-wrap .total-box .histogram .row .bar {
  width: 100px;
  height: 16px;
  margin: 0 6px;
  border-radius: 3px;
  background-color: #ffae0030;
  overflow: hidden;
}
.goods-section .left .info-card .widg .amount-wrap .total-box .histogram .row .bar .progress {
  width: 0;
  height: 100%;
  background-color: #ffae00;
  display: block;
}
.goods-section .left .info-card .widg .amount-wrap .total-box .histogram .row .percentage {
  font-size: 12px;
  width: 30px;
}
.goods-section .left .info-card .widg .amount-wrap .total-box .histogram .row .frequency {
  font-size: 12px;
  width: 52px;
}
.goods-section .left .info-card .widg .amount-wrap .write-wrap {
  opacity: 0;
  height: 0;
  transition: all 0.2s ease-in;
  overflow: hidden;
}
.goods-section .left .info-card .widg .amount-wrap .write-wrap .form-group {
  margin-bottom: 20px;
}
.goods-section .left .info-card .widg .amount-wrap .write-wrap .form-group input {
  appearance: none;
  -webkit-appearance: none;
}
.goods-section .left .info-card .widg .amount-wrap .write-wrap .form-group .lab {
  font-size: 14px;
  margin-bottom: 8px;
  white-space: nowrap;
}
.goods-section .left .info-card .widg .amount-wrap .write-wrap .form-group .stars i {
  font-size: 13px;
  padding: 2px 3px 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #ffae00 var(--fill, 0%), #e0e0e0 0%);
  color: #fff;
}
.goods-section .left .info-card .widg .amount-wrap .write-wrap .form-group .form-control {
  background-color: #FFF;
  color: #000;
  width: 100%;
  padding: 10px 20px;
  outline: 0;
  border: 1.5px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  font-size: 16px;
  white-space: nowrap;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}
.goods-section .left .info-card .widg .amount-wrap .write-wrap textarea {
  width: 100%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px !important;
  padding: 16px 20px !important;
  box-sizing: border-box;
  outline: none;
  color: rgba(255, 255, 255, 0.9);
  background-color: rgba(0, 0, 0, 0.2);
  font-family: "YaHei Consolas Hybrid", Consolas, "微软雅黑", "Meiryo UI", "Malgun Gothic", "Segoe UI", "Trebuchet MS", Helvetica, Monaco, courier, monospace;
  font-size: 16px;
  letter-spacing: 0.5px;
  height: 100px !important;
}
.goods-section .left .info-card .widg .amount-wrap .write-wrap .submit-btn {
  width: 35%;
  height: 36px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  border: none;
  border-radius: 99px;
  letter-spacing: 1px;
  background-color: rgba(0, 0, 0, 0.04);
  transition: all 0.3s;
  cursor: pointer;
  font-size: 13px;
  margin: 0 auto;
}
.goods-section .left .info-card .widg .amount-wrap .write-wrap .submit-btn:hover {
  letter-spacing: 2px;
  background-color: rgba(0, 0, 0, 0.3);
}
.goods-section .left .info-card .widg .amount-wrap .write-wrap.-show {
  opacity: 1;
  border-top: 1px solid #eee;
  padding: 30px;
  height: 380px;
}
.goods-section .left .info-card .widg .amount-wrap .actions {
  margin: 0 auto;
  width: 35%;
  transition: all 0.3s;
}
.goods-section .left .info-card .widg .amount-wrap .actions .write-btn {
  width: 100%;
  height: 36px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  border-radius: 99px;
  letter-spacing: 1px;
  background-color: rgba(0, 0, 0, 0.04);
  transition: all 0.3s;
  cursor: pointer;
}
.goods-section .left .info-card .widg .amount-wrap .actions .write-btn .writeicon {
  width: 16px;
  height: 16px;
  fill: #000;
  margin: 2px 0 0 6px;
}
.goods-section .left .info-card .widg .amount-wrap .actions:hover .write-btn {
  letter-spacing: 2px;
  background-color: rgba(0, 0, 0, 0.1);
}
.goods-section .left .info-card .widg .amount-wrap .actions .write-cancel {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
  display: flex;
  height: 36px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}
.goods-section .left .info-card .widg .amount-wrap .actions .write-cancel:hover {
  color: rgba(0, 0, 0, 0.9);
}
.goods-section .left .info-card .history .title {
  font-size: 20px;
  font-weight: 500;
  border-left: 4px solid #FFF;
  padding-left: 10px;
}
.goods-section .left .info-card .history .label-box {
  display: flex;
  /* grid-template-columns: repeat(3, 1fr); */
  font-size: 12px;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-bottom: 30px;
  padding: 0 14px;
}
.goods-section .left .info-card .history .label {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 8px 12px;
  text-align: center;
  border-radius: 6px;
}
.goods-section .left .info-card .history .filter {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 20px;
}
.goods-section .left .info-card .history .filter label {
  margin-left: 6px;
  font-size: 12px;
}
.goods-section .left .info-card .history .reviews .rev {
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 10px;
  margin-bottom: 40px;
}
.goods-section .left .info-card .history .reviews .rev:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}
.goods-section .left .info-card .history .reviews .rev[data-filter-hide] {
  display: none!important;
}
.goods-section .left .info-card .history .reviews .rev .name-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 14px;
}
.goods-section .left .info-card .history .reviews .rev .name-box .name-left {
  display: flex;
  align-items: center;
}
.goods-section .left .info-card .history .reviews .rev .name-box .name-left .nickname {
  font-size: 12px;
  margin-bottom: 0;
  /* .fans{
                                        color: rgb(160, 93, 0);
                                        font-size: 12px;
                                        padding: 2px 6px;
                                        border-radius: 4px;
                                        background: linear-gradient(135deg, rgb(255, 236, 70), rgb(252, 164, 0));
                                    } */
}
.goods-section .left .info-card .history .reviews .rev .name-box .name-left .fans {
  filter: brightness(100%);
  -webkit-filter: brightness(100%);
  -moz-webkit-filter: brightness(100%);
  -o-filter: brightness(100%);
  -ms-filter: brightness(100%);
  overflow: hidden;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 0;
  position: relative;
  border-radius: 4px;
  font-family: sans-serif;
}
.goods-section .left .info-card .history .reviews .rev .name-box .name-left .fans .fans-text {
  color: #fff;
  background-color: #343434;
  padding: 3px 6px;
  position: relative;
  z-index: 0;
}
.goods-section .left .info-card .history .reviews .rev .name-box .name-left .fans .back {
  background: linear-gradient(113deg, #c1943f, #eecd6c);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
}
.goods-section .left .info-card .history .reviews .rev .name-box .name-left .fans .shine {
  background: linear-gradient(-75deg, #000000 45%, #979797 50%, #000000 55%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  mix-blend-mode: color-dodge;
  background-size: 300% 300%;
  animation: move 6s linear infinite;
}
@keyframes move {
  0% {
    background-position: 100% 100%;
  }
  75% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0 0;
  }
}
.goods-section .left .info-card .history .reviews .rev .name-box .star-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.goods-section .left .info-card .history .reviews .rev .name-box .star-box .stars {
  display: flex;
  align-items: center;
}
.goods-section .left .info-card .history .reviews .rev .name-box .star-box .stars i {
  font-size: 9px;
  padding: 1px 1px 2px 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ffae00 var(--fill, 0%), #e0e0e0 0%);
  color: #fff;
  margin-right: 2px;
}
.goods-section .left .info-card .history .reviews .rev .name-box .star-box .stars i:last-child {
  margin-right: 0;
}
.goods-section .left .info-card .history .reviews .rev .name-box .star-box .date {
  font-size: 11px;
  margin-bottom: 0;
  letter-spacing: 0;
  color: #999;
}
.goods-section .left .info-card .history .reviews .rev .buy-text {
  margin-top: 6px;
  font-size: 11px;
  margin-bottom: 0;
  padding: 0 14px;
  color: #999;
}
.goods-section .left .info-card .history .reviews .rev .content {
  margin: 10px 0 30px;
  font-size: 13px;
  padding: 0 14px;
}
.goods-section .left .info-card .history .reviews .rev .recommend-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
}
.goods-section .left .info-card .history .reviews .rev .recommend-sec .recommend {
  font-size: 11px;
  font-weight: 700;
  text-wrap: nowrap;
  font-style: italic;
  display: flex;
  align-items: center;
}
.goods-section .left .info-card .history .reviews .rev .recommend-sec .recommend p {
  margin-bottom: 0;
}
.goods-section .left .info-card .history .reviews .rev .recommend-sec .recommend .recommend-item {
  display: flex;
  align-items: center;
  margin-right: 6px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  padding: 4px 12px 4px 4px;
  border-radius: 6px;
  transition: all 0.3s;
  cursor: pointer;
}
.goods-section .left .info-card .history .reviews .rev .recommend-sec .recommend .recommend-item:hover {
  border: 1.5px solid #2794ff;
}
.goods-section .left .info-card .history .reviews .rev .recommend-sec .recommend .recommend-item:last-child {
  margin-right: 0;
}
.goods-section .left .info-card .history .reviews .rev .recommend-sec .recommend .recommend-item:nth-child(2) {
  margin-left: 6px;
}
.goods-section .left .info-card .history .reviews .rev .recommend-sec .recommend .recommend-item img {
  width: 28px;
  height: 28px;
  display: block;
  border-radius: 4px;
  margin-right: 8px;
}
.goods-section .left .info-card .history .reviews .rev .recommend-sec .like-box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.goods-section .left .info-card .history .reviews .rev .recommend-sec .like-box .up {
  width: 20px;
  height: 20px;
}
.goods-section .left .info-card .history .reviews .rev .recommend-sec .like-box .up-num {
  font-size: 11px;
  letter-spacing: 0;
}
.goods-section .left .info-card .history .paging {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: #000;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 30px;
}
.goods-section .left .info-card .history .paging .prev {
  width: 28px;
  height: 28px;
  background-color: transparent;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}
.goods-section .left .info-card .history .paging .prev .previcon {
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%) scaleX(-1);
  position: absolute;
  top: 52%;
  left: 48%;
  fill: #000;
}
.goods-section .left .info-card .history .paging .prev:hover {
  background-color: #000;
}
.goods-section .left .info-card .history .paging .prev:hover .previcon {
  fill: #FFF;
}
.goods-section .left .info-card .history .paging .disabled {
  opacity: 0.1;
}
.goods-section .left .info-card .history .paging .active {
  transform: scale(1.2);
  border-bottom: 1px solid #000;
  transition: all 0.3s;
}
.goods-section .left .info-card .history .paging .active:hover {
  color: var(--main-color);
}
.goods-section .left .info-card .history .paging .next {
  width: 28px;
  height: 28px;
  background-color: transparent;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s;
}
.goods-section .left .info-card .history .paging .next .nexticon {
  width: 18px;
  height: 18px;
  fill: #000;
  position: absolute;
  top: 52%;
  left: 52%;
  transform: translate(-50%, -50%);
}
.goods-section .left .info-card .history .paging .next:hover {
  background-color: #000;
}
.goods-section .left .info-card .history .paging .next:hover .nexticon {
  fill: #FFF;
}
.goods-section .left .info-card .history .lord-more {
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  padding: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin: 0 auto;
  width: 50%;
  border-radius: 99px;
  transition: all 0.3s;
  cursor: pointer;
}
.goods-section .left .info-card .history .lord-more:hover {
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  letter-spacing: 3px;
}
.goods-section .left .guess-card {
  margin: 30px 0;
}
.goods-section .left .guess-card .guess-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
}
.goods-section .left .guess-card .guess-goods-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 0 20px;
}
.goods-section .left .guess-card .guess-goods-wrap .guess-goods {
  width: 100%;
  position: relative;
  padding-bottom: 10px;
  padding: 10px;
  -moz-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.goods-section .left .guess-card .guess-goods-wrap .guess-goods .img-wrap {
  width: 100%;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
}
.goods-section .left .guess-card .guess-goods-wrap .guess-goods .img-wrap .goods-video {
  width: 100%;
  height: auto;
  display: block;
}
.goods-section .left .guess-card .guess-goods-wrap .guess-goods .info-wrap {
  text-align: center;
  padding: 6px 0 0;
}
.goods-section .left .guess-card .guess-goods-wrap .guess-goods .info-wrap .brand {
  position: absolute;
  top: 22px;
  right: 18px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background-color: #000000;
  padding: 2px 10px;
  white-space: nowrap;
  display: inline-block;
  border-radius: 4px;
  transition: all 0.3s;
  letter-spacing: 0;
  box-shadow: 0 0 10px #FFF;
  transform: skewX(-7deg);
  border: 1.5px solid #FFF;
}
.goods-section .left .guess-card .guess-goods-wrap .guess-goods .info-wrap .name {
  font-size: 13px;
  text-indent: -8px;
  font-weight: 700;
  text-align: center;
  -moz-transition: all 0.15s ease-in;
  -webkit-transition: all 0.15s ease-in;
  -o-transition: all 0.15s ease-in;
  -ms-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
}
.goods-section .left .guess-card .guess-goods-wrap .guess-goods .info-wrap .sub {
  position: absolute;
  right: 16px;
  top: 26px;
}
.goods-section .left .guess-card .guess-goods-wrap .guess-goods .info-wrap .sub .ml {
  font-size: 10px;
  border-radius: 19px;
  padding: 2px 8px;
  letter-spacing: 0;
  font-weight: 700;
  color: #000000;
  border: 1.5px solid #000000;
  background-color: #FFF;
}
.goods-section .left .guess-card .guess-goods-wrap .guess-goods .info-wrap .pricebox {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 10px 0;
}
.goods-section .left .guess-card .guess-goods-wrap .guess-goods .info-wrap .pricebox .now {
  font-weight: 700;
  font-size: 20px;
  color: red;
  letter-spacing: 0;
  pointer-events: none;
}
.goods-section .left .guess-card .guess-goods-wrap .guess-goods .info-wrap .pricebox .now .twd {
  font-size: 12px;
  margin-right: 2px;
}
.goods-section .left .guess-card .guess-goods-wrap .guess-goods .info-wrap .pricebox .stars {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.goods-section .left .guess-card .guess-goods-wrap .guess-goods .info-wrap .pricebox .stars i {
  font-size: 8px;
  padding: 0 2px 0 3px;
  line-height: 14px;
  border-radius: 3px;
  margin-right: 1px;
  background: linear-gradient(90deg, #ffae00 var(--fill, 0%), #e0e0e0 0%);
  color: #fff;
}
.goods-section .left .guess-card .guess-goods-wrap .guess-goods .info-wrap .pricebox .stars i:last-child {
  margin-right: 0;
}
.goods-section .left .guess-card .guess-goods-wrap .guess-goods .info-wrap .pricebox .stars .stars-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  color: #999;
  transition: all 0.3s;
  margin-left: 2px;
}
.goods-section .right-position {
  flex: 1;
  width: 50%;
}
.goods-section .right-position .right {
  /* width: 600px; */
  position: sticky;
  top: 161px;
  margin-bottom: 60px;
}
.goods-section .right-position .right .shopping-card h1 {
  display: flex;
  flex-direction: column;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0;
}
.goods-section .right-position .right .shopping-card .total {
  display: flex;
  align-items: baseline;
  cursor: pointer;
  transition: all 0.2s;
}
.goods-section .right-position .right .shopping-card .total .stars {
  display: flex;
  align-items: center;
}
.goods-section .right-position .right .shopping-card .total .stars i {
  font-size: 10px;
  padding: 0 2px;
  line-height: 14px;
  border-radius: 3px;
  margin-right: 1px;
  background: linear-gradient(90deg, #ffae00 var(--fill, 0%), #e0e0e0 0%);
  color: #fff;
}
.goods-section .right-position .right .shopping-card .total .stars.pointer i {
  cursor: pointer;
}
.goods-section .right-position .right .shopping-card .total .go-com {
  height: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  color: #999;
}
.goods-section .right-position .right .shopping-card .total .go-com .text {
  letter-spacing: 0;
  margin-left: 6px;
  transition: all 0.5s cubic-bezier(0.8, 0, 0, 0.8);
}
.goods-section .right-position .right .shopping-card .total .go-com .text .com-num {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: 2px underline dashed #ccc;
  text-underline-offset: 5px;
}
.goods-section .right-position .right .shopping-card .total:hover .go-com .text {
  transform: translateY(-27px);
  color: #ff9f00;
}
.goods-section .right-position .right .shopping-card .sales-count-sec {
  display: flex;
  margin-top: 6px;
  gap: 4px;
}
.goods-section .right-position .right .shopping-card .sales-count-sec .sales-count {
  font-size: 11px;
  padding: 1px 6px;
  display: inline-block;
  border-radius: 3px;
  color: #2794ff;
  border: 1.5px solid #2794ff;
  height: 20px;
  font-weight: 500;
  letter-spacing: 0;
}
.goods-section .right-position .right .shopping-card .price-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.goods-section .right-position .right .shopping-card .price-sec .price {
  font-size: 20px;
  color: red;
  line-height: 40px;
  font-weight: 700;
  letter-spacing: 0;
}
.goods-section .right-position .right .shopping-card .price-sec .price .twd {
  font-size: 14px;
}
.goods-section .right-position .right .shopping-card .price-sec .quantity-label {
  font-size: 11px;
  font-weight: 500;
  color: #009e12;
  border-radius: 4px;
  margin-left: 6px;
}
.goods-section .right-position .right .shopping-card .buttons {
  display: flex;
  margin-top: 10px;
  gap: 8px;
  flex: 6;
}
.goods-section .right-position .right .shopping-card .buttons .btns {
  position: relative;
  flex: 1;
  height: 48px;
  background-color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 99px;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.53, -0.52, 0.27, 1.53);
}
.goods-section .right-position .right .shopping-card .buttons .btns:active {
  transition: all 0.1s;
  transform: scale(0.95);
}
.goods-section .right-position .right .shopping-card .buttons .btns .btn-text {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 14px;
  line-height: 0;
}
.goods-section .right-position .right .shopping-card .buttons .btns .btn-text i {
  font-size: 15px;
  margin-left: 4px;
}
.goods-section .right-position .right .shopping-card .buttons .btns::after {
  content: "";
  position: absolute;
  display: block;
  background-color: #333;
  height: 100%;
  width: 44px;
  transform: skewX(-20deg);
  z-index: -1;
  transition: all 0.4s cubic-bezier(0.53, -0.52, 0.27, 1.53);
}
.goods-section .right-position .right .shopping-card .buttons .btns.go-cart-btn {
  background-color: #0086ff;
}
.goods-section .right-position .right .shopping-card .buttons .btns.go-cart-btn::after {
  background-color: #0086ff;
  left: -2px;
}
.goods-section .right-position .right .shopping-card .buttons .btns.go-cart-btn:hover {
  letter-spacing: 2px;
  background-color: color-mix(in srgb, #0086ff 100%, #FFF 10%);
  flex: 1.3;
}
.goods-section .right-position .right .shopping-card .buttons .btns.go-cart-btn:hover::after {
  background-color: color-mix(in srgb, #0086ff 100%, #FFF 10%);
}
.goods-section .right-position .right .shopping-card .buttons .btns.quantity {
  background-color: #595959;
}
.goods-section .right-position .right .shopping-card .buttons .btns.quantity .btn-text {
  margin-left: 10px;
}
.goods-section .right-position .right .shopping-card .buttons .btns.quantity::after {
  background-color: #595959;
  right: -2px;
}
.goods-section .right-position .right .shopping-card .buttons .btns.quantity:hover {
  letter-spacing: 2px;
  background-color: color-mix(in srgb, #595959 100%, #000 30%);
  flex: 1.3;
}
.goods-section .right-position .right .shopping-card .buttons .btns.quantity:hover::after {
  background-color: color-mix(in srgb, #595959 100%, #000 30%);
}
.goods-section .right-position .right .shopping-card .buttons .cart-quantity {
  width: 160px;
  height: 44px;
  position: relative;
}
.goods-section .right-position .right .shopping-card .buttons .cart-quantity i {
  font-size: 14px;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  user-select: none;
  display: inline-block;
  height: 44px;
  width: 44px;
  line-height: 44px;
  transition: all 0.3s;
}
.goods-section .right-position .right .shopping-card .buttons .cart-quantity i.cart-reduce {
  left: 0;
}
.goods-section .right-position .right .shopping-card .buttons .cart-quantity i.cart-add {
  right: 0;
}
.goods-section .right-position .right .shopping-card .buttons .cart-quantity i.disable {
  color: rgba(255, 255, 255, 0.2) !important;
  pointer-events: none;
}
.goods-section .right-position .right .shopping-card .buttons .cart-quantity i:hover {
  font-size: 18px;
}
.goods-section .right-position .right .shopping-card .buttons .cart-quantity i:active {
  transition: all 0.1s;
  font-size: 18px;
}
.goods-section .right-position .right .shopping-card .buttons .cart-quantity input {
  width: 100%;
  height: 100%;
  border: none;
  text-align: center;
  font-size: 16px;
  pointer-events: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
}
.goods-section .right-position .right .shopping-card .ensures {
  color: #999;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  padding: 10px;
}
.goods-section .right-position .right .shopping-card .ensures .icons {
  margin-bottom: 6px;
  font-size: 12px;
  display: flex;
  align-items: center;
  text-wrap: nowrap;
  justify-content: space-between;
}
.goods-section .right-position .right .shopping-card .ensures .icons:last-child {
  margin-bottom: 0;
}
.goods-section .right-position .right .shopping-card .ensures .icons .ioc {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
}
.goods-section .right-position .right .shopping-card .ensures .icons .ico-sub {
  display: flex;
  align-items: center;
}
.goods-section .right-position .right .shopping-card .ensures .icons .iconfont {
  font-size: 16px;
  margin-right: 6px;
  color: #2794ff;
}
.goods-section .right-position .right .sku {
  display: flex;
  margin-top: 40px;
  align-items: baseline;
}
.goods-section .right-position .right .sku .sku-title {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.9);
}
.goods-section .right-position .right .sku .cart-title {
  opacity: 0;
}
.goods-section .right-position .right .sku .buttons-list {
  display: flex;
}
.goods-section .right-position .right .sku .sku-item-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  /* grid-template-columns: repeat(6,1fr); */
  gap: 4px;
}
.goods-section .right-position .right .sku .sku-item-list .sku-item {
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  font-size: 11px;
  text-align: center;
  padding: 3px 10px;
  transition: all 0.3s;
  cursor: pointer;
}
.goods-section .right-position .right .sku .sku-item-list .sku-item:hover {
  transform: scale(1.03);
  border: 1.5px solid rgba(255, 255, 255, 0.9);
}
.goods-section .right-position .right .sku .sku-item-list .sku-chosen {
  background-color: #0086ff;
  border-color: #0086ff;
  color: #FFF;
}
.goods-section .right-position .right .sku .sku-item-list .sku-off {
  color: #000;
  border-color: #000;
  background-image: linear-gradient(18deg, #FFF 48%, #000, #000, #FFF 52%);
  background-size: 100%;
  opacity: 0.15;
  cursor: not-allowed;
}
.goods-section .card {
  width: 1080px;
  background: #FFFFFF;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
.goods-section .goods {
  padding: 30px 68px 23px;
  display: flex;
}
.goods-section .goods .atlas {
  margin-right: 64px;
  width: 380px;
  flex-shrink: 0;
}
.goods-section .goods .atlas .cover-wrap {
  width: 380px;
  height: 380px;
  background-color: var(--seize-color);
  margin-bottom: 16px;
}
.goods-section .goods .atlas .cover-wrap img {
  width: 100%;
  height: 100%;
}
.goods-section .goods .atlas .thumbnail {
  display: flex;
  justify-content: space-between;
}
.goods-section .goods .atlas .thumbnail .item {
  width: 67px;
  height: 67px;
  background-color: var(--seize-color);
}
.goods-section .goods .atlas .thumbnail .item.active {
  border: 1px solid var(--main-color);
}
.goods-section .goods .atlas .thumbnail .item img {
  width: 100%;
  height: 100%;
}
.goods-section .goods .info {
  flex-grow: 1;
}
.goods-section .goods .info .name-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.goods-section .goods .info .name-wrap .label {
  font-size: 16px;
  width: 47px;
  height: 30px;
  background-color: var(--seize-color);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}
.goods-section .goods .info .name-wrap .title {
  font-size: 20px;
  font-weight: 500;
}
.goods-section .goods .info .attrs {
  font-size: 14px;
  font-weight: 100;
  margin-bottom: 10px;
}
.goods-section .goods .info .attrs dl {
  display: flex;
  line-height: 1.8;
}
.goods-section .goods .info .prices {
  margin-bottom: 30px;
}
.goods-section .goods .info .prices .market {
  color: #ccc;
  text-decoration: line-through;
  font-size: 14px;
}
.goods-section .goods .info .prices .now {
  font-size: 24px;
  color: #e82121;
  font-weight: 700;
}
.goods-section .goods .info .g-countdown {
  width: 100%;
  height: 50px;
  background-color: var(--seize-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.goods-section .goods .info .prescription {
  width: 100%;
  height: 21px;
  font-size: 16px;
  color: #000000;
  line-height: 21px;
  margin-bottom: 24px;
}
.goods-section .goods .info .sales {
  margin-top: 8px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
}
.goods-section .goods .info .sales .panic {
  width: 150px;
  flex-shrink: 0;
}
.goods-section .goods .info .sales .order-logs {
  margin-left: 23px;
  font-size: 14px;
  width: 240px;
  height: 26.5px;
  overflow: hidden;
}
.goods-section .goods .info .sales .order-logs .ol {
  display: flex;
  justify-content: space-between;
  padding: 4px 12px;
  background-color: #fff5d7;
  color: #ac7707;
  border-radius: 5px;
}
.goods-section .goods .info .place {
  width: 100%;
  margin-bottom: 28px;
  height: 53px;
  display: flex;
}
.goods-section .goods .info .place .go-cart-btn {
  width: 100%;
  height: 100%;
  background-color: #d72525;
  line-height: 53px;
  display: block;
  border-radius: 6px;
  color: #fff;
}
.goods-section .goods .info .place .cart-quantity {
  width: 240px;
  height: 100%;
  margin-right: 20px;
  position: relative;
}
.goods-section .goods .info .place .cart-quantity i {
  font-size: 16px;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
  color: #000;
  font-weight: 500;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  user-select: none;
  display: inline-block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  background-color: #f0f0f0;
}
.goods-section .goods .info .place .cart-quantity i.cart-reduce {
  left: 10px;
}
.goods-section .goods .info .place .cart-quantity i.cart-add {
  right: 10px;
}
.goods-section .goods .info .place .cart-quantity i.disable {
  color: #b3b3b3 !important;
  cursor: not-allowed !important;
}
.goods-section .goods .info .place .cart-quantity input {
  width: 100%;
  height: 100%;
  border: 1px solid var(--seize-color);
  text-align: center;
  border-radius: 6px;
  font-size: 16px;
}
.goods-section .goods .info .ensures {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.goods-section .goods .info .ensures .icons {
  display: flex;
  align-items: center;
}
.goods-section .goods .info .ensures .ioc {
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.goods-section .goods .info .ensures .ioc i {
  font-size: 32px;
  color: #999;
}
.goods-section .goods .info .ensures span {
  color: #999;
}
.goods-section .delivery {
  padding: 20px 40px;
}
.goods-section .delivery .title {
  font-size: 16px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #979797;
}
.goods-section .delivery .content {
  font-size: 16px;
  display: flex;
}
.goods-section .delivery .content .label {
  margin-bottom: 8px;
}
.goods-section .delivery .content .col:last-child {
  margin-left: 200px;
}
.goods-section .programme {
  padding: 20px 40px;
}
.goods-section .programme .title {
  font-size: 16px;
  margin-bottom: 10px;
}
.goods-section .programme table {
  width: 100%;
  text-align: left;
}
.goods-section .programme table thead {
  border-bottom: 1px solid #d8d8d8;
  font-weight: 500;
}
.goods-section .programme table thead tr {
  height: 30px;
}
.goods-section .programme table thead th {
  font-weight: 500;
}
.goods-section .programme table tbody tr {
  height: 86px;
  border-bottom: 1px solid #d8d8d8;
}
.goods-section .programme table tbody tr:last-child {
  border-bottom: none;
}
.goods-section .programme table .choice {
  width: 185px;
  height: 34px;
  background-color: var(--seize-color);
  border-radius: 17px;
  border: 1px solid #979797;
  display: flex;
  justify-content: center;
  align-items: center;
}
.goods-section .comments {
  padding: 20px 40px;
}
.goods-section .comments .title {
  font-size: 16px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #979797;
}
.goods-section .comments .enumeration li {
  border-bottom: 1px solid #979797;
  padding-bottom: 28px;
  margin-bottom: 28px;
}
.goods-section .comments .enumeration li .info {
  margin-bottom: 8px;
}
.goods-section .comments .enumeration li .info .nickname {
  margin-right: 32px;
}
.goods-section .comments .enumeration li:last-child {
  margin-bottom: 20px;
  padding-bottom: 0;
  border-bottom: none;
}
.goods-section .final {
  padding: 20px 40px;
}
.goods-section .final .instructions .title {
  margin-bottom: 18px;
}
.goods-section .final .instructions .present {
  border: 1px solid #979797;
}
.goods-section .final .instructions .present .ls {
  display: flex;
  align-items: center;
  position: relative;
}
.goods-section .final .instructions .present .ls:after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #d8d8d8;
  position: absolute;
  bottom: 0;
  left: 0;
}
.goods-section .final .instructions .present .ls .s1 {
  width: 168px;
  background-color: #EDEDED;
  flex-shrink: 0;
  height: 100%;
  padding: 14px 0;
}
.goods-section .final .instructions .present .ls .s2 {
  padding-left: 20px;
}
.goods-section .after-sale {
  margin-top: 45px;
}
.goods-section .gallery {
  margin-top: 45px;
}
.goods-section .gallery img {
  width: 100%;
  margin-bottom: 28px;
}
.gogogo {
  width: 4%;
  position: fixed;
  z-index: 100;
  top: var(--top);
  left: var(--left);
  pointer-events: none;
  animation: gogogoX 1s cubic-bezier(0.25, -6, 1, 1);
}
@keyframes gogogoX {
  to {
    transform: translateX(var(--x));
  }
}
.gogogo img {
  width: 100%;
  display: block;
  border-radius: 99rem;
  overflow: hidden;
  border: 0.1rem solid #000;
  animation: gogogoY 1s cubic-bezier(0.33, -0.01, 0.99, 0.77);
}
@keyframes gogogoY {
  0% {
    transform: translateY(0) scale(0);
  }
  10% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(var(--y)) scale(0.3);
  }
}
