@keyframes spread {
  0% {
    transform: translate(-50%, -50%) scale(0);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes updown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.banner-box {
  padding-top: 200px;
  background: url(https://res.callmysoft.com/wm-static-resource/wm/620_wm/banner-bg.png) no-repeat center center;
  background-size: cover;
}
.banner-box .banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1200px;
  margin: 0 auto;
}
.banner-box .banner-content .banner-img > img {
  width: 650px;
  height: auto;
}
.banner-box .banner-content .banner-text {
  display: flex;
  flex-direction: column;
}
.banner-box .banner-content .banner-text .banner-title {
  position: relative;
}
.banner-box .banner-content .banner-text .banner-title h1 {
  color: #333;
  font-family: "Microsoft YaHei";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
.banner-box .banner-content .banner-text .banner-title h1 span {
  font-family: "Microsoft YaHei";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  background: linear-gradient(100deg, #FFAF51 17.07%, #FF8714 92.01%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.banner-box .banner-content .banner-text .banner-title > span {
  position: absolute;
  left: 0;
  top: -50px;
  width: 160px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-family: "Microsoft YaHei";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  border-radius: 16px 20px 20px 0;
  background: linear-gradient(109deg, #CBEB3F 3.24%, #09C084 62.55%);
  animation: updown 2s infinite;
  transition: ease-in-out;
}
.banner-box .banner-content .banner-text p.banner-description {
  margin: 28px 0 43px 0;
  color: #333;
  font-family: "Microsoft YaHei";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
.banner-box .banner-content .function-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.banner-box .banner-content .function-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.banner-box .banner-content .function-list li > img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.banner-box .banner-content .function-list li span {
  color: #0FAC7F;
  font-family: "Microsoft YaHei";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
.banner-box .banner-content .download-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 252px;
  height: 72px;
  margin: 40px 0 20px 0;
  border-radius: 12px;
  background: linear-gradient(98deg, #FFAF51 0%, #FF8714 100%);
  overflow: hidden;
}
.banner-box .banner-content .download-btn > img {
  width: 40px;
  height: 40px;
}
.banner-box .banner-content .download-btn span {
  color: #FFF;
  font-family: "Microsoft YaHei";
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.banner-box .banner-content .download-btn i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  pointer-events: none;
  z-index: 1;
  animation: spread 1.5s infinite;
}
.banner-box .banner-content .features-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.banner-box .banner-content .features-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.banner-box .banner-content .features-list li > img {
  width: 20px;
  height: 20px;
}
.banner-box .banner-content .features-list li span {
  color: rgba(51, 51, 51, 0.8);
  font-family: "Microsoft YaHei";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.problem-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 0;
  background: linear-gradient(180deg, #F1FFFA 0%, #FFF 100%);
}
.problem-box h2 {
  color: #333;
  text-align: center;
  font-family: "Microsoft YaHei";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
.problem-box ul {
  display: flex;
  align-items: center;
  width: 1200px;
  margin: 100px 0;
  gap: 15px;
}
.problem-box ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  gap: 28px;
  width: 228px;
  height: 218px;
  padding: 12px 12px 28px 12px;
  border-radius: 12px;
  background: #FFF;
  box-shadow: 0 4px 8px 0 rgba(233, 245, 240, 0.5);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.problem-box ul li:hover {
  transform: translateY(-20px);
}
.problem-box ul li > img {
  width: 204px;
  height: 130px;
}
.problem-box ul li p {
  color: #333;
  text-align: center;
  font-family: "Microsoft YaHei";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
.problem-box .download-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 280px;
  height: 72px;
  border-radius: 12px;
  background: linear-gradient(98deg, #FFAF51 0%, #FF8714 100%);
  overflow: hidden;
}
.problem-box .download-btn img {
  width: 40px;
  height: 40px;
}
.problem-box .download-btn span {
  color: #FFF;
  font-family: "Microsoft YaHei";
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.problem-box .download-btn i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  pointer-events: none;
  z-index: 1;
  animation: spread 1.5s infinite;
}

.intro-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 0;
  gap: 100px;
  background: linear-gradient(180deg, #E7FFF6 0%, #FFF 100%);
}
.intro-box h2 {
  color: #333;
  text-align: center;
  font-family: "Microsoft YaHei";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
.intro-box .intro-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1200px;
}
.intro-box .intro-item > img {
  width: 648px;
  height: auto;
}
.intro-box .intro-item .intro-text {
  display: flex;
  flex-direction: column;
  max-width: 504px;
}
.intro-box .intro-item .intro-text p {
  color: #333;
  font-family: "Microsoft YaHei";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.4px;
}
.intro-box .intro-item .intro-text > span {
  margin: 36px 0 60px 0;
  color: #666;
  font-family: "Microsoft YaHei";
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.intro-box .intro-item .intro-text .download-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 252px;
  height: 72px;
  border-radius: 12px;
  background: linear-gradient(98deg, #FFAF51 0%, #FF8714 100%);
  overflow: hidden;
}
.intro-box .intro-item .intro-text .download-btn img {
  width: 40px;
  height: 40px;
}
.intro-box .intro-item .intro-text .download-btn > span {
  color: #FFF;
  font-family: "Microsoft YaHei";
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.intro-box .intro-item .intro-text .download-btn i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  pointer-events: none;
  z-index: 1;
  animation: spread 1.5s infinite;
}

.other-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 0 100px 0;
  background: #EAFFF9;
}
.other-box h2 {
  color: #333;
  text-align: center;
  font-family: "Microsoft YaHei";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
.other-box ul {
  display: flex;
  flex-wrap: wrap;
  width: 1200px;
  gap: 40px;
  margin-top: 120px;
}
.other-box ul li {
  display: flex;
  align-items: center;
  gap: 30px;
  box-sizing: border-box;
  width: 580px;
  height: 160px;
  padding: 29px 46px 31px 30px;
  border-radius: 23px;
  background: #FFF;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.05);
}
.other-box ul li > img {
  width: 100px;
  height: 100px;
}
.other-box ul li > div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.other-box ul li > div p {
  color: #333;
  font-family: "Microsoft YaHei";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.4px;
}
.other-box ul li > div span {
  color: #666;
  font-family: "Microsoft YaHei";
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.download-box {
  background: url(https://res.callmysoft.com/wm-static-resource/wm/620_wm/bottom-bg.png) no-repeat center center;
  background-size: cover;
  padding: 73px 0;
}
.download-box > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
.download-box > div p {
  color: #FFF;
  font-family: "Microsoft YaHei";
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
.download-box > div .download-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 252px;
  height: 72px;
  border-radius: 12px;
  background: linear-gradient(98deg, #FFAF51 0%, #FF8714 100%);
  overflow: hidden;
}
.download-box > div .download-btn img {
  width: 40px;
  height: 40px;
}
.download-box > div .download-btn span {
  color: #FFF;
  font-family: "Microsoft YaHei";
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.download-box > div .download-btn i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  pointer-events: none;
  z-index: 1;
  animation: spread 1.5s infinite;
}

.assess-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-bottom: 50px;
  background: linear-gradient(180deg, #E6FEF5 0%, #F9FFFD 100%);
}
.assess-box h2 {
  margin-top: 110px;
  color: #333;
  text-align: center;
  font-family: "Microsoft YaHei";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
.assess-box .swiper-container {
  width: 1200px;
  height: 362px;
  margin-top: 90px;
}
.assess-box .swiper-container .swiper-slide {
  position: relative;
  width: 363px;
  height: 280px;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0 0 20px 0 rgba(216, 240, 222, 0.5);
}
.assess-box .swiper-container .swiper-slide p:first-of-type {
  position: relative;
  left: 115px;
  bottom: 35px;
  color: #000;
  font-family: "Microsoft YaHei";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.assess-box .swiper-container .swiper-slide p:first-of-type + img {
  position: relative;
  left: 115px;
  bottom: 35px;
  width: 152px;
  height: 19px;
}
.assess-box .swiper-container .swiper-slide p:last-of-type {
  padding: 0 28px;
  color: #757575;
  font-family: "Microsoft YaHei";
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.assess-box .swiper-container .swiper-slide img:first-of-type {
  position: relative;
  left: 28px;
  top: 30px;
  width: 74px;
  height: 74px;
}
.assess-box .swiper-container .swiper-slide img:last-of-type {
  position: relative;
  left: 130px;
  bottom: 78px;
  width: 61.39px;
  height: 43px;
}
.assess-box .swiper-pagination {
  bottom: 25px;
}
.assess-box .swiper-pagination .swiper-pagination-bullet {
  width: 60px;
  height: 9px;
  margin-left: 10px;
  background: rgb(228, 228, 228);
  border-radius: 40px;
  opacity: 1;
}
.assess-box .swiper-pagination .swiper-pagination-bullet-active {
  background: rgb(68, 199, 156);
}

/*# sourceMappingURL=style.css.map */
