@import "../css/animate.min.css";
.app_ul {
  display: flex;
  justify-content: center;
  width: 70%;
  margin-left: 15%;
  margin-bottom: 45px;
}

.app_ul2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 70%;
  margin-left: 15%;
}

.app_ul li,
.app_ul2 li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 22%;
  margin: 0 2%;
  height: 328px;
}

.app_ul .appCont,
.app_ul .appCont1, 
.app_ul2 .appCont,
.app_ul2 .appCont1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 25px;
  border: 1px solid #EBEBEB;
  box-sizing: border-box;
}

.app_ul li:first-of-type,
.app_ul2 li:first-of-type {
  margin-left: 0;
}

.app_ul li:last-of-type,
.app_ul2 li:last-of-type {
  margin-right: 0;
}

.appCont {
  background: #ffffff;
}

.appCont1 {
  visibility: hidden;
  background: #005bfe;
}

.appears {
  -webkit-animation: show1 1s linear forwards;
  animation: show1 1s linear forwards;
}

@-webkit-keyframes show1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes show1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

.exits {
  -webkit-animation: hidden1 1s linear forwards;
  animation: hidden1 1s linear forwards;
}

@-webkit-keyframes hidden1 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes hidden1 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

.app_ul li img,
.app_ul2 li img {
  /* width: 118px;
  height: 118px; */
  width: 110px;
  height: 110px;
  border-radius: 50%;
  /* margin-bottom: 47px; */
  margin-bottom: 45px;
}

.appword {
  line-height: 17px;
  font-size: 18px;
  font-family: Microsoft YaHei;
  font-weight: 600;
  color: #555555;
  margin-bottom: 22px;
}

.apptext {
  line-height: 21px;
  font-size: 12px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #555555;
  /* padding: 0 20px; */
  padding: 0 3%;
}

.advantage {
  width: 100vw;
  height: 105.9vw;
  padding-right: 3px;
  box-sizing: border-box;
}

.advantage img {
  width: 100%;
  height: 100%;
}

