.rotate-device {
  z-index: 11000;
  display: none;
  position: fixed;
  top: 0;
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  background-color: rgba(255, 255, 255, 0.9);
  width: 100%;
  height: 100%;
}
.rotate-device .rotate-device-inner {
  width: 180px;
  height: 180px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -90px;
  margin-top: -88px;
}
.rotate-device .rotate-device-inner p {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 16px;
  color: #333;
  opacity: 0;
}
.rotate-device .phone {
  position: relative;
  left: 50%;
  margin-left: -40px;
  width: 0;
  height: 0;
  border: 0 solid #333;
  background: #fff;
  border-radius: 8px;
  box-sizing: border-box;
  transform: rotate(90deg);
}
.rotate-device .phone i {
  text-align: center;
  width: 100%;
  line-height: 104px;
  font-size: 32px;
  opacity: 0;
  transform: scaleX(-1);
}
@media only screen and (max-width: 991.98px) and (orientation: landscape) {
  .rotate-device {
    display: block;
  }
  .rotate-device .phone {
    animation: sizeIncrease 0.5s forwards ease,
      borderIncrease 0.5s 0.5s forwards ease, rotateRight 0.7s 1s forwards ease;
  }
  .rotate-device .phone i {
    animation: fadeIn 0.5s 0.8s forwards ease;
  }
  .rotate-device .rotate-device-inner p {
    animation: fadeIn 0.5s 1.3s forwards ease;
  }
}
@keyframes sizeIncrease {
  0% {
    width: 0;
    height: 0;
  }
  50% {
    width: 0;
    height: 0;
  }
  100% {
    width: 80px;
    height: 140px;
  }
}
@keyframes borderIncrease {
  100% {
    border-width: 20px 10px;
  }
}
@keyframes fadeIn {
  100% {
    color: #333;
    opacity: 1;
  }
}
@keyframes rotateRight {
  100% {
    transform: rotate(0);
  }
}
