.mpPaintingImg {
  position: relative;
}
.mpPaintingImg::after {
  content: '';
  display: block;
  margin-top: 10px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 190px;
  height: 190px;
  background-image: url('https://imgs.gogpt.mj02.com/midjourney9/ai/xcx.jpg');
  background-size: cover;
}
.contactImg {
  position: relative;
}
.contactImg::after {
  content: '';
  display: block;
  margin-top: 10px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background-image: url('https://imgs.gogpt.mj02.com/qrcode/jrsq.jpg');
  background-size: cover;
}
#taskItems {
  padding-bottom: 30px;
}
#taskItems .item a {
  display: inline-block;
}
#taskItems strong {
  color: #F0B132;
}
#taskItems .change img {
  min-width: 350px;
  min-height: 350px;
}
#taskItems .loadBox {
  padding: 100px;
  width: 40px;
  height: 40px;
  position: relative;
  animation: rotate 3s infinite linear;
}
#taskItems .itemLoad {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FF6600;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#taskItems .itemLoad:nth-child(1) {
  animation: rotateItem1 2s infinite ease-in-out;
}
#taskItems .itemLoad:nth-child(2) {
  animation: rotateItem2 2s infinite ease-in-out;
}
@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotateItem1 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) translateX(20px) rotate(0deg);
  }
  25% {
    transform: translate(-50%, -50%) rotate(180deg) translateX(20px) rotate(-179deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(360deg) translateX(20px) rotate(-359deg);
  }
  75% {
    transform: translate(-50%, -50%) rotate(540deg) translateX(20px) rotate(-539deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(720deg) translateX(20px) rotate(-719deg);
  }
}
@keyframes rotateItem2 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) translateX(-20px) rotate(0deg);
  }
  25% {
    transform: translate(-50%, -50%) rotate(360deg) translateX(-20px) rotate(-359deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(720deg) translateX(-20px) rotate(-719deg);
  }
  75% {
    transform: translate(-50%, -50%) rotate(1080deg) translateX(-20px) rotate(-1079deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(1440deg) translateX(-20px) rotate(-1439deg);
  }
}
