.container .main .wrap {
  padding: 80px 6vw 100px;
}
@media screen and (max-width: 1024px) {
  .container .main .wrap {
    padding: 10% 4%;
  }
}
.goods-body {
  margin: 0 auto;
}
.goods-body .goods {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 120px;
  max-width: 1200px;
}
@media screen and (max-width: 1024px) {
  .goods-body .goods {
    flex-direction: column;
    margin-bottom: 60px;
  }
}
.goods-body .goods .img-wrap {
  width: 40%;
  max-width: 360px;
  min-width: 200px;
}
@media screen and (max-width: 1024px) {
  .goods-body .goods .img-wrap {
    width: 60%;
    margin: 0 auto;
    max-width: unset;
    min-width: unset;
  }
}
@media screen and (max-width: 768px) {
  .goods-body .goods .img-wrap {
    width: 100%;
    margin: 0 auto;
  }
}
.goods-body .goods .img-wrap img {
  width: 100%;
}
.goods-body .goods .info-wrap {
  width: 50%;
  margin-left: 4vw;
  max-width: 580px;
}
@media screen and (max-width: 1024px) {
  .goods-body .goods .info-wrap {
    width: 68%;
    margin: 0 auto;
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .goods-body .goods .info-wrap {
    padding-left: 0;
    margin: 0 auto;
    width: 100%;
    margin-top: 20px;
  }
}
.goods-body .goods .info-wrap .name {
  font-weight: 500;
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  .goods-body .goods .info-wrap .name {
    font-size: 20px;
  }
}
.goods-body .goods .info-wrap .privacy {
  font-size: 14px;
  color: var(--main-color);
  margin-top: 10px;
}
.goods-body .goods .info-wrap .spec {
  border: 1px solid #F5F5F5;
  padding: 24px;
  border-radius: 6px;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .goods-body .goods .info-wrap .spec {
    padding: 12px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.goods-body .goods .info-wrap .spec .spec-item {
  display: flex;
  font-size: 14px;
  margin-bottom: 10px;
}
.goods-body .goods .info-wrap .spec .spec-item .head {
  width: 66px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .goods-body .goods .info-wrap .spec .spec-item .head {
    width: 80px;
  }
}
.goods-body .goods .info-wrap .spec .spec-item .desc {
  color: #999;
}
.goods-body .goods .info-wrap .foot {
  display: flex;
  justify-content: space-between;
}
.goods-body .goods .info-wrap .foot .price .now {
  color: #FF2C2C;
  font-size: 20px;
}
.goods-body .goods .info-wrap .foot .price .market {
  color: #999;
  text-decoration: line-through;
  margin-left: 6px;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .goods-body .goods .info-wrap .foot .price .market {
    margin-left: 0;
  }
}
.goods-body .goods .info-wrap .foot .go-btn {
  background-color: var(--main-color);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 40px;
  border-radius: 6px;
}
.goods-body .goods .info-wrap .foot .go-btn:hover {
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.goods-body .present {
  margin: 0 auto;
  max-width: 1024px;
  margin-bottom: 60px;
}
.goods-body .present .title {
  font-size: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 3px solid var(--main-color);
  width: fit-content;
  margin: 0 auto;
  padding: 6px 12px;
}
.goods-body .present .content {
  margin-top: 80px;
}
.goods-body .present .content.dec-content {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .goods-body .present .content.dec-content {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 768px) {
  .goods-body .present .content {
    margin-top: 28px;
  }
}
.goods-body .present .content .desc-content {
  width: 48%;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .goods-body .present .content .desc-content {
    width: 100%;
    font-size: 14px;
  }
}
.goods-body .present .content .desc-content h2,
.goods-body .present .content .desc-content h3,
.goods-body .present .content .desc-content h4,
.goods-body .present .content .desc-content h5,
.goods-body .present .content .desc-content h6 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 500;
  color: var(--main-color) !important;
}
@media screen and (max-width: 1024px) {
  .goods-body .present .content .desc-content h2,
  .goods-body .present .content .desc-content h3,
  .goods-body .present .content .desc-content h4,
  .goods-body .present .content .desc-content h5,
  .goods-body .present .content .desc-content h6 {
    font-size: 20px;
  }
}
.goods-body .present .content .desc-content h4 {
  font-size: 18px;
}
@media screen and (max-width: 1024px) {
  .goods-body .present .content .desc-content h4 {
    font-size: 16px;
  }
}
.goods-body .present .content .desc-content li {
  margin-top: 10px;
  list-style: disc;
  margin-left: 16px;
}
.goods-body .present .content .desc-content table {
  border-collapse: collapse;
  width: 100%;
}
.goods-body .present .content .desc-content th,
.goods-body .present .content .desc-content td {
  border: 1px solid #ddd;
  padding: 8px;
}
.goods-body .present .content .desc-content th {
  background-color: #f4f4f4;
  text-align: left;
}
.goods-body .present .content .desc-content blockquote {
  background: #f9f9f9;
  border-left: 5px solid var(--main-color);
  padding: 1em 1.5em;
  margin: 1.5em 0;
  font-style: italic;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  color: #333;
}
.goods-body .present .content .desc-content hr {
  border: none;
  height: 1px;
  background-color: #dbdbdb;
  margin-top: 20px;
}
.goods-body .present .content .desc-content p {
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .goods-body .present .content .desc-content p {
    line-height: 1.6;
    font-size: 14px;
  }
}
.goods-body .present .content .desc-content img {
  width: 100%;
  height: auto!important;
  display: block;
}
.goods-body .present .content .desc-content ul {
  width: 100% !important;
}
.goods-body .present .content .desc-content a {
  color: var(--main-color) !important;
}
.goods-body .present .content .desc-info {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .goods-body .present .content .desc-info {
    width: 100%;
  }
}
.goods-body .present .content .desc-info .present {
  border: 1px solid var(--table_border_color);
  border-radius: 6px;
  overflow: hidden;
}
.goods-body .present .content .desc-info .present .ls {
  display: flex;
  align-items: center;
  position: relative;
}
.goods-body .present .content .desc-info .present .ls .s1 {
  width: 120px;
  background-color: var(--table_back_color);
  text-align: center;
  flex-shrink: 0;
  height: 100%;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .goods-body .present .content .desc-info .present .ls .s1 {
    width: 80px;
  }
}
.goods-body .present .content .desc-info .present .ls .s2 {
  font-size: 13px;
  padding: 15px 10px 15px 140px;
  flex-grow: 1;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .goods-body .present .content .desc-info .present .ls .s2 {
    padding-left: 100px;
  }
}
.goods-body .present .content .desc-info .present .ls:after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: var(--table_border_color);
  position: absolute;
  bottom: 0;
  left: 0;
}
.goods-body .present .content .qa-container {
  width: 100%;
  max-width: 600px;
  margin: 40px auto;
  font-family: Arial, sans-serif;
  font-size: 14px;
}
.goods-body .present .content .qa-item {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}
.goods-body .present .content .qa-question {
  font-weight: bold;
  cursor: pointer;
  background-color: #f0f0f0;
  padding: 10px 15px;
  border-radius: 4px;
  transition: background-color 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.goods-body .present .content .qa-question .icon {
  transition: transform 0.3s ease;
  display: inline-flex;
  margin-left: 10px;
}
.goods-body .present .content .qa-question.active .icon {
  transform: rotate(-180deg);
}
.goods-body .present .content .qa-answer {
  overflow: hidden;
  height: 0;
  transition: height 0.4s ease;
  padding: 0 15px;
  color: #555;
}
