.wrap {
  max-width: 440px;
  margin: 0 auto;
  padding-bottom: 80px;
}
.grad-btn {
  width: 84%;
height: 42px;
background: linear-gradient( 90deg, #FF8000 0%, #FF4019 100%);
border-radius: 21px;
}
.goods-link {
  /* background-color: rgba(255,0,0,0.5); */
  width: 50%;
  height: 73vw;  
  margin-bottom: 10px;
    
}

.light {
  position: absolute;
  left: -100vw;
  top: 0;
  width: 100vw;
  height: 40vw;
  background-image: -moz-linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  background-image: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  transform: skewx(-25deg);
  -o-transform: skewx(-25deg);
  -moz-transform: skewx(-25deg);
  -webkit-transform: skewx(-25deg);
  animation-name: moveRight;
  animation-timing-function: linear;
  animation-duration: 5000ms;
  animation-iteration-count: infinite;
}

@keyframes moveRight {
  from {
    left: -100vw;
  }

  6%, 100% {
    left: 100vw;
  }
}


/* 进度条 */
.progress-bar {
  /* width: 100%;     */
  width: 30vw;
  height: 3px;
  background-color: #eee;
  border-radius: 3px;
  display: flex;
}

.progress-bar .progress-complete {
  height: 100%;
  background-color: #FE3637;
  border-radius: 3px;
}

.progress-number {
  color: #C12C2C !important;
}

.progress-complete {
  height: 100%;
  background-color: #FE3637;
  border-radius: 3px;
}

.complete-count {
  font-size: 14px !important;
  font-weight: bold;
}

/* 加载进度 */
.progress-bar.loading-progress {
  /* width: 100%;     */
  /* width: 0vw; */
  height: 5px;
  background-color: #eee;
  border-radius: 5px;
  display: flex;
}

.progress-bar.loading-progress .progress-complete {
  height: 100%;
  background-color: #FE3637;
  border-radius: 3px;
}


@-webkit-keyframes fadeInDownSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20%, 0);
    transform: translate3d(0, -20%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDownSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20%, 0);
    transform: translate3d(0, -20%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDownSmall {
  -webkit-animation-name: fadeInDownSmall;
  animation-name: fadeInDownSmall;
}


@-webkit-keyframes fadeOutUpSmall {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -20%, 0);
    transform: translate3d(0, -20%, 0);
  }
}

@keyframes fadeOutUpSmall {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -20%, 0);
    transform: translate3d(0, -20%, 0);
  }
}
/* .animated.fadeInDownSmall, */
 .animated.fadeOutUpSmall {
  animation-duration: 200ms;
}
@font-face {
  font-family: DIN Bold;
  src: url(/wallet/fonts/DIN-Bold.otf);
}
.ff-din-bold {
  font-family: DIN Bold;
}

@font-face {
  font-family: Alibaba-PuHuiTi-M;
  src: url(/wallet/fonts/Alibaba-PuHuiTi-Medium.ttf);
}
.ff-puhui-m {
  font-family: Alibaba-PuHuiTi-M;
}

@font-face {
  font-family: Alibaba-PuHuiTi-Regular;
  src: url(/wallet/fonts/Alibaba-PuHuiTi-Regular.ttf);
}
.ff-puhui-regular, .ff-puhui {
  font-family: Alibaba-PuHuiTi-Regular;
}