@charset "UTF-8";
.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;
}

: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 {
  color: #3F9DFF;
  font-family: "Microsoft YaHei UI";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  align-items: center;
}

.homePage .header_nav .second_box .logo img {
  margin-right: 19px;
  height: 57px;
}

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

.homePage .header_nav .second_box .list {
  display: flex;
  align-items: center;
  margin-right: 23px;
}

.homePage .header_nav .second_box .list .item {
  padding: 0 19px;
  color: #333;
  font-size: 0.4rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border-right: 1px solid #269bfd;
}

.homePage .header_nav .second_box .list .item a {
  color: #1895FD;
  font-family: "Microsoft YaHei UI";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

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

.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;
  border-radius: 4px;
  background: #3F9DFF;
  display: flex;
  width: 110px;
  height: 46px;
  justify-content: center;
  align-items: center;
}
.homePage .header_nav .second_box .button .button_item:active {
  background: #007DFF;
}

.homePage .header_nav .second_box .button .button_item span {
  color: #FFF;
  font-family: "Microsoft YaHei UI";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.homePage .regular {
  top: 0;
  opacity: 1;
}

.homePage .header_kx {
  height: 2rem;
}

.homePage .section-2 {
  background: #fff;
  padding: 2.2rem 0 120px 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;
  border-radius: 0.25rem;
  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%;
  border: 1px solid #FFF;
  background: linear-gradient(123deg, #DFECFF 0%, #F5F7FF 100%);
  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;
  width: 100px;
  height: 100px;
  bottom: 0.6rem;
  right: 0.6rem;
  display: none;
}

.homePage .section-2 .list .flex_item .cell:nth-child(2) {
  border: 1px solid #ffffff;
}

.homePage .section-2 .list .flex_item .cell.actived {
  height: 61%;
  background: linear-gradient(142deg, #3F9DFF 24.32%, #95D6FF 80.26%);
  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-3 {
  background: linear-gradient(180deg, #FFF 0%, #E8F3FF 100%);
  padding: 95px 0 99px;
}

.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 {
  display: flex;
  flex-wrap: wrap;
  width: 1185px;
  margin: 101px auto 0;
}

.homePage .section-3 .list .item {
  width: 225px;
  height: 160px;
  margin-right: 15px;
  padding: 0 13px 21px 22px;
  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 .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}
.homePage .section-3 .list .item .title img {
  width: 90px;
}
.homePage .section-3 .list .item .title .item_title {
  color: #3F9DFF;
  font-family: "Microsoft YaHei UI";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  align-self: flex-end;
}

.homePage .section-3 .list .item .item_desc {
  color: #666565;
  font-family: "Microsoft YaHei UI";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  text-align: left;
  margin-top: 16px;
  /* 131.25% */
}

.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 {
  display: inline-block;
  margin: 73px auto 0 auto;
  border-radius: 6px;
  background: #3F9DFF;
  width: 234px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.homePage .section-3 .batn:active {
  background: #007DFF;
}

.homePage .section-3 .batn span {
  color: #FFF;
  font-family: "Microsoft YaHei UI";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.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-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: url(https://res.callmysoft.com/wm-static-resource/Sem/902_sem/page5_bg.png) no-repeat;
  background-size: cover;
  height: 380px;
}

.homePage .section-8 .list {
  display: flex;
  width: 902px;
  margin: 0 auto;
  padding-top: 57px;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
}

.homePage .section-8 .list .img {
  width: 324px;
  height: 267px;
}

.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: #FFF;
  text-align: center;
  text-shadow: 0 4px 12.8px #008BFF;
  font-family: "Microsoft YaHei UI";
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  /* 163.636% */
  margin-top: 5px;
}

.homePage .section-8 .list .info .button {
  margin-top: 29px;
  animation-delay: 0.5s;
  display: flex;
  align-items: center;
}

.homePage .section-8 .list .info .button .button_item {
  cursor: pointer;
  letter-spacing: 1px;
  position: relative;
  margin-left: 1rem;
  width: 4rem;
  height: 1.3rem;
  border-radius: 7px;
  background: linear-gradient(104deg, #FFF649 -38.31%, #FFB348 46.29%);
  box-shadow: 0 4px 12.3px 0 rgba(66, 98, 117, 0.25);
  font-size: 0.4rem;
  text-decoration: none;
  font-weight: 400;
  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.9rem;
}

.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 {
  color: #FFF;
  text-align: center;
  font-family: "Microsoft YaHei UI";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  margin-left: 3px;
  /* 163.636% */
}

.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 .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((66% - 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;
  }
}
@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;
}
.float-left img {
  height: 66px;
  width: 66px;
  margin-right: 18px;
}

.text-box .title {
  color: #000;
  font-family: "Microsoft YaHei UI";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 30px */
  letter-spacing: 0.6px;
}

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

.text-box .desc {
  color: #000;
  font-family: "Microsoft YaHei UI";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 30px */
}

.btn-download {
  border-radius: 5px;
  background: linear-gradient(90deg, #FFC048 0%, #FF9500 100%);
  box-shadow: 0 4px 10.4px 0 rgba(146, 154, 162, 0.25);
  display: flex;
  height: 60px;
  width: 200px;
  justify-content: center;
  align-items: center;
  gap: 7px;
  color: #FDFEFF;
  font-family: "Microsoft YaHei UI";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 30px */
  letter-spacing: 0.6px;
}

.btn-download:active {
  background: #E78C02;
}

.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, #3F9DFF 42.24%, #69C3FF 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.58px;
  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 {
  position: relative;
  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%;
  letter-spacing: 0.33px;
}
.tipsbos > a:active {
  background: #C3E5FC;
}
.tipsbos > a .btn-tips {
  height: 22px;
  width: 76px;
  border-radius: 5.349px;
  border: 0.8px solid #30e952;
  background: linear-gradient(93deg, #00E40B 8.16%, #00C81E 87.38%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  position: absolute;
  top: -9px;
  right: -5px;
  color: #FFF;
  font-family: "Microsoft YaHei UI";
  font-size: 10.421px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 15.632px */
}
.tipsbos > a > div {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.tipsbos > div:nth-child(8) {
  transform: translateY(-35px);
  color: #FFF;
  font-family: "Microsoft YaHei UI";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 21px */
  letter-spacing: 0.42px;
  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;
}

.banner {
  height: 757px;
  background: url(https://res.callmysoft.com/wm-static-resource/Sem/902_sem/page1_bg.png) no-repeat;
  background-size: cover;
}
.banner .banner-content {
  width: 1200px;
  margin: 0 auto;
  padding-top: 88px;
  box-sizing: border-box;
}
.banner .banner-content .up {
  display: flex;
  justify-content: space-between;
}
.banner .banner-content .up .up-left .title {
  position: relative;
  display: inline-block;
  margin-bottom: 11px;
}
.banner .banner-content .up .up-left .title .tips {
  position: absolute;
  right: -25px;
  top: -25px;
  padding: 0 8px;
  height: 27px;
  text-align: center;
  line-height: 27px;
  color: #FFF;
  font-family: "Microsoft YaHei UI";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  border-radius: 5px 5px 5px 0;
  background: linear-gradient(106deg, #F60 16.53%, #FE2E2E 61.15%);
}
.banner .banner-content .up .up-left .title .word {
  color: #000;
  font-family: "Microsoft YaHei UI";
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.banner .banner-content .up .up-left .subtitle {
  font-family: "Microsoft YaHei UI";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  background: linear-gradient(180deg, #3f9dff 0%, #3f9dff 132%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 37px;
}
.banner .banner-content .up .up-left .list {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}
.banner .banner-content .up .up-left .list > img {
  width: 24px;
  height: 24px;
  margin-right: 5px;
}
.banner .banner-content .up .up-left .list p {
  color: #00316C;
  font-family: "Microsoft YaHei UI";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.banner .banner-content .up .up-left a {
  width: 234px;
  height: 70px;
  border-radius: 6px;
  background: linear-gradient(94deg, #3F9DFF 0.87%, #00B2FF 121.94%);
  box-shadow: 0 3px 9.6px 0 rgba(21, 41, 87, 0.25), 2px 4px 7.7px 0 rgba(255, 255, 255, 0.25) inset;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.4s;
  transform: translateX(-60px);
}
.banner .banner-content .up .up-left a:active {
  background: linear-gradient(94deg, #006AD8 0.87%, #0097D8 121.94%);
}
.banner .banner-content .up .up-left a .icon {
  margin-right: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.banner .banner-content .up .up-left a .icon > img:nth-child(1) {
  height: 22px;
  transform: translateY(-5px);
  animation: iconanimation 600ms ease-in-out infinite;
}
.banner .banner-content .up .up-left a .icon > img:nth-child(2) {
  width: 27px;
  height: 3px;
}
@keyframes iconanimation {
  0% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-5px);
  }
}
.banner .banner-content .up .up-left a p {
  color: #FFF;
  text-shadow: 0 2px 0 rgba(0, 120, 184, 0.59);
  font-family: "Microsoft YaHei UI";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.banner .banner-content .down {
  width: 1250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 54px;
}
.banner .banner-content .down .leftdown {
  width: 400px;
  display: flex;
  align-items: center;
}
.banner .banner-content .down .leftdown .word > div:nth-child(1) {
  font-family: "Microsoft YaHei UI";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  background: linear-gradient(180deg, #9FCEFF 0%, #4AA3FF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.banner .banner-content .down .leftdown .word > div:nth-child(2) {
  color: #383838;
  font-family: "Microsoft YaHei UI";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 6px;
}
.banner .banner-content .down .leftdown img {
  width: 34.5px;
  height: 81px;
}
.banner .banner-content .down .rightdown {
  width: 720px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.banner .banner-content .down .rightdown .downitem {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.banner .banner-content .down .rightdown .downitem img {
  height: 48px;
}
.banner .banner-content .down .rightdown .downitem span {
  color: #007BE0;
  font-family: "Microsoft YaHei UI";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 12px;
}

.func-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 800px;
  background-size: cover;
}
.func-box h2 {
  color: rgba(0, 0, 0, 0.85);
  font-family: "Douyin Sans";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.func-box .func-tabs {
  display: flex;
  width: 1200px;
  justify-content: center;
  box-sizing: border-box;
  margin-top: 43px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.func-box .func-tabs > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 400px;
  cursor: pointer;
}
.func-box .func-tabs > div span {
  width: 36px;
  height: 36px;
  background: rgba(217, 217, 217, 0.7);
  color: #FFF;
  text-align: center;
  text-shadow: 0 1px 0 #FFF;
  font-family: "Microsoft YaHei UI";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  /* 200% */
  border-radius: 50%;
}
.func-box .func-tabs > div p {
  color: #848484;
  text-align: center;
  font-family: "Microsoft YaHei UI";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  /* 180% */
}
.func-box .func-tabs > div.active {
  position: relative;
}
.func-box .func-tabs > div.active::after {
  content: "";
  position: absolute;
  bottom: -21px;
  width: 268px;
  height: 5px;
  background-color: #3F9DFF;
  transform: translateY(2px);
  border-radius: 3px;
}
.func-box .func-tabs > div.active span {
  width: 36px;
  height: 36px;
  background: url(https://res.callmysoft.com/wm-static-resource/Sem/902_sem/yuan.png) no-repeat;
  background-size: 36px 36px;
  color: #008BFF;
  text-align: center;
  text-shadow: 0 1px 0 #FFF;
  font-family: "Microsoft YaHei UI";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  /* 200% */
}
.func-box .func-tabs > div.active p {
  color: #0478FE;
  font-family: "Microsoft YaHei UI";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.func-box .func-content {
  width: 1200px;
  margin: 80px auto 0 auto;
}
.func-box .func-content .swiper-container {
  width: 100%;
}
.func-box .func-content .swiper-container .swiper-wrapper .swiper-slide {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 71px;
  align-items: center;
}
.func-box .func-content .swiper-container .swiper-wrapper .swiper-slide .item-left {
  display: flex;
  flex-direction: column;
  width: 490px;
}
.func-box .func-content .swiper-container .swiper-wrapper .swiper-slide .item-left h3 {
  color: rgba(0, 0, 0, 0.85);
  font-family: "Microsoft YaHei UI";
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.7px;
}
.func-box .func-content .swiper-container .swiper-wrapper .swiper-slide .item-left p {
  margin: 28px 0;
  color: rgba(0, 0, 0, 0.85);
  font-family: "Microsoft YaHei UI";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.9px;
}
.func-box .func-content .swiper-container .swiper-wrapper .swiper-slide .item-left .download-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 140px;
  height: 54px;
  border-radius: 11.333px;
  border: 0.5px solid #fff;
  background: #0478FE;
  box-shadow: 5px 5px 10px 0 rgba(255, 255, 255, 0.25) inset;
  color: #fff;
  text-align: center;
  font-family: "Microsoft YaHei UI";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  overflow: hidden;
  -webkit-user-select: none;
  /* Safari、Chrome 等 WebKit 内核浏览器 */
  -moz-user-select: none;
  /* Firefox 浏览器 */
  -ms-user-select: none;
  /* IE、Edge 浏览器 */
  user-select: none;
}
.func-box .func-content .swiper-container .swiper-wrapper .swiper-slide .item-left .download-btn:hover {
  border-radius: 11.333px;
  border: 1px solid #fff;
  box-shadow: 5px 5px 10px 0 rgba(255, 255, 255, 0.25) inset;
  border-radius: 11.333px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.15) 100%), #0478FE;
}
.func-box .func-content .swiper-container .swiper-wrapper .swiper-slide .item-left .download-btn > :active {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%), #0478FE;
}
.func-box .func-content .swiper-container .swiper-wrapper .swiper-slide .item-left .download-btn > img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.func-box .func-content .swiper-container .swiper-wrapper .swiper-slide .item-left .download-btn > i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.15);
  animation: spread 1.5s linear infinite;
}
.func-box .func-content .swiper-container .swiper-wrapper .swiper-slide:nth-of-type(1) .item-right img {
  width: 555px;
  height: auto;
}
.func-box .func-content .swiper-container .swiper-wrapper .swiper-slide:nth-of-type(2) .item-right img {
  width: 445px;
  height: auto;
}
.func-box .func-content .swiper-container .swiper-wrapper .swiper-slide:nth-of-type(3) .item-right img {
  width: 626px;
  height: auto;
}

.button_item2 {
  border-radius: 7px;
  background: linear-gradient(90deg, #FFC048 0%, #FF9500 100%);
  box-shadow: 0 4px 10.4px 0 rgba(146, 154, 162, 0.25);
  display: flex;
  height: 60px;
  width: 183px;
  justify-content: center;
  align-items: center;
  gap: 7px;
  color: #FDFEFF;
  font-family: "Microsoft YaHei UI";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.6px;
}
.button_item2:active {
  border-radius: 7px;
  background: linear-gradient(104deg, #FFF200 -38.31%, #FF9500 46.29%);
}

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