@charset "UTF-8";
/* 清除内外边距 */
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
fieldset,
legend,
button,
input,
textarea,
th,
td {
  margin: 0;
  padding: 0;
}

html body {
  font-family: "微软雅黑";
  position: relative;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input::-ms-clear {
  display: none;
}

input::-ms-reveal {
  display: none;
}

/*设置默认字体*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

h1 {
  font-size: 24px;
}

h2 {
  font-size: 18px;
}

h3 {
  font-size: 16px;
}

h4 {
  font-size: 14px;
}

h5 {
  font-size: 12px;
}

h6 {
  font-size: 10px;
}

address,
cite,
dfn,
em,
var,
i {
  font-style: normal;
}

code,
kbd,
pre,
samp {
  font-family: courier new, courier, monospace;
}

small {
  font-size: 12px;
}

/*重置列表元素*/
ul,
ol {
  list-style: none;
}

/*重置文本格式元素*/
a,
a:hover {
  text-decoration: none;
}

a {
  color: #555;
  outline: none;
  -moz-outline: none;
}

a img {
  display: block;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

/*重置表单元素*/
legend {
  color: #000;
}

/* for ie6 */
fieldset,
img {
  border: 0;
}

button,
input,
select,
textarea {
  font-size: 100%;
  outline: none;
}

/*重置表格元素*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 重置 HTML5 元素 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  display: block;
  margin: 0;
  padding: 0;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}

.d-inline {
  display: inline;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.d-inline-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.align-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.align-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.justify-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.space-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.space-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.space-evenly {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.flex-fill {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.text-nowrap {
  white-space: nowrap;
}

.text-center {
  text-align: center;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.rotate180 {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.line1 {
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.line2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

html {
  background-color: #f7fbff;
}

.container {
  width: 1200px;
  margin: 0 auto;
}

header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99999;
}
header .container {
  height: 80px;
}
header .container .logo {
  width: auto;
  overflow: inherit !important;
  display: inherit !important;
  font-size: 18px;
  color: #222222;
  font-weight: bold;
}
header .container .logo img {
  height: 34px;
  width: 34px;
  vertical-align: middle;
  margin-right: 10px;
}
header .container ul li {
  margin-left: 30px;
}
header .container a {
  display: block;
  height: 36px;
  border-radius: 22px;
  font-size: 16px;
  color: #464a7c;
  line-height: 36px;
  text-align: center;
  position: relative;
}
header .container a.downloadBtn {
  width: 100px;
  height: 40px;
  background-image: -webkit-gradient(linear, right top, left top, from(#af95ff), to(#7b56ee)), -webkit-gradient(linear, left top, left bottom, from(#7b56ee), to(#7b56ee));
  background-image: linear-gradient(-90deg, #af95ff 0%, #7b56ee 100%), linear-gradient(#7b56ee, #7b56ee);
  background-blend-mode: normal, normal;
  border-radius: 20px;
  font-size: 16px;
  color: #ffffff;
  line-height: 40px;
  text-align: center;
}
header .container a.downloadBtn:hover {
  background-image: none;
  background-color: #7b56ee;
  color: #ffffff;
}
header .container a.active::after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #7b56ee;
  border-radius: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.banner {
  padding-top: 218px;
  height: 700px;
  background: url("../img/index_new/bannerBg.png") no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
}
.banner .underHeader {
  min-width: 1200px;
  color: #fff;
}
.banner .underHeader .video-box {
  width: 600px;
  height: 440px;
  background: url("../img/index_new/computer.png");
  position: relative;
  top: -52px;
  display: block;
}
.banner .underHeader .video-box .video-box-git {
  width: 270px;
  height: 70px;
  background: url("../img/index_new/computer.gif");
  display: block;
  position: absolute;
  top: 134px;
  left: 63px;
}
.banner .underHeader .gif {
  width: 531px;
  height: 388px;
  border-radius: 10px;
  -o-object-fit: contain;
  object-fit: contain;
  position: relative;
  top: -15px;
  left: 36px;
}
.banner .underHeader .contactUs {
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0px;
  color: #ffffff;
  margin-top: 28px;
  cursor: pointer;
}
.banner .underHeader .totalDownload {
  position: relative;
  margin-top: 30px;
  color: #464a7c;
  font-size: 18px;
}
.banner .underHeader .totalDownload .countSplit .num,
.banner .underHeader .totalDownload .count .num {
  color: #7b56ee;
  width: 32px;
  height: 36px;
  border-radius: 6px;
  border: solid 1px #a487ff;
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
  text-align: center;
  margin-left: 15px;
  display: inline-block;
}
.banner .underHeader .totalDownload .countSplit .num + .num,
.banner .underHeader .totalDownload .count .num + .num {
  margin-left: 5px;
}
.banner .underHeader .totalDownload .count .num {
  color: #fff !important;
}
.banner .underHeader h1 {
  font-size: 48px;
  font-weight: 600;
  font-stretch: normal;
  line-height: 48px;
  letter-spacing: 0px;
  position: relative;
  display: inline-block;
  color: #222222;
}
.banner .underHeader h1 img {
  width: 90px;
  width: 50px;
  height: 26px;
  position: absolute;
  right: -55px;
  top: -14px;
  -webkit-animation: triangle-jump 2s infinite;
  animation: triangle-jump 2s infinite;
}
.banner .underHeader h3 {
  color: #090d30;
  font-size: 24px;
  margin-top: 30px;
}
.banner .underHeader p {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0px;
  color: #ccbbff;
}
.banner .underHeader .mainFunctions {
  margin: 28px 0 45px;
}
.banner .underHeader .mainFunctions > .d-flex + .d-flex {
  margin-top: 15px;
}
.banner .underHeader .mainFunctions .unit {
  font-size: 16px;
}
.banner .underHeader .mainFunctions .unit + .unit {
  margin-left: 14px;
}
.banner .underHeader .mainFunctions .unit span {
  min-width: 73px;
  display: inline-block;
  color: #464a7c;
}
.banner .underHeader .mainFunctions .unit .icon {
  width: 16px;
  height: 16px;
  background: url("../img/index_new/checked.png") no-repeat;
  margin-right: 8px;
}
.banner .h3 {
  font-size: 48px;
  color: #222222;
  font-weight: bold;
  text-shadow: 2px 4px 5px #cfc1af;
  position: relative;
}
.banner .h3 img {
  position: absolute;
  right: -52px;
  top: -9px;
}
.banner .h4 {
  color: #333333;
  font-size: 24px;
  margin: 10px 0 60px;
}
.banner .h4 span {
  color: #ff643a;
  font-size: 30px;
}
.banner .freeBtn {
  width: 350px;
  height: 100px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#7b56ee), to(#af95ff)), -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#ffffff));
  background-image: linear-gradient(0deg, #7b56ee 0%, #af95ff 100%), linear-gradient(#ffffff, #ffffff);
  background-blend-mode: normal, normal;
  border-radius: 20px;
  font-size: 30px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.banner .freeBtn:hover {
  background-image: none;
  background-color: #7b56ee;
}
.banner .freeBtn span {
  margin-right: 16px;
}
.banner .pack-num p {
  color: #464a7c;
  margin-top: 25px;
  font-size: 14px;
  margin-right: 20px;
}

.item-title {
  height: 38px;
  line-height: 38px;
  margin: 0 auto;
  text-align: center;
  width: 1200px;
}
.item-title h2 {
  margin: 0 34px;
  font-size: 38px;
  color: #090d30;
  font-weight: bold;
}
.item-title .title-icon-r {
  display: block;
  background: url("../img/index_new/turnRight.png");
  width: 84px;
  height: 20px;
}
.item-title .title-icon-l {
  display: block;
  background: url("../img/index_new/turnLeft.png");
  width: 84px;
  height: 20px;
}

.tab-item {
  padding-top: 114px;
}
.tab-item .common-item {
  width: 1200px;
  margin: 92px auto 0;
}
.tab-item .common-item ul {
  margin-top: 15px;
}
.tab-item .common-item ul li {
  width: 600px;
  height: 120px;
  background-color: #ffffff;
  border-radius: 16px;
  margin-bottom: 20px;
  -webkit-box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.1);
}
.tab-item .common-item ul li h3 {
  color: #131846;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}
.tab-item .common-item ul li span {
  color: #464a7c;
  font-size: 14px;
  margin-bottom: 5px;
  padding-left: 8px;
  position: relative;
  display: block;
}
.tab-item .common-item ul li span::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  background-color: #464a7c;
  top: 10px;
  left: 0;
  border-radius: 50%;
}
.tab-item .common-item ul li img {
  width: 40px;
  height: 36px;
  margin: 0 30px 0 39px;
}
.tab-item .common-item.protect ul li {
  height: 170px;
  line-height: 22px;
}

.more-fn {
  padding-top: 80px;
  background: #edf6ff;
  margin-top: 120px;
  height: 655px;
  background: url("../img/index_new/moFnBg.png");
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.more-fn .item-list {
  width: 1200px;
  margin: 59px auto 0;
  position: relative;
}
.more-fn .item-list .item-list-logo {
  position: absolute;
  top: 187px;
}
.more-fn .item-list ul li .img-logo {
  width: 105px;
  height: 105px;
  background-color: #ffffff;
  border-radius: 50%;
}
.more-fn .item-list ul li .img-logo img {
  width: 44px;
  height: 44px;
}
.more-fn .item-list ul li .img-logo:first-child {
  margin-bottom: 31px;
}
.more-fn .item-list ul li .img-logo:last-child {
  margin-top: 30px;
}
.more-fn .item-list ul li span {
  color: #464a7c;
  font-size: 18px;
  display: block;
}
.more-fn .item-list ul li span + span {
  margin-top: 83px;
}

.information {
  padding-top: 80px;
  width: 1200px;
  margin: 0 auto;
}
.information ul {
  margin-top: 60px;
}
.information ul li {
  background-color: #ffffff;
  border-radius: 6px;
  padding: 25px 30px 33px 24px;
  height: 196px;
  width: 580px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 30px;
  -webkit-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
}
.information ul li .item-logo {
  width: 136px;
  height: 136px;
  -webkit-box-shadow: 2px 0px 4px 0px rgba(0, 21, 146, 0.09);
  box-shadow: 2px 0px 4px 0px rgba(0, 21, 146, 0.09);
  border-radius: 13px;
  border: solid 4px #ffffff;
  margin-right: 20px;
}
.information ul li .content {
  position: relative;
}
.information ul li .content .title-contain img {
  width: 16px;
  height: 16px;
}
.information ul li .content .title-contain a.item-title {
  display: block;
  color: #333333;
  font-size: 16px;
  margin-left: 10px;
  width: 250px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.information ul li .content .title-contain a.item-title:hover {
  color: #7b56ee;
}
.information ul li .content .article {
  width: 363px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #999999;
  font-size: 12px;
  line-height: 20px;
  max-height: 40px;
}
.information ul li .content .item-message {
  margin-top: 10px;
}
.information ul li .content .item-message span {
  color: #999999;
  font-size: 12px;
  margin: 0 20px 0 5px;
}
.information ul li .content .label {
  margin-top: 10px;
}
.information ul li .content .label a {
  display: block;
  width: 100px;
  height: 24px;
  background-color: #f7f5fa;
  border-radius: 12px;
  line-height: 24px;
  text-align: center;
  color: #808080;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 10px;
}
.information ul li .content .label a:hover {
  background-color: #f5edff;
  color: #7b56ee;
}
.information .seeMore {
  margin-top: 30px;
}
.information .seeMore a {
  width: 120px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 6px;
  font-size: 16px;
  display: block;
}
.information .seeMore .moreTutorial {
  background-image: -webkit-gradient(linear, right top, left top, from(#ff5e62), to(#ff9966)), -webkit-gradient(linear, left top, left bottom, from(#773cee), to(#773cee));
  background-image: linear-gradient(-90deg, #ff5e62 0%, #ff9966 100%), linear-gradient(#773cee, #773cee);
  background-blend-mode: normal, normal;
  color: #f7f5fa;
  margin-right: 30px;
}
.information .seeMore .moreTutorial:hover {
  background-image: -webkit-gradient(linear, right top, left top, from(#ff9966), to(#ff5e62)), -webkit-gradient(linear, left top, left bottom, from(#773cee), to(#773cee));
  background-image: linear-gradient(-90deg, #ff9966 0%, #ff5e62 100%), linear-gradient(#773cee, #773cee);
}
.information .seeMore .moreInformation {
  border: solid 1px #ff5f62;
  color: #ff5f62;
}
.information .seeMore .moreInformation:hover {
  background-image: -webkit-gradient(linear, right top, left top, from(#ff5e62), to(#ff9966)), -webkit-gradient(linear, left top, left bottom, from(#f5edff), to(#f5edff));
  background-image: linear-gradient(-90deg, #ff5e62 0%, #ff9966 100%), linear-gradient(#f5edff, #f5edff);
  color: #ffffff;
}

#feedback {
  text-align: center;
  padding-top: 100px;
}
#feedback .feedback-wrap {
  width: 1200px;
  margin: 0 auto;
}
#feedback .swiperUnit {
  padding: 29px 20px;
}
#feedback .swiperUnit img {
  height: 73px;
  width: 73px;
  margin: 0 auto;
  border-radius: 50%;
}
#feedback .swiperUnit h3 {
  font-family: MicrosoftYaHei-Bold;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  color: #333333;
  margin-top: 20px;
  margin-bottom: 10px;
}
#feedback .swiperUnit .position {
  font-family: MicrosoftYaHei;
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0px;
  color: #999999;
}
#feedback .swiperUnit .divider {
  width: 244px;
  height: 1px;
  background-color: #dddddd;
  margin-top: 15px;
  margin-bottom: 41px;
}
#feedback .swiperUnit .content {
  font-family: MicrosoftYaHei;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0px;
  width: 241px;
  text-align: left;
  color: #444444;
}
#feedback #certify {
  position: relative;
  width: 1200px;
  margin: 0 auto;
}
#feedback #certify .swiper-container {
  width: 960px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 104px;
  padding-top: 69px;
}
#feedback #certify .swiper-slide {
  width: 285px !important;
  height: 395px !important;
  background: #fff;
  -webkit-box-shadow: 0 0 10px #ddd;
          box-shadow: 0 0 10px #ddd;
  border-radius: 10px;
}
#feedback .swiper-button-prev {
  left: 0;
  width: 66px;
  height: 66px;
  background: url("../img/index_new/buttonPrev.png");
}
#feedback .swiper-button-prev:hover {
  background: url("../img/index_new/buttonPrev_h.png");
}
#feedback .swiper-button-next {
  right: 0;
  width: 66px;
  height: 66px;
  margin-top: -62px;
  background: url("../img/index_new/buttonNext.png");
}
#feedback .swiper-button-next:hover {
  background: url("../img/index_new/buttonNext_h.png");
}
#feedback .swiper-button-prev {
  margin-top: -62px;
}
#feedback .swiper-button-next::after {
  content: unset;
}
#feedback .swiper-button-prev {
  outline: unset;
}
#feedback .swiper-button-prev::after {
  content: unset;
}

.swiper-container-rtl .swiper-button-next,
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  outline: unset;
}

footer .beforeCopyright {
  height: 480px;
  background: url("../img/index_new/footerBg.png") no-repeat;
  padding-top: 116px;
  background-size: cover;
}
footer .beforeCopyright h2 {
  font-size: 60px;
  line-height: 60px;
  font-weight: bold;
  color: #090d30;
}
footer .beforeCopyright h3 {
  font-size: 30px;
  line-height: 29px;
  letter-spacing: 0px;
  color: #464a7c;
  margin: 34px 0 50px;
}
footer .beforeCopyright a {
  width: 241px;
  height: 71px;
  line-height: 71px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#7b56ee), to(#af95ff)), -webkit-gradient(linear, left top, left bottom, from(#773cee), to(#773cee));
  background-image: linear-gradient(0deg, #7b56ee 0%, #af95ff 100%), linear-gradient(#773cee, #773cee);
  background-blend-mode: normal, normal;
  border-radius: 34px;
  font-size: 24px;
  letter-spacing: 1px;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer .beforeCopyright a:hover {
  background-color: #7b56ee;
  background-image: none;
}
footer .realFooter {
  background-color: #453f4f;
}
footer .realFooter .container_lowIE {
  width: 1200px;
}
footer .realFooter .columns {
  font-size: 0;
  height: 95px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 1px solid #5c5664;
}
footer .realFooter .columns a {
  padding-left: 2em;
  padding-right: 2em;
  font-size: 16px;
  line-height: 14px;
  color: #fff;
}
footer .realFooter .columns a:first-child {
  padding-left: 0;
}
footer .realFooter .columns a:last-child {
  padding-right: 0;
}
footer .realFooter .columns a + a {
  position: relative;
}
footer .realFooter .columns a + a::before {
  position: absolute;
  content: "";
  height: 15px;
  width: 0;
  left: 0;
  top: 4px;
  border-left: 1px solid #7f788a;
}
footer .realFooter .links {
  padding-bottom: 21px;
  padding-top: 30px;
}
footer .realFooter .links p {
  font-size: 15px;
  line-height: 15px;
  letter-spacing: 0px;
  color: #ffffff;
  opacity: 0.8;
  margin-bottom: 11px;
}
footer .realFooter .links a {
  font-size: 14px;
  color: #838088;
  line-height: 30px;
  margin-left: 43px;
}
footer .realFooter .links a:nth-child(8n+1) {
  margin-left: 0;
}
footer .realFooter .links a:hover {
  color: #fff;
}
footer .realFooter .links .line1 {
  width: 112px;
}
footer .realFooter .copyright {
  background-color: #332e3b;
  height: 53px;
  line-height: 53px;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #7f7c84;
  text-align: center;
}
footer .realFooter .copyright a {
  color: #7f7c84;
}
footer .realFooter .copyright a:hover {
  color: #fff;
}

.none {
  display: none !important;
}