.rc-strategic-body {
  position: relative;
}

.rc-strategic-body img {
  width: 100%;
}

.rc-strategic-pad {
  padding: 0.8rem 0;
}

.rc-strategic-clist {
  padding: 0 0.53333333rem;
  position: absolute;
  top: 0.53333333rem;
  display: flex;
  width: 100%;
}

.rc-strategic-clist-col {
  display: flex;
  flex-direction: column;
  width: 33.3%;
  align-items: center;
  justify-content: center;
}

.rc-strategic-clist-col1 {
  margin-top: 0.85333333rem;
}

.rc-strategic-clist-col3 {
  margin-top: 0.64rem;
}

.rc-strategic-clist-item + .rc-strategic-clist-item {
  margin-top: 0.42666667rem;
}

.rc-strategic-clist-item {
  width: 2.24rem;
  height: 2.24rem;
  border: 0.02666667rem solid #DBDBDB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  flex-direction: column;
}

.rc-strategic-clist-item img {
  width: 1.73333333rem;
}

.rc-strategic-clist-item .rc-img35 {
  width: 0.93333333rem;
}

.rc-strategic-item-tit {
  color: #666666;
  font-size: 0.32rem;
  transform: scale(0.8);
}

.rc-modal {
  position: absolute;
  z-index: 1000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.rc-modal-content {
  width: 6.4rem;
  margin: 0 auto;
  border-radius: 0.4rem;
  border: 0.02666667rem solid #2D64E6;
  background-color: #ffffff;
  position: absolute;
  z-index: 1000;
  left: 0;
  right: 0;
}

.rc-modal-mask {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
}

.rc-modal-title {
  padding: 0.64rem 0 0.26666667rem;
  text-align: center;
  position: relative;
}

.rc-modal-title img {
  width: 1.86666667rem;
}

.rc-modal-close {
  position: absolute;
  top: -0.4rem;
  right: -0.4rem;
  width: 0.85333333rem;
  height: 0.85333333rem;
  border-radius: 50%;
  color: #ffffff;
  background: url(../images/si-close.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.rc-modal-body {
  padding: 0 0.64rem 0.66666667rem;
  font-size: 0.32rem;
  color: #333333;
}

.rc-modal-footer {
  display: flex;
  padding-bottom: 0.53333333rem;
  align-items: center;
  justify-content: center;
}

.rc-modal-footer a {
  border: 0.02666667rem solid #2D64E6;
  padding: 0.21333333rem 0.64rem;
  border-radius: 0.64rem;
  color: #2D64E6;
  font-size: 0.32rem;
}

.animate__zoomIn {
  animation: zoomIn 0.3s ease-in;
}

.animate__zoomOut {
  animation: zoomOut 0.3s ease-in;
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

