html,body{
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  /* cursor: none; */
}
html{
  font-size: 0px;
  background-color: #fff;
}
a{
  text-decoration: none;
}

#all_wrap{
  position: relative;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  min-width: 1200px;
  max-width: 1920px;
  min-height: 100vh;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  overflow: hidden;
  /*
  background:repeating-linear-gradient(
  -45deg,
  #ffffff,
  #ffffff 7px,
  #fffbf0 0,
  #fffbf0 14px
  );
  */
  background-color: #ffffff;
}

#goods{
  position: relative;
  width: 100%;
  height: auto;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 500px;
  padding: 0;
  background-repeat: no-repeat;
  background-position: center top;
}

#goods > .headerBG{
  position: relative;
  width: 100%;
  height: 370px;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
}

#goods > .goodsWrap{
  display: block;
  position: relative;
  width: 1200px;
  height: auto;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  margin-top: 70px;
  padding: 0;
  text-align: center;
}
#goods > .goodsWrap > img:nth-child(2){
  position: absolute;
  top: 100px;
  left: calc(50% - 445.5px);
}
#goods > .goodsWrap > a{
  display: block;
  position: relative;
  width: 344px;
  height: 52px;
  top: 0;
  left: 0;
  right: 0;
  padding: 0;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  margin-bottom: 50px;
}
#goods > .goodsWrap > a::before{
  content: "";
  position: absolute;
  width: 344px;
  height: 52px;
  top: 8px;
  left: 5px;
  background-color: #e6268988;
  border-radius: 24px;
}
#goods > .goodsWrap > a > img{
  transition-duration: 0.5s;
  transform: translate(0px,0px);
}
#goods > .goodsWrap > a:hover > img{
  transform: translate(5px,8px);
}
#goods > .goodsWrap > a > img:nth-child(1){
  position: absolute;
  top: 0;
  left: 0;
}
#goods > .goodsWrap > a > img:nth-child(2){
  transition-duration: 0.5s;
  opacity: 1;
}
#goods > .goodsWrap > a:hover > img:nth-child(2){
  opacity: 0;
}
#goods > .goodsWrap > img.is_active{
  opacity: 1;
  animation: effectB 1s linear 0s 1;
}
@-webkit-keyframes effectB {
  0% {
    filter: drop-shadow(0px 30px #00000088);
	}
  100% {
    filter: drop-shadow(0px 0px #00000000);
  }
}
