body,
h1,
h2,
h3,
div,
ul,
li,
table,
tbody,
tr,
td,
input,
textarea,
i,
span,
section,
p,
select,
a {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Microsoft YaHei", "PingFang SC", "宋体", "Arial", "黑体", "sans-serif";
}
* {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
input,
textarea {
  -webkit-touch-callout: default!important;
  -webkit-user-select: auto!important;
  -moz-user-select: auto!important;
  -ms-user-select: auto!important;
  user-select: auto!important;
}
body,
html {
  width: 100%;
  height: 100%;
}
body {
  -webkit-tap-highlight-color: transparent;
  font-family: "PMingLiU-ExtB", "Microsoft YaHei", "PingFang SC", "宋体", "Arial", "黑体", "sans-serif";
  font-size: 18px;
}
img {
  vertical-align: top;
}
input[type='text'],
input[type='textarea'],
input[type='password'],
select {
  outline: none;
  border-style: none;
  -webkit-appearance: none;
}
select::-ms-expand {
  display: none;
}
.hide {
  display: none;
}
.iphoneX {
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
  width: 100%;
  height: 10px;
  background: red;
}
.van-nav-bar__title {
  font-size: 0.32rem;
}
.van-nav-bar__left,
.van-nav-bar__right {
  padding: 0 0.2rem;
}
.van-nav-bar__left .van-icon,
.van-nav-bar__right .van-icon {
  font-size: 0.45rem;
}
.van-nav-bar__left .shopping-cart,
.van-nav-bar__right .shopping-cart {
  margin-right: 0.3rem;
}
#app {
  height: 100%;
  opacity: 0;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.van-toast {
  width: auto;
  max-width: 50vw;
  min-width: 88px;
}
.van-notify {
  margin-top: 36px;
  font-size: 0.3rem;
}
.inner {
  padding-left: 0.2rem;
  padding-right: 0.2rem;
}
.padding-33 {
  padding-left: 0.33rem;
  padding-right: 0.33rem;
}
.overflow_y {
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.overflow_y::-webkit-scrollbar {
  display: none;
}
.overflow_x {
  overflow: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.overflow_x::-webkit-scrollbar {
  display: none;
}
.pop-up-layer .title-box {
  height: 1.08rem;
  line-height: 1.08rem;
  font-size: 0.29rem;
  font-weight: bold;
  color: #444444;
  text-align: center;
  border-bottom: 1px solid #ddd;
}
.wm-badge {
  position: relative;
}
.wm-badge .num {
  min-width: 0.24rem;
  height: 0.24rem;
  line-height: 0.24rem;
  padding: 0 0.05rem;
  background: #F05452;
  border-radius: 0.12rem;
  font-size: 0.2rem;
  font-weight: 500;
  color: #FFFFFF;
  text-align: center;
  position: absolute;
  right: 0.02rem;
  top: 0.02rem;
  -webkit-transform: translate(50%, -50%);
  -moz-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  -o-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}
.seckill-item .goods-img .van-image {
  vertical-align: top;
}
.seckill-item .goods-img .van-image:after {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.18rem;
  position: absolute;
  right: -2px;
  top: -2px;
  background: url("https://good-travel-hk.oss-cn-hongkong.aliyuncs.com/barbie/h5/seckill-icon.png") no-repeat;
  background-size: cover;
}
.rob-finish .quota-text {
  opacity: 0;
}
.rob-finish .van-image:after {
  content: "搶曬啦";
  display: block;
  width: 100%;
  height: 0.4rem;
  position: absolute;
  right: 0;
  bottom: 0;
  color: #ffffff;
  text-align: center;
  font-size: 0.36rem;
  padding: 0.1rem 0;
  background: rgba(0, 0, 0, 0.5);
}
/* flex布局 */
/* 子元素-平均分栏 */
.flex1 {
  -webkit-box-flex: 1;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 1;
  /* OLD - Firefox 19- */
  -webkit-flex: 1;
  /* Chrome */
  -ms-flex: 1;
  /* IE 10 */
  flex: 1;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
/* 父元素-横向排列（主轴） */
.flex-h {
  display: box;
  /* OLD - Android 4.4- */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  /* 09版 */
  -webkit-box-orient: horizontal;
  /* 12版 */
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
/* 父元素-横向换行 */
.flex-hw {
  /* 09版 */
  /*-webkit-box-lines: multiple;*/
  /* 12版 */
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* 父元素-水平居中（主轴是横向才生效） */
.flex-hc {
  /* 09版 */
  -webkit-box-pack: center;
  /* 12版 */
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  /* 其它取值如下：
      align-items     主轴原点方向对齐
      flex-end        主轴延伸方向对齐
      space-between   等间距排列，首尾不留白
      space-around    等间距排列，首尾留白
     */
}
.flex-sa {
  /* 12版 */
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  -o-justify-content: space-around;
  justify-content: space-around;
}
.flex-sb {
  /* 12版 */
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}
.flex-fe {
  /* 12版 */
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -o-justify-content: flex-end;
  justify-content: flex-end;
}
.flex-aic {
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
}
.flex-aie {
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -o-align-items: flex-end;
  align-items: flex-end;
}
/* 父元素-纵向排列（主轴） */
.flex-v {
  display: box;
  /* OLD - Android 4.4- */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  /* 09版 */
  -webkit-box-orient: vertical;
  /* 12版 */
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}
/*子元素反向*/
.flex-dcr {
  -webkit-flex-direction: column-reverse;
  -moz-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  -o-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
/* 父元素-纵向换行 */
.flex-vw {
  /* 09版 */
  /*-webkit-box-lines: multiple;*/
  /* 12版 */
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* 父元素-竖直居中（主轴是横向才生效） */
.flex-vc {
  /* 09版 */
  -webkit-box-align: center;
  /* 12版 */
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-align-self: center;
  -o-align-self: center;
  align-self: center;
}
/* 子元素-显示在从左向右（从上向下）第1个位置，用于改变源文档顺序显示 */
.flex-1 {
  -webkit-box-ordinal-group: 1;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-ordinal-group: 1;
  /* OLD - Firefox 19- */
  -ms-flex-order: 1;
  /* TWEENER - IE 10 */
  -webkit-order: 1;
  /* NEW - Chrome */
  order: 1;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
/* 子元素-显示在从左向右（从上向下）第2个位置，用于改变源文档顺序显示 */
.flex-2 {
  -webkit-box-ordinal-group: 2;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-ordinal-group: 2;
  /* OLD - Firefox 19- */
  -ms-flex-order: 2;
  /* TWEENER - IE 10 */
  -webkit-order: 2;
  /* NEW - Chrome */
  order: 2;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
.flex-ac {
  -moz-align-content: center;
  -ms-align-content: center;
  -webkit-align-content: center;
  align-content: center;
}
.xy50 {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.load_div {
  position: fixed;
  top: 50%;
  left: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  box-sizing: content-box;
  width: 88px;
  max-width: 70%;
  min-height: 88px;
  padding: 16px;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  white-space: pre-wrap;
  text-align: center;
  word-break: break-all;
  background: rgba(216, 216, 216, 0.6);
  border-radius: 8px;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}
.van-toast--loading {
  background: rgba(216, 216, 216, 0.6);
}
.van-toast__loading,
.load_div div {
  position: relative;
  width: 2.5em;
  height: 2.5em;
  transform: rotate(165deg);
  font-size: 0.3rem;
}
.van-toast__loading span,
.load_div div span {
  display: none;
}
.van-toast__loading:before,
.van-toast__loading:after,
.load_div div:before,
.load_div div:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-radius: 0.25em;
  transform: translate(-50%, -50%);
}
.van-toast__loading:before,
.load_div div:before {
  animation: before 2s infinite;
}
.van-toast__loading:after,
.load_div div:after {
  animation: after 2s infinite;
}
@keyframes before {
  0% {
    width: 0.5em;
    box-shadow: 1em -0.5em rgba(225, 20, 98, 0.75), -1em 0.5em rgba(111, 202, 220, 0.75);
  }
  35% {
    width: 2.5em;
    box-shadow: 0 -0.5em rgba(225, 20, 98, 0.75), 0 0.5em rgba(111, 202, 220, 0.75);
  }
  70% {
    width: 0.5em;
    box-shadow: -1em -0.5em rgba(225, 20, 98, 0.75), 1em 0.5em rgba(111, 202, 220, 0.75);
  }
  100% {
    box-shadow: 1em -0.5em rgba(225, 20, 98, 0.75), -1em 0.5em rgba(111, 202, 220, 0.75);
  }
}
@keyframes after {
  0% {
    height: 0.5em;
    box-shadow: 0.5em 1em rgba(61, 184, 143, 0.75), -0.5em -1em rgba(233, 169, 32, 0.75);
  }
  35% {
    height: 2.5em;
    box-shadow: 0.5em 0 rgba(61, 184, 143, 0.75), -0.5em 0 rgba(233, 169, 32, 0.75);
  }
  70% {
    height: 0.5em;
    box-shadow: 0.5em -1em rgba(61, 184, 143, 0.75), -0.5em 1em rgba(233, 169, 32, 0.75);
  }
  100% {
    box-shadow: 0.5em 1em rgba(61, 184, 143, 0.75), -0.5em -1em rgba(233, 169, 32, 0.75);
  }
}
#app {
  height: auto;
  background: #F9F9F9;
}
.home-top {
  width: 100%;
  height: 6.73rem;
  background: url("https://good-travel-hk.oss-cn-hongkong.aliyuncs.com/barbie/h5/home-bg.png") no-repeat;
  background-size: cover;
  padding-top: 1.1rem;
}
.home-top .input-box {
  height: 0.62rem;
  background: #F3F3F3;
  -webkit-border-radius: 0.31rem;
  -moz-border-radius: 0.31rem;
  border-radius: 0.31rem;
}
.home-top .input-box .search-icon {
  width: 0.32rem;
  margin-left: 0.18rem;
}
.home-top .input-box input {
  height: 100%;
  padding: 0 0.17rem;
  font-size: 0.28rem;
  background: none;
  border: none;
}
.home-top .input-box .search-btn {
  width: 1rem;
  height: 0.58rem;
  background: #C9467A;
  -webkit-border-radius: 0.29rem;
  -moz-border-radius: 0.29rem;
  border-radius: 0.29rem;
  text-align: center;
  line-height: 0.58rem;
  font-size: 0.28rem;
  color: #FFFFFF;
  font-weight: 500;
  margin-right: 1px;
}
.home-top .message-btn {
  width: 0.4rem;
  margin-left: 0.37rem;
  font-size: 0;
}
.home-top .message-btn img {
  width: 100%;
}
.home-top .home-swiper {
  width: 100%;
  height: 3.2rem;
  margin-top: 0.37rem;
  -webkit-border-radius: 0.2rem;
  -moz-border-radius: 0.2rem;
  border-radius: 0.2rem;
  transform: translateY(0);
  box-shadow: 2px 2px 7px 0px rgba(0, 0, 0, 0.08);
}
.home-top .home-swiper:after {
  content: "";
  display: block;
  width: 100%;
  height: 0.79rem;
  background: linear-gradient(0deg, #000000 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.2;
  -webkit-border-radius: 0.2rem;
  -moz-border-radius: 0.2rem;
  border-radius: 0.2rem;
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
}
.home-top .home-swiper .van-swipe__indicators {
  z-index: 3;
  bottom: 0.13rem;
  width: 100%;
  padding: 0 0.27rem;
  justify-content: flex-end;
}
.home-top .home-swiper .van-swipe__indicators i {
  width: 0.07rem;
  height: 0.07rem;
  background: #FFFFFF;
  opacity: 0.6;
  border-radius: 0.03rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.home-top .home-swiper .van-swipe__indicators .van-swipe__indicator:not(:last-child) {
  margin-right: 0.13rem;
}
.home-top .home-swiper .van-swipe__indicators .van-swipe__indicator--active {
  width: 0.39rem;
  opacity: 1;
}
.type-box {
  height: 1.6rem;
  background: #FFFFFF;
  box-shadow: 2px 2px 7px 0px rgba(0, 0, 0, 0.08);
  border-radius: 0.2rem;
  margin-top: -0.9rem;
  position: relative;
}
.type-box .type-item {
  font-size: 0;
  width: 1.06rem;
}
.type-box .type-item .type-img {
  width: 0.6rem;
  height: 0.6rem;
  margin: 0 auto;
  position: relative;
}
.type-box .type-item .type-img img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.type-box .type-item p {
  font-size: 0.25rem;
  line-height: 0.25rem;
  text-align: center;
  font-weight: 500;
  color: #333333;
  margin-top: 0.08rem;
}
.type-box .type-item .takeout-icon {
  width: 0.55rem;
}
.type-box .type-item .recently-listed-icon {
  width: 0.55rem;
}
.type-box .type-item .hot-sale-icon {
  width: 0.55rem;
}
.type-box .type-item .latest-icon {
  width: 0.55rem;
}
.type-box .type-item .special-offer-icon {
  width: 0.55rem;
}
.home-classify-box {
  padding-top: 0.3rem;
  overflow: hidden;
  overflow-x: auto;
  white-space: nowrap;
}
.home-classify-box::-webkit-scrollbar {
  display: none;
}
.home-classify-box .van-grid {
  background: #ffffff;
}
.home-classify-box .van-icon__image {
  width: 1rem;
  height: 1rem;
}
.home-classify-box .van-grid-item__text {
  font-size: 0.25rem;
  text-align: center;
  font-weight: 500;
  color: #333333;
}
.classify-scroll-bar {
  padding-bottom: 0.5rem;
  position: relative;
}
.classify-scroll-bar .line-bg {
  width: 1rem;
  height: 0.06rem;
  background: #c7c7c7;
  border-radius: 0.06rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.25rem;
  margin: 0 auto;
}
.classify-scroll-bar .line-bg .line {
  width: 0.5rem;
  height: 100%;
  border-radius: 0.06rem;
  background: red;
  position: absolute;
  left: 0;
  top: 0;
}
.seckill-box {
  background: #df93b2;
  padding: 0.3rem 0;
}
.seckill-box .seckill-title-box {
  padding-bottom: 0.3rem;
}
.seckill-box .seckill-title-box .seckill-title {
  font-size: 0.5rem;
  line-height: 0.5rem;
  color: #74160c;
  font-weight: bold;
}
.seckill-box .seckill-title-box .seckill-title .countdown-box {
  margin-left: 0.2rem;
}
.seckill-box .seckill-title-box .seckill-title .countdown-box .colon {
  display: inline-block;
  margin: 0 0.08rem;
  color: #ee0a24;
}
.seckill-box .seckill-title-box .seckill-title .countdown-box .block {
  display: inline-block;
  width: 0.44rem;
  color: #fff;
  font-size: 0.24rem;
  font-weight: 100;
  text-align: center;
  background-image: linear-gradient(#fc142c, #ff7b2c);
  border-radius: 0.08rem;
}
.seckill-box .seckill-title-box .seckill-title .countdown-box .end-text {
  font-size: 0.24rem;
  color: red;
  padding-left: 0.2rem;
}
.seckill-box .seckill-title-box .more-btn {
  background: rgba(0, 0, 0, 0.2);
  height: 0.5rem;
  line-height: 0.5rem;
  padding: 0 0.2rem;
  font-size: 0.3rem;
  border-radius: 0.25rem;
  color: #ffffff;
}
.seckill-box .goods-list {
  overflow: hidden;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-transition: all 5s linear;
  -moz-transition: all 5s linear;
  -ms-transition: all 5s linear;
  -o-transition: all 5s linear;
  transition: all 5s linear;
}
.seckill-box .goods-list::-webkit-scrollbar {
  display: none;
}
.seckill-box .seckill-item {
  display: inline-block;
  width: 2.67rem;
  border-radius: 0.2rem;
  overflow: hidden;
  background: #ffffff;
  padding-bottom: 0.2rem;
  margin-right: 0.2rem;
  text-align: center;
}
.seckill-box .seckill-item:last-child {
  margin-right: 0;
}
.seckill-box .seckill-item .img-box {
  width: 2.67rem;
  height: 2.67rem;
  position: relative;
}
.seckill-box .seckill-item .img-box img {
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}
.seckill-box .seckill-item .img-box .quota-text {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  line-height: 0.4rem;
  font-size: 0.24rem;
  text-align: center;
  color: #a93657;
  background: #fee5e9;
}
.seckill-box .seckill-item .price-text {
  padding: 0.1rem;
  text-align: center;
  font-size: 0.25rem;
  color: #C9467A;
}
.seckill-box .seckill-item .price-text b {
  font-size: 0.3rem;
}
.seckill-box .seckill-item .price-text .line-price {
  font-size: 0.22rem;
  font-weight: bold;
  text-decoration: line-through;
  color: #999999;
}
.seckill-box .seckill-item .btn,
.seckill-box .seckill-item .o-price-btn {
  display: inline-block;
  padding: 0.1rem 0.2rem 0.12rem;
  border-radius: 0.25rem;
  background-image: linear-gradient(to right, #ff6034, #ee0a24);
  color: #ffffff;
  font-size: 0.24rem;
}
.seckill-box .seckill-item .o-price-btn {
  background-image: linear-gradient(to right, #59e000, #34bb00);
}
.seckill-box .seckill-item .grey {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.5;
}
.big-title {
  padding-right: 0.15rem;
  margin-bottom: 0.2rem;
}
.big-title .title-text {
  font-size: 0.33rem;
  line-height: 0.33rem;
  font-weight: bold;
  color: #333333;
  position: relative;
  padding-left: 0.21rem;
}
.big-title .title-text:before {
  content: "";
  display: inline-block;
  width: 0.07rem;
  height: 0.31rem;
  background: #C9467A;
  border-radius: 0 0.03rem 0.03rem 0;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.big-title .see-more {
  font-size: 0.23rem;
  font-weight: 500;
  color: #C9467A;
}
.home-list {
  background: #F9F9F9;
  padding-top: 0.53rem;
  padding-bottom: 0.3rem;
}
.home-list .Hot-sale .hide-scroll-bar {
  box-shadow: 3px 3px 7px 0px rgba(0, 0, 0, 0.05);
}
.home-list .Hot-sale .hide-scroll-bar .scroll-box {
  padding-top: 0.33rem;
}
.home-list .Hot-sale .hide-scroll-bar .scroll-box .goods-item {
  position: relative;
}
.home-list .Hot-sale .hide-scroll-bar .scroll-box .goods-item:nth-child(1)::before {
  content: "";
  display: block;
  width: 0.29rem;
  height: 0.43rem;
  background: url("https://good-travel-hk.oss-cn-hongkong.aliyuncs.com/barbie/h5/top-1-icon.png") no-repeat;
  background-size: cover;
  position: absolute;
  left: 0.03rem;
  top: -0.13rem;
  z-index: 2;
}
.home-list .Hot-sale .hide-scroll-bar .scroll-box .goods-item:nth-child(2)::before {
  content: "";
  display: block;
  width: 0.29rem;
  height: 0.43rem;
  background: url("https://good-travel-hk.oss-cn-hongkong.aliyuncs.com/barbie/h5/top-2-icon.png") no-repeat;
  background-size: cover;
  position: absolute;
  left: 0.03rem;
  top: -0.13rem;
  z-index: 2;
}
.home-list .Hot-sale .hide-scroll-bar .scroll-box .goods-item:nth-child(3)::before {
  content: "";
  display: block;
  width: 0.29rem;
  height: 0.43rem;
  background: url("https://good-travel-hk.oss-cn-hongkong.aliyuncs.com/barbie/h5/top-3-icon.png") no-repeat;
  background-size: cover;
  position: absolute;
  left: 0.03rem;
  top: -0.13rem;
  z-index: 2;
}
.home-list .Latest-listing {
  padding-top: 0.33rem;
  margin-top: 0.33rem;
  background: #ffffff;
  -webkit-border-radius: 0.13rem;
  -moz-border-radius: 0.13rem;
  border-radius: 0.13rem;
  box-shadow: 3px 3px 7px 0px rgba(0, 0, 0, 0.05);
}
.hide-scroll-bar {
  width: 100%;
  height: 4.73rem;
  background: #fff;
  -webkit-border-radius: 0.13rem;
  -moz-border-radius: 0.13rem;
  border-radius: 0.13rem;
}
.scroll-box {
  width: 99%;
  margin: 0 auto;
  overflow: hidden;
  overflow-x: auto;
}
.scroll-box::-webkit-scrollbar {
  display: none;
}
.goods-item {
  width: 2.67rem;
  margin-left: 0.13rem;
}
.goods-item:last-child {
  width: 2.8rem;
  padding-right: 0.13rem;
}
.goods-item .goods-img {
  width: 2.67rem;
  height: 2.67rem;
  -webkit-border-radius: 0.2rem;
  -moz-border-radius: 0.2rem;
  border-radius: 0.2rem;
  overflow: hidden;
}
.goods-item .goods-name-box {
  width: 100%;
  height: 2.4em;
  font-size: 0.24rem;
}
.goods-item .goods-name-box .goods-name {
  font-size: 0.24rem;
  font-weight: bold;
  color: #333333;
  padding: 0 0.04rem;
  margin-top: 0.05rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.goods-item .line-price {
  height: 0.23rem;
  line-height: 0.23rem;
  font-size: 0.23rem;
  font-weight: bold;
  text-decoration: line-through;
  color: #999999;
  margin-top: 0.2rem;
}
.goods-item .price {
  font-size: 0.25rem;
  font-weight: bold;
  color: #C9467A;
}
/*# sourceMappingURL=index.css.map */