.macDIV,
winDIV {
  display: none;
}

li {
  list-style-type: none;
}

.globle_button_2022 {
  background: #3575f5;

  box-sizing: border-box;

  width: 220px;

  height: 56px;

  display: flex;

  justify-content: center;

  align-items: center;

  color: #fff;

  text-decoration: none;

  border-radius: 0.75rem;

  font-size: 18px;

  font-weight: 700;

  cursor: pointer;

  position: relative;

  overflow: hidden;

  transition: background 0.4s;
}

.globle_button_2022 * {
  position: relative;

  z-index: 2;
}

.globle_button_2022:before {
  content: "";

  background: #518afc;

  width: 100%;

  height: 100%;

  right: 0;

  top: 0;

  position: absolute;

  z-index: 1;

  width: 0%;

  transform-origin: right center;

  transition: width 0.4s;

  border-radius: 0.75rem;

  margin-top: 0;
}

.globle_button_2022:hover:before {
  width: 100%;

  left: 0;
}

:root {
  --animate-duration: 1s;

  --animate-delay: 1s;

  --animate-repeat: 1;
}

.animate__animated {
  -webkit-animation-duration: 1s;

  animation-duration: 1s;

  -webkit-animation-duration: var(--animate-duration);

  animation-duration: var(--animate-duration);

  -webkit-animation-fill-mode: both;

  animation-fill-mode: both;
}

.fadeInUpLarge {
  animation-name: fadeInUpLarge;
}

@keyframes fadeInUpLarge {
  from {
    opacity: 0;

    transform: translate3d(0, 0.4rem, 0);
  }

  to {
    opacity: 1;

    transform: none;
  }
}

@keyframes maskShow {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

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

  to {
    opacity: 0;
  }
}

.animate__fadeOut {
  -webkit-animation-name: fadeOut;

  animation-name: fadeOut;
}

.fadeInRightSmall {
  animation-name: fadeInRightSmall;
}

@keyframes fadeInUpSmall {
  from {
    opacity: 0;

    transform: translate3d(0, 15px, 0);
  }

  to {
    opacity: 1;

    transform: none;
  }
}

.fadeInUpSmall {
  animation-name: fadeInUpSmall;
}

@keyframes fadeInRightSmall {
  0% {
    opacity: 0;

    -webkit-transform: translate3d(10%, 0, 0);

    transform: translate3d(10%, 0, 0);
  }

  to {
    opacity: 1;

    -webkit-transform: translateZ(0);

    transform: translateZ(0);
  }
}

.fadeInLeftSmall {
  -webkit-animation-name: fadeInLeftSmall;

  animation-name: fadeInLeftSmall;
}

@keyframes fadeInLeftSmall {
  0% {
    opacity: 0;

    -webkit-transform: translate3d(-10%, 0, 0);

    transform: translate3d(-10%, 0, 0);
  }

  to {
    opacity: 1;

    -webkit-transform: translateZ(0);

    transform: translateZ(0);
  }
}

@keyframes animate_top {
  from {
    opacity: 0;

    transform: translate(0, -1.25rem);

    transition: all ease-out 0.8s 0.2s;
  }

  to {
    opacity: 1;

    transform: translate(0, 0);
  }
}

.animate_top {
  animation-name: animate_top;
}

@keyframes animate_down {
  from {
    opacity: 0;

    transform: translate(0, 1.25rem);

    transition: all ease-out 0.8s 0.2s;
  }

  to {
    opacity: 1;

    transform: translate(0, 0);
  }
}

.animate_down {
  animation-name: animate_down;
}

@keyframes animate_left {
  from {
    opacity: 0;

    transform: translate(-2.5rem, 0);

    transition: all ease-out 0.8s 0.2s;
  }

  to {
    opacity: 1;

    transform: translate(0, 0);
  }
}

.animate_left {
  animation-name: animate_left;
}

@keyframes animate_right {
  from {
    opacity: 0;

    transform: translate(2.5rem, 0);

    transition: all ease-out 0.8s 0.2s;
  }

  to {
    opacity: 1;

    transform: translate(0, 0);
  }
}

.animate_right {
  animation-name: animate_right;
}

@keyframes fadenum {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

html {
  font-size: 40px;
}

.w1400 {
  max-width: 1400px;

  width: 95%;

  margin: 0 auto;
}

.w1300 {
  max-width: 1300px;

  width: 95%;

  margin: 0 auto;
}

.w1360 {
  max-width: 1360px;

  width: 95%;

  margin: 0 auto;
}

.w1340 {
  max-width: 1340px;

  width: 95%;

  margin: 0 auto;
}

.w1260 {
  max-width: 1260px;

  width: 95%;

  margin: 0 auto;
}

.w1200 {
  max-width: 1200px;

  width: 95%;

  margin: 0 auto;
}

body {
  font-size: 0.4rem;

  font-family: PingFang SC-Bold, PingFang SC, Microsoft YaHei, Source Han Sans CN-Regular,
    Source Han Sans CN, fangsong, Source Han Sans CN-Regular, Source Han Sans CN;
}

img {
  display: block;

  max-width: 100%;
}

a {
  text-decoration: none;
}

* {
  box-sizing: border-box;

  margin: 0;

  padding: 0;
}

@keyframes run1 {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(0, 15px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes run2 {
  0% {
    transform: translate(0, -6px);
  }

  50% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(0, -6px);
  }
}

.homePage .mac_logo {
  display: none;
}

.homePage .header-top {
  position: fixed;

  top: 0;

  width: 100%;

  height: 2rem;

  background: #f8f8f8;

  display: flex;

  align-items: center;

  justify-content: center;

  z-index: 999;
}

.homePage .header-top .logo {
  width: 8.5rem;

  height: 1.25rem;
}

.homePage .header_nav {
  position: fixed;

  top: -2rem;

  left: 0;

  width: 100%;

  height: 2rem;

  background: #f8f8f8;

  display: flex;

  align-items: center;

  z-index: 999;

  opacity: 0;

  transition: 0.3s;
}

.homePage .header_nav .second_box {
  display: flex;

  align-items: center;

  height: 100%;
}

.homePage .header_nav .second_box .logo {
  width: 8rem;

  display: flex;

  align-items: center;

  font-weight: bold;

  font-size: 28px;

  color: #333333;
}

.homePage .header_nav .second_box .logo img {
  margin-right: 8px;
  height: 43px;
}

.homePage .header_nav .second_box .kx {
  flex: 1;
}

.homePage .header_nav .second_box .list {
  display: flex;

  align-items: center;

  margin-right: 1rem;
}

.homePage .header_nav .second_box .list .item {
  margin-right: 1rem;

  color: #333;

  font-size: 0.4rem;

  transition: all 0.3s ease;

  cursor: pointer;
}

.homePage .header_nav .second_box .list .item a {
  font-size: 14px;

  color: #333333;
}

.homePage .header_nav .second_box .list .item a:hover {
  color: #ff8f25;
}

.homePage .header_nav .second_box .list .item:last-child {
  margin-right: 0;
}

.homePage .header_nav .second_box .button {
  display: flex;

  align-items: center;
}

.homePage .header_nav .second_box .button .button_item {
  cursor: pointer;

  font-weight: 700;

  position: relative;

  box-shadow: 0 0.25rem 0.5rem 1px rgba(0, 0, 0, 0.16);

  margin-left: 1rem;

  width: 2.9rem;

  height: 1rem;

  border-radius: 0.15rem;

  font-size: 0.375rem;

  text-decoration: none;

  margin-left: 0;

  font-weight: 400;

  box-shadow: none;
}

.homePage .header_nav .second_box .button .button_item span {
  display: flex;

  align-items: center;
}

.homePage .header_nav .second_box .button .button_item span img {
  margin-right: 6px;
}

.homePage .header_nav .second_box .button .blue {
  color: #fff;

  background: linear-gradient(90deg, #ff8624, #ffb128);

  box-shadow: 0px 0px 9px 0px rgba(0, 105, 200, 0.11);
}

.homePage .header_nav .second_box .button .blue:before {
  background: linear-gradient(90deg, #ff9642, #ffbc48);

  box-shadow: 0px 0px 9px 0px rgba(0, 105, 200, 0.11);

  border-radius: 0.15rem;
}

.homePage .regular {
  top: 0;

  opacity: 1;
}

.homePage .header_kx {
  height: 2rem;
}

.homePage .banner {
  background-position: center center;

  background-size: cover;

  background-repeat: no-repeat;

  background-image: url(https://res.callmysoft.com/wm-static-resource/Sem/775_sem/banner_bg.jpg);

  padding: 2.5rem 0 1.75rem 0;
}

.homePage .banner .list {
  display: flex;

  align-items: center;
}

.homePage .banner .list .left {
  flex: 1;
}

.homePage .banner .list .left .title {
  font-weight: 600;

  color: #fff;

  font-size: 1.45rem;

  text-align: center;

  line-height: 1;

  letter-spacing: 0.1rem;

  text-align: left;
}

.homePage .banner .list .left .sub_title {
  color: #fff;

  font-size: 0.6rem;

  line-height: 1;

  text-align: center;

  text-align: left;

  padding-top: 0.9rem;

  font-weight: bold;
}

.homePage .banner .list .left .sub_title span {
  color: #ffc000;
}

.homePage .banner .list .left .left_box {
  margin-top: 1rem;
}

.homePage .banner .list .left .left_box .item {
  display: flex;

  align-items: center;

  color: #dadcff;

  font-size: 0.45rem;

  margin-bottom: 0.45rem;
}

.homePage .banner .list .left .left_box .item img {
  width: 0.5rem;

  margin-right: 0.275rem;
}

.homePage .banner .list .left .left_box .item:nth-child(4) {
  animation-delay: 0.4s;

  margin-bottom: 0;
}

.homePage .banner .list .left .left_box .item:nth-child(3) {
  animation-delay: 0.3s;
}

.homePage .banner .list .left .left_box .item:nth-child(2) {
  animation-delay: 0.2s;
}

.homePage .banner .list .left .left_box .item:nth-child(1) {
  animation-delay: 0.1s;
}

.homePage .banner .list .left .button {
  margin-top: 1rem;

  animation-delay: 0.5s;

  display: flex;

  align-items: center;
}

.homePage .banner .list .left .button .button_item {
  cursor: pointer;

  position: relative;

  box-shadow: 0 0.25rem 0.5rem 1px rgba(0, 0, 0, 0.16);

  margin-left: 1rem;

  width: 4.8rem;

  letter-spacing: 1px;

  height: 1.46rem;

  border-radius: 0.15rem;

  font-size: 0.5rem;

  text-decoration: none;

  font-weight: 400;

  box-shadow: 0 10px 20px 1px rgba(0, 0, 0, 0.16);

  transition: transform 0.3s;

  overflow: hidden;
}

.homePage .banner .list .left .button .button_item .download_info {
  position: relative;

  top: 1px;
}

.homePage .banner .list .left .button .button_item .download_info:before {
  display: none;

  content: "";

  width: 23px;

  height: 3px;

  background: #fff;

  border-radius: 1px;

  bottom: 0;

  left: 50%;

  transform: translateX(-50%);

  position: absolute;
}

.homePage .banner .list .left .button .button_item .download_info .icon {
  width: 0.8rem;
}

.homePage .banner .list .left .button .button_item .download_info .goodsIcon {
  width: 0.6rem;

  height: 0.6rem;

  animation: run2 1.5s ease 0s infinite;
}

.homePage .banner .list .left .button .button_item span {
  display: flex;

  align-items: center;

  padding-left: 0.05rem;
}

.homePage .banner .list .left .button .button_item.orange {
  color: #fff;

  background: linear-gradient(90deg, #fe9f2e, #ffc412);

  box-shadow: 0px 0px 9px 0px rgba(0, 105, 200, 0.11);

  margin-left: 0;
}

.homePage .banner .list .left .button .button_item.orange:before {
  border-radius: 0.15rem;

  background: #f0ac00;
}

.homePage .banner .list .left .button .hover:hover .button_item {
  transform: translateY(-15px);
}

.homePage .banner .list .left .bottom_desc {
  color: #c9cefb;

  font-size: 0.35rem;

  padding-top: 0.4rem;

  animation-delay: 0.6s;
}

.homePage .banner .list .right {
  max-width: 18.5rem;

  margin-left: 1.5rem;

  position: relative;
}

.homePage .banner .list .right .banner_right {
  width: 100%;
}

.homePage .banner .list .right .icon {
  min-width: 2.35rem;

  height: 1.1rem;

  position: absolute;

  border-radius: 0.18rem;

  width: fit-content;

  padding: 0 0.25rem;
}

.homePage .banner .list .right .icon .icon_info {
  width: 100%;

  height: 100%;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 0.45rem;

  color: #fff;

  font-weight: 700;

  position: relative;
}

.homePage .banner .list .right .icon .icon_info:before {
  content: "";

  position: absolute;

  width: 0;

  height: 0;

  bottom: -6px;

  border-left: 15px solid transparent;

  border-right: 15px solid transparent;

  border-bottom: 8px solid transparent;

  transform: rotate(180deg);
}

.homePage .banner .list .right .icon:nth-child(2) {
  top: -1.4rem;

  left: 3.6rem;

  animation: run1 3s ease 0s infinite alternate;

  background: url(https://res.callmysoft.com/wm-static-resource/Sem/775_sem/ico1.png);

  background-size: 100% 100%;

  width: 156px;

  height: 97px;
}

/*

.homePage .banner .list .right .icon:nth-child(2) .icon_info:before {

	border-bottom-color: #FFBA1E

}

*/

.homePage .banner .list .right .icon:nth-child(3) {
  top: -1.4rem;

  right: 4.5rem;

  animation: run1 3s ease 0.4s infinite alternate;

  background: url(https://res.callmysoft.com/wm-static-resource/Sem/775_sem/ico2.png);

  background-size: 100% 100%;

  width: 156px;

  height: 97px;
}

/*

.homePage .banner .list .right .icon:nth-child(3) .icon_info:before {

	border-bottom-color: #FE704F

}*/

.homePage .banner .list .right .icon:nth-child(4) {
  bottom: 5.6rem;

  left: 7.2rem;

  animation: run1 3s ease 0.8s infinite alternate;

  background: url(https://res.callmysoft.com/wm-static-resource/Sem/775_sem/ico3.png);

  background-size: 100% 100%;

  width: 185px;

  height: 97px;
}

.homePage .banner .list .right .icon:nth-child(5) {
  bottom: 3.2rem;

  right: -1rem;

  animation: run1 3s ease 1.2s infinite alternate;

  background: url(https://res.callmysoft.com/wm-static-resource/Sem/775_sem/ico4.png);

  background-size: 100% 100%;

  width: 156px;

  height: 97px;
}

.homePage .section-2 {
  background: #fff;

  padding: 2.2rem 0 1.25rem 0;
}

.homePage .section-2 .title {
  font-weight: 600;

  color: #333;

  font-size: 0.9rem;

  text-align: center;

  line-height: 1;
}

.homePage .section-2 .title_des {
  color: #333;

  font-size: 0.45rem;

  line-height: 1;

  text-align: center;

  padding-top: 0.4rem;
}

.homePage .section-2 .list {
  margin-top: 1.65rem;

  height: 14rem;

  display: flex;

  overflow: hidden;
}

.homePage .section-2 .list .flex_item {
  width: calc((100% - 3px) / 4);

  flex-direction: column;

  margin-right: 1px;

  position: relative;
}

.homePage .section-2 .list .flex_item .cell {
  height: 50%;

  background: linear-gradient(129deg, #dfe5ff, #f7f9ff);

  border: 1px solid #ffffff;

  transition: height 0.8s;

  padding-top: 1rem;

  padding-left: 0.8rem;

  color: #333;

  position: relative;

  box-sizing: border-box;

  -moz-box-sizing: border-box;
}

.homePage .section-2 .list .flex_item:nth-child(1) .cell:nth-child(1) {
  border-radius: 0.25rem 0 0 0;
}

.homePage .section-2 .list .flex_item:nth-child(1) .cell:nth-child(2) {
  border-radius: 0 0 0 0.25rem;
}

.homePage .section-2 .list .flex_item:nth-child(4) .cell:nth-child(1) {
  border-radius: 0 0.25rem 0 0;
}

.homePage .section-2 .list .flex_item:nth-child(4) .cell:nth-child(2) {
  border-radius: 0 0 0.25rem 0;
}

.homePage .section-2 .list .flex_item .cell .item_title {
  font-weight: 600;

  font-size: 24px;
}

.homePage .section-2 .list .flex_item .cell .item_desc {
  max-width: 5.65rem;

  padding-top: 0.5rem;

  font-size: 16px;

  line-height: 28px;
}

.homePage .section-2 .list .flex_item .cell .icon {
  position: absolute;

  bottom: 0.6rem;

  right: 0.6rem;

  display: none;
}

.homePage .section-2 .list .flex_item .cell:nth-child(2) {
  background: linear-gradient(129deg, #dfe5ff, #f5f7ff);

  border: 1px solid #ffffff;
}

.homePage .section-2 .list .flex_item .cell.actived {
  height: 61%;

  background: linear-gradient(129deg, #5575ff, #839dff);

  border: 1px solid #ffffff;

  color: #fff;
}

.homePage .section-2 .list .flex_item .cell.actived .icon {
  display: block;
}

.homePage .section-2 .list .flex_item .cell.posIndex {
  position: absolute;

  bottom: 0;

  width: 100%;
}

.homePage .section-2 .list .flex_item:nth-child(4) {
  margin-right: 0;
}

.homePage .section-2 .list .flex_item:nth-child(4) {
  animation-delay: 0.6s;

  margin-right: 0;
}

.homePage .section-2 .list .flex_item:nth-child(3) {
  animation-delay: 0.45s;
}

.homePage .section-2 .list .flex_item:nth-child(2) {
  animation-delay: 0.3s;
}

.homePage .section-2 .list .flex_item:nth-child(1) {
  animation-delay: 0.15s;
}

.homePage .section-2 .batn {
  margin: 1.2rem auto 0 auto;

  display: block;

  width: 4.8rem;

  height: 1.46rem;

  border-radius: 0.15rem;

  font-size: 0.5rem;

  background: linear-gradient(129deg, #5575ff, #839dff);

  line-height: 1.46rem;

  transition: transform 0.3s;

  color: #ffffff;

  position: relative;
}

.homePage .section-2 .batn span {
  display: flex;

  z-index: 2;

  align-items: center;

  position: relative;

  justify-content: center;
}

.homePage .section-2 .batn span img {
  margin-right: 6px;
}

.homePage .section-2 .batn:before {
  background: linear-gradient(90deg, #ff9642, #ffbc48);

  box-shadow: 0px 0px 9px 0px rgba(0, 105, 200, 0.11);

  border-radius: 0.15rem;
}

.homePage .section-2 .batn:hover:before {
  width: 100%;

  left: 0;
}

.homePage .section-2 .batn:before {
  content: "";

  background: linear-gradient(129deg, #718cff, #93aaff);

  width: 100%;

  height: 100%;

  right: 0;

  top: 0;

  position: absolute;

  z-index: 1;

  width: 0%;

  transform-origin: right center;

  transition: width 0.4s;

  margin-top: 0;
}

.homePage .section-3 {
  background: linear-gradient(0deg, #e7ecff, #f8f9ff);

  padding: 1.35rem 0 1.25rem 0;
}

.homePage .section-3 .title {
  font-weight: 600;

  color: #333;

  font-size: 0.9rem;

  text-align: center;

  line-height: 1;
}

.homePage .section-3 .title_des {
  color: #333;

  font-size: 0.45rem;

  line-height: 1;

  text-align: center;

  padding-top: 0.375rem;
}

.homePage .section-3 .list {
  margin-top: 0.75rem;

  display: flex;

  flex-wrap: wrap;
}

.homePage .section-3 .list .item {
  width: calc((100% - 2.8rem) / 5);

  margin-right: 0.7rem;

  padding: 0.5rem;

  display: block;

  flex-direction: column;

  align-items: center;

  border-radius: 0.25rem;

  background: #ffffff;

  text-align: center;

  margin-top: 0.75rem;

  transition: 0.3s ease;
}

.homePage .section-3 .list .item .icon {
  padding-top: 0.1rem;

  display: initial;
}

.homePage .section-3 .list .item .item_title {
  font-weight: 600;

  color: #000;

  font-size: 0.6rem;

  padding-top: 0.2rem;
}

.homePage .section-3 .list .item .item_desc {
  color: #666565;

  font-size: 0.4rem;

  padding-top: 0.3rem;

  white-space: pre-line;

  line-height: 0.65rem;
}

.homePage .section-3 .list .item:hover {
  box-shadow: 0px 0px 32px 0px rgba(19, 33, 89, 0.13);
}

.homePage .section-3 .list .item:nth-child(10) {
  animation-delay: 1.5s;

  margin-right: 0;
}

.homePage .section-3 .list .item:nth-child(9) {
  animation-delay: 1.35s;
}

.homePage .section-3 .list .item:nth-child(8) {
  animation-delay: 1.2s;
}

.homePage .section-3 .list .item:nth-child(7) {
  animation-delay: 1.05s;
}

.homePage .section-3 .list .item:nth-child(6) {
  animation-delay: 0.9s;
}

.homePage .section-3 .list .item:nth-child(5) {
  animation-delay: 0.75s;

  margin-right: 0;
}

.homePage .section-3 .list .item:nth-child(4) {
  animation-delay: 0.6s;
}

.homePage .section-3 .list .item:nth-child(3) {
  animation-delay: 0.45s;
}

.homePage .section-3 .list .item:nth-child(2) {
  animation-delay: 0.3s;
}

.homePage .section-3 .list .item:nth-child(1) {
  animation-delay: 0.15s;
}

.homePage .section-3 .batn {
  margin: 1.2rem auto 0 auto;

  display: block;

  width: 4.8rem;

  height: 1.46rem;

  border-radius: 0.15rem;

  font-size: 0.5rem;

  background: linear-gradient(129deg, #5575ff, #839dff);

  line-height: 1.46rem;

  transition: transform 0.3s;

  color: #ffffff;

  position: relative;
}

.homePage .section-3 .batn span {
  display: flex;

  z-index: 2;

  align-items: center;

  position: relative;

  justify-content: center;
}

.homePage .section-3 .batn span img {
  margin-right: 6px;
}

.homePage .section-3 .batn:before {
  background: linear-gradient(90deg, #ff9642, #ffbc48);

  box-shadow: 0px 0px 9px 0px rgba(0, 105, 200, 0.11);

  border-radius: 0.15rem;
}

.homePage .section-3 .batn:hover:before {
  width: 100%;

  left: 0;
}

.homePage .section-3 .batn:before {
  content: "";

  background: linear-gradient(129deg, #718cff, #93aaff);

  width: 100%;

  height: 100%;

  right: 0;

  top: 0;

  position: absolute;

  z-index: 1;

  width: 0%;

  transform-origin: right center;

  transition: width 0.4s;

  margin-top: 0;
}

.homePage .section-4 {
  padding: 2.25rem 0 0 0;

  background: url(https://res.callmysoft.com/wm-static-resource/Sem/775_sem/bj1.jpg);

  background-size: 100% 100%;
}

@keyframes rotate360 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(-360deg);
  }
}

@keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(20px);
  }
}

@keyframes moveUpDown1 {
  0% {
    transform: translateY(20px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes moveUpDown2 {
  0% {
    transform: translatey(-20px);
  }

  100% {
    transform: translatey(0);
  }
}

.homePage .section-4 .title {
  font-weight: 600;

  color: #333;

  font-size: 0.9rem;

  text-align: center;

  line-height: 1;
}

.homePage .section-4 .list {
  position: relative;

  margin-top: 2.4rem;

  display: flex;

  flex-direction: column;

  align-items: center;
}

.homePage .section-4 .list .center {
  background-position: center center;

  background-size: cover;

  background-repeat: no-repeat;

  background-image: url(https://res.callmysoft.com/wm-static-resource/Sem/775_sem/section4_2.png);

  width: 18rem;

  height: 16.25rem;

  position: relative;

  z-index: 10;
}

.homePage .section-4 .list .center .round {
  width: 15rem;

  height: 14rem;

  position: absolute;

  bottom: 0;

  left: 50%;

  transform: translateX(-50%);
}

.homePage .section-4 .list .center .round img {
  width: 100%;

  height: 100%;

  animation: rotate360 5s linear infinite;
}

.homePage .section-4 .list .center .icon {
  width: 4.5rem;

  position: absolute;

  left: 50%;

  transform: translateX(-50%);

  bottom: 4.8rem;
}

.homePage .section-4 .list .item {
  padding: 0.5rem 0.4rem;

  background: #fff;

  box-shadow: inset 0 3px 6px 1px rgba(232, 220, 220, 0.2);

  border-radius: 0.25rem;

  border: 1px solid #fff;

  display: flex;

  align-items: center;

  position: absolute;

  z-index: 99;

  justify-content: center;

  box-shadow: 0px 0px 26px 0px rgba(0, 40, 76, 0.1);
}

.homePage .section-4 .list .item img {
  margin-right: 6px;
}

.homePage .section-4 .list .item.stop2 {
  padding: 0.3rem 0.3rem;
}

.homePage .section-4 .list .item.stop3 {
  padding: 0.3rem 0.3rem;
}

.homePage .section-4 .list .item.stop6 {
  padding: 0.3rem 0.3rem;
}

.homePage .section-4 .list .item.stop7 {
  padding: 0.3rem 0.3rem;
}

.homePage .section-4 .list .item.stop1 .item_title {
  font-size: 0.54rem;
}

.homePage .section-4 .list .item.stop4 .item_title {
  font-size: 0.54rem;
}

.homePage .section-4 .list .item.stop2 .item_title {
  font-size: 0.4rem;
}

.homePage .section-4 .list .item.stop3 .item_title {
  font-size: 0.4rem;
}

.homePage .section-4 .list .item.stop6 .item_title {
  font-size: 0.4rem;
}

.homePage .section-4 .list .item.stop7 .item_title {
  font-size: 0.4rem;
}

.homePage .section-4 .list .item .item_title {
  font-weight: 400;

  font-size: 0.6rem;

  color: #333;
}

.homePage .section-4 .list .item.stop1 {
  top: -1.2rem;

  left: 37.4%;

  animation-delay: 0.1s;

  animation: moveUpDown 2s ease-in-out infinite alternate;
}

.homePage .section-4 .list .item.stop2 {
  top: 2rem;

  right: 26.7%;

  animation-delay: 0.15s;

  animation: moveUpDown 2s ease-in-out infinite alternate;
}

.homePage .section-4 .list .item.stop3 {
  top: 3rem;

  left: 19.28%;

  animation-delay: 0.2s;

  animation: moveUpDown1 2s ease-in-out infinite alternate;
}

.homePage .section-4 .list .item.stop4 {
  top: 6.5rem;

  right: 13.85%;

  animation-delay: 0.25s;

  animation: moveUpDown1 2s ease-in-out infinite alternate;
}

.homePage .section-4 .list .item.stop5 {
  bottom: 6rem;

  left: 7.1%;

  animation-delay: 0.3s;

  animation: moveUpDown2 2s ease-in-out infinite alternate;
}

.homePage .section-4 .list .item.stop6 {
  bottom: 1.5rem;

  right: 18%;

  animation-delay: 0.35s;

  animation: moveUpDown2 2s ease-in-out infinite alternate;
}

.homePage .section-5 {
  background: #fff;

  padding-top: 2.25rem;

  padding-bottom: 1.9rem;
}

.homePage .section-4 .list .item.stop7 {
  bottom: 2rem;

  left: 18.1%;

  animation-delay: 0.3s;

  animation: moveUpDown2 2s ease-in-out infinite alternate;
}

@keyframes move-left {
  0% {
    transform: translateX(30px);
  }

  100% {
    transform: translateX(0);
  }
}

.homePage .section-5 .title {
  font-weight: 600;

  color: #333;

  font-size: 0.9rem;

  text-align: center;

  line-height: 1;
}

.homePage .section-5 .list {
  margin-top: 2.1rem;
}

.homePage .section-6 {
  padding-top: 1.9rem;

  padding-bottom: 55px;

  background: url(https://res.callmysoft.com/wm-static-resource/Sem/775_sem/hf.png);

  background-size: 100% 100%;
}

.homePage .section-6 .title {
  font-weight: 600;

  color: #333;

  font-size: 0.9rem;

  text-align: center;

  line-height: 1;
}

.homePage .section-6 .step {
  margin-top: 1rem;
}

.data_recov4 .steps_data {
  display: flex;
}

.data_recov4 .wrap {
  margin-top: 65px;

  display: flex;

  align-items: center;

  flex-wrap: wrap;

  justify-content: space-between;
}

.data_recov4 .steps_data .steps-box .lines .linecore {
  width: 7px;

  height: 47px;

  background: url(https://res.callmysoft.com/wm-static-resource/Sem/775_sem/jtou.png);

  background-size: 100% 100%;
}

.data_recov4 .steps_data .steps-box .lines {
  display: flex;

  align-items: center;

  margin: 14px 0;

  justify-content: center;
}

.data_recov4 .steps_data .steps-box .ball i {
  display: block;

  width: 49px;

  height: 49px;
}

.data_recov4 .steps_data .steps-box .ball i.on1 {
  background: url(https://res.callmysoft.com/wm-static-resource/Sem/775_sem/tyico1.png);

  background-size: 100% 100%;
}

.data_recov4 .steps_data .steps-box .selected i.on1 {
  background: url(https://res.callmysoft.com/wm-static-resource/Sem/775_sem/tyico01.png);

  background-size: 100% 100%;
}

.data_recov4 .steps_data .steps-box .ball i.on2 {
  background: url(https://res.callmysoft.com/wm-static-resource/Sem/775_sem/tyico2.png);

  background-size: 100% 100%;
}

.data_recov4 .steps_data .steps-box .selected i.on2 {
  background: url(https://res.callmysoft.com/wm-static-resource/Sem/775_sem/tyico02.png);

  background-size: 100% 100%;
}

.data_recov4 .steps_data .steps-box .ball i.on3 {
  background: url(https://res.callmysoft.com/wm-static-resource/Sem/775_sem/tyico3.png);

  background-size: 100% 100%;
}

.data_recov4 .steps_data .steps-box .selected i.on3 {
  background: url(https://res.callmysoft.com/wm-static-resource/Sem/775_sem/tyico03.png);

  background-size: 100% 100%;
}

.data_recov4 .steps_data .steps-box .ball i.on4 {
  background: url(https://res.callmysoft.com/wm-static-resource/Sem/775_sem/tyico4.png);

  background-size: 100% 100%;
}

.data_recov4 .steps_data .steps-box .selected i.on4 {
  background: url(https://res.callmysoft.com/wm-static-resource/Sem/775_sem/tyico04.png);

  background-size: 100% 100%;
}

.gif-box img {
  max-width: 753px;

  height: 577px;
}

.data_recov4 .wrap h3.tele {
  font-weight: 500;

  font-size: 24px;

  color: #586775;

  margin-bottom: 40px;
}

.data_recov4 .wrap h3.tele span {
  color: #5879ff;
}

.data_recov4 .wrap {
  width: 100%;
}

.data_recov4 .wrap .steps-text li:nth-child(1) {
  margin-top: 0;
}

.data_recov4 .wrap .steps-text li {
  margin-left: 16px;

  cursor: pointer;

  margin-top: 72px;
}

.data_recov4 .wrap .steps-text li h3 {
  font-weight: bold;

  margin-top: 10px;

  font-size: 20px;

  color: #5879ff;
}

.data_recov4 .wrap .steps-text li p {
  font-weight: 400;

  font-size: 16px;

  color: #586775;

  margin-top: 6px;
}

.section-5 .list ul {
  display: flex;

  flex-wrap: wrap;

  justify-content: space-between;
}

.section-5 .list ul li {
  border-radius: 8px;

  padding: 44px 22px;
  transition: transform 0.3s;

  width: 23%;
  cursor: pointer;

  box-sizing: border-box;

  -moz-box-sizing: border-box;

  background: url(https://res.callmysoft.com/wm-static-resource/Sem/775_sem/bzbj.png);

  background-size: 100% 100%;
}

.section-5 .list ul li:hover {
  transform: translateY(-15px);
}

.section-5 .list ul li h3 {
  font-weight: bold;

  font-size: 22px;
  margin-top: 20px;

  color: #242b2e;
}

.section-5 .list ul li p {
  font-weight: 400;

  font-size: 16px;
  margin-top: 16px;

  color: #444444;

  line-height: 24px;
}

.homePage .section-7 {
  background: #1c2144;

  padding: 2.25rem 0;
}

.homePage .section-7 .title {
  font-weight: 600;

  color: #fff;

  font-size: 0.9rem;

  text-align: center;

  line-height: 1;
}

.homePage .section-7 .list {
  display: flex;

  margin-top: 1.5rem;
}

.homePage .section-7 .position {
  position: relative;
}

.homePage .section-7 .position .vsimg {
  position: absolute;
  left: 40%;

  top: 35%;

  z-index: 2;
}

.homePage .section-7 .list .item {
  width: calc((100% - 1rem) / 2);

  margin-right: 1rem;

  min-height: 13.45rem;

  position: relative;

  z-index: 1;

  border-radius: 0.25rem;

  overflow: hidden;
}

.homePage .section-7 .list .item:before {
  content: "";

  position: absolute;

  z-index: -1;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background-position: center center;

  background-size: cover;

  background-repeat: no-repeat;
}

.homePage .section-7 .list .item .top {
  padding: 0 0.7rem;

  width: fit-content;

  height: 58px;

  opacity: 1;

  border-radius: 10px;

  border: 2px solid #ffffff;

  margin-top: 44px;

  margin-left: 38px;

  color: #fff;

  font-size: 0.7rem;

  display: flex;

  align-items: center;

  justify-content: center;
}

.homePage .section-7 .list .item .list {
  display: flex;
}

.homePage .section-7 .list .item .list .kx {
  flex: 1;
}

.homePage .section-7 .list .item .list .list_right {
  padding-right: 1rem;
}

.homePage .section-7 .list .item .list .lifts {
  margin-left: 38px;
}

.homePage .section-7 .list .item .list .list_right .item_list {
  display: flex;

  align-items: center;

  margin-bottom: 0.5rem;
}

.homePage .section-7 .list .item .list .lifts .item_list .icon {
  width: 0.7rem;

  margin-right: 0.1rem;
}

.homePage .section-7 .list .item .list .right .item_list .icon {
  width: 0.7rem;

  margin-left: 0.2rem;
}

.homePage .section-7 .list .item .list .right .item_list {
  justify-content: right;
}

.homePage .section-7 .list .item .list .list_right .item_list .text {
  font-size: 0.5rem;

  color: #fff;
}

.homePage .section-7 .list .item:nth-child(1) {
  background-image: url(https://res.callmysoft.com/wm-static-resource/Sem/775_sem/section7_icon1.png);
}

.homePage .section-7 .list .item:nth-child(1) .top {
  background: #ee7468;
}

.homePage .section-7 .list .item:nth-child(2) {
  margin-right: 0;

  background-image: url(https://res.callmysoft.com/wm-static-resource/Sem/775_sem/section7_icon2.png);
}

.homePage .section-7 .list .item:nth-child(2) .top {
  background: #2b3262;

  float: right;

  margin-top: 44px;

  margin-right: 38px;
}

.qcfd {
  clear: both;
}

.homePage .evaluate {
  padding: 1.75rem 0 1.575rem 0;

  background-position: center center;

  background-size: cover;

  background-repeat: no-repeat;
}

.homePage .evaluate .evaluate_box {
  position: relative;
}

.homePage .evaluate .evaluate_box .User_Evaluate_swiper {
  margin-top: 1.95rem;
}

.homePage .evaluate .evaluate_box .title {
  font-weight: 600;

  color: #333;

  font-size: 0.9rem;

  text-align: center;

  line-height: 1;

  width: 100%;
}

.homePage .evaluate .swiper-container .swiper-wrapper {
  padding-bottom: 2rem;
}

.homePage .evaluate .swiper-container .swiper-slide {
  color: #333;

  padding: 0 3.4rem;

  display: flex;

  align-items: flex-start;
}

.homePage .evaluate .swiper-container .swiper-slide .user {
  flex-shrink: 0;

  margin-right: 3.25rem;

  margin-top: 0.75rem;
}

.homePage .evaluate .swiper-container .swiper-slide .user .user_head {
  height: 3.5rem;

  width: 3.5rem;

  border-radius: 50%;
}

.homePage .evaluate .swiper-container .swiper-slide .user .user_name {
  color: #333;

  text-align: center;

  font-size: 0.6rem;

  padding-top: 0.3rem;
}

.homePage .evaluate .swiper-container .swiper-slide .icon {
  width: 1.1rem;

  display: block;
}

.homePage .evaluate .swiper-container .swiper-slide .text {
  line-height: 1.2rem;

  font-size: 0.7rem;

  font-weight: 500;

  padding: 0.8rem 0.8rem 0 0.8rem;

  position: relative;
}

.homePage .evaluate .swiper-container .swiper-slide .text:before {
  content: "";

  position: absolute;

  bottom: -50px;

  right: -0.8rem;

  width: 1.1rem;

  height: 1.1rem;

  background-image: url(https://res.callmysoft.com/wm-static-resource/Sem/775_sem/evaluate_icon.svg);

  transform: rotate(180deg);
}

.homePage .evaluate .swiper-button-next,
.homePage .evaluate .swiper-button-prev {
  width: 1.25rem;

  height: 1.25rem;

  left: 0;

  top: 50%;

  transform: translateY(-50%);

  margin-top: 0;
}

.homePage .evaluate .swiper-button-next img,
.homePage .evaluate .swiper-button-prev img {
  width: 1.1rem;

  height: 1.1rem;
}

.homePage .evaluate .swiper-button-next {
  left: auto;

  right: 0;

  top: calc(50% - 0.5rem);

  margin-top: 0;
}

.homePage .evaluate .swiper-button-next img {
  transform: rotate(180deg);
}

.homePage .evaluate .swiper-button-next:after,
.homePage .evaluate .swiper-button-prev:after {
  display: none;
}

.homePage .section-8 {
  background-position: center center;

  background-size: cover;

  background-repeat: no-repeat;

  background-image: url(https://res.callmysoft.com/wm-static-resource/Sem/775_sem/section8_bg.jpg);

  padding: 1.375rem 0 0.625rem 0;
}

.homePage .section-8 .list {
  display: flex;
}

.homePage .section-8 .list .img {
  width: 14.5rem;
}

.homePage .section-8 .list .info {
  margin-left: 1.65rem;

  margin-top: 1.8rem;
}

.homePage .section-8 .list .info .title {
  font-weight: 600;

  color: #fff;

  font-size: 1.25rem;

  text-align: center;

  line-height: 1;

  letter-spacing: 3px;

  text-align: left;
}

.homePage .section-8 .list .info .title_des {
  color: #c8cbff;

  font-size: 0.5rem;

  line-height: 1;

  text-align: center;

  padding-top: 0.8rem;

  text-align: left;
}

.homePage .section-8 .list .info .button {
  margin-top: 1rem;

  animation-delay: 0.5s;

  display: flex;

  align-items: center;
}

.homePage .section-8 .list .info .button .button_item {
  cursor: pointer;
  letter-spacing: 1px;

  position: relative;

  box-shadow: 0 0.25rem 0.5rem 1px rgba(0, 0, 0, 0.16);

  margin-left: 1rem;

  width: 4rem;

  height: 1.3rem;

  border-radius: 0.15rem;

  font-size: 0.4rem;

  text-decoration: none;

  font-weight: 400;

  box-shadow: 0 10px 20px 1px rgba(0, 0, 0, 0.16);

  transition: transform 0.3s;
}

.homePage .section-8 .list .info .button .button_item .download_info {
  position: relative;
}

.homePage .section-8 .list .info .button .button_item .download_info:before {
  display: none;

  content: "";

  width: 23px;

  height: 3px;

  background: #fff;

  border-radius: 1px;

  bottom: 0;

  left: 50%;

  transform: translateX(-50%);

  position: absolute;
}

.homePage .section-8 .list .info .button .button_item .download_info .icon {
  width: 0.7rem;
}

.homePage .section-8 .list .info .button .button_item .download_info .goodsIcon {
  width: 0.6rem;

  height: 0.6rem;

  animation: run2 1.5s ease 0s infinite;
}

.homePage .section-8 .list .info .button .button_item span {
  display: flex;

  align-items: center;

  padding-left: 0.05rem;
}

.homePage .section-8 .list .info .button .button_item.orange {
  color: #fff;

  background: linear-gradient(90deg, #fe9f2e, #ffc412);

  box-shadow: 0px 0px 9px 0px rgba(0, 105, 200, 0.11);

  border-radius: 4px;

  margin-left: 0;
}

.homePage .section-8 .list .info .button .button_item.orange:before {
  border-radius: 0.15rem;

  background: #f0ac00;
}

.homePage .section-8 .list .info .button .hover:hover .button_item {
  transform: translateY(-15px);
}

.homePage .evaluate .evaluate_box .pinlun ul {
  display: flex;

  flex-wrap: wrap;

  justify-content: space-between;
}

.homePage .evaluate .evaluate_box .pinlun ul li {
  margin-top: 45px;

  padding: 20px 35px 30px 35px;
  cursor: pointer;

  width: 32%;
  box-sizing: border-box;

  -moz-box-sizing: border-box;

  background: #ffffff;

  box-shadow: 0px 0px 120px 0px rgba(0, 0, 0, 0.05);

  border-radius: 10px;
  transition: transform 0.3s;
}

.homePage .evaluate .evaluate_box .pinlun ul li:hover {
  transform: translateY(-15px);
}

.homePage .evaluate .evaluate_box .pinlun ul li p {
  font-weight: 400;

  font-size: 16px;

  color: #333333;
  margin-top: 12px;

  line-height: 23px;
}

.homePage .evaluate .evaluate_box .pinlun ul li .tele {
  display: flex;
  margin-top: 20px;

  flex-wrap: wrap;
  align-items: center;

  justify-content: space-between;
}

.homePage .evaluate .evaluate_box .pinlun ul li .tele .nane h3 {
  display: flex;

  align-items: center;

  font-weight: bold;

  font-size: 24px;

  color: #333333;
}

.homePage .evaluate .evaluate_box .pinlun ul li .tele .nane h3 span {
  font-weight: 400;

  font-size: 16px;
  margin-left: 6px;

  color: #999999;
}

.homePage .evaluate .evaluate_box .pinlun ul li .tele .nane img {
  margin-top: 5px;
}

.homePage .footer {
  padding: 0.5rem 0;

  background: #202438;

  color: #fff;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  font-size: 0.35rem;
}

.homePage .footer .top {
  display: flex;

  align-items: center;
}

.homePage .footer .top .item {
  padding-right: 1rem;
}

.homePage .footer .top .item a {
  color: #fff;

  transition: all 0.3s ease-in;
}

.homePage .footer .top .item a:hover {
  text-decoration: underline;

  color: #1d8eff;
}

.homePage .footer .top .item:last-child {
  padding-right: 0;
}

.homePage .footer .copyRight {
  padding-top: 0.3rem;
}

.homePage .footer .copyRight a {
  color: #fff;

  transition: all 0.3s ease-in;

  padding-left: 0.1rem;
}

.homePage .footer .copyRight a:hover {
  text-decoration: underline;

  color: #1d8eff;
}

@media (max-width: 1460px) {
  .homePage .banner .list .right .icon:nth-child(5) {
    right: 0;
  }
}

@media (max-width: 1400px) {
  .homePage .section-5 .list .item {
    width: calc((100% - 34% - 1rem) / 3);

    margin-right: 0.5rem;
  }

  .homePage .section-5 .list .item .hover-after .item_text {
    width: 100%;
  }
}

@media (max-width: 1300px) {
  .homePage .section-6 .step .mySwiper {
    height: auto;
  }

  .homePage .section-6 .step .mySwiper .swiper-slide {
    height: auto;

    width: calc((100% - 40px) / 3) !important;

    margin-right: 20px !important;
  }

  .homePage .section-6 .step #certify .swiper-container .swiper_left,
  .homePage .section-6 .step #certify .swiper-container .swiper_right {
    background: 0 0;
  }
}

@media (max-width: 1224px) {
  .homePage .banner .list {
    flex-wrap: wrap;

    justify-content: center;

    flex-direction: column;
  }

  .homePage .banner .list .left {
    width: 100%;

    flex: auto;

    justify-content: center;

    align-items: center;

    display: flex;

    flex-direction: column;
  }

  .homePage .banner .list .right {
    margin-top: 2rem;

    margin-left: 0;
  }

  .homePage .section-3 .list .item {
    width: calc((100% - 2rem) / 5);

    margin-right: 0.5rem;

    padding: 0.5rem 0.2rem;
  }
}

@media (max-width: 1200px) {
  .data_recov4 .wrap {
    justify-content: center;
  }
}

@media (max-width: 1180px) {
  .homePage .header_nav .second_box .list {
    display: none;
  }
}

@media (max-width: 1100px) {
  .homePage .section-4 .list .item.stop1 {
    left: 22%;
  }

  .homePage .section-4 .list .item.stop2 {
    right: 20%;
  }
}

@media (max-width: 1000px) {
  .homePage .section-2 .list {
    flex-wrap: wrap;

    height: auto;
  }

  .homePage .section-2 .list .flex_item {
    width: calc((100% - 10px) / 2);

    height: 14rem;

    overflow: hidden;

    margin-bottom: 0.5rem;

    margin-right: 10px;

    -webkit-border-radius: 0.25rem;

    -moz-border-radius: 0.25rem;

    border-radius: 0.25rem;
  }

  .homePage .section-2 .list .flex_item:nth-child(2n) {
    margin-right: 0;
  }

  .homePage .section-2 .list .flex_item:nth-last-child(-n + 2) {
    margin-bottom: 0;
  }

  .homePage .section-3 .list .item {
    width: calc((100% - 1rem) / 3);

    margin-right: 0.5rem;

    padding: 0.5rem 0.2rem;
  }

  .homePage .section-3 .list .item:nth-child(3n) {
    margin-right: 0;
  }

  .homePage .section-3 .list .item:nth-child(5) {
    margin-right: 0.5rem;
  }

  .homePage .section-5 .list {
    display: flex;

    flex-wrap: wrap;
  }

  .homePage .section-5 .list .item {
    width: calc((100% - 1rem) / 2);

    margin-right: 0.5rem;

    margin-bottom: 0.5rem;
  }

  .homePage .section-5 .list .item.actived {
    width: calc((100% - 1rem) / 2);
  }

  .homePage .evaluate .swiper-container .swiper-slide {
    padding: 0 1rem;
  }

  .homePage .evaluate .swiper-container .swiper-slide .user {
    margin-left: 0.5rem;

    margin-right: 0.1rem;
  }

  .homePage .evaluate .swiper-container .swiper-slide .text {
    padding: 0.8rem 0.8rem 0 0.2rem;
  }
}

@media (max-width: 900px) {
  .homePage .section-7 .position .vsimg {
    width: 160px;

    top: 560px;
  }

  .section-5 .list ul li {
    width: 48%;
  }

  .homePage .section-5 .list {
    margin-top: 1rem;
  }

  .section-5 .list ul li {
    margin-top: 40px;
  }

  .homePage .header_nav .second_box .list {
    display: none;
  }

  .homePage .section-4 .list .center {
    width: 100%;

    min-height: 16.25rem;
  }

  .homePage .section-4 .list .center .round {
    width: 100%;

    height: auto;

    overflow: hidden;

    max-width: 15rem;

    max-height: 14rem;
  }

  .homePage .section-7 .list {
    flex-wrap: wrap;
  }

  .homePage .section-7 .list .item {
    width: 100%;

    margin-right: 0;

    margin-bottom: 0.5rem;

    background-repeat: no-repeat;

    background-size: cover;
  }

  .homePage .section-7 .list .item .list {
    margin-top: 0.5rem;
  }

  .homePage .section-7 .list .item .list .kx {
    width: 2rem;

    flex: none;
  }

  .homePage .section-8 .list {
    flex-wrap: wrap;

    flex-direction: column;

    align-items: center;

    justify-content: center;
  }

  .homePage .section-8 .list .img {
    width: 100%;

    max-width: 14.5rem;
  }

  .homePage .section-8 .list .info {
    margin-left: 0;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;
  }

  .homePage .section-8 .list .info .title_des {
    line-height: 1.5;
  }
}

@media (max-width: 800px) {
  .homePage .evaluate .evaluate_box .pinlun ul li {
    width: 48%;
  }

  .homePage .banner .list .right .icon:nth-child(5) {
    right: 0;
  }

  .gif-box img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 700px) {
  .homePage .banner .list .right .icon:nth-child(3) {
    right: 3rem;

    left: initial;
  }

  .homePage .section-3 .list .item {
    width: calc((100% - 0.5rem) / 2);

    margin-right: 0.5rem;

    padding: 0.5rem 0.2rem;
  }

  .homePage .section-3 .list .item:nth-child(2n) {
    margin-right: 0;
  }

  .homePage .section-3 .list .item:nth-child(2n + 1) {
    margin-right: 0.5rem;
  }

  .homePage .section-4 .list .item.stop1 {
    left: 5%;
  }

  .homePage .section-4 .list .item.stop2 {
    right: 5%;
  }

  .homePage .section-4 .list .item.stop3 {
    left: 11%;
  }

  .homePage .section-4 .list .item.stop4 {
    right: 11%;
  }

  .homePage .section-5 .list {
    display: flex;

    flex-wrap: wrap;
  }

  .homePage .section-5 .list .item {
    width: 100%;

    margin-right: 0;
  }

  .homePage .section-5 .list .item.actived {
    width: 100%;
  }

  .homePage .section-5 .list .item .hover-after {
    opacity: 1;
  }

  .homePage .section-5 .list .item .hover-after .item_text {
    opacity: 1;
  }

  .homePage .section-5 .list .item .hover-before {
    display: none;
  }

  .homePage .section-6 .step .mySwiper {
    display: none;
  }
}

@media (min-width: 1280px) {
  .d-xl-block {
    display: block !important;
  }
}

.float-btn-box {
  position: fixed;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1240px;
  width: 100%;
  z-index: 999;

  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.float-btn-box.show {
  opacity: 1;
  visibility: visible;
}

.float-btn-box.hide {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(30px);
  /* 下沉消失 */
}

.float-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 28px 40px;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
}

.float-left {
  display: flex;
  align-items: center;
}

.logo {
  flex-shrink: 0;
  margin-right: 12px;
  height: 64px;
  width: 64px;
}

.text-box .title {
  font-size: 20px;
  font-weight: 600;
  color: #353031;
}

.text-box .title .text-action {
  color: #0066ff;
}

.text-box .desc {
  font-size: 16px;
  color: #353031;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16.5px 33px;
  background: #ff6600;
  color: #fff;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}

.download-win {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.btn-download:hover {
  background: #e65c00;
}
.changebody{
  display: none;
}

.ShowTips {
  background: rgba(0, 0, 0, 0.45);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tipsbos {
  position: fixed;
  width: 390px;
  height: 425px;
  border-radius: 7px;
  background: linear-gradient(60deg, #5C76F7 42.24%, #879CF8 91.62%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tipsbos>div:nth-child(1) {
  display: flex;
  margin: 0 auto;
}
.tipsbos>div:nth-child(1) svg{
  margin: 5px 6px 0 0 ;
}

.tipsbos>div:nth-child(1) img {
  height: 174px;
  position: relative;
  left: 30px;
  top: -90px;
}

.tipsbos>div:nth-child(2) {
  color: #FFF;
  font-family: "Microsoft YaHei UI";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  align-items: center;
  transform: translateY(-95px);
}

.tipsbos>div:nth-child(2) img {
  height: 30px;
  margin-right: 6px;
}

.tipsbos>div:nth-child(3) {
  color: #FFF;
  font-family: "Microsoft YaHei UI";
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.78px;
  transform: translateY(-86px);
}

.tipsbos>div:nth-child(4) {
  color: #FFF;
  font-family: "Microsoft YaHei UI";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  transform: translateY(-77px);
  /* 21px */
  letter-spacing: 0.42px;
  width: 330px;
  text-align: center;
}

.tipsbos>div:nth-child(5) {
  color: #FFF;
  font-family: "Microsoft YaHei UI";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  transform: translateY(-73px);
  line-height: 150%;
  /* 21px */
  letter-spacing: 0.42px;
  width: 330px;
  text-align: center;
}

.tipsbos>div:nth-child(6) {
  width: 330px;
  text-align: center;
  transform: translateY(-70px);
  color: #FFF;
  font-family: "Microsoft YaHei UI";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 21px */
  letter-spacing: 0.42px;
}

.tipsbos>a {
  transform: translateY(-48px);
  width: 156px;
  height: 78px;
  border-radius: 4px;
  background: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 11px;
  color: #0086FF;
  font-family: "Microsoft YaHei UI";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 16.5px */
  letter-spacing: 0.33px;
}

.tipsbos>a svg {
  margin-right: 5px;
}

.tipsbos>div:nth-child(8) {
  transform: translateY(-35px);
  color: #FFF;
  font-family: "Microsoft YaHei UI";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 18px */
  letter-spacing: 0.36px;
  display: flex;
  align-items: center;
}

.tipsbos>div:nth-child(8) img {
  height: 15px;
  width: 15px;
  margin-right: 7px;
}

.tipsbos>div:nth-child(9) {
  transform: translateY(-22px);
  color: #FFF;
  font-family: "Microsoft YaHei UI";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 18px */
  letter-spacing: 0.36px;
}
#clodes{
  cursor: pointer;
  position: relative;
  z-index: 99;
}