/* 清除内外边距 */
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;
  -moz-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;
  display: block;
  line-height: 1;
}
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: inherit;
  outline: none;
  -moz-outline: none;
}
// a:hover{color: #f60;}
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: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.d-inline-flex {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.align-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.align-start {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.align-end {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.justify-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.justify-start {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.justify-end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.space-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.space-around {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.space-evenly {
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
  -moz-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}
.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-nowrap {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.flex-fill {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-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;
}
.text-primary {
  color: #f6891d;
}
.rotate180 {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.bg-white {
  background: #fff;
}
/* 显示一行文字 */
.line1 {
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
/* 显示2行文字 */

.line2 {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.line3 {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
@charset "UTF-8";
body {
  min-width: 1200px;
  background: #fff;
  padding-top: 70px;
  /* background: url("../img/banner1.png") no-repeat; */
}

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

.container-10px {
  width: 1220px;
  margin: 0 auto;
  padding: 10px;
}

h2 {
  font-size: 36px;
  font-weight: 600;
  font-stretch: normal;
  line-height: 36px;
  letter-spacing: 0px;
  color: #222;
}
h2 span {
  position: relative;
  display: inline-block;
  z-index: 11;
}
h2 span::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 9px;
  background-color: #2862ff;
  z-index: -1;
}

.gradient-btn {
  background-color: #2862ff;
  border-radius: 36px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0px;
  color: #ffffff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.gradient-btn img {
  margin-left: 20px;
}
.gradient-btn span {
  margin-top: -0.1em;
}
.gradient-btn .bottomBtnText {
  font-weight: 400;
  margin-top: 8px;
  display: block;
}
.gradient-btn:hover {
  background-color: #5381ff;
}

header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99999;
  background-color: #fff;
  -webkit-box-shadow: 0px 1px 10px 0px rgba(45, 41, 41, 0.09);
  box-shadow: 0px 1px 10px 0px rgba(45, 41, 41, 0.09);
}
header .container {
  height: 70px;
}
header .container img {
  height: 35px;
}
header .container span {
  font-size: 18px;
  font-weight: 600;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #222222;
  margin-left: 10px;
}
header .container ul li + li {
  margin-left: 40px;
  position: relative;
  height: 70px;
}
header .container .discount {
  position: absolute;
  background: url(../img/discount.png) no-repeat center;
  width: 26px;
  height: 16px;
  color: #ffffff;
  font-size: 12px;
  right: -24px;
  top: 18px;
  text-align: center;
}
header .container .discount div {
  transform: scale(0.83);
  line-height: 12px;
}
header .container ul li .nav_title i {
  display: inline-block;
  width: 5px;
  height: 3px;
  position: relative;
  top: -3px;
  left: 6px;
  background: url(../img/downlogo.png) no-repeat;
}
header .container .personalTranslate {
  display: none;
  position: absolute;
  z-index: 22;
  left: -368px;
  top: 69px;
  width: 910px;
  /* padding: 35px 0 0 60px; */
  height: 300px;
  background: #ffffff;
  border: 1px solid #f3f3f3;
  border-radius: 0px 0px 10px 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
header .container .personalTranslate .personal_l {
  /* width: 390px; */
  margin: 20px;
}
header .container .personalTranslate .personal_r {
  width: 520px;
  margin-top: 20px;
  /* padding-left: 40px; */
}
header .container .personalTranslate .personal_l_h1 {
  width: 350px;
  height: 120px;
  background: #f6f9ff;
  border-radius: 5px;
}
header .container .personalTranslate .personal_l_h2 {
  width: 350px;
  height: 120px;
  margin-top: 20px;
  background: #fbf4f2;
  border-radius: 5px;
}
header .container .personalTranslate .personal_l a {
  /* display: inline-block; */
  width: 100%;
  height: 100%;
  position: relative;
}
header .container .personalTranslate .personal_l p {
  font-size: 12px;
  color: #666666;
  padding-left: 27px;
}
header .container .personalTranslate .personal_l p:first-child {
  font-size: 16px;
  color: #000000;
  padding-top: 34px;
  padding-bottom: 20px;
}
header .container .personalTranslate .personal_l_h1 i {
  background: url("../img/cad.png") no-repeat;
}
header .container .personalTranslate .personal_l_h2 i {
  background: url("../img/qiye.png") no-repeat;
}
header .container .personalTranslate .personal_l_h1 i,
header .container .personalTranslate .personal_l_h2 i {
  position: absolute;
  width: 80px;
  height: 80px;
  left: 267px;
  top: 35px;
}
header .container .personalTranslate .personal_r ul li {
  line-height: 1;
  float: left;
  margin-right: 20px;
  margin-left: 0;
}
header .container .personalTranslate .personal_r ul li a {
  width: 240px;
  height: 50px;
  font-size: 14px;
  cursor: pointer;
  color: #5b5a5a;
  background-color: #f7fafc;
  border-radius: 5px;
  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;
  letter-spacing: 0.4px;
}
header .container .personalTranslate .personal_r ul li a img {
  width: 40px;
  height: 40px;
}
header .container a {
  color: #666;
  font-size: 16px;
  line-height: 70px;
}
header .container a:hover {
  color: #2a81fe;
}
header .personal_span:hover .nav_title i {
  background: url("../img/blue_uplogo.png") no-repeat;
}

header .personal_span:hover .personalTranslate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .personal_span a p {
  line-height: 1 !important;
}
header .container .download {
  display: block;
  width: 82px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #fff;
  background-color: #2862ff;
  border-radius: 15px;
  font-size: 16px;
}
header .container .download:hover {
  background-color: #5381ff;
  color: #fff;
}

.underHeader {
  margin-top: 105px;
  color: #6c7280;
}
.underHeader h1 {
  line-height: 64px;
  letter-spacing: 0px;
  position: relative;
  color: #1c2028;
}
.underHeader h1 img {
  width: 73px;
  margin-right: 14px;
  vertical-align: middle;
}
.underHeader h1 span {
  font-size: 40px;
  font-weight: 600;
  font-stretch: normal;
  vertical-align: middle;
}
.underHeader h1 .title-icon {
  width: 110px;
  height: 32px;
  position: absolute;
  left: 300px;
  top: -20px;
  -webkit-animation: triangle-jump 2s infinite;
  animation: triangle-jump 2s infinite;
}
@-webkit-keyframes triangle-jump {
  0%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
}
@keyframes triangle-jump {
  0%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
}
.underHeader .container {
  position: relative;
}
.underHeader .clickImg {
  width: 550px;
  height: 360px;
  background-color: transparent;
  position: absolute;
  top: -25px;
  right: 0px;
  cursor: pointer;
}
.underHeader h2 {
  letter-spacing: 0px;
  margin: 22px 0 66px;
  font-size: 20px;
  color: #6c7280;
  line-height: 34px;
  font-weight: normal;
}
.underHeader .desc {
  margin-bottom: -10px;
}
.underHeader ul {
  margin: 30px 0 40px;
  color: #fff;
}
.underHeader ul li {
  width: 120px;
  height: 120px;
  background-color: #18296d;
  border-radius: 4px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.underHeader ul li + li {
  margin-left: 20px;
}
.underHeader ul li h5 {
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 14px;
  letter-spacing: 0px;
  color: #ffffff;
}
.underHeader ul li h5 .count {
  display: inline-block;
  font-size: 36px;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: 0px;
  color: #ffffff;
  margin-right: 10px;
}
.underHeader ul li h6 {
  display: block;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 16px;
  letter-spacing: 0px;
  color: #ffffff;
  margin-top: 26px;
}
.downloadBtnNew a,
.underHeader a {
  display: block;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  width: 196px;
  height: 56px;
  background: #2c7df1;
  box-shadow: 0px 6px 20px 1px rgba(44, 125, 241, 0.3);
  border-radius: 28px 28px 28px 28px;
  font-size: 20px;
  color: #ffffff;
  line-height: 56px;
}
.greatEditor a::after,
.two-steps a::after,
.underHeader .downloadBox a::after,
footer .gradient-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(255, 255, 255, 0.2);
  width: 280px;
  height: 280px;
  border-radius: 50%;
  margin-left: -140px;
  margin-top: -140px;
  -webkit-animation: spread 1.5s infinite both;
  animation: spread 1.5s infinite both;
}
.greatEditor a:hover::after,
.two-steps a:hover::after,
.underHeader .downloadBox a:hover::after,
footer .gradient-btn:hover::after {
  display: none;
  animation: none;
  -webkit-animation: none;
}
@-webkit-keyframes spread {
  0% {
    transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    transform: scale(2);
    -webkit-transform: scale(2);
    transform: scale(2);
  }
}
@keyframes spread {
  0% {
    transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    transform: scale(2);
    -webkit-transform: scale(2);
    transform: scale(2);
  }
}
.downloadBtnNew a img,
.underHeader a img {
  width: 17px;
  height: 20px;
  margin-right: 12px;
}
.downloadBtnNew a span,
.underHeader a span {
  margin-top: -0.1em;
  font-size: 20px;
}
.downloadBtnNew a:hover,
.underHeader a:hover {
  background-color: #5381ff;
}
.infoList {
  margin-top: 30px;
  margin-bottom: 66px;
  color: #acacac;
  line-height: 24px;
}
.underHeader span {
  display: inline-block;
}
.underHeader .right-img {
  width: 612px;
  height: 398px;
  position: absolute;
  right: 0px;
  top: -37px;
}
.marLeft50 {
  margin-left: 50px;
}
.marLeft41 {
  margin-left: 41px;
}

.reasons {
  margin-top: 40px;
  background: #fff;
  border-radius: 10px;
  height: 563px;
  border: solid 1px #e5e5e5;
  padding-top: 65px;
}
.reasons > h3 {
  margin: 30px 0 40px;
  font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 18px;
  letter-spacing: 1px;
  color: #666666;
}
.reasons ul {
  padding: 0 40px;
}
.reasons ul li {
  width: 266px;
  height: 310px;
  border-radius: 10px;
  border: solid 1px #e5e5e5;
  transition: all 0.7s;
}
.reasons ul li:hover {
  margin-top: -10px;
}
.reasons ul li img {
  width: 73px;
  height: 73px;
  margin: 44px auto 38px;
}
.reasons ul li h3 {
  font-size: 24px;
  font-weight: 600;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #222222;
}
.reasons ul li h4 {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0px;
  max-width: 185px;
  color: #666;
  margin: 0 auto;
}
.reasons a {
  width: 100%;
  height: 100%;
  padding-top: 40px;
}

.greatEditor {
  margin-top: 147px;
  margin-bottom: 80px;
}
.greatEditor div ul {
  margin-top: 66px;
}
.greatEditor div ul li + li {
  margin-top: 68px;
}
.greatEditor div h3 {
  font-size: 20px;
  font-weight: 600;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #222222;
}
.greatEditor div h4 {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #666666;
  margin-top: 20px;
}
.greatEditor div a {
  width: 240px;
  height: 70px;
  border-radius: 35px;
  position: relative;
}
.greatEditor video {
  width: 720px;
  height: 465px;
  margin-right: 50px;
  background-color: #fff;
  border: 1px solid transparent;
}

.two-steps {
  padding-top: 90px;
  background-color: #f5f6ff;
}
.two-steps h2 {
  font-weight: bold;
  font-size: 32px;
  color: #1d2737;
  line-height: 25px;
}
.two-steps .container > h3 {
  font-size: 18px;
  color: #6c7280;
  margin: 16px 0 80px;
}
.two-steps .container .unit {
  width: 298px;
  height: 298px;
  background-color: #ffffff;
  border-radius: 4px;
  -webkit-box-shadow: 0px 1px 10px 0px rgba(45, 41, 41, 0.09);
  box-shadow: 0px 1px 10px 0px rgba(45, 41, 41, 0.09);
}
.two-steps .container .unit img {
  width: 120px;
  height: 120px;
  margin-bottom: 40px;
}
.two-steps .container .unit span {
  font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #222222;
}

/* 轮播反馈 */
.comments {
  margin-top: 85px;
}
.comments h2 + h3 {
  text-align: center;
  margin: 24px 0 60px;
  line-height: 1;
  font-size: 16px;
  letter-spacing: 1px;
  color: #999999;
}
.comments .swiper-wrapper {
  width: 1200px;
  margin: 80px auto 100px;
  position: relative;
}
.comments .swiper-wrapper .swiper-left {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 23px;
  top: 50%;
  margin-top: -23px;
  left: 0;
  cursor: pointer;
  background: url("../img/prevIcon.png") no-repeat;
  background-position: center;
}
.comments .swiper-wrapper .swiper-left:hover {
  background-image: url("../img/prevIcon_active.png");
}
.comments .swiper-wrapper .swiper-right {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 23px;
  top: 50%;
  margin-top: -23px;
  right: 0;
  cursor: pointer;
  background: url("../img/nextIcon.png") no-repeat;
  background-position: center;
}
.comments .swiper-wrapper .swiper-right:hover {
  background-image: url("../img/nextIcon_active.png");
}
.comments .swiper-wrapper .swiper {
  width: 1060px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  height: 450px;
}
.comments .swiper-wrapper .swiper .swiper-o {
  position: absolute;
  margin-top: 40px;
}
.comments .swiper-wrapper .swiper .swiper-o .swiper-row {
  width: 340px;
  height: 403px;
  background: #fff;
  float: left;
  margin: 0 8px;
  -webkit-box-shadow: 0px 1px 10px 0px rgba(45, 41, 41, 0.09);
  box-shadow: 0px 1px 10px 0px rgba(45, 41, 41, 0.09);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 35px;
}
.comments .swiper-wrapper .swiper .swiper-o .swiper-row .headPortrait {
  width: 90px;
  height: 90px;
  border-radius: 45px;
}
.comments .swiper-wrapper .swiper .swiper-o .swiper-row h4 {
  font-size: 15px;
  line-height: 15px;
  letter-spacing: 1px;
  color: #333;
  margin: 37px 0 7px;
}
.comments .swiper-wrapper .swiper .swiper-o .swiper-row h5 {
  font-size: 13px;
  line-height: 13px;
  letter-spacing: 1px;
  color: #999;
  position: relative;
}
.comments .swiper-wrapper .swiper .swiper-o .swiper-row h5::after {
  content: "";
  position: absolute;
  width: 68px;
  height: 1px;
  background-color: #d5d4d4;
  bottom: -24px;
  left: 50%;
  margin-left: -34px;
}
.comments .swiper-wrapper .swiper .swiper-o .swiper-row h6 {
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 1px;
  color: #444444;
  margin-top: 44px;
  padding: 0 44px;
  max-width: 100%;
}

footer {
  background: url("../img/bottom_BG.png") no-repeat;
  padding: 80px 0 23px;
}
footer h1 {
  font-size: 52px;
  font-weight: 500;
  line-height: 52px;
  letter-spacing: 0px;
  color: #ffffff;
}
footer h5 {
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0px;
  color: #9197c0;
  margin: 31px 0 39px;
}
footer .gradient-btn {
  width: 280px;
  height: 73px;
  border-radius: 36px;
  position: relative;
  overflow: hidden;
}
footer .gradient-btn img {
  margin-right: 20px;
  margin-left: 0;
}
footer .gradient-btn h6 {
  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0px;
  color: #ffffff;
}
footer .gradient-btn span {
  font-size: 30px;
  letter-spacing: 0px;
  color: #ffffff;
  margin-top: -0.1em;
}
footer .copyright {
  margin-top: 74px;
  color: #9197c0;
  font-size: 12px;
  line-height: 12px;
  display: block;
}
footer .copyright a {
  display: inline-block;
}
footer .copyright a:hover {
  color: #fff;
}

.modalLayer {
  z-index: 10;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.modalLayer .card {
  width: 384px;
  height: 385px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -192px;
  margin-top: -192.5px;
  background-color: #fff;
  border-radius: 4px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-shadow: 0 0 14px 6px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 14px 6px rgba(0, 0, 0, 0.3);
}
.modalLayer .card .header {
  padding-left: 20px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  color: #666666;
  background-color: #f7f7f7;
  position: relative;
  border-radius: 4px 4px 0 0;
}
.modalLayer .card .header .closeLayer {
  position: absolute;
  right: 14px;
  top: 14px;
  cursor: pointer;
  width: 12px;
  height: 12px;
  background: url("../img/closeDialog.png") no-repeat;
  background-position: center;
}
.modalLayer .card .header .closeLayer:hover {
  background-image: url("../img/closeDialogActive.png");
}
.modalLayer .card .form {
  padding: 8px 30px 30px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.modalLayer .card .form .subtitle {
  font-size: 14px;
  color: #999999;
  margin-bottom: 30px;
}
.modalLayer .card .form .label {
  margin-top: 22px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.modalLayer .card .form .label input,
.modalLayer .card .form .label textarea {
  resize: none;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-radius: 2px;
  border: solid 1px #ddd;
  line-height: 32px;
  min-height: 32px;
  font-size: 14px;
  outline: none;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.modalLayer .card .form .label input::-webkit-input-placeholder,
.modalLayer .card .form .label textarea::-webkit-input-placeholder {
  color: #9d9d9d;
  font-size: 13px;
  font-family: "微软雅黑";
}
.modalLayer .card .form .label input:-moz-placeholder,
.modalLayer .card .form .label textarea:-moz-placeholder {
  color: #9d9d9d;
  font-size: 13px;
  font-family: "微软雅黑";
}
.modalLayer .card .form .label input::-moz-placeholder,
.modalLayer .card .form .label textarea::-moz-placeholder {
  color: #9d9d9d;
  font-size: 13px;
  font-family: "微软雅黑";
}
.modalLayer .card .form .label input:-ms-input-placeholder,
.modalLayer .card .form .label textarea:-ms-input-placeholder {
  color: #9d9d9d;
  font-size: 13px;
  font-family: "微软雅黑";
}
.modalLayer .card .form .label input::-ms-input-placeholder,
.modalLayer .card .form .label textarea::-ms-input-placeholder {
  color: #9d9d9d;
  font-size: 13px;
  font-family: "微软雅黑";
}
.modalLayer .card .form .label input::placeholder,
.modalLayer .card .form .label textarea::placeholder {
  color: #9d9d9d;
  font-size: 13px;
  font-family: "微软雅黑";
}
.modalLayer .card .form .label textarea {
  min-height: 130px;
  overflow-y: auto;
}
.modalLayer .card .form .label .title {
  position: relative;
  line-height: 32px;
  margin-right: 10px;
  font-size: 14px;
  border-left: none;
  padding-left: 0;
  font-weight: 400;
}
.modalLayer .card .form .label .required::after {
  content: "*";
  color: #ff3434;
  font-size: 16px;
  position: absolute;
  top: 35%;
  left: 0;
  -webkit-transform: translate(-130%, -30%);
  -moz-transform: translate(-130%, -30%);
  -o-transform: translate(-130%, -30%);
  transform: translate(-130%, -30%);
}
.modalLayer .card .form .label .error-border {
  border-color: #f00;
}
.modalLayer .card .form .label p {
  position: absolute;
  top: 100%;
  left: 52px;
  line-height: 22px;
  font-size: 12px;
}
.modalLayer .card .form .formCommit {
  width: 100px;
  height: 34px;
  line-height: 34px;
  border-radius: 20px;
  text-align: center;
  background-color: #6132f2;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  margin-top: 22px;
}

.mask {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 11;
}

.alert {
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 400px;
  height: 220px;
  margin-top: -110px;
  margin-left: -185px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.alert .header {
  font-size: 18px;
  padding: 20px;
  border-bottom: 1px solid #ddd;
}
.alert .header .closeAlert {
  width: 12px;
  height: 12px;
  cursor: pointer;
  background: url("../img/closeDialog.png") no-repeat;
  -o-background-size: cover;
  background-size: cover;
}
.alert .header .closeAlert:hover {
  background-image: url("../img/closeDialogActive.png");
}
.alert .header + div {
  background-color: #fff;
  color: #666;
}
.alert .header + div .btns {
  margin-top: 40px;
}
.alert .header + div .btns .btn {
  width: 120px;
  height: 35px;
  border: 1px solid #ddd;
  border-radius: 4px;
  line-height: 33px;
  text-align: center;
  cursor: pointer;
}
.alert .header + div .btns .btn + .btn {
  margin-left: 30px;
}
.alert .header + div .btns .active {
  background-color: #8b51ff;
  border-color: #8b51ff;
  color: #fff;
}

.text-error {
  color: #f00;
}

/* 2023年5月4日 落地页改版 */
header .container img {
  height: auto;
}
.newHeader {
  background-color: #fff;
  box-shadow: none;
  -webkit-box-shadow: none;
  height: 70px;
  line-height: 70px;
  color: #333;
}
.newHeader .container span {
  color: #333;
  font-size: 16px;
}
.newHeader .container a {
  color: #333;
  font-size: 16px;
}
.newHeader .discount {
  position: absolute;
  background: url(../img/discount.png) no-repeat center;
  width: 26px;
  height: 16px;
  color: #ffffff;
  font-size: 12px;
  right: -24px;
  top: 18px;
  text-align: center;
}
header .container ul,
.newHeader .container ul {
  margin-right: 20px;
}
header .container .download {
  background: linear-gradient(108deg, #3ea6ff 0%, #2a81fe 100%);
  border-radius: 8px;
}
header .container .headDown {
  width: 100px;
  height: 34px;
  line-height: 34px;
  font-size: 0px;
  margin-top: 16px;
}
header .container .headDown span {
  font-size: 14px;
  vertical-align: middle;
  color: #fff;
  margin-left: 0px;
}
header .container .headDown img {
  display: inline-block;
  width: 11px;
  vertical-align: middle;
  margin-right: 6px;
}
header .container .download:hover {
  background: #3ea6ff;
}
header .container .download:active {
  background: #2a81fe;
}
header .container a:hover {
  color: #2a81fe;
}
header .container a:active,
header .container a:focus {
  background-color: #fff;
}
.newHeader .container a:active,
.newHeader .container a:focus {
  background-color: transparent;
}
.newHeader ul {
  margin-right: 20px;
}
.underHeader {
  margin-top: 0;
  padding-top: 81px;
  background: url(../img/new/bannerNew.png) top center no-repeat;
  background-size: 1920px;
  height: 600px;
}
.underHeader .desc {
  font-size: 30px;
}
.underHeader h3 {
  font-size: 20px;
}
.underHeader ul {
  margin-top: 37px;
}
.underHeader ul li {
  position: relative;
  background-color: transparent;
}
.underHeader ul li::before {
  content: "";
  display: inline-block;
  width: 148px;
  height: 148px;
  position: absolute;
  background: url(../img/new/bannerNew.png) no-repeat;
  top: -14px;
  left: -14px;
  z-index: -1;
}
/* .underHeader a {
  height: 86px;
  border-radius: 20px;
} */
.downloadBtnNew a:hover,
.underHeader a:hover {
  background-color: #3ea6ff;
}
/* .downloadBtnNew:hover {
  background-color: #3EA6FF;
} */
.downloadBox > a {
  margin-bottom: 0;
  margin-right: 20px;
  background-color: #2c7df1;
}
.downloadBox p {
  font-size: 14px;
  line-height: 24px;
  color: #e7f0fe;
}
.underHeader .container {
  position: relative;
}
.underHeader .container .right-img-box {
  display: inline-block;
  width: 657px;
  height: 444px;
  position: absolute;
  top: 0;
  right: -24px;
  background: url(../img/new/banner1.png) no-repeat;
}

h2 span::after {
  display: none;
}

.reasons {
  height: 748px;
  padding-top: 60px;
  margin-top: 70px;
}
.reasons ul {
  padding: 0 30px;
  margin-bottom: 40px;
}
.reasons ul li {
  width: 360px;
  height: 242px;
}
.reasons a {
  padding-top: 0;
}
.reasons ul li img {
  width: 80px;
  height: 80px;
  margin: 22px auto;
}
.reasons ul li h3 {
  margin-bottom: 14px;
}
.reasons ul li h4 {
  max-width: none;
}

.greatEditor {
  margin-top: 80px;
}
.greatEditor div ul {
  margin-top: 41px;
}
.greatEditor div h3 {
  font-weight: normal;
}
.greatEditor div ul li + li {
  margin-top: 40px;
}
.two-steps a,
.greatEditor div ul a {
  display: inline-block;
  width: 200px;
  height: 60px;
  color: #fff;
  font-size: 20px;
  border-radius: 10px;
  background-color: #0045ff;
  font-weight: bold;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}
.two-steps a:hover,
.greatEditor div ul a:hover {
  background-color: #3ea6ff;
}
.greatEditor div ul a img {
  width: 14px;
  height: 20px;
  margin-left: 10px;
  vertical-align: middle;
}
.banner-right {
  padding-top: 30px;
}
.two-steps {
  height: auto;
}
.two-steps-btn-box {
  padding: 90px 0 100px;
}
.two-steps-btn-box a {
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
.two-steps-btn-box a img {
  width: 19px;
  height: 24px;
  margin-right: 13px;
  vertical-align: middle;
}

.comments .swiper-wrapper {
  margin-top: 48px;
}
.comments h2 span {
  position: relative;
}
.comments h2 span::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 9px;
  background: linear-gradient(to left, #87bdfe, #489af7);
  position: absolute;
  bottom: -5px;
  left: 0;
  z-index: -1;
}
footer {
  background: url(../img/new/banner_footer.jpg) no-repeat;
  padding-top: 78px;
  padding-bottom: 24px;
}
footer h5 {
  color: #fff;
  margin: 30px auto 40px;
}
footer .copyright {
  margin-top: 59px;
}

footer .gradient-btn {
  background-color: #0045ff;
  border-radius: 20px;
  width: 300px;
  height: 86px;
}
footer .gradient-btn img {
  margin-left: 10px;
  margin-right: 0;
}
footer .copyright {
  color: #ffffff;
}

.fixed-box {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translate(-10px, -70px);
  z-index: 100;
}
.fixed-down-btn {
  display: block;
  background-color: #0045ff;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.fixed-down-btn:hover {
  background-color: #336aff;
}
.fixed-down-btn div {
  width: 50px;
  height: 140px;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  word-break: break-all;
  padding: 10px;
  line-height: 20px;
}
.fixed-down-btn span {
  display: inline-block;
  width: 30px;
  word-wrap: break-word;
  word-break: break-all;
}
.fixed-down-btn img {
  margin-top: 10px;
}
.go-top {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  margin-top: 10px;
  text-align: center;
  line-height: 50px;
  background: #fff url(../img/new/goTop2.png) center center no-repeat;
}
.go-top:hover {
  background: #fff url(../img/new/goTop.png) center center no-repeat;
}

.maxWidth250 {
  max-width: 250px !important;
}
.maxWidth260 {
  max-width: 260px !important;
}
.maxWidth275 {
  max-width: 275px !important;
}
.maxWidth285 {
  max-width: 285px !important;
}
.maxWidth305 {
  max-width: 305px !important;
}

.newInfoBox {
  width: 1200px;
  height: 210px;
  background: #ffffff;
  box-shadow: 0px 7px 35px 1px rgba(51, 160, 255, 0.1);
  border-radius: 8px;
  margin: -115px auto 0;
}
.infoItem {
  width: 300px;
  padding: 30px 32px 42px 40px;
  position: relative;
}
.infoItem.boredrRight::after {
  content: "";
  display: inline-block;
  width: 0px;
  height: 100px;
  border: 1px solid #707070;
  opacity: 0.1;
  position: absolute;
  top: 56px;
  right: 0;
}
.infoItem h2 {
  font-size: 0;
  color: #1c2028;
  margin-bottom: 24px;
}
.infoItem h2 img {
  width: 36px;
  margin-right: 10px;
  vertical-align: middle;
}
.infoItem h2 span {
  font-weight: bold;
  font-size: 20px;
  vertical-align: middle;
}
.infoItem p {
  font-size: 16px;
  color: #6f7b92;
  line-height: 26px;
}

.containerNew {
  margin-top: 100px;
  background-color: #fff;
}
.containerNew h2 {
  font-weight: bold;
  font-size: 32px;
  color: #1d2737;
  line-height: 25px;
  text-align: center;
}
.containerItem {
  width: 100%;
}
.containerItemBox {
  width: 1200px;
  margin: 0 auto;
  padding: 56px 0 62px;
}
.containerItemImg {
  width: 663px;
}
.containerItemText {
  width: 450px;
  padding-top: 47px;
}
.itemTitleNew {
  font-weight: bold;
  font-size: 24px;
  color: #1c2028;
}
.itemTitleNew span {
  color: #2c7df1;
  margin-left: 28px;
}
.itemListNew {
  margin-top: 24px;
}
.itemListNew li {
  font-size: 0;
  margin-bottom: 27px;
}
.itemListNew li img {
  width: 22px;
  margin-right: 11px;
  position: relative;
  top: 6px;
}
.itemListNew li span {
  display: inline-block;
  font-weight: 400;
  font-size: 18px;
  color: #6c7280;
  line-height: 32px;
  max-width: 425px;
}
.downloadBtnNew {
  /* width: 196px;
  height: 56px;
  background: #2C7DF1; */
  /* box-shadow: 0px 6px 20px 1px rgba(44,125,241,0.3); */
  /* border-radius: 28px 28px 28px 28px;
  font-weight: 400; */
  font-size: 20px;
  color: #ffffff;
  /* line-height: 30px;
  outline: none;
  border: none; */
  margin-bottom: 40px;
}
.backColor {
  background-color: #fbfbfb;
}
.containerItemBox2 {
  height: 570px;
  padding: 92px 0;
}

.containerItemBox2 .containerItemImg {
  width: 600px;
}

.stepsTextBox {
  width: 370px;
  height: 170px;
  background: #ffffff;
  border-radius: 16px 16px 16px 16px;
  padding: 26px 20px 30px 24px;
}
.stepsTextBox > img {
  width: 76px;
  min-width: 76px;
  margin-right: 24px;
}
.stepsTextBox h5 {
  font-weight: bold;
  font-size: 20px;
  color: #1c2028;
  line-height: 25px;
  margin-bottom: 10px;
}
.stepsTextBox p {
  width: 225px;
  font-weight: 400;
  font-size: 16px;
  color: #6c7280;
  line-height: 28px;
}
.marginTop30 {
  margin-top: 30px;
}

.two-steps a {
  width: 360px;
  height: 80px;
  background: #2c7df1;
  box-shadow: 0px 6px 20px 1px rgba(44, 125, 241, 0.3);
  border-radius: 40px 40px 40px 40px;
}

footer {
  background: #2e4a6d;
  text-align: center;
  padding-top: 23px;
  padding-bottom: 20px;
  color: #d3e5ff;
}
footer p a {
  font-weight: 400;
  font-size: 12px;
  color: #d3e5ff;
  line-height: 30px;
}
footer .copyright {
  margin-top: 29px;
  color: #6a89b6;
}
.swiper-container {
  margin: 0 !important;
  margin-left: -25px !important;
}
.swiper-wrapper {
  width: 660px;
}
.swiper-pagination {
  bottom: 35px !important;
}
.swiper-pagination-bullet {
  background: #2c7df1;
  opacity: 0.3;
}
.swiper-pagination-bullet-active {
  background: #2c7df1;
  opacity: 0.8;
}
.indulgence {
  position: absolute;
  top: -95px;
  right: 0;
}
.advert-mask {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000000000;
  display: none;
}
.advert-mask .advert-main {
  width: 454px;
  height: 454px;
  position: relative;
}
.advert-mask .advert-img {
  width: 454px;
  height: 454px;
  display: block;
}
.advert-mask .advert-main .advert-close {
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: -30px;
}
