.banner{
  width: 100%;
  min-width: 1200px;
}
.banner-parent{
  width: 1200px;
  height: 386px;
}
.banner-img1{
  position: relative;
  height: 450px;
  background-color: rgba(0, 0, 0, 0.3);
  background-position: center;
  background-size: cover;
}
.banner-img1 .banner-parent{
  padding-top: 60px;
  margin: 0 auto;
  z-index: 99;
}
.banner-img1 .banner-parent .banner-title{
  font-size: 40px;
  font-weight: 600;
  color: #FFFFFF;
}
.banner-img1 .banner-parent .banner-ry{
  margin-top: 8px;
  height: 32px;
  font-size: 16px;
  font-weight: 600;
  text-shadow: 0px 1px 2px rgba(0,0,0,0.15);
  background: linear-gradient(315deg, #EEC97C 0%, #FFF0C2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.banner-img1 .banner-parent .banner-ry img{
  height: 35px;
  vertical-align: -12px;
  margin-right: 6px;
}

.banner-img1 .banner-parent .banner-xian{
  margin: 40px 0;
  width: 160px;
  height: 8px;
  background: linear-gradient(90deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.25) 100%);
}
.banner-img1 .banner-parent .banner-bottom{
  display: flex;
  justify-content: space-between;
}
.banner-img1 .banner-parent .banner-bottom .banner-left{
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  color: #FFFFFF;
}
.banner-img1 .banner-parent .ryBox{
  display: flex;
}
.banner-img1 .banner-parent .ryBox .ryItem{
  display: flex;
  align-items: center;
  margin-left: 40px;
}
.banner-img1 .banner-parent .ryBox .ryItem:first-of-type{
  margin-left: 0;
}
.banner-img1 .banner-parent .ryBox .ryItem img{
  width: 36px;
  height: 72px;
}
.banner-img1 .banner-parent .ryBox .ryItem>div{
  margin: 0 8px;
  text-align: center;
}
.banner-img1 .banner-parent .ryBox .ryItem .name{
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  background: linear-gradient(315deg, #EEC97C 0%, #FFF0C2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.banner-img1 .banner-parent .ryBox .ryItem .value{
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  background: linear-gradient(315deg, #FFE2A7 0%, #FFF7E0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 16px;
}

.animated-text{
  background-color: #000;
  border-radius: 0 5vmin 5vmin 0;
  position: relative;
  overflow: hidden;
  width: 145px;
  height: 26px;
  display: inline-block;
  padding: 1px;
}
.animated-text .img {
  position: absolute;
  z-index: 3;
}

.animated-text::before{
  content: '';
  width: 100%;
  height: 95%;
  background-color: #22292f;
  position: absolute;
  left: 0;
  top: 0;
  background-image: conic-gradient(transparent, #ffffff, transparent 45%);
  z-index: 1;
  animation: rotate 7s linear infinite;
}
@keyframes rotate{
  to{
  transform:rotate(360deg);
}
}

.animated-text::after{
  content: '';
  width: 100%;
  height: 95%;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  background-image: -webkit-linear-gradient(-45deg, #000 40%, #FFF 40%, #FFF 50%, #000 50%);
  z-index: 3;
  animation: shining 15s linear infinite;
}
@keyframes shining {  
  
  from {  
    opacity: 0.1;
    background-position: -1000px 0px; 
  }  
  to{
    opacity: 0.2;
    background-position: 1000px 0px; 
  }
}  

.shop-tips {
    height: 21px;
    border-radius: 2px;
    border: 1px solid #AAAAAA;
    background: #EEEEEE;
    width: 272px;
    font-size: 12px;
    color: #767676;
    line-height: 21px;
    text-align: center;
    float: left;
    margin: 10px 0;
}