@media screen and (max-width: 768px) {
  .main-header {
    height: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .top-news {
    top: 60px;
  }
}
.right-btns {
  display: none;
}
.goods-section {
  width: 100%;
  max-width: 1024px;
  padding: 0 10px;
  margin: 120px auto 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "cover main" "info main";
  gap: 60px;
  /* .goods{
        padding: 30px 68px 23px;
        display: flex;
        .atlas{
            margin-right: 64px;
            width: 380px;
            flex-shrink: 0;
            .cover-wrap{
                width: 380px;
                height: 380px;
                background-color: var(--seize-color);
                margin-bottom: 16px;
                img{
                    width: 100%;
                    height: 100%;
                }
            }
            .thumbnail{
                display: flex;
                justify-content: space-between;
                .item{
                    width: 67px;
                    height: 67px;
                    background-color: var(--seize-color);
                    &.active{
                        border: 1px solid var(--main-color);
                    }
                    img{
                        width: 100%;
                        height: 100%;
                    }
                }
            }
        }
        .info{
            flex-grow: 1;
            .name-wrap{
                display: flex;
                align-items: center;
                margin-bottom: 15px;
                .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;
                }
                .title{
                    font-size: 20px;
                    font-weight: 500;

                }
            }

            .attrs{
                font-size: 14px;
                font-weight: 100;
                margin-bottom: 10px;
                dl{
                    display: flex;
                    line-height: 1.8;
                }
            }

            .prices{

                margin-bottom: 30px;
                .market{
                    color: #ccc;
                    text-decoration: line-through;
                    font-size: 14px;
                }
                .now{
                    font-size: 24px;
                    color: #e82121;
                    font-weight: 700;
                }
            }

            .g-countdown{
                width: 100%;
                height: 50px;
                background-color: var(--seize-color);
                display: flex;
                align-items: center;
                justify-content: center;
                margin-bottom: 10px;
            }
            .prescription{
                width: 100%;
                height: 21px;
                font-size: 16px;
                color: #000000;
                line-height: 21px;
                margin-bottom: 24px;
            }

            .sales{
                margin-top: 8px;
                margin-bottom: 28px;
                display: flex;
                align-items: center;
                .panic{
                    width: 150px;
                    flex-shrink: 0;
                }
                .order-logs{
                    margin-left: 23px;

                    font-size: 14px;
                    width: 240px;
                    height: 26.5px;
                    overflow: hidden;
                    .ol{
                        display: flex;
                        justify-content: space-between;
                        padding: 4px 12px;
                        background-color: #fff5d7;
                        color: #ac7707;
                        border-radius: 5px;
                    }
                }

            }

            .place{
                width: 100%;
                margin-bottom: 28px;
                height: 53px;
                display: flex;
                .go-cart-btn{
                    width: 100%;
                    height: 100%;
                    background-color: @background-color-dark;

                    line-height: 53px;
                    display: block;
                    border-radius: 6px;
                    color: @logogreen;
                }
                .cart-quantity {
                    width: 240px;
                    height: 100%;
                    margin-right: 20px;
                    position: relative;
                    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;
                        &.cart-reduce {
                            left: 10px;
                        }
                        &.cart-add {
                            right: 10px;
                        }
                        &.disable {
                            color: #b3b3b3!important;
                            cursor: not-allowed!important;
                        }
                    }
                    input {
                        width: 100%;
                        height: 100%;
                        border: 1px solid var(--seize-color);
                        text-align: center;
                        border-radius: 6px;
                        font-size: 16px;
                    }
                }
            }

            .ensures{
                display: flex;
                align-items: center;
                justify-content: space-between;
                .icons{
                    display: flex;
                    align-items: center;

                }
                .ioc{
                    width: 44px;
                    height: 44px;

                    display: flex;
                    justify-content: center;
                    align-items: center;
                    i{
                        font-size: 32px;
                        color: #999;
                    }
                }
                span{
                    color: #999;
                }
            }

        }
    } */
}
@media screen and (max-width: 1024px) {
  .goods-section {
    flex-direction: column;
    gap: 30px;
    max-width: 768px;
    grid-template-columns: 1fr;
    grid-template-areas: "cover" "main" "info";
  }
}
@media screen and (max-width: 768px) {
  .goods-section {
    margin: 92px auto;
    gap: 0;
  }
}
.goods-section .cover-box {
  display: flex;
  justify-content: center;
  grid-area: cover;
  width: fit-content;
  min-width: 0;
  position: relative;
  z-index: 0;
  margin: 20px auto;
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .goods-section .cover-box {
    width: 65%;
    margin: 10px auto;
  }
}
.goods-section .info {
  margin-bottom: 60px;
  width: 100%;
  grid-area: info;
}
@media screen and (max-width: 1024px) {
  .goods-section .info {
    margin-top: 20px;
  }
}
.goods-section .info .info-title {
  font-size: 20px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 768px) {
  .goods-section .info .info-title {
    font-size: 18px;
  }
}
.goods-section .info .info-card {
  overflow: hidden;
  border-top: 1.5px solid #aaa;
  transition: height 0.5s ease-in-out;
  /* &:last-child{
                border-bottom: 1.5px solid @mixgrey;
            } */
}
.goods-section .info .info-card.card-hide {
  height: 63px !important;
}
.goods-section .info .info-card .info-title-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 0 0;
  height: 60px;
}
.goods-section .info .info-card .info-title-sec .title-toggle {
  border: 1.5px solid #a5cd39;
  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 .info .info-card .info-title-sec .title-toggle .bars {
  position: absolute;
  width: 60%;
  height: 2px;
  background-color: #a5cd39;
  transition: all 0.5s;
  border-radius: 6px;
}
.goods-section .info .info-card .info-title-sec .title-toggle .bars:first-child {
  opacity: 0;
}
.goods-section .info .info-card .info-title-sec .title-toggle:hover {
  border: 1.5px solid #a5cd39;
}
.goods-section .info .info-card .info-title-sec .title-toggle.toggle-off .bars:first-child {
  opacity: 1;
  transform: rotate(180deg);
}
.goods-section .info .info-card .info-title-sec .title-toggle.toggle-off .bars:last-child {
  transform: rotate(270deg);
}
.goods-section .info .info-card .card-content {
  padding: 10px 10px 30px ;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .goods-section .info .info-card .card-content {
    font-size: 12px;
  }
}
.goods-section .info .info-card .card-content p {
  margin-bottom: 16px;
}
.goods-section .info .info-image {
  padding: 0 10px;
}
.goods-section .info .guess-card {
  margin: 30px 0;
}
.goods-section .info .guess-card .guess-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
}
.goods-section .info .guess-card .guess-goods-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 0 20px;
}
.goods-section .info .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 .info .guess-card .guess-goods-wrap .guess-goods .img-wrap {
  width: 100%;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
}
.goods-section .info .guess-card .guess-goods-wrap .guess-goods .img-wrap .goods-video {
  width: 100%;
  height: auto;
  display: block;
}
.goods-section .info .guess-card .guess-goods-wrap .guess-goods .info-wrap {
  text-align: center;
  padding: 6px 0 0;
}
.goods-section .info .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 .info .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 .info .guess-card .guess-goods-wrap .guess-goods .info-wrap .sub {
  position: absolute;
  right: 16px;
  top: 26px;
}
.goods-section .info .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 .info .guess-card .guess-goods-wrap .guess-goods .info-wrap .pricebox {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 10px 0;
}
.goods-section .info .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 .info .guess-card .guess-goods-wrap .guess-goods .info-wrap .pricebox .now .twd {
  font-size: 12px;
  margin-right: 2px;
}
.goods-section .info .guess-card .guess-goods-wrap .guess-goods .info-wrap .pricebox .stars {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.goods-section .info .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 .info .guess-card .guess-goods-wrap .guess-goods .info-wrap .pricebox .stars i:last-child {
  margin-right: 0;
}
.goods-section .info .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 .info .recommend {
  border-top: 1.5px solid #aaa;
}
.goods-section .info .recommend .info-title {
  height: 60px;
  line-height: 60px;
}
.goods-section .main {
  width: 100%;
  grid-area: main;
}
.goods-section .main .main-box {
  position: sticky;
  top: 160px;
  /* .add{

                border-top: 1px solid #cccccc;
                border-bottom: 1px solid #cccccc;
                padding: 2px 6px;
                .additem{
                    width: 100%;
                    height: 36px;
                    display: flex;
                    font-size: 12px;
                    align-items: center;
                    padding-left: 20px;
                    border-top: 1px solid #f1f1f1;
                    &:first-child{
                        border-top: none;
                    }
                    i{
                        font-size: 20px;
                        margin-right: 12px;
                    }
                    .freight-num{
                        font-size: 13px;
                        margin-bottom: 1px;
                        letter-spacing: 0;
                    }
                    .em-color{
                        color: #2794ff;
                    }
                }
            } */
}
.goods-section .main .main-box .title {
  /*display: flex;
                flex-direction: column;*/
  font-size: 24px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 4px;
}
@media screen and (max-width: 768px) {
  .goods-section .main .main-box .title {
    font-size: 20px;
    /* padding: 0 10px; */
  }
}
.goods-section .main .main-box .comment-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  margin-bottom: 10px;
}
.goods-section .main .main-box .comment-box .feature {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}
@media screen and (max-width: 1024px) {
  .goods-section .main .main-box .comment-box .feature {
    /* padding: 0 6px; */
    gap: 2px;
  }
}
.goods-section .main .main-box .comment-box .feature .feature-item {
  padding: 2px 6px;
  font-size: 12px;
  font-weight: 500;
  color: #8dd905;
  border-radius: 5px;
  background-color: #3f580c;
}
@media screen and (max-width: 768px) {
  .goods-section .main .main-box .comment-box .feature .feature-item {
    font-size: 11px;
    border-radius: 4px;
    padding: 1px 4px;
  }
}
.goods-section .main .main-box .comment-box .sold {
  font-size: 12px;
  color: #aaa;
  font-weight: 500;
}
.goods-section .main .main-box .price-box {
  display: flex;
  align-items: end;
  gap: 0 20px;
  justify-content: space-between;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .goods-section .main .main-box .price-box {
    padding: 0 10px 6px;
  }
}
.goods-section .main .main-box .price-box .price {
  font-size: 14px;
  color: red;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .goods-section .main .main-box .price-box .price {
    font-size: 12px;
  }
}
.goods-section .main .main-box .price-box .price .price-num {
  font-size: 24px;
  font-weight: 700;
  margin: 0 4px;
}
@media screen and (max-width: 768px) {
  .goods-section .main .main-box .price-box .price .price-num {
    font-size: 20px;
  }
}
.goods-section .main .main-box .price-box .discount {
  font-size: 14px;
  font-weight: 500;
  color: #009e12;
  display: flex;
  flex-direction: column;
  border-left: 1.5px solid #b2c67c;
  padding-left: 24px;
}
@media screen and (max-width: 768px) {
  .goods-section .main .main-box .price-box .discount {
    font-size: 12px;
  }
}
.goods-section .main .main-box .price-box .comment {
  display: flex;
  align-items: center;
}
.goods-section .main .main-box .price-box .comment .stat-icon {
  width: 14px;
  height: 14px;
  color: #ffb400;
}
@media screen and (max-width: 1024px) {
  .goods-section .main .main-box .price-box .comment .stat-icon {
    width: 12px;
    height: 12px;
  }
}
.goods-section .main .main-box .price-box .comment .comment-num {
  font-size: 15px;
  font-weight: 700;
  margin: 0 2px;
  color: #ffb400;
}
@media screen and (max-width: 1024px) {
  .goods-section .main .main-box .price-box .comment .comment-num {
    font-size: 13px;
  }
}
.goods-section .main .main-box .price-box .comment .comment-text {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 1024px) {
  .goods-section .main .main-box .price-box .comment .comment-text {
    font-size: 11px;
  }
}
.goods-section .main .main-box .desc {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .goods-section .main .main-box .desc {
    font-size: 12px;
    margin-top: 10px;
    padding: 0 10px;
  }
}
.goods-section .main .main-box .sales-count-sec {
  display: flex;
  margin-top: 6px;
  gap: 4px;
}
.goods-section .main .main-box .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 .main .main-box .order-logs {
  margin-left: 4px;
  font-size: 14px;
  width: 250px;
  height: 40px;
  overflow: hidden;
}
.goods-section .main .main-box .order-logs .swiper-slide .ol {
  display: flex;
  justify-content: space-between;
  padding: 8px 20px;
  color: rgba(0, 0, 0, 0.8);
  border-radius: 40px 40px 5px 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  font-size: 13px;
}
.goods-section .main .main-box .order-logs .swiper-slide:nth-child(odd) {
  opacity: 0;
}
.goods-section .main .main-box .sub {
  margin-top: 10px;
}
.goods-section .main .main-box .sub .ml {
  font-size: 12px;
  background-color: rgba(0, 135, 255, 0.1);
  border-radius: 6px;
  padding: 6px 12px;
  letter-spacing: 0;
  font-weight: 500;
  color: #0086ff;
}
.goods-section .main .main-box .describe {
  margin-top: 10px;
  font-size: 14px;
}
.goods-section .main .main-box .ensures {
  color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 0.1);
}
@media screen and (max-width: 1024px) {
  .goods-section .main .main-box .ensures {
    padding: 4px 10px;
  }
}
.goods-section .main .main-box .ensures .icons {
  font-size: 13px;
  display: flex;
  align-items: center;
  text-wrap: nowrap;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 1024px) {
  .goods-section .main .main-box .ensures .icons {
    font-size: 11px;
    padding: 6px 0;
  }
}
.goods-section .main .main-box .ensures .icons:last-child {
  border-bottom: none;
}
.goods-section .main .main-box .ensures .icons:first-child .ioc i {
  transform: translateX(-3px);
  width: 20px;
}
@media screen and (max-width: 1024px) {
  .goods-section .main .main-box .ensures .icons:first-child .ioc i {
    width: 16px;
    transform: translateX(-2px);
  }
}
.goods-section .main .main-box .ensures .icons .ioc {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  gap: 12px;
}
.goods-section .main .main-box .ensures .icons .ico-sub {
  display: flex;
  align-items: center;
}
.goods-section .main .main-box .ensures .icons .iconfont {
  font-size: 20px;
  color: #a5cd39;
}
@media screen and (max-width: 1024px) {
  .goods-section .main .main-box .ensures .icons .iconfont {
    font-size: 16px;
  }
}
.goods-section .main .main-box .sku {
  position: relative;
  margin-top: 20px;
}
.goods-section .main .main-box .sku .sku-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 768px) {
  .goods-section .main .main-box .sku .sku-title {
    font-size: 14px;
  }
}
.goods-section .main .main-box .sku .sku-category {
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.goods-section .main .main-box .sku .sku-category .sku-category-title {
  font-size: 13px;
  font-weight: 500;
  color: #a5cd39;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .goods-section .main .main-box .sku .sku-category .sku-category-title {
    font-size: 12px;
  }
}
.goods-section .main .main-box .sku .sku-item-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
@media screen and (max-width: 768px) {
  .goods-section .main .main-box .sku .sku-item-list {
    gap: 6px 2px;
  }
}
.goods-section .main .main-box .sku .sku-item-list .sku-item {
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-size: 13px;
  text-align: center;
  padding: 3px 10px;
  transition: all 0.3s;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.9);
  display: block;
  font-weight: 500;
}
.goods-section .main .main-box .sku .sku-item-list .sku-item:hover {
  transform: scale(1.03);
  border: 1.5px solid #a5cd39;
}
.goods-section .main .main-box .sku .sku-item-list .sku-chosen {
  background-color: #a5cd39;
  color: #FFF;
}
.goods-section .main .main-box .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 .main .main-box .cart-box {
  position: relative;
  margin-top: 30px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .goods-section .main .main-box .cart-box {
    position: fixed;
    width: 100%;
    padding: 10px;
    gap: 0;
    margin-top: 0;
    left: 0;
    background-color: #19222dcc;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    bottom: 0;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    padding-bottom: calc(10px + constant(safe-area-inset-bottom));
    transform: translateY(100%);
    animation: cart-box-show 0.6s 1s ease-in-out forwards;
  }
  @keyframes cart-box-show {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }
}
.goods-section .main .main-box .cart-box .choose-box {
  max-width: 40%;
  flex-shrink: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media screen and (max-width: 768px) {
  .goods-section .main .main-box .cart-box .choose-box {
    max-width: 45%;
  }
}
.goods-section .main .main-box .cart-box .choose-box .chosen {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  font-weight: 500;
  /* .sku-name{
                            margin: 0 4px;
                        } */
}
@media screen and (max-width: 768px) {
  .goods-section .main .main-box .cart-box .choose-box .chosen {
    flex-shrink: 0;
    font-size: 12px;
  }
}
.goods-section .main .main-box .cart-box .choose-box .total {
  width: 100%;
  white-space: nowrap;
  color: red;
  font-weight: 700;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .goods-section .main .main-box .cart-box .choose-box .total {
    font-size: 10px;
  }
}
.goods-section .main .main-box .cart-box .choose-box .total .total-num {
  font-size: 18px;
  font-weight: 700;
  margin-left: 4px;
}
@media screen and (max-width: 768px) {
  .goods-section .main .main-box .cart-box .choose-box .total .total-num {
    font-size: 16px;
    margin-left: 2px;
  }
}
.goods-section .main .main-box .cart-box .choose-box .quantity-label {
  font-size: 11px;
  color: #009e12;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .goods-section .main .main-box .cart-box .choose-box .quantity-label {
    font-size: 9px;
  }
}
.goods-section .main .main-box .cart-box .cart-wrap {
  width: 100%;
  transition: all 0.1s ease-in;
  display: flex;
  gap: 8px;
  height: 48px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .goods-section .main .main-box .cart-box .cart-wrap {
    height: 38px;
  }
}
.goods-section .main .main-box .cart-box .cart-wrap .btns {
  position: relative;
  height: 100%;
  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 .main .main-box .cart-box .cart-wrap .btns:active .btn-text {
  transition: all 0.1s;
  transform: scale(0.95);
}
.goods-section .main .main-box .cart-box .cart-wrap .btns.cart-quantity {
  flex: 1;
  position: relative;
}
.goods-section .main .main-box .cart-box .cart-wrap .btns.cart-quantity .quantity-btn {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
  height: 100%;
  width: 40%;
  transition: all 0.3s;
  z-index: 1;
}
.goods-section .main .main-box .cart-box .cart-wrap .btns.cart-quantity .quantity-btn:before,
.goods-section .main .main-box .cart-box .cart-wrap .btns.cart-quantity .quantity-btn:after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.goods-section .main .main-box .cart-box .cart-wrap .btns.cart-quantity .quantity-btn.cart-reduce {
  left: 0;
}
.goods-section .main .main-box .cart-box .cart-wrap .btns.cart-quantity .quantity-btn.cart-add {
  right: 0;
}
.goods-section .main .main-box .cart-box .cart-wrap .btns.cart-quantity .quantity-btn.cart-add:after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.goods-section .main .main-box .cart-box .cart-wrap .btns.cart-quantity .quantity-btn.disable {
  pointer-events: none;
}
.goods-section .main .main-box .cart-box .cart-wrap .btns.cart-quantity .quantity-btn.disable:before,
.goods-section .main .main-box .cart-box .cart-wrap .btns.cart-quantity .quantity-btn.disable:after {
  background: rgba(255, 255, 255, 0.1) !important;
}
.goods-section .main .main-box .cart-box .cart-wrap .btns.cart-quantity .quantity-btn:hover {
  transform: translate(0, -50%) scale(1.2);
}
.goods-section .main .main-box .cart-box .cart-wrap .btns.cart-quantity .quantity-btn:active {
  transition: all 0.1s;
  transform: translate(0, -50%) scale(0.9);
}
.goods-section .main .main-box .cart-box .cart-wrap .btns.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);
  z-index: 0;
}
.goods-section .main .main-box .cart-box .cart-wrap .btns.cart-quantity::after {
  background-color: rgba(255, 255, 255, 0.2);
  right: -2px;
}
.goods-section .main .main-box .cart-box .cart-wrap .btns.cart-quantity:hover {
  flex: 1.1;
}
.goods-section .main .main-box .cart-box .cart-wrap .btns::after {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  transform: translateZ(0) skewX(-20deg);
  z-index: -1;
  border-radius: 4px;
}
.goods-section .main .main-box .cart-box .cart-wrap .btns.go-cart-btn {
  flex: 1;
  cursor: pointer;
}
.goods-section .main .main-box .cart-box .cart-wrap .btns.go-cart-btn .btn-text {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
  gap: 4px;
}
.goods-section .main .main-box .cart-box .cart-wrap .btns.go-cart-btn .btn-text i {
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .goods-section .main .main-box .cart-box .cart-wrap .btns.go-cart-btn .btn-text {
    font-size: 13px;
  }
}
.goods-section .main .main-box .cart-box .cart-wrap .btns.go-cart-btn::after {
  background-color: #87ad21;
  left: -2px;
}
.goods-section .main .main-box .cart-box .cart-wrap .btns.go-cart-btn:hover {
  flex: 1.1;
}
.goods-section .spec-list {
  width: 100%;
  display: flex;
  gap: 20px 0;
  margin: 20px 0;
}
.goods-section .spec-list .spec-item {
  flex: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 0;
  justify-content: flex-end;
  line-height: 1.4;
}
.goods-section .spec-list .spec-item:last-child {
  border-right: none;
}
@media screen and (max-width: 768px) {
  .goods-section .spec-list .spec-item {
    gap: 2px;
    padding: 0 4px;
  }
}
.goods-section .spec-list .spec-item .spec-title {
  font-size: 13px;
  font-weight: 500;
  color: #a5cd39;
}
@media screen and (max-width: 768px) {
  .goods-section .spec-list .spec-item .spec-title {
    font-size: 11px;
  }
}
.goods-section .spec-list .spec-item .spec-content {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .goods-section .spec-list .spec-item .spec-content {
    font-size: 12px;
  }
}
.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 .comment-sec {
  /* margin-top: 40px; */
}
.goods-section .comment-sec .stars {
  display: flex;
  align-items: center;
  justify-content: center;
}
.goods-section .comment-sec .stars i {
  font-size: 18px;
  margin-right: 2px;
  color: #ffb400;
}
.goods-section .comment-sec .stars.pointer i {
  cursor: pointer;
}
.goods-section .comment-sec .widg .amount-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.goods-section .comment-sec .widg .amount-wrap .total {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.goods-section .comment-sec .widg .amount-wrap .total .score {
  font-size: 44px;
  color: #ffb400;
  margin-bottom: 0;
}
.goods-section .comment-sec .widg .amount-wrap .total .stars i {
  font-size: 18px;
}
.goods-section .comment-sec .widg .amount-wrap .total .stars i:last-child {
  margin-right: 0;
}
.goods-section .comment-sec .widg .amount-wrap .histogram {
  position: relative;
  flex: 1;
}
.goods-section .comment-sec .widg .amount-wrap .histogram .histogram-row {
  display: grid;
  align-items: center;
  height: 20px;
  grid-template-columns: 1fr 2fr 1fr;
  width: 100%;
}
.goods-section .comment-sec .widg .amount-wrap .histogram .histogram-row .stars i {
  font-size: 12px;
  margin-right: 1px;
}
.goods-section .comment-sec .widg .amount-wrap .histogram .histogram-row .bar {
  width: 100%;
  height: 12px;
  margin-left: 6px;
  border-radius: 6px;
  background-color: rgba(255, 203, 1, 0.2);
  overflow: hidden;
}
.goods-section .comment-sec .widg .amount-wrap .histogram .histogram-row .bar .progress {
  width: 0;
  height: 100%;
  background-color: #ffb400;
  display: block;
}
.goods-section .comment-sec .widg .amount-wrap .histogram .histogram-row .frequency {
  font-size: 13px;
  text-align: end;
}
.goods-section .comment-sec .widg .label-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  font-size: 12px;
  gap: 10px;
  margin: 20px 0 40px;
}
.goods-section .comment-sec .widg .label-box .label {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 6px 0;
  text-align: center;
  border-radius: 6px;
  white-space: nowrap;
}
.goods-section .comment-sec .history .reviews .rev {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 20px 20px 10px 20px;
  margin-bottom: 10px;
}
.goods-section .comment-sec .history .reviews .rev:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}
.goods-section .comment-sec .history .reviews .rev .like-box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.goods-section .comment-sec .history .reviews .rev .like-box .doyou {
  font-size: 12px;
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}
.goods-section .comment-sec .history .reviews .rev .like-box .up {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.goods-section .comment-sec .history .reviews .rev .like-box .up-num {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}
.goods-section .comment-sec .history .reviews .rev .name-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.goods-section .comment-sec .history .reviews .rev .name-box .name-left {
  display: flex;
  align-items: center;
}
.goods-section .comment-sec .history .reviews .rev .name-box .name-left .nickname {
  font-size: 12px;
  color: #FFF;
  display: flex;
  align-items: center;
  font-weight: 500;
  margin-bottom: 0;
}
.goods-section .comment-sec .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%);
  font-size: 11px;
  font-weight: 700;
  padding: 0;
  position: relative;
  border-radius: 4px;
  font-family: sans-serif;
  border: 1.5px solid #dab258;
  overflow: hidden;
}
.goods-section .comment-sec .history .reviews .rev .name-box .name-left .fans .fans-text {
  color: #fff;
  background-color: #000;
  padding: 1px 4px;
  position: relative;
  z-index: 0;
}
.goods-section .comment-sec .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 .comment-sec .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 .comment-sec .history .reviews .rev .name-box .first-buy {
  filter: brightness(100%);
  -webkit-filter: brightness(100%);
  -moz-webkit-filter: brightness(100%);
  -o-filter: brightness(100%);
  -ms-filter: brightness(100%);
  font-size: 11px;
  font-weight: 700;
  padding: 1px 0;
  position: relative;
  border-radius: 4px;
  font-family: sans-serif;
  border: 1.5px solid #099610;
  overflow: hidden;
}
.goods-section .comment-sec .history .reviews .rev .name-box .first-buy .fans-text {
  color: #fff;
  background-color: #000;
  padding: 1px 4px;
  position: relative;
  z-index: 0;
}
.goods-section .comment-sec .history .reviews .rev .name-box .first-buy .back {
  background: linear-gradient(113deg, #92cb45, #28ba00);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
}
.goods-section .comment-sec .history .reviews .rev .name-box .first-buy .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 .comment-sec .history .reviews .rev .star-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2px;
}
.goods-section .comment-sec .history .reviews .rev .star-box i {
  font-size: 12px;
}
.goods-section .comment-sec .history .reviews .rev .star-box .date {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}
.goods-section .comment-sec .history .reviews .rev .buy-text {
  margin-top: 10px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}
.goods-section .comment-sec .history .reviews .rev .content {
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
}
.goods-section .comment-sec .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 .comment-sec .history .paging .prev {
  width: 28px;
  height: 28px;
  background-color: transparent;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}
.goods-section .comment-sec .history .paging .prev .previcon {
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%) scaleX(-1);
  position: absolute;
  top: 52%;
  left: 48%;
  fill: #000;
}
.goods-section .comment-sec .history .paging .prev:hover {
  background-color: #000;
}
.goods-section .comment-sec .history .paging .prev:hover .previcon {
  fill: #FFF;
}
.goods-section .comment-sec .history .paging .disabled {
  opacity: 0.1;
}
.goods-section .comment-sec .history .paging .active {
  transform: scale(1.2);
  border-bottom: 1px solid #000;
  transition: all 0.3s;
}
.goods-section .comment-sec .history .paging .active:hover {
  color: var(--main-color);
}
.goods-section .comment-sec .history .paging .next {
  width: 28px;
  height: 28px;
  background-color: transparent;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s;
}
.goods-section .comment-sec .history .paging .next .nexticon {
  width: 18px;
  height: 18px;
  fill: #000;
  position: absolute;
  top: 52%;
  left: 52%;
  transform: translate(-50%, -50%);
}
.goods-section .comment-sec .history .paging .next:hover {
  background-color: #000;
}
.goods-section .comment-sec .history .paging .next:hover .nexticon {
  fill: #FFF;
}
.goods-section .comment-sec .history .lord-more {
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  padding: 8px 0;
  font-size: 13px;
  color: #fff;
  text-align: center;
  margin: 10px auto 0;
  width: 35%;
  border-radius: 99px;
  transition: all 0.3s;
  cursor: pointer;
}
.goods-section .comment-sec .history .lord-more:active {
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  letter-spacing: 3px;
}
.goods-section .comment-sec .history .lord-more:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.goods-section .recommend-goods-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.goods-section .recommend-goods-wrap .goods-wrap {
  width: 100%;
  display: block;
}
.goods-section .recommend-goods-wrap .info {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin-bottom: 20px;
}
.goods-section .recommend-goods-wrap .info::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #32442a, transparent);
  border-bottom: 3px solid #a8df14;
  z-index: -1;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 50%, #000 calc(100% - 50%), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 50%, #000 calc(100% - 50%), transparent 100%);
}
@media screen and (max-width: 1024px) {
  .goods-section .recommend-goods-wrap .info {
    padding: 10px 0 4px;
  }
}
.goods-section .recommend-goods-wrap .info .good-name {
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  color: #a5cd39;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  margin-bottom: 4px;
}
@media screen and (max-width: 768px) {
  .goods-section .recommend-goods-wrap .info .good-name {
    font-size: 12px;
    margin-bottom: 0;
  }
}
.goods-section .recommend-goods-wrap .info .flavor {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-wrap: balance;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .goods-section .recommend-goods-wrap .info .flavor {
    font-size: 14px;
  }
}
.goods-section .recommend-goods-wrap .info .price {
  font-weight: 700;
  font-size: 12px;
  color: red;
  letter-spacing: 0;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .goods-section .recommend-goods-wrap .info .price {
    font-size: 11px;
  }
}
.goods-section .recommend-goods-wrap .info .price .price-num {
  font-size: 18px;
  font-weight: 700;
  margin: 0 4px;
}
@media screen and (max-width: 768px) {
  .goods-section .recommend-goods-wrap .info .price .price-num {
    font-size: 16px;
    margin: 0 2px;
  }
}
.goods-section .recommend-goods-wrap .info .feature {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px;
  margin-bottom: 10px;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .goods-section .recommend-goods-wrap .info .feature {
    padding: 0 6px;
  }
}
@media screen and (max-width: 768px) {
  .goods-section .recommend-goods-wrap .info .feature {
    padding: 0;
  }
}
.goods-section .recommend-goods-wrap .info .feature .feature-item {
  padding: 2px 6px;
  font-size: 12px;
  font-weight: 500;
  color: #8dd905;
  border-radius: 5px;
  background-color: #3f580c;
}
@media screen and (max-width: 768px) {
  .goods-section .recommend-goods-wrap .info .feature .feature-item {
    font-size: 11px;
    border-radius: 4px;
    padding: 1px 4px;
  }
}
.goods-section .recommend-goods-wrap .info .info-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 10px;
  margin-bottom: 10px;
}
.goods-section .recommend-goods-wrap .info .info-wrap .good-name {
  font-size: 14px;
  font-weight: 700;
  color: #a5cd39;
  text-wrap: balance;
  text-align: center;
  margin-bottom: 4px;
}
@media screen and (max-width: 768px) {
  .goods-section .recommend-goods-wrap .info .info-wrap .good-name {
    font-size: 12px;
  }
}
.goods-section .recommend-goods-wrap .info .info-wrap .flavor-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .goods-section .recommend-goods-wrap .info .info-wrap .flavor-box {
    padding: 2px 6px;
  }
}
.goods-section .recommend-goods-wrap .info .info-wrap .taste-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 1024px) {
  .goods-section .recommend-goods-wrap .info .info-wrap .taste-box {
    font-size: 12px;
    padding: 0 6px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .goods-section .recommend-goods-wrap .info .info-wrap .taste-box {
    font-size: 11px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.goods-section .recommend-goods-wrap .info .info-wrap .price-box {
  text-align: center;
  margin: 10px 0;
}
.goods-section .recommend-goods-wrap .info .info-wrap .price-box .price {
  font-weight: 700;
  font-size: 12px;
  color: red;
  letter-spacing: 0;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .goods-section .recommend-goods-wrap .info .info-wrap .price-box .price {
    font-size: 11px;
  }
}
.goods-section .recommend-goods-wrap .info .info-wrap .price-box .price .price-num {
  font-size: 18px;
  font-weight: 700;
  margin: 0 4px;
}
@media screen and (max-width: 768px) {
  .goods-section .recommend-goods-wrap .info .info-wrap .price-box .price .price-num {
    font-size: 16px;
    margin: 0 2px;
  }
}
.goods-section .recommend-goods-wrap .info .info-wrap .price-box .discount {
  font-size: 12px;
  font-weight: 500;
  color: #009e12;
  display: flex;
  flex-direction: column;
}
.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;
}
@media screen and (max-width: 1024px) {
  .faq-section {
    padding: 0 10px;
    z-index: -1;
    position: relative;
  }
}
.gogogo {
  width: 60px;
  height: 60px;
  position: fixed;
  z-index: 100;
  top: var(--top);
  left: var(--left);
  pointer-events: none;
  animation: gogogoX 1s cubic-bezier(0.25, -10, 1, 1);
}
@keyframes gogogoX {
  to {
    transform: translateX(var(--x));
  }
}
@media screen and (max-width: 1024px) {
  .gogogo {
    animation: gogogoX 1s cubic-bezier(0.25, 2, 1, 1);
    width: 40px;
    height: 40px;
  }
}
.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);
  }
}
@media screen and (max-width: 1024px) {
  footer {
    z-index: -1;
    padding: 30px 20px 60px;
  }
}
