.content {
  width: 14.4rem;
  margin: auto;
}
.content h1 {
  font-size: 0.38rem;
  color: #404040;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.content h1 i {
  display: block;
  text-align: center;
  width: 1.8rem;
  position: relative;
}
.content h1 i b {
  display: block;
  position: relative;
  z-index: 1;
}
.content h1 i::after {
  content: '';
  display: block;
  width: 1.8rem;
  height: 0.14rem;
  border-radius: 0.1rem;
  background: #d988ff;
  position: absolute;
  left: 0;
  bottom: 0;
}
.content .briefInfo {
  width: 100%;
  /* border-bottom: 1px solid #c9c9c9; */
  padding: 1.3rem 0 1.4rem;
}
.content .briefInfo p {
  font-size: 0.18rem;
  color: #808080;
  margin-bottom: 0.4rem;
}
.content .briefInfo p:last-child {
  margin: 0;
}
.content .record {
  padding: 1.4rem 0 1.37rem;
}
.content .record h1 {
  margin-bottom: 1.17rem;
}
.content .record h1 i {
  width: 2.4rem;
}
.content .record h1 i::after {
  width: 2.4rem;
}
.content .record .info {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 0 0.5rem;
  height: 14rem;
}
.content .record .info img {
  width: 0.76rem;
}
.content .record .info .item {
  width: 6.11rem;
  height: 1.7rem;
  margin-bottom: 1.47rem;
  box-sizing: border-box;
  padding: 0.3rem 0.68rem 0 0.5rem;
  color: #808080;
}
.content .record .info .item:last-child {
  margin-bottom: 0;
}
.content .record .info .item h2 {
  font-size: 0.26rem;
  margin-bottom: 0.2rem;
}
.content .record .info .item p {
  font-size: 0.18rem;
  line-height: 0.36rem;
}
.content .record .info .left {
  padding-top: 1.05rem;
}
.content .record .info .left .item {
  background: url('//img1.liang520.com/vhuaboss/web/image/timeLeft.jpg') no-repeat;
  background-size: 100%;
  text-align: right;
}
.content .record .info .right {
  padding-top: 2.66rem;
}
.content .record .info .right .item {
  background: url('//img1.liang520.com/vhuaboss/web/image/timeRight.jpg') no-repeat;
  background-size: 100%;
  margin-bottom: 1.5rem;
}
.content .record .info .right .item:last-child {
  margin-bottom: 0;
}
.content .ani h1 i b {
  animation: goTops 0.7s linear;
}
.content .ani h1 i::after {
  animation: goTops 0.8s linear;
}
.content .ani p {
  animation: goTops 1s linear;
}
.content .ani2 h1 i b {
  animation: goTops 1s linear;
}
.content .ani2 h1 i::after {
  animation: goTops 1.1s linear;
}
.content .ani2 .info .left .item:nth-child(1) {
  animation: goRight 1.5s linear;
}
.content .ani2 .info .left .item:nth-child(2) {
  animation: goRight 1.9s linear;
}
.content .ani2 .info .left .item:nth-child(3) {
  animation: goRight 2.3s linear;
}
.content .ani2 .info .left .item:nth-child(4) {
  animation: goRight 2.7s linear;
}
.content .ani2 .info .line {
  animation: goOpacity 1.4s linear;
}
.content .ani2 .info .right .item:nth-child(1) {
  animation: goLeft 1.7s linear;
}
.content .ani2 .info .right .item:nth-child(2) {
  animation: goLeft 2.1s linear;
}
.content .ani2 .info .right .item:nth-child(3) {
  animation: goLeft 2.5s linear;
}
.content .ani2 .info .right .item:nth-child(4) {
  animation: goLeft 2.9s linear;
}
.region {
  width: 100%;
  height: 100vh;
  visibility: hidden;
  position: absolute;
  z-index: -1;
  top: 0;
}
@keyframes goTops {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  50% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    transform: translateY(10px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes goOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes goRight {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  50% {
    transform: translateX(-100px);
    opacity: 0;
  }
  90% {
    transform: translateX(-10px);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes goLeft {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  60% {
    transform: translateX(100px);
    opacity: 0;
  }
  90% {
    transform: translateX(10px);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
  }
}
