@charset "UTF-8";

html, body {
  margin: 0;
  height: 100%;
  min-width: 1100px;
}

#app {
  font-size: 0;
  background-color: #fff;
}
.img-wrapper {
  position: relative;
  font-size: 0;
  width: 1000px;
  margin: 0 auto;
}
.img-wrapper>img{
  width: 100%;
}
.img-bg {
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 auto;
  position: relative;
}
.app-data {
  /* position: absolute;
  font-size: .68rem;
  width: 100%;
  text-align: center;
  color: #e44646; */
  position: absolute;
  font-size: 32px;
  font-weight: bold;
}
.app-btn {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10;
}
.video-wrapper {
  width: 1000px;
  margin: 0 auto;
  padding: 30px 20px;
  font-size: 0;
}
.video-border {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 10px rgba(0,0,0,.3);
  background-color: #fd913f;
  padding: 12px 160px;
  position: relative;
}
.video-border>video {
  border-radius: 12px;
}
.video-shadow {
  position: absolute;
  top: 12px;
  left: 160px;
  width: calc(100% - 320px);
  height: calc(100% - 24px);
  background-color: rgba(0, 0, 0, .2);
  border-radius: 12px;
}

#hand {
  animation: zoom 1s infinite;
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
