@charset "UTF-8";
.w {
  max-width: 1300px;
  margin: 0 auto;
}

.service-information-top {
  margin: 115px auto 0;
  text-align: center;
  animation: textFadeInUp 1s ease forwards;
}
.service-information-top .label {
  color: rgba(102, 107, 117, 0.6);
  font-size: 24px;
  /* height: 33px; */
  line-height: 33px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.service-information-top .info {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 32px;
  color: #000000;
  line-height: 45px;
  text-align: center;
  font-style: normal;
}
.service-information-top .info::after {
  content: "";
  display: block;
  margin-left: 14px;
  width: 20px;
  height: 1px;
  background-color: #979797;
  opacity: 0.5;
}
.service-information-top .info::before {
  content: "";
  display: block;
  margin-right: 14px;
  width: 20px;
  height: 1px;
  background-color: #979797;
  opacity: 0.5;
}

/* 基础浮动动画样式 */
.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.animate {
  opacity: 1;
  transform: translateY(0);
}

.arrow-button {
  background-color: red;
}

.arrow {
  display: inline-block;
}

.arrow-button:hover .arrow {
  animation: arrowSlide 0.7s ease-in-out;
}
.record-number a{
  color: rgba(255, 255, 255, 0.6);
  margin: 0 8px;
}
.record-number .icon{
  width:15px;
  height: 15px;
  margin:0 5px 5px 0;
}
.record-number a:hover{
  color: #ffffff;
  text-decoration: underline;
}

@keyframes arrowSlide {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(15px);
  }
  100% {
    transform: translateX(0);
  }
}/*# sourceMappingURL=common.css.map */