.activity-11-box{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 9999;
}
.activity-11-content{
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 848px;
  background-image:url('/img/activity11/activity-11-all.png');
  background-size: 100%;
  background-position: center 16%;
  /*兼容小图片情况  */
  /* background-size: 50% 50%; */
  background-repeat: no-repeat;
}
.activity-11-close{
  position: absolute;
  top: 11.5%;
  right: 12.5%;
  width: 26px;
  height: 26px;
  transform: translate(-50%, -50%);
  background: url('/img/activity11/activity-11-close.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.activity-11-btn{
  position: absolute;
  bottom: 16%;
  left: 51.5%;
  width: 0;
  height: 119px;
  transform: translate(-50%,-50%);
  background-image: url('/img/activity11-23/按钮.png');
  background-repeat: no-repeat;
  background-size: 88%;
  font-size: 0;
  color: #cb5200;
  line-height: 78px;
  text-align: center;
  cursor: pointer;
}
.activity-11-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  transition: .3s;
}

.activity-11-btn-block {
  position: absolute;
  bottom: 17%;
  left: 50%;
  width: 265px;
  height: 72px;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.activity-11-small-box{
  display: none;
  position: fixed;
  bottom:52%;
  right: 0px;
  transform: translateY(-185px);
  width: 90px;
  height: 90px;
  /* background-image: url('/img/activity11/activity-11-small-2.png'); */
  /* background-size: 145%; */
  background-position: center;
  z-index: 110;
  background-repeat: no-repeat;
  cursor: pointer;
}

.activity-11-small-box-img{
  width: 100%;
  height: 100%;
  background-image: url('/img/activity11/activity-11-small-2.png');
  background-size: 100%;
  background-position: center;
  cursor: pointer;
  background-repeat: no-repeat;
}


@media screen and (max-width: 768px) {
  .activity-11-content{
    width: 376px !important;
    height: 424px;
    background-image:url('/img/activity11/activity-mobile.png');
  }
  .activity-11-close{
    top: 7%;
    right: 0%;
  }
  .activity-11-btn{
    bottom: 20%;
    width: 123px;
    height: 50px;
    line-height: 39px;
    font-size: 0px;
    background-image: url('/img/activity11-23/按钮.png');
  }
  .activity-11-btn-block {
    position: absolute;
    bottom: 5%;
    left: 52%;
    width: 185px;
    height: 40px;
    transform: translate(-50%, -50%);
    cursor: pointer;
  }
  .activity-11-small-box{
    width: 75px;
    height: 75px;
    right: 4px;
    bottom: 76px;
    transform: translateY(0) !important;
  }
}

.tada-animate {
  animation-duration: .5s;
  animation-fill-mode: both;
  animation-name: tada;
}
@keyframes tada {
  from {
      transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
      transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
      transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
      transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
      transform: scale3d(1, 1, 1);
  }
}