

.container {
  width:1200px;
  margin-top: 60px;
  /*margin-left: -35px;*/
  /*position: absolute;*/
  /*top: 70%;*/
  /*left: 230px;*/
  /*right: 0;*/
  /*transform: translateY(-50%);*/
  /*margin: auto;*/
  /*display: flex; !* 使用Flexbox布局 *!*/
  /*flex-wrap: nowrap; !* 防止元素换行 *!*/
  /*justify-content: center; !* 子元素水平居中对齐 *!*/
  /*align-items: flex-start; !* 子元素在垂直方向上顶部对齐 *!*/
}

.container .card {
  margin-left: 21px; /* 保留右侧间距 */
  display: inline-block;
  transform: scale(0);
  width: calc(33.33% - 14px);
  text-align: center;
  position: relative;
  transition: all 0.2s;
  cursor: pointer;
  opacity: 0.7;
  box-shadow: 0 17px 46px -10px #777777;
  height: 650px;
  border-radius: 14px;
}


.container .card:nth-of-type(1) {
  -webkit-animation: intro 1s 0.1s forwards;
          animation: intro 1s 0.1s forwards;
}
.container .card:nth-of-type(2) {
  -webkit-animation: intro 1s 0.2s forwards;
          animation: intro 1s 0.2s forwards;
}
.container .card:nth-of-type(3) {
  -webkit-animation: intro 1s 0.3s forwards;
          animation: intro 1s 0.3s forwards;
}


/*图片上下移动*/
.container .card:hover .card_inner__header img {
  top: -650px;
  transition: all 3.5s linear;
}
.container .card:hover .card_inner__cta button {
  transform: scale(1);
}
.container .card:nth-of-type(1):hover .card_inner__circle img {
  -webkit-animation: launch 1s forwards;
          animation: launch 1s forwards;
}
.container .card:nth-of-type(1) .card_inner__circle img {
  top: 22px;
  left: 1px;
}
.container .card:nth-of-type(2):hover .card_inner__circle img {
  -webkit-animation: spin 1s forwards;
          animation: spin 1s forwards;
}
.container .card:nth-of-type(2) .card_inner__circle img {
  top: 22px;
}
.container .card:nth-of-type(3):hover .card_inner__circle img {
  -webkit-animation: fly 1s forwards;
          animation: fly 1s forwards;
}
.container .card:nth-of-type(3) .card_inner__circle img {
  top: 22px;
  left: 1px;
}
.container .card:hover {
  opacity: 1;
}
.container .card_inner__circle {
  overflow: hidden;
  width: 70px;
  position: absolute;
  background: #F1F0ED;
  z-index: 10;
  height: 70px;
  border-radius: 100px;
  left: 0;
  box-shadow: 0px 7px 20px rgba(0, 0, 0, 0.28);
  right: 0;
  margin: auto;
  border: 4px solid white;
  top: 82px;
}

.container .card_inner__header {
  height: 660px;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  overflow: hidden;
}
.container .card_inner__header img {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  transition: all 0.1s linear;
}
.container .card_inner__content {
  padding: 20px;
}
.container .card_inner__content .price {
  color: white;
  font-weight: 800;
  font-size: 70px;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.42);
}
.container .card_inner__content .text {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 100;
  margin-top: 20px;
  font-size: 13px;
  line-height: 16px;
}
.container .card_inner__content .title {
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.64);
  margin-top: 40px;
  font-size: 25px;
  letter-spacing: 1px;
}
.container .card_inner__cta {
  position: absolute;
  bottom: -24px;
  left: 0;
  right: 0;
  margin: auto;
  width: 200px;
}
.container .card_inner__cta button {
  padding: 16px;
  /*box-shadow: 0px 0px 40px 4px #687dfc, 0px 0px 0px 2px rgba(255, 255, 255, 0.19) inset;*/
  width: 100%;
  background: -webkit-linear-gradient(-90deg, #687dfc 0%, #4a64fc 100%);
  border: none;
  font-family: "Yanone Kaffeesatz", sans-serif;
  color: white;
  outline: none;
  font-size: 14px;
  border-radius: 6px;
  transform: scale(0.94);
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.3s 0.1s;
}
.container .card_inner__cta button span {
  text-shadow: 0px 4px 18px #BA3F57;
}
.container .card_inner__cta button:hover {
  box-shadow: 0px 0px 20px 4px #0dcaf0, 0px 0px 0px 2px rgba(255, 255, 255, 0.19) inset;
}

@-webkit-keyframes launch {
  0% {
    left: 1px;
  }
  25% {
    top: -50px;
    left: 1px;
  }
  50% {
    left: -100px;
  }
  75% {
    top: 100px;
    transform: rotate(40deg);
  }
  100% {
    left: 1px;
  }
}

@keyframes launch {
  0% {
    left: 1px;
  }
  25% {
    top: -50px;
    left: 1px;
  }
  50% {
    left: -100px;
  }
  75% {
    top: 100px;
    transform: rotate(40deg);
  }
  100% {
    left: 1px;
  }
}
@-webkit-keyframes fly {
  0% {
    left: 0px;
  }
  25% {
    top: -50px;
    left: 50px;
  }
  50% {
    left: -130px;
  }
  75% {
    top: 60px;
  }
  100% {
    left: 0px;
  }
}
@keyframes fly {
  0% {
    left: 0px;
  }
  25% {
    top: -50px;
    left: 50px;
  }
  50% {
    left: -130px;
  }
  75% {
    top: 60px;
  }
  100% {
    left: 0px;
  }
}
@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(720deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(720deg);
  }
}
@-webkit-keyframes intro {
  0% {
    transform: scale(0);
  }
  25% {
    transform: scale(1.06);
  }
  50% {
    transform: scale(0.965);
  }
  75% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes intro {
  0% {
    transform: scale(0);
  }
  25% {
    transform: scale(1.06);
  }
  50% {
    transform: scale(0.965);
  }
  75% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}





@media screen and (max-width:767px){
    
.container {
  width: 100%;
  margin-top: 0;
  margin-left: 0;
}

.container .card {
    width: 100%;
    margin-left:0;
    margin-top: 40px;

}




}