.game-swiper {
  position: absolute;
  width: 13.7rem;
  height: 3rem;
  /* background-color: pink; */
  left: 50%;
  top: -1.25rem;
  transform: translateX(-50%);
  display: flex;
  overflow-x: hidden;
}
.right-icon {
  position: absolute;
  width: 0.86rem;
  height: 0.86rem;
  border-radius: 50%;
  top: -0.65rem;
  left: 14rem;
  z-index: 999;
  
  text-align: center;
  overflow: hidden;
}
.right-icon > img {
  width: 0.86rem;
  height: 0.86rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0.03rem 0.03rem 0.4rem #d3d0d0;
  cursor: pointer;
}
.game-swiper-item {
  flex-shrink: 1;
  flex: 1;
  width: 12.7rem;
  height: 2.33rem;
  position: absolute;
  top: 0;
  left: 0;
  text-align: right;
  transition: transform 0.5s linear;
  background: url('../images/comment/1.png') no-repeat;
  background-size: cover;
  border-radius: 0.38rem;
  box-shadow: 5px 3px 10px #ccc;
  box-sizing: border-box;
  padding: 0.2rem 1.5rem;
  padding-left: 1.8rem;
}
.game-swiper-item:nth-child(1) {
  top: 1rem;
  left: 0.6rem;
  scale: 0;
}
.game-swiper-item:nth-child(2) {
  top: 0;
  left: 0.5rem;
  scale: 0;
}
.game-swiper-item:nth-child(3) {
  top: 0.4rem;
  left: 0.2rem;
  scale: 0;
}
.game-swiper-item:nth-child(4) {
  top: 0.6rem;
  left: 1.2rem;
  scale: 0.9;
}
.game-swiper-item:nth-child(5) {
  top: 0.3rem;
  left: 0.6rem;
  scale: 0.95;
}
.game-swiper-item:nth-child(6) {
  top: 0;
  left: 0rem;
  scale: 1;
}
.game-user-name {
  font-size: 0.24rem;
  color: #5F73B2;
  font-family: Objectivity-Bold;
  text-align: left;
  width: 100%;
  margin: 0 auto;
  padding: 0.2rem;
  padding-left: 1.6rem;
}
.game-user-name > span {
  margin-right: 0.2rem;
}
.game-user-name > img {
  width: 1.59rem;
  height: 0.25rem;
  vertical-align: middle;
}
.game-comment {
  font-size: 0.22rem;
  color: #666;
  font-family: Objectivity-Regular;
  text-align: left;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0.2rem;
  padding-left: 1.6rem;
  line-height: 0.26rem;
}
@keyframes slideOutLeft {
  0% {
    left: 0rem;
  }
  50% {
    left: -50%;
    opacity: 1;
  }
  100% {
    left: -100%;
    opacity: 0;
  }
}
/* 倒数第二个元素将位置和大小都还原成倒数第一个的值 */
@keyframes scaleBig {
  from {
    top: 0.3rem;
    left: 0.6rem;
    scale: 0.95;
  }
  to {
    top: 0rem;
    left: 0rem;
    scale: 1;
  }
}
@keyframes scaleBig2 {
  from {
    top: 0.6rem;
    left: 1.2rem;
    scale: 0.9;
  }
  to {
    top: 0.3rem;
    left: 0.6rem;
    scale: 0.95;
  }
}
@keyframes scaleBig3 {
  from {
    top: 0.4rem;
    left: 0.2rem;
    scale: 0.5;
  }
  to {
    top: 0.6rem;
    left: 1.2rem;
    scale: 0.9;
  }
}
.slide-out-left {
  animation: slideOutLeft 0.5s linear;
}
.scale-big {
  animation: scaleBig 0.5s linear;
}
.scale-big2 {
  animation: scaleBig2 0.5s linear;
}
.scale-big3 {
  animation: scaleBig3 0.5s linear;
}