@keyframes reduce {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  90% {
    opacity: 0;
  }

  100% {
    transform: scale(0);
    opacity: 0;
  }
}

@keyframes magnify {
  0% {
    transform: scale(0);
    width: 46px;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translate(1);
    width: 46px;
    opacity: 1;
  }
}
@keyframes magnifyTwo {
  0% {
    transform: scale(0);
    width: 120px;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translate(1);
    width: 120px;
    opacity: 1;
  }
}

.w {
  width: 1200px;
  margin: 0 auto;
}

/* banner */
.banner-box {
  margin-top: 116px;
  height: 883px;
  width: 100%;
  background: url(https://res.callmysoft.com/wm-static-resource/index/KingshiperPc/product/510/images/banner-bg.jpg) no-repeat center/cover;
}

.banner-content {
  position: absolute;
  left: 50%;
  top: 29%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.banner-title {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
.banner-p1 {
  display: inline-block;
  width: 744px;
  color: #7f7f7f;
  text-align: center;
  font-family: Microsoft YaHei;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 26px */
  letter-spacing: 0.52px;
  margin-bottom: 80px;
}
.banner-title h1:nth-child(1) {
  color: #000;
  font-family: Microsoft YaHei;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 2.5px;
}

.banner-box > p {
  font-family: "Microsoft YaHei";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  color: #717994;
  margin-top: 21px;
  margin-bottom: 60px;
}

.down-box {
  width: 1200px;
  display: flex;
  justify-content: space-between;
}
.down-box > a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.down-box > a .label {
  position: absolute;
  top: -10px;
  left: 29px;
  display: none;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 24px;
}
.down-box > a .label.show {
  display: flex;
}
.down-box > a .label img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}
.down-box > a .label span {
  color: #000;
  font-family: PingFang SC;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 16px */
  z-index: 10;
}

.bg-ico {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 14px;
  width: 146px;
  height: 146px;
  opacity: 0.5;
  overflow: hidden;
}
.bg-ico > img {
  position: absolute;
  top: 0;
  right: 0;
  width: 58px;
  transition: all 0.3s;
}

.down-box > a:hover .img-box .imgTwo {
  transition: all 0.3s;
  transform: scale(2.6);
}
.down-box > a:hover .bg-ico > img {
  top: -25px;
  right: -25px;
}

.down-box > a .img-box {
  position: relative;
  width: 144px;
  height: 144px;
  border-radius: 14px;
  border: 1px solid #f2f2f2;
  background: #fff;
  box-shadow: 0px 4px 10px 0px rgba(221, 221, 221, 0.25);
}
.down-box > a .img-box img {
  position: absolute;
  top: 50px;
  left: 50px;
  height: 46px;
}
.down-box > a .img-box div {
  position: absolute;
  top: 13px;
  left: 13px;
  width: 120px;
  height: 120px;
}

.down-box > a .img-box img:nth-child(1),
.down-box > a .img-box div {
  opacity: 0;
}

.down-box > a .img-box div.show {
  animation: magnifyTwo 0.3s forwards;
}
.down-box > a .img-box div.none {
  animation: magnifyTwo 0.3s forwards;
}

.down-box > a .img-box .imgTwo {
  width: 0;
}
.animation-show {
  animation: magnify 0.3s forwards;
}

.animation-none {
  animation: reduce 0.3s forwards;
}

.animation-show-two {
  animation: magnifyTwo 0.3s forwards;
}

.down-box > a .text-box {
  padding-top: 13px;
  box-sizing: border-box;
  height: 36px;
  display: flex;
  flex-direction: column;
  margin: 29px 0 23px;
}
.down-box > a .text-box div {
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(0);
  transition: all 0.3s;
}

.down-box > a .text-box span {
  display: inline-block;
  color: #000;
  text-align: center;
  font-family: Microsoft YaHei;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 16px */
  letter-spacing: 0.32px;
}
.down-box > a .text-box span:first-child {
  margin-bottom: -3px;
}
.down-box > a > p {
  color: #7f7f7f;
  text-align: center;
  font-family: Microsoft YaHei;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 14px */
  letter-spacing: 0.28px;
}

.down-box > a:hover .text-box div {
  transform: translateY(-15px);
}
.down-box > a .text-box div > span:nth-child(1) {
  opacity: 1;
  transition: all 0.2s;
}
.down-box > a .text-box div > span:nth-child(2) {
  opacity: 0;
  transition: all 0.2s;
}
.down-box > a:hover .text-box div > span:nth-child(1) {
  opacity: 0;
}
.down-box > a:hover .text-box div > span:nth-child(2) {
  opacity: 1;
}

/* 产品简介 */
.product {
  padding-top: 112px;
  margin-bottom: 120px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product > h1 {
  color: #273446;
  text-align: center;
  font-family: Microsoft YaHei UI;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.product-p1 {
  margin-top: 34px;
  margin-bottom: 90px;
  color: #4e5156;
  text-align: center;
  font-family: Microsoft YaHei UI;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 24px */
}
.product-ul1 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-ul1 li {
  position: relative;
  padding-top: 33px;
  padding-left: 40px;
  margin-right: 20px;
  box-sizing: border-box;
  width: 590px;
  height: 275px;
  border-radius: 10px;
  background: #fff;
  filter: drop-shadow(0px 0px 14px rgba(186, 186, 186, 0.25));
  transition: all 0.3s;
}
.product-ul1 li:last-child {
  margin-right: 0;
}
.product-ul1 li p {
  color: #333;
  font-family: Microsoft YaHei UI;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 24px */
}
.product-ul1 li span {
  display: inline-block;
  margin-top: 32px;
  width: 308px;
  color: #7f7f7f;
  font-family: Microsoft YaHei;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 20px */
  letter-spacing: 0.4px;
}
.product-ul1 li img {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 110px;
}

.product-ul2 {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-ul2 li {
  margin-right: 20px;
  padding-top: 32px;
  padding-left: 40px;
  box-sizing: border-box;
  position: relative;
  width: 387px;
  height: 275px;
  border-radius: 10px;
  background: #fff;
  filter: drop-shadow(0px 0px 14px rgba(186, 186, 186, 0.25));
}
.product-ul2 li:last-child {
  margin-right: 0;
}
.product-ul2 li p {
  color: #333;
  font-family: Microsoft YaHei UI;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 24px */
}
.product-ul2 li span {
  display: inline-block;
  margin-top: 32px;
  width: 204px;
  color: #7f7f7f;
  font-family: Microsoft YaHei;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 20px */
  letter-spacing: 0.4px;
}
.product-ul2 li img {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 110px;
}
.product-ul1 li:hover,
.product-ul2 li:hover {
  border-radius: 10px;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(195, 201, 252, 0.2) 100%
    ),
    #fff;
}

.introduce {
  width: 1200px;
  padding: 62px 34px;
  margin-top: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  filter: drop-shadow(0px 0px 14px rgba(186, 186, 186, 0.25));
  background: #fff;
  border-radius: 10px;
}
.introduce.introduce-two {
  padding: 58px 44px 58px 71px;
  justify-content: space-between;
}
.introduce > img {
  margin-right: 45px;
  width: 568px;
}
.introduce .introduce-img-two {
  margin-right: 0;
  margin-left: 66px;
}
.introduce .text {
  padding-top: 38px;
}
.introduce .text > div {
  display: flex;
  flex-direction: column;
  justify-content: start;
  margin-bottom: 50px;
}
.introduce .text > div div {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: #333;
  font-family: Microsoft YaHei UI;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 22px */
}
.introduce .text > div div i {
  margin-top: 1px;
  display: inline-block;
  margin-right: 18px;
  width: 7px;
  height: 20px;
  border-radius: 3.5px;
  background: #8693ff;
}
.introduce .text > div span {
  margin-left: 26px;
  color: #7f7f7f;
  font-family: Microsoft YaHei UI;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 20px */
}

/* 使用场景 */
.scene {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scene h1 {
  color: #273446;
  text-align: center;
  font-family: Microsoft YaHei UI;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.scene-content {
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
  width: 1200px;
  border-radius: 10px;
  box-shadow: 0px 0px 30px 0px rgba(186, 186, 186, 0.25);
}
.scene-content > div {
  padding-top: 30px;
  padding-left: 30px;
  box-sizing: border-box;
  width: 400px;
  height: 226px;
  background-color: #fff;
}
.scene-content > div:nth-child(1),
.scene-content > div:nth-child(2),
.scene-content > div:nth-child(3) {
  border-right: 1px solid #eeeff0;
  border-bottom: 1px solid #eeeff0;
}
.scene-content > div:nth-child(5) {
  border-left: 1px solid #eeeff0;
  border-right: 1px solid #eeeff0;
}
.scene-content > div:hover {
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(195, 201, 252, 0.2) 100%
    ),
    #fff;
}
.scene-content > div > div {
  display: flex;
  align-items: center;
  color: #273446;
  font-family: Microsoft YaHei UI;
  font-size: 22px;
  font-weight: 700;
}
.scene-content > div > div img {
  margin-right: 20px;
  width: 80px;
}
.scene-content > div > span {
  display: inline-block;
  margin-top: 20px;
  width: 324px;
  color: #7f7f7f;
  font-family: Microsoft YaHei UI;
  font-size: 18px;
}
.scene-content-two {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 53px;
  padding-bottom: 100px;
  box-sizing: border-box;
  margin-top: 60px;
  width: 1200px;
  border-radius: 10px;
  box-shadow: 0px 0px 30px 0px rgba(186, 186, 186, 0.25);
}
.scene-content-two > h1 {
  color: #273446;
  font-family: Microsoft YaHei UI;
  font-size: 36px;
  font-weight: 700;
}
.scene-content-two > img {
  margin-top: 70px;
  width: 812px;
}

/* 评价 */
.assess-box {
  width: 100%;
  padding: 100px 0;
  box-sizing: border-box;
}

.assess-content {
  position: relative;
  width: 1200px;
  margin: 0 auto;
}
.assess-content .shade {
  position: absolute;
  top: 276px;
  left: 10px;
  width: 1180px;
  height: 28px;
  background: #fff;
  z-index: 10;
}

.assess-content ul:nth-child(1) li {
  display: none;
  width: 100%;
  height: 307px;
  box-sizing: border-box;
  border-radius: 30px;
  position: relative;
  z-index: 10;
  text-align: center;
  padding-top: 48px;
  border-radius: 10px;
  box-shadow: 0px 0px 30px 0px rgba(186, 186, 186, 0.25);
}

.assess-star h1 {
  font-size: 26px;
  font-weight: 700;
  color: #2d2856;
  margin-bottom: 24px;
}

.assess-content ul:nth-child(1) li span {
  display: block;
  width: 1000px;
  height: 1px;
  background: #edf0f3;
  border-radius: 0px 0px 0px 0px;
  margin: 40px auto 0 auto;
}

.assess-content ul:nth-child(1) li p {
  display: inline-block;
  width: 1084px;
  font-size: 18px;
  font-weight: 400;
  color: #666473;
  margin-top: 44px;
}

.assess-content ul:nth-child(1) li i {
  display: block;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 2px 2px 2px 2px;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  position: absolute;
  bottom: -20px;
  box-shadow: 0px 0px 30px 0px rgba(186, 186, 186, 0.25);
}

.left1 {
  left: 84px;
}

.left2 {
  left: 270px;
}

.left3 {
  left: 463px;
}

.left4 {
  left: 676px;
}
.left5 {
  left: 893px;
}
.left6 {
  left: 1087px;
}

.assess-content ul:nth-child(1) li:first-child {
  display: block;
}

.assess-content ul:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 63px;
}

.assess-content ul:nth-child(2) li {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.assess-content ul:nth-child(2) li:hover {
  cursor: pointer;
}

.assess-content ul:nth-child(2) li img {
  width: 76px;
  height: 76px;
  border-radius: 50px;
  border: 3px solid transparent;
}
.assess-content ul:nth-child(2) li:hover img {
  border: 3px solid #746fff;
}

.assess-content ul:nth-child(2) li p {
  font-family: "Microsoft YaHei UI";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  text-transform: lowercase;
  color: #666473;
  margin-top: 17px;
  margin-bottom: 11px;
}

.assess-content ul:nth-child(2) li h2 {
  font-family: "Microsoft YaHei UI";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  letter-spacing: 0.01em;
  color: #283256;
}

/* 底部下载 */
.footer-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 557px;
  background: url(https://res.callmysoft.com/wm-static-resource/index/KingshiperPc/product/510/images/footer-bg.png) no-repeat center/cover;
}
.footer-down > div:nth-child(1) {
  margin-top: 166px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-down > div:nth-child(1) > img {
  margin-right: 24px;
  width: 80px;
}
.footer-down > div:nth-child(1) > div p {
  color: #000;
  font-family: Microsoft YaHei UI;
  font-size: 34px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 34px */
  letter-spacing: 2.38px;
}
.footer-down > div:nth-child(1) > div span {
  display: inline-block;
  margin-top: 19px;
  color: #525356;
  font-family: Microsoft YaHei UI;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 24px */
  letter-spacing: 1.68px;
}
.footer-down > div:nth-child(2) {
  margin-top: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-down > div:nth-child(2) a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 230px;
  height: 64px;
  color: #fff;
  text-align: center;
  font-family: Microsoft YaHei;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 20px */
  letter-spacing: 0.8px;
  background-color: #161a23;
  border-radius: 10px;
  margin-right: 40px;
}
.footer-down > div:nth-child(2) a:last-child {
  margin-right: 0;
}
.footer-down > div:nth-child(2) a > div {
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -10px;
  left: 0;
  width: 50px;
  height: 24px;
}
.footer-down > div:nth-child(2) a > div.show {
  display: flex;
}
.footer-down > div:nth-child(2) a > div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}
.footer-down > div:nth-child(2) a > div span {
  color: #000;
  font-family: PingFang SC;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 16px */
  z-index: 10;
}

.footer-down > div:nth-child(2) a .imgTwo {
  position: absolute;
  top: 74px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  justify-content: center;
  align-items: center;
  width: 144px;
  height: 144px;
  border-radius: 10px;
  background-color: #fff;
}
.footer-down > div:nth-child(2) a:hover .imgTwo {
  display: flex;
}
