.content {
  width: 14.4rem;
  margin: auto;
  padding: 0.8rem 0 0.9rem;
}
.content h1 {
  font-size: 0.38rem;
  color: #404040;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.content h1 i {
  display: block;
  text-align: center;
  width: 1.7rem;
  position: relative;
  height: 0.5rem;
}
.content h1 i b {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
  animation: goTops 0.7s linear;
}
.content h1 i::after {
    content: '';
    display: block;
    width: 1.7rem;
    height: 0.14rem;
    border-radius: 0.1rem;
    background: #00E5FF;
    position: absolute;
    left: 0;
    bottom: 0;
    animation: goTops 0.8s linear;
}
.content .inner {
  display: flex;
  justify-content: space-between;
}
.content .inner .left {
  width: 4.2rem;
}
.content .inner .left .line {
  display: flex;
  margin-bottom: 0.2rem;
}
.content .inner .left .line::before {
  content: '';
  display: block;
  width: 0.33rem;
  height: 0.38rem;
}

.content .inner .left .line p {
  line-height: 0.38rem;
  color: #808080;
  font-size: 0.18rem;
}
.content .inner .right {
  width: 8.04rem;
  height: 3.04rem;
  margin-right: 0.6rem;
  background: url('map.png') no-repeat center center;
  background-size: 100%;
  position: relative;
}
.content .inner .right .coordinate {
  position: absolute;
  left: 3.6rem;
  top: 1.0rem;
  width: 1.0rem;
  height: 1.0rem;
}
.content .inner .right .coordinate::after {
  content: '';
  display: block;
  width: 1.24rem;
  height: 1.24rem;
  background: rgba(205, 96, 255, 0.2);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  animation: goscale 1s linear infinite;
}
.content .inner .right .coordinate i {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0.1rem;
  height: 0.53rem;
  background-size: 0.48rem auto;
  z-index: 10;
}
.content .contact {
  display: flex;
  align-items: center;
  padding: 1.7rem 0 0.9rem;
}
.content .contact .item {
  flex: 1;
  font-size: 0.22rem;
  color: #404040;
  display: flex;
  align-items: center;
}
.content .contact .item i {
  display: block;
  margin-right: 0.3rem;
}
.content .hide {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
@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 goscale {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
