@charset "UTF-8";
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(90deg);
  }
}
@keyframes growFromBottom {
  0% {
    height: 0;
  }
  100% {
    height: 0.6rem;
  }
}
.box {
  width: 100%;
  height: 8.31rem;
  background: linear-gradient(228deg, #FE7A5A 0%, #E43D45 100%);
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  /* 添加过渡效果 */
  /* 将背景图居中 */
}
.box .txt1 {
  font-family: PingFangSC, PingFang SC;
  font-weight: 600;
  font-size: 0.47rem;
  color: #FFFFFF;
  margin: 1.43rem 0 0.53rem;
}
.box .content {
  display: flex;
  align-items: center;
  height: 3.13rem;
  width: 15.13rem;
  box-sizing: border-box;
  padding: 0 1.39rem;
}
.box .content text {
  font-family: PingFangSC, PingFang SC;
  font-weight: 600;
  font-size: 0.75rem;
  color: #FFFFFF;
  margin-right: 1.84rem;
}
.box .content ul li {
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 0.3rem;
  color: #FFFFFF;
  margin-bottom: 0.3rem;
  position: relative;
}
.box .content ul li::before {
  content: "";
  display: block;
  width: 0.1rem;
  height: 0.1rem;
  background: #FFFFFF;
  position: absolute;
  border-radius: 50%;
  left: -0.25rem;
  top: 50%;
  transform: translateY(-50%);
}
.box .content ul li:last-child {
  margin-bottom: 0;
}
.box #content text {
  transition: transform 0.6s ease-in-out;
}
.box .transform-box {
  position: absolute;
  margin: 0.5rem;
  width: 21.06rem;
  height: 21.06rem;
  background-image: url("../img/CenterAnimation/circular@2x.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  transform-origin: center;
  /* 设置旋转中心点为元素中心 */
  transition: transform 0.6s ease-in-out;
}
.box .transform-box.active1 {
  transform: rotate(0deg);
  transition: transform 0.6s ease-in-out;
}
.box .line-box {
  width: 18.55rem;
  height: 0.03rem;
  position: absolute;
  top: 6.22rem;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("../img/CenterAnimation/line2x.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: space-around;
}
.box .line-box #lineBox {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: absolute;
  top: -0.16rem;
}
.box .line-box #lineBox .yuandiv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.box .line-box #lineBox .yuandiv .yuan {
  position: relative;
  transition: all 0.6s ease-in-out;
  width: 0.35rem;
  height: 0.35rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.box .line-box #lineBox .yuandiv .yuan .span1 {
  width: 0.25rem;
  height: 0.25rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  transition: all 0.6s ease-in-out;
  /* 添加过渡效果 */
  position: relative;
  border: 0 solid #FFFFFF;
}
.box .line-box #lineBox .yuandiv .yuan .span1::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0.25rem;
  left: 50%;
  transform: translate(-50%);
  width: 0.03rem;
  height: 0;
  background: linear-gradient(180deg, #F86D55 0%, #FFFFFF 100%);
}
.box .line-box #lineBox .yuandiv .yuan .span1 span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.1rem;
  height: 0.1rem;
  background: #F40000;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.6s ease-in-out;
  /* 添加过渡效果 */
}
.box .line-box #lineBox .yuandiv .yuanactive .span1 {
  width: 0.33rem;
  height: 0.33rem;
  border: 0.01rem solid #FFFFFF;
  border-radius: 50%;
  background: none;
  position: relative;
}
.box .line-box #lineBox .yuandiv .yuanactive .span1::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0.33rem;
  left: 50%;
  transform: translate(-50%);
  width: 0.03rem;
  height: 0;
  background: linear-gradient(180deg, #F86D55 0%, #FFFFFF 100%);
  animation: growFromBottom 0.6s ease-in-out forwards;
}
.box .line-box #lineBox .yuandiv .yuanactive .span1 span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.17rem;
  height: 0.17rem;
  background: #FFFFFF;
  border-radius: 50%;
  opacity: 1;
}
.box .line-box #lineBox .yuandiv text {
  font-family: PingFangSC, PingFang SC;
  font-weight: 600;
  font-size: 0.25rem;
  color: #FFFFFF;
  opacity: 0.7;
}/*# sourceMappingURL=CenterAnimation.css.map */